/APE/C_BOCodeTP_C

DDL: /APE/C_BOCODETP_C Type: view_entity CONSUMPTION

Business Object Response Code

/APE/C_BOCodeTP_C is a Consumption CDS View that provides data about "Business Object Response Code" in SAP S/4HANA. It reads from 1 data source (/APE/I_BOCodeTP_C) and exposes 10 fields with key field BusinessObjectCodeKey. It has 1 association to related views.

Data Sources (1)

SourceAliasJoin Type
/APE/I_BOCodeTP_C /APE/I_BOCodeTP_C projection

Associations (1)

CardinalityTargetAliasCondition
[0..*] /APE/C_WhereUsed_UI _WhereUsed _WhereUsed.ConfigurationUUID = $projection.BusinessObjectCodeKey

Annotations (7)

NameValueLevelField
AccessControl.authorizationCheck #NOT_REQUIRED view
EndUserText.label Business Object Response Code view
Metadata.allowExtensions true view
VDM.viewType #CONSUMPTION view
ObjectModel.usageType.serviceQuality #B view
ObjectModel.usageType.sizeCategory #M view
ObjectModel.usageType.dataClass #CUSTOMIZING view

Fields (10)

KeyFieldSource TableSource FieldDescription
KEY BusinessObjectCodeKey config_key Char
BusinessObjectDataModelKey ape_parent_key
BusinessObjectCode bo_code
BusinessObjectCodeGroup bo_code_group
TextasBOJCodeGroupTextlocalized
BOCodeCategory bo_code_category
AssociatedBOCodeUUID assoc_bocode_uuid
AssociatedBOCode assoc_bo_code
AssociatedBOCodeGroup assoc_bo_code_group
_WhereUsed _WhereUsed

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_BOCodeTP_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/C_BOCodeTP_C AS
SELECT
  config_key AS BusinessObjectCodeKey,
  ape_parent_key AS BusinessObjectDataModelKey,
  bo_code AS BusinessObjectCode,
  bo_code_group AS BusinessObjectCodeGroup,
  _BOCodeStrategyText.Text as BOJCodeGroupText : localized AS TextasBOJCodeGroupTextlocalized,
  bo_code_category AS BOCodeCategory,
  assoc_bocode_uuid AS AssociatedBOCodeUUID,
  assoc_bo_code AS AssociatedBOCode,
  assoc_bo_code_group AS AssociatedBOCodeGroup
FROM /APE/I_BOCodeTP_C
LEFT OUTER JOIN /APE/C_WhereUsed_UI AS _WhereUsed ON _WhereUsed.ConfigurationUUID = BusinessObjectCodeKey  -- association [0..*]
;