I_FldLogsRstrcdItmIntegration

DDL: I_FLDLOGSRSTRCDITMINTEGRATION Type: view_entity COMPOSITE

Restricted Item Integration in FL

I_FldLogsRstrcdItmIntegration is a Composite CDS View that provides data about "Restricted Item Integration in FL" in SAP S/4HANA.

Annotations (7)

NameValueLevelField
VDM.viewType #COMPOSITE view
AccessControl.authorizationCheck #MANDATORY view
EndUserText.label Restricted Item Integration in FL view
Metadata.ignorePropagatedAnnotations true view
ObjectModel.usageType.serviceQuality #C view
ObjectModel.usageType.sizeCategory #XL view
ObjectModel.usageType.dataClass #TRANSACTIONAL view

Fields (5)

KeyFieldSource TableSource FieldDescription
KEY FldLogsRstrcdItmRefDocType FldLogsRstrcdItmRefDocType
KEY FldLogsRstrcdItmRefDocNmbr FldLogsRstrcdItmRefDocNmbr
FldLogsItemIsRestricted
CreatedOnDateTime
LastChangeDateTime

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 I_FldLogsRstrcdItmIntegration.
-- 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 I_FldLogsRstrcdItmIntegration AS
SELECT
  FldLogsRstrcdItmRefDocType,
  FldLogsRstrcdItmRefDocNmbr,
  cast( 'X' as boolean ) AS FldLogsItemIsRestricted,
  max(CreatedOnDateTime) AS CreatedOnDateTime,
  max(LastChangeDateTime) AS LastChangeDateTime
;