/APE/I_TransferLinkTP

DDL: /APE/I_TRANSFERLINKTP Type: view_entity CONSUMPTION

Linked Documents

/APE/I_TransferLinkTP is a Consumption CDS View that provides data about "Linked Documents" in SAP S/4HANA. It reads from 1 data source (/APE/R_TransferLinkTP) and exposes 26 fields with key fields TransLinkKey, TransferDocumentKey.

Data Sources (1)

SourceAliasJoin Type
/APE/R_TransferLinkTP /APE/R_TransferLinkTP projection

Annotations (8)

NameValueLevelField
EndUserText.label Linked Documents view
AccessControl.authorizationCheck #MANDATORY view
ObjectModel.usageType.serviceQuality #C view
ObjectModel.usageType.sizeCategory #XXL view
ObjectModel.usageType.dataClass #MIXED view
VDM.viewType #CONSUMPTION view
Metadata.allowExtensions true view
Metadata.ignorePropagatedAnnotations true view

Fields (26)

KeyFieldSource TableSource FieldDescription
KEY TransLinkKey db_key UUID
KEY TransferDocumentKey parent_key UUID
bo_type_uuid bo_type_uuid
BusinessObjectKey bo_uuid
BusinessObjectType bo_type SOT Name
created_at created_at Uploaded On
char32
virtualDocumentStatusapede_trans_status
char60
int1
char200
virtualDocTimestamptimestamp
char30
virtualExtUUIDapede_trans_uuid_ext
char30
int1
client_uuid _TransDoc client_uuid
auth_grp _TransDoc auth_grp AuthorizGroup
trans_direct _TransDoc trans_direct
sender_id _TransDoc sender_id Statement Sender ID
receiver_id _TransDoc receiver_id Recipient
SemanticAction _BOType semantic_action Semantic Action
SemanticObject _BOType semantic_object Semantic Object
KeyFieldName _BOType object_key_name
BusinessObjectTypeDescription _BOTypeText description Well Code Des.
_BOType _BOType

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/I_TransferLinkTP.
-- 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/I_TransferLinkTP AS
SELECT
  db_key AS TransLinkKey,
  parent_key AS TransferDocumentKey,
  bo_type_uuid,
  bo_uuid AS BusinessObjectKey,
  bo_type AS BusinessObjectType,
  created_at,
  virtual LinkedDocumentNumber : abap.char( 32 ) AS char32,
  virtual DocumentStatus : /ape/de_trans_status AS virtualDocumentStatusapede_trans_status,
  virtual DocumentStatusDescription : abap.char( 60 ) AS char60,
  virtual DocumentStatusCriticality : abap.int1 AS int1,
  virtual BusinessType : abap.char( 200 ) AS char200,
  virtual DocTimestamp : timestamp AS virtualDocTimestamptimestamp,
  virtual Direction : abap.char( 30 ) AS char30,
  virtual ExtUUID : /ape/de_trans_uuid_ext AS virtualExtUUIDapede_trans_uuid_ext,
  _TransDoc.client_uuid AS client_uuid,
  _TransDoc.auth_grp AS auth_grp,
  _TransDoc.trans_direct AS trans_direct,
  _TransDoc.sender_id AS sender_id,
  _TransDoc.receiver_id AS receiver_id,
  _BOType.semantic_action AS SemanticAction,
  _BOType.semantic_object AS SemanticObject,
  _BOType.object_key_name AS KeyFieldName,
  _BOTypeText.description AS BusinessObjectTypeDescription
FROM /APE/R_TransferLinkTP
;