/APE/I_BusMsgIDAssignTP_C

DDL: /APE/I_BUSMSGIDASSIGNTP_C Type: view_entity TRANSACTIONAL

Assign of Business Message ID for C

/APE/I_BusMsgIDAssignTP_C is a Transactional CDS View that provides data about "Assign of Business Message ID for C" in SAP S/4HANA. It reads from 1 data source (/APE/I_BusMsgIDAssign_C) and exposes 10 fields with key field config_key. It has 2 associations to related views.

Data Sources (1)

SourceAliasJoin Type
/APE/I_BusMsgIDAssign_C /APE/I_BusMsgIDAssign_C from

Associations (2)

CardinalityTargetAliasCondition
[1..1] /APE/I_BOTypeTP_C _BusObjType $projection.bo_type_uuid = _BusObjType.config_key
[0..*] /APE/I_BOTypeTextTP_C _BusObjTypeText $projection.bo_type_uuid = _BusObjTypeText.ape_parent_key

Annotations (7)

NameValueLevelField
AccessControl.authorizationCheck #NOT_REQUIRED view
EndUserText.label Assign of Business Message ID for C view
Metadata.ignorePropagatedAnnotations true view
ObjectModel.usageType.serviceQuality #A view
ObjectModel.usageType.sizeCategory #S view
ObjectModel.usageType.dataClass #CUSTOMIZING view
VDM.viewType #TRANSACTIONAL view

Fields (10)

KeyFieldSource TableSource FieldDescription
KEY config_key config_key Char
seq_no seq_no Value Number
bo_type_uuid bo_type_uuid
bo_type _BusObjType bo_type SOT Name
created_at_ created_at_
created_by_ created_by_
changed_at_ changed_at_
changed_by_ changed_by_
_BusMsgID _BusMsgID
_BusObjTypeText _BusObjTypeText

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_BusMsgIDAssignTP_C.
-- 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_BusMsgIDAssignTP_C AS
SELECT
  config_key,
  seq_no,
  bo_type_uuid,
  _BusObjType.bo_type AS bo_type,
  created_at_,
  created_by_,
  changed_at_,
  changed_by_
FROM /APE/I_BusMsgIDAssign_C
LEFT OUTER JOIN /APE/I_BOTypeTP_C AS _BusObjType ON bo_type_uuid = _BusObjType.config_key  -- association [1..1]
LEFT OUTER JOIN /APE/I_BOTypeTextTP_C AS _BusObjTypeText ON bo_type_uuid = _BusObjTypeText.ape_parent_key  -- association [0..*]
;