Sycm_Plst_Subobj_Download

DDL: SYCM_PLST_SUBOBJ_DOWNLOAD SQL: SYCMVPLSTSOBJDWD Type: view

Piecelist with subobjects (export/imprt)

Sycm_Plst_Subobj_Download is a CDS View that provides data about "Piecelist with subobjects (export/imprt)" in SAP S/4HANA. It reads from 1 data source (sycm_plst_subobj) and exposes 6 fields with key fields piecelist_id, pgmid, object_type, object_name, int_type.

Data Sources (1)

SourceAliasJoin Type
sycm_plst_subobj sycm_plst_subobj from

Annotations (4)

NameValueLevelField
AbapCatalog.sqlViewName SYCMVPLSTSOBJDWD view
AbapCatalog.compiler.compareFilter true view
AccessControl.authorizationCheck #NOT_REQUIRED view
EndUserText.label Piecelist with subobjects (export/imprt) view

Fields (6)

KeyFieldSource TableSource FieldDescription
KEY piecelist_id sycm_plst_subobj piecelist_id GUID 16
KEY pgmid sycm_plst_subobj pgmid Program Name
KEY object_type sycm_plst_subobj object_type Type
KEY object_name sycm_plst_subobj object_name Technical Name
KEY int_type sycm_plst_subobj int_type Obj. Type
KEY int_name sycm_plst_subobj int_name Key for a Repository object

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 Sycm_Plst_Subobj_Download.
-- 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: SYCMVPLSTSOBJDWD

CREATE VIEW Sycm_Plst_Subobj_Download AS
SELECT
  sycm_plst_subobj.piecelist_id AS piecelist_id,
  sycm_plst_subobj.pgmid AS pgmid,
  sycm_plst_subobj.object_type AS object_type,
  sycm_plst_subobj.object_name AS object_name,
  sycm_plst_subobj.int_type AS int_type,
  sycm_plst_subobj.int_name AS int_name
FROM sycm_plst_subobj
;