C_FldLogsProcRcptCstmFldExtn

DDL: C_FLDLOGSPROCRCPTCSTMFLDEXTN SQL: CFLDLOGSEXTEN Type: view CONSUMPTION

Consumption For Extensibility

C_FldLogsProcRcptCstmFldExtn is a Consumption CDS View that provides data about "Consumption For Extensibility" in SAP S/4HANA. It reads from 1 data source (I_PurchasingDocumentItem) and exposes 5 fields with key fields PurchasingDocument, PurchasingDocumentItem, DeliveryDocument, DeliveryDocumentItem. It has 3 associations to related views.

Data Sources (1)

SourceAliasJoin Type
I_PurchasingDocumentItem _PurdocItem from

Associations (3)

CardinalityTargetAliasCondition
[0..1] E_PurchasingDocumentItem _PurDocItemExtension $projection.PurchasingDocument = _PurDocItemExtension.PurchasingDocument and $projection.PurchasingDocumentItem = _PurDocItemExtension.PurchasingDocumentItem
[0..1] E_DeliveryDocumentItem _DlvDocItemExtension _DeliveryItem.DeliveryDocument = _DlvDocItemExtension.DeliveryDocument and _DeliveryItem.DeliveryDocumentItem = _DlvDocItemExtension.DeliveryDocumentItem
[0..1] E_FldLogsSupplierItem _SuplritemExtension _SupItem.FldLogsSuplrItemUUID = _SuplritemExtension.FldLogsSuplrItemUUID

Annotations (11)

NameValueLevelField
AbapCatalog.sqlViewName CFLDLOGSEXTEN view
AbapCatalog.compiler.compareFilter true view
AbapCatalog.preserveKey true view
AccessControl.authorizationCheck #CHECK view
VDM.viewType #CONSUMPTION view
AccessControl.personalData.blocking #REQUIRED view
ClientHandling.algorithm #SESSION_VARIABLE view
EndUserText.label Consumption For Extensibility view
ObjectModel.usageType.serviceQuality #C view
ObjectModel.usageType.dataClass #TRANSACTIONAL view
ObjectModel.usageType.sizeCategory #L view

Fields (5)

KeyFieldSource TableSource FieldDescription
KEY PurchasingDocument I_PurchasingDocumentItem PurchasingDocument Purchasing Document
KEY PurchasingDocumentItem I_PurchasingDocumentItem PurchasingDocumentItem Purchasing Doc. Item
KEY DeliveryDocument
KEY DeliveryDocumentItem
LongTextIDText Information

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 C_FldLogsProcRcptCstmFldExtn.
-- 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: CFLDLOGSEXTEN

CREATE VIEW C_FldLogsProcRcptCstmFldExtn AS
SELECT
  _PurdocItem.PurchasingDocument AS PurchasingDocument,
  _PurdocItem.PurchasingDocumentItem AS PurchasingDocumentItem,
  coalesce(ltrim(_DeliveryItem.DeliveryDocument, '0'), '') AS DeliveryDocument,
  coalesce(_DeliveryItem.DeliveryDocumentItem, '000000') AS DeliveryDocumentItem,
  cast( 'AA' as char200) AS LongTextIDText
FROM I_PurchasingDocumentItem AS _PurdocItem
LEFT OUTER JOIN E_PurchasingDocumentItem AS _PurDocItemExtension ON PurchasingDocument = _PurDocItemExtension.PurchasingDocument AND PurchasingDocumentItem = _PurDocItemExtension.PurchasingDocumentItem  -- association [0..1]
LEFT OUTER JOIN E_DeliveryDocumentItem AS _DlvDocItemExtension ON _DeliveryItem.DeliveryDocument = _DlvDocItemExtension.DeliveryDocument AND _DeliveryItem.DeliveryDocumentItem = _DlvDocItemExtension.DeliveryDocumentItem  -- association [0..1]
LEFT OUTER JOIN E_FldLogsSupplierItem AS _SuplritemExtension ON _SupItem.FldLogsSuplrItemUUID = _SuplritemExtension.FldLogsSuplrItemUUID  -- association [0..1]
;