A_ProdCmplncLogisticsDocStage

DDL: A_PRODCMPLNCLOGISTICSDOCSTAGE Type: view_entity CONSUMPTION Package: EHFND_API_ODATA_LOGISTICS_DOC

Prod Compliance Logs Document Stage

A_ProdCmplncLogisticsDocStage is a Consumption CDS View that provides data about "Prod Compliance Logs Document Stage" in SAP S/4HANA. It reads from 1 data source (R_ProdCmplncLogsDocStageTP) and exposes 7 fields with key fields ProdCmplncLogsDocumentUUID, ProdCmplncLogsDocumentStage. It is exposed through 2 OData services (API_PRODCMPLNCLOGSDOCUMENT, ASQL_F8503). Part of development package EHFND_API_ODATA_LOGISTICS_DOC.

Data Sources (1)

SourceAliasJoin Type
R_ProdCmplncLogsDocStageTP R_ProdCmplncLogsDocStageTP projection

Annotations (9)

NameValueLevelField
EndUserText.label Prod Compliance Logs Document Stage view
AccessControl.authorizationCheck #MANDATORY view
OData.entityType.name ProdCmplncLogisticsDocStage_Type view
VDM.viewType #CONSUMPTION view
VDM.lifecycle.contract.type #PUBLIC_REMOTE_API view
Metadata.ignorePropagatedAnnotations true view
ObjectModel.usageType.serviceQuality #B view
ObjectModel.usageType.sizeCategory #L view
ObjectModel.usageType.dataClass #TRANSACTIONAL view

OData Services (2)

ServiceBindingVersionContractRelease
API_PRODCMPLNCLOGSDOCUMENT API_PRODCMPLNCLOGSDOCUMENT V4 C2 Deprecated
ASQL_F8503 ASQL_F8503 C2 NOT_RELEASED

Fields (7)

KeyFieldSource TableSource FieldDescription
KEY ProdCmplncLogsDocumentUUID ProdCmplncLogsDocumentUUID Logistics Doc. UUID
KEY ProdCmplncLogsDocumentStage ProdCmplncLogsDocumentStage
LastChangeDateTime LastChangeDateTime Timestamp
DepartureCountry DepartureCountry Departure Country / Region
DestinationCountry DestinationCountry Dest. Ctry/Reg
DngrsGoodsModeOfTransport DngrsGoodsModeOfTransport Mode of Transport
DngrsGoodsModeOfTransportNamelocalized

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 A_ProdCmplncLogisticsDocStage.
-- 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 A_ProdCmplncLogisticsDocStage AS
SELECT
  ProdCmplncLogsDocumentUUID,
  ProdCmplncLogsDocumentStage,
  LastChangeDateTime,
  DepartureCountry,
  DestinationCountry,
  DngrsGoodsModeOfTransport,
  _DngrsGoodsModeOfTransport._Text.DngrsGoodsModeOfTransportName : localized AS DngrsGoodsModeOfTransportNamelocalized
FROM R_ProdCmplncLogsDocStageTP
;