/APE/C_ArchiveLinkedTDoc

DDL: /APE/C_ARCHIVELINKEDTDOC SQL: /APE/C_ARLKTD Type: view CONSUMPTION

Linked Archived TransDocs of PDocs

/APE/C_ArchiveLinkedTDoc is a Consumption CDS View that provides data about "Linked Archived TransDocs of PDocs" in SAP S/4HANA. It reads from 3 data sources (/APE/I_ArchiveDocLink, /APE/I_ArchiveDoc, /APE/I_ArchiveDoc) and exposes 7 fields with key fields ArchivedPDocKey, ArchivedLinkedTDocKey.

Data Sources (3)

SourceAliasJoin Type
/APE/I_ArchiveDocLink ArchiveDocLink inner
/APE/I_ArchiveDoc ArchivePDoc from
/APE/I_ArchiveDoc ArchiveTDoc inner

Annotations (8)

NameValueLevelField
AbapCatalog.sqlViewName /APE/C_ARLKTD view
AbapCatalog.compiler.compareFilter true view
AccessControl.authorizationCheck #MANDATORY view
EndUserText.label Linked Archived TransDocs of PDocs view
ObjectModel.usageType.serviceQuality #C view
ObjectModel.usageType.sizeCategory #L view
ObjectModel.usageType.dataClass #MIXED view
VDM.viewType #CONSUMPTION view

Fields (7)

KeyFieldSource TableSource FieldDescription
KEY ArchivedPDocKey /APE/I_ArchiveDoc doc_uuid UUID
KEY ArchivedLinkedTDocKey /APE/I_ArchiveDocLink linked_doc_uuid
ExternalTransferReference /APE/I_ArchiveDoc trans_uuid_ext
client_uuid /APE/I_ArchiveDoc client_uuid
doc_type /APE/I_ArchiveDoc doc_type VAT Document Type
blocked /APE/I_ArchiveDoc blocked Complaint Locked
auth_grp /APE/I_ArchiveDoc auth_grp AuthorizGroup

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/C_ArchiveLinkedTDoc.
-- 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: /APE/C_ARLKTD

CREATE VIEW /APE/C_ArchiveLinkedTDoc AS
SELECT
  ArchivePDoc.doc_uuid AS ArchivedPDocKey,
  ArchiveDocLink.linked_doc_uuid AS ArchivedLinkedTDocKey,
  ArchiveTDoc.trans_uuid_ext AS ExternalTransferReference,
  ArchivePDoc.client_uuid AS client_uuid,
  ArchivePDoc.doc_type AS doc_type,
  ArchivePDoc.blocked AS blocked,
  ArchivePDoc.auth_grp AS auth_grp
FROM /APE/I_ArchiveDoc AS ArchivePDoc
INNER JOIN /APE/I_ArchiveDocLink AS ArchiveDocLink ON /* join condition not captured in parsed metadata */
INNER JOIN /APE/I_ArchiveDoc AS ArchiveTDoc ON /* join condition not captured in parsed metadata */
;