/APE/C_ArchiveDocLink

DDL: /APE/C_ARCHIVEDOCLINK SQL: /APE/C_ARDOCLINK Type: view CONSUMPTION

Archiving Document Linkage

/APE/C_ArchiveDocLink is a Consumption CDS View that provides data about "Archiving Document Linkage" in SAP S/4HANA. It reads from 1 data source (/APE/I_ArchiveDocLink) and exposes 5 fields with key fields link_uuid, doc_uuid. It has 1 association to related views.

Data Sources (1)

SourceAliasJoin Type
/APE/I_ArchiveDocLink /APE/I_ArchiveDocLink from

Associations (1)

CardinalityTargetAliasCondition
[0..1] /APE/C_ArchiveDoc _ArchDoc _ArchDoc.doc_uuid = $projection.doc_uuid

Annotations (8)

NameValueLevelField
AbapCatalog.sqlViewName /APE/C_ARDOCLINK view
AbapCatalog.compiler.compareFilter true view
AccessControl.authorizationCheck #MANDATORY view
EndUserText.label Archiving Document Linkage view
ObjectModel.usageType.serviceQuality #A view
ObjectModel.usageType.sizeCategory #L view
ObjectModel.usageType.dataClass #TRANSACTIONAL view
VDM.viewType #CONSUMPTION view

Fields (5)

KeyFieldSource TableSource FieldDescription
KEY link_uuid link_uuid UUID
KEY doc_uuid doc_uuid UUID
arch_uuid arch_uuid
link_type link_type Type of URL
_ArchDoc _ArchDoc

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_ArchiveDocLink.
-- 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_ARDOCLINK

CREATE VIEW /APE/C_ArchiveDocLink AS
SELECT
  link_uuid,
  doc_uuid,
  arch_uuid,
  link_type
FROM /APE/I_ArchiveDocLink
LEFT OUTER JOIN /APE/C_ArchiveDoc AS _ArchDoc ON _ArchDoc.doc_uuid = doc_uuid  -- association [0..1]
;