I_BR_CostObjectText

DDL: I_BR_COSTOBJECTTEXT SQL: IBRCOSTOBJTEXT Type: view BASIC

Brazil Cost Object Text

I_BR_CostObjectText is a Basic CDS View that provides data about "Brazil Cost Object Text" in SAP S/4HANA. It reads from 1 data source (ckpht) and exposes 4 fields with key fields CostObject, ValidityEndDate, LanguageCode.

Data Sources (1)

SourceAliasJoin Type
ckpht CostObjectText from

Annotations (10)

NameValueLevelField
AbapCatalog.sqlViewName IBRCOSTOBJTEXT view
AbapCatalog.compiler.compareFilter true view
AccessControl.authorizationCheck #NOT_REQUIRED view
EndUserText.label Brazil Cost Object Text view
VDM.viewType #BASIC view
ObjectModel.usageType.dataClass #MIXED view
ObjectModel.usageType.serviceQuality #C view
ObjectModel.usageType.sizeCategory #S view
ClientHandling.algorithm #SESSION_VARIABLE view
AbapCatalog.preserveKey true view

Fields (4)

KeyFieldSource TableSource FieldDescription
KEY CostObject ckpht kstrg Cost Objects
KEY ValidityEndDate ckpht datbi Validity period
KEY LanguageCode ckpht spras Off. Language
CostObjectDesc

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 I_BR_CostObjectText.
-- 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: IBRCOSTOBJTEXT

CREATE VIEW I_BR_CostObjectText AS
SELECT
  CostObjectText.kstrg AS CostObject,
  CostObjectText.datbi AS ValidityEndDate,
  CostObjectText.spras AS LanguageCode,
  cast(CostObjectText.ktext as logbr_costobject) AS CostObjectDesc
FROM ckpht AS CostObjectText
;