/SSB/ALL_STORIES_IMPORT_STATUS

DDL: /SSB/ALL_STORIES_IMPORT_STATUS SQL: /SSB/ALSTISTATUS Type: view

All SAC stories import status

/SSB/ALL_STORIES_IMPORT_STATUS is a CDS View that provides data about "All SAC stories import status" in SAP S/4HANA. It reads from 1 data source (/ssb/sacjob_info) and exposes 6 fields with key fields id, job_type.

Data Sources (1)

SourceAliasJoin Type
/ssb/sacjob_info jobinfo from

Annotations (9)

NameValueLevelField
AbapCatalog.sqlViewName /SSB/ALSTISTATUS view
AbapCatalog.compiler.compareFilter true view
AccessControl.authorizationCheck #NOT_REQUIRED view
EndUserText.label All SAC stories import status view
AbapCatalog.preserveKey true view
ObjectModel.usageType.dataClass #META view
ObjectModel.usageType.serviceQuality #C view
ObjectModel.usageType.sizeCategory #M view
ClientHandling.algorithm #SESSION_VARIABLE view

Fields (6)

KeyFieldSource TableSource FieldDescription
KEY id /ssb/sacjob_info id WorklistID
KEY job_type /ssb/sacjob_info job_type Type of job
job_id /ssb/sacjob_info job_id Package ID
job_status /ssb/sacjob_info job_status Job status
created_by /ssb/sacjob_info created_by Version Created By
created_on /ssb/sacjob_info created_on Variant created on

Derived SQL interpretation, reconstructed from the parsed view metadata (data sources, associations, and field mappings). SAP annotations are omitted and the structure is reformulated as SQL — this is a functional approximation, not the verbatim SAP source.

-- Derived SQL interpretation of CDS view /SSB/ALL_STORIES_IMPORT_STATUS.
-- Reconstructed from parsed metadata (data sources, associations, fields).
-- SAP annotations are omitted and the structure is reformulated as SQL;
-- this is a functional approximation, not the verbatim SAP source. Some join
-- conditions may be unavailable and a few CDS constructs are kept as-is.
-- SQL view name: /SSB/ALSTISTATUS

CREATE VIEW /SSB/ALL_STORIES_IMPORT_STATUS AS
SELECT
  jobinfo.id AS id,
  jobinfo.job_type AS job_type,
  jobinfo.job_id AS job_id,
  jobinfo.job_status AS job_status,
  jobinfo.created_by AS created_by,
  jobinfo.created_on AS created_on
FROM /ssb/sacjob_info AS jobinfo
;