I_CABllbleItmClassGnrtdObjects

DDL: I_CABLLBLEITMCLASSGNRTDOBJECTS Type: view_entity BASIC

Gen. Obj. für Klasse abrechenbarer Pos.

I_CABllbleItmClassGnrtdObjects is a Basic CDS View that provides data about "Gen. Obj. für Klasse abrechenbarer Pos." in SAP S/4HANA. It reads from 1 data source (dfkkbixbit_genob) and exposes 8 fields with key fields CABllbleItmClass, ABAPObjectCategory, ABAPObjectType, ABAPObject. It has 1 association to related views.

Data Sources (1)

SourceAliasJoin Type
dfkkbixbit_genob dfkkbixbit_genob from

Associations (1)

CardinalityTargetAliasCondition
[0..1] I_CABllbleItmRecordType _CABllbleItmRecordType _CABllbleItmRecordType.CABllbleItmRecordType = $projection.CABllbleItmRecordType

Annotations (8)

NameValueLevelField
AccessControl.authorizationCheck #NOT_REQUIRED view
EndUserText.label Gen. Obj. für Klasse abrechenbarer Pos. view
ObjectModel.representativeKey CABllbleItmClass view
Analytics.technicalName ICABITCATGENOB view
ObjectModel.usageType.dataClass #TRANSACTIONAL view
ObjectModel.usageType.serviceQuality #A view
ObjectModel.usageType.sizeCategory #S view
VDM.viewType #BASIC view

Fields (8)

KeyFieldSource TableSource FieldDescription
KEY CABllbleItmClass dfkkbixbit_genob bitcat Class
KEY ABAPObjectCategory dfkkbixbit_genob pgmid Program Name
KEY ABAPObjectType dfkkbixbit_genob obj_type Type
KEY ABAPObject
CABllbleItmRecordType dfkkbixbit_genob bitrectype Record Type
CABllbleItmObjectType dfkkbixbit_genob bit_obj_type Int.Object Type
CABllbleItmStatus dfkkbixbit_genob bitstatus Status
_CABllbleItmRecordType _CABllbleItmRecordType

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_CABllbleItmClassGnrtdObjects.
-- 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 I_CABllbleItmClassGnrtdObjects AS
SELECT
  dfkkbixbit_genob.bitcat AS CABllbleItmClass,
  dfkkbixbit_genob.pgmid AS ABAPObjectCategory,
  dfkkbixbit_genob.obj_type AS ABAPObjectType,
  cast( dfkkbixbit_genob.obj_name as sobj_name ) AS ABAPObject,
  dfkkbixbit_genob.bitrectype AS CABllbleItmRecordType,
  dfkkbixbit_genob.bit_obj_type AS CABllbleItmObjectType,
  dfkkbixbit_genob.bitstatus AS CABllbleItmStatus
FROM dfkkbixbit_genob
LEFT OUTER JOIN I_CABllbleItmRecordType AS _CABllbleItmRecordType ON _CABllbleItmRecordType.CABllbleItmRecordType = CABllbleItmRecordType  -- association [0..1]
;