/APE/A_TransDocLink

DDL: /APE/A_TRANSDOCLINK Type: view_entity CONSUMPTION

Transfer Document Links

/APE/A_TransDocLink is a Consumption CDS View that provides data about "Transfer Document Links" in SAP S/4HANA. It reads from 1 data source (/APE/R_TransDocLink_Tp) and exposes 6 fields with key fields TransLinkKey, TransferKey.

Data Sources (1)

SourceAliasJoin Type
/APE/R_TransDocLink_Tp /APE/R_TransDocLink_Tp projection

Annotations (8)

NameValueLevelField
AccessControl.authorizationCheck #NOT_REQUIRED view
EndUserText.label Transfer Document Links view
OData.entityType.name Trans Doc Links view
ObjectModel.usageType.serviceQuality #C view
ObjectModel.usageType.sizeCategory #XXL view
ObjectModel.usageType.dataClass #MIXED view
VDM.viewType #CONSUMPTION view
Metadata.ignorePropagatedAnnotations true view

Fields (6)

KeyFieldSource TableSource FieldDescription
KEY TransLinkKey db_key UUID
KEY TransferKey parent_key UUID
BoTypeUuid bo_type_uuid
BoUuid bo_uuid
BoType bo_type SOT Name
_TransDocredirectedtoparentAPEA_TransDoc

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 /APE/A_TransDocLink.
-- 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 /APE/A_TransDocLink AS
SELECT
  db_key AS TransLinkKey,
  parent_key AS TransferKey,
  bo_type_uuid AS BoTypeUuid,
  bo_uuid AS BoUuid,
  bo_type AS BoType
FROM /APE/R_TransDocLink_Tp
;