P_CustRetItemScheduleLine

DDL: P_CUSTRETITEMSCHEDULELINE Type: view_entity CONSUMPTION

Customer Return Item ScheduleLine

P_CustRetItemScheduleLine is a Consumption CDS View that provides data about "Customer Return Item ScheduleLine" in SAP S/4HANA. It reads from 1 data source (I_SalesDocumentScheduleLine) and exposes 3 fields with key fields SalesDocument, SalesDocumentItem.

Data Sources (1)

SourceAliasJoin Type
I_SalesDocumentScheduleLine SalesDocumentScheduleLine from

Annotations (4)

NameValueLevelField
VDM.private true view
VDM.viewType #CONSUMPTION view
AccessControl.authorizationCheck #NOT_REQUIRED view
EndUserText.label Customer Return Item ScheduleLine view

Fields (3)

KeyFieldSource TableSource FieldDescription
KEY SalesDocument I_SalesDocumentScheduleLine SalesDocument SD Document
KEY SalesDocumentItem SalesDocumentItem Sales Document Item
GoodsMovementType GoodsMovementType Movement Type

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 P_CustRetItemScheduleLine.
-- 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.

CREATE VIEW P_CustRetItemScheduleLine AS
SELECT
  SalesDocumentScheduleLine.SalesDocument AS SalesDocument,
  SalesDocumentItem,
  GoodsMovementType
FROM I_SalesDocumentScheduleLine AS SalesDocumentScheduleLine
;