/APE/C_TransLink_UI

DDL: /APE/C_TRANSLINK_UI Type: view CONSUMPTION

Link Documents of Transfer Document

/APE/C_TransLink_UI is a Consumption CDS View that provides data about "Link Documents of Transfer Document" in SAP S/4HANA. It reads from 1 data source (/APE/I_TransLink_TP) and exposes 20 fields with key field TransLinkKey. It has 3 associations to related views.

Data Sources (1)

SourceAliasJoin Type
/APE/I_TransLink_TP /APE/I_TransLink_TP from

Associations (3)

CardinalityTargetAliasCondition
[0..1] /APE/C_BOType _BOType _BOType.config_key = /APE/I_TransLink_TP.bo_type_uuid
[0..1] /APE/C_BusObjTypeText _BOTypeText _BOTypeText.ape_parent_key = /APE/I_TransLink_TP.bo_type_uuid and _BOTypeText.language = $session.system_language
[0..1] /APE/C_BusObjTypeText _BOTypeTextEN _BOTypeTextEN.ape_parent_key = /APE/I_TransLink_TP.bo_type_uuid and _BOTypeTextEN.language = 'E'

Annotations (13)

NameValueLevelField
AbapCatalog.sqlViewName /APE/C_TRLKUI view
AbapCatalog.compiler.compareFilter true view
AccessControl.authorizationCheck #NOT_REQUIRED view
EndUserText.label Link Documents of Transfer Document view
VDM.viewType #CONSUMPTION view
ObjectModel.createEnabled false view
ObjectModel.deleteEnabled false view
ObjectModel.updateEnabled false view
ObjectModel.draftEnabled false view
ObjectModel.usageType.serviceQuality #C view
ObjectModel.usageType.sizeCategory #XXL view
ObjectModel.usageType.dataClass #MIXED view
Metadata.allowExtensions true view

Fields (20)

KeyFieldSource TableSource FieldDescription
KEY TransLinkKey db_key UUID
TransferDocumentKey parent_key UUID
BusinessObjectType _BOType bo_type SOT Name
BusinessObjectKey bo_uuid
LinkedDocumentKey
LinkedDocumentNumber
DocumentStatus
DocumentStatusDescription
DocumentStatusCriticality 0
BusinessType
DocTimestamp
Direction
ExtUUID
MessageCategory
MessageCategoryCriticality 0
created_at created_at Uploaded On
SemanticAction _BOType semantic_action Semantic Action
SemanticObject _BOType semantic_object Semantic Object
KeyFieldName _BOType object_key_name
BusinessObjectTypeDescription

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_TransLink_UI.
-- 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/C_TransLink_UI AS
SELECT
  db_key AS TransLinkKey,
  parent_key AS TransferDocumentKey,
  _BOType.bo_type AS BusinessObjectType,
  bo_uuid AS BusinessObjectKey,
  cast('' as /ape/de_bo_uuid_ext) AS LinkedDocumentKey,
  cast('' as abap.char( 32 )) AS LinkedDocumentNumber,
  cast('' as /ape/de_trans_status) AS DocumentStatus,
  cast('' as abap.char( 60 )) AS DocumentStatusDescription,
  0 AS DocumentStatusCriticality,
  cast('' as abap.char( 200 )) AS BusinessType,
  cast(1 as timestamp ) AS DocTimestamp,
  cast('' as abap.char( 30 ) ) AS Direction,
  cast('' as /ape/de_trans_uuid_ext ) AS ExtUUID,
  cast('' as abap.char( 30 ) ) AS MessageCategory,
  0 AS MessageCategoryCriticality,
  created_at,
  _BOType.semantic_action AS SemanticAction,
  _BOType.semantic_object AS SemanticObject,
  _BOType.object_key_name AS KeyFieldName,
  coalesce( _BOTypeText.description, _BOTypeTextEN.description ) AS BusinessObjectTypeDescription
FROM /APE/I_TransLink_TP
LEFT OUTER JOIN /APE/C_BOType AS _BOType ON _BOType.config_key = /APE/I_TransLink_TP.bo_type_uuid  -- association [0..1]
LEFT OUTER JOIN /APE/C_BusObjTypeText AS _BOTypeText ON _BOTypeText.ape_parent_key = /APE/I_TransLink_TP.bo_type_uuid AND _BOTypeText.language = $session.system_language  -- association [0..1]
LEFT OUTER JOIN /APE/C_BusObjTypeText AS _BOTypeTextEN ON _BOTypeTextEN.ape_parent_key = /APE/I_TransLink_TP.bo_type_uuid AND _BOTypeTextEN.language = 'E'  -- association [0..1]
;