/APE/A_TransBOHeader

DDL: /APE/A_TRANSBOHEADER Type: view CONSUMPTION

Business Object Header

/APE/A_TransBOHeader is a Consumption CDS View that provides data about "Business Object Header" in SAP S/4HANA. It reads from 1 data source (/APE/I_TransBOHeader_TP) and exposes 20 fields with key field bo_uuid. It has 4 associations to related views.

Data Sources (1)

SourceAliasJoin Type
/APE/I_TransBOHeader_TP /APE/I_TransBOHeader_TP from

Associations (4)

CardinalityTargetAliasCondition
[1..1] /APE/A_TransactionService _trans_header $projection.trans_uuid = _trans_header.trans_uuid
[0..*] /APE/A_TransBOIdentify _bo_id $projection.bo_uuid = _bo_id.bo_uuid
[0..*] /APE/A_TransBOData _bo_data $projection.bo_uuid = _bo_data.bo_uuid
[0..*] /APE/A_TransBORelation _bo_rel $projection.bo_uuid = _bo_rel.bo_uuid

Annotations (12)

NameValueLevelField
AbapCatalog.sqlViewName /APE/A_TRBO view
AbapCatalog.compiler.compareFilter true view
AccessControl.authorizationCheck #MANDATORY view
ObjectModel.transactionalProcessingDelegated true view
ObjectModel.createEnabled true view
ObjectModel.updateEnabled true view
ObjectModel.usageType.serviceQuality #B view
ObjectModel.usageType.sizeCategory #XXL view
ObjectModel.usageType.dataClass #TRANSACTIONAL view
EndUserText.label Business Object Header view
Metadata.ignorePropagatedAnnotations true view
VDM.viewType #CONSUMPTION view

Fields (20)

KeyFieldSource TableSource FieldDescription
KEY bo_uuid db_key UUID
trans_uuid parent_key UUID
bo_ext_uuid bo_ext_uuid
bo_status bo_status
operation operation Transaction
com_acc_uuid com_acc_uuid
proc_cluster proc_cluster
tech_msg_id tech_msg_id
bus_msg_id bus_msg_id
response_cat response_cat
user_uuid user_uuid
blocked blocked Complaint Locked
client_uuid client_uuid
trans_direct trans_direct
sender_id sender_id Statement Sender ID
receiver_id receiver_id Recipient
auth_grp auth_grp AuthorizGroup
_bo_id _bo_id
_bo_data _bo_data
_bo_rel _bo_rel

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/A_TransBOHeader.
-- 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/A_TransBOHeader AS
SELECT
  db_key AS bo_uuid,
  parent_key AS trans_uuid,
  bo_ext_uuid,
  bo_status,
  operation,
  com_acc_uuid,
  proc_cluster,
  tech_msg_id,
  bus_msg_id,
  response_cat,
  user_uuid,
  blocked,
  client_uuid,
  trans_direct,
  sender_id,
  receiver_id,
  auth_grp
FROM /APE/I_TransBOHeader_TP
LEFT OUTER JOIN /APE/A_TransactionService AS _trans_header ON trans_uuid = _trans_header.trans_uuid  -- association [1..1]
LEFT OUTER JOIN /APE/A_TransBOIdentify AS _bo_id ON bo_uuid = _bo_id.bo_uuid  -- association [0..*]
LEFT OUTER JOIN /APE/A_TransBOData AS _bo_data ON bo_uuid = _bo_data.bo_uuid  -- association [0..*]
LEFT OUTER JOIN /APE/A_TransBORelation AS _bo_rel ON bo_uuid = _bo_rel.bo_uuid  -- association [0..*]
;