I_JntIntrstBillgClassText

DDL: I_JNTINTRSTBILLGCLASSTEXT SQL: IJIBCLT Type: view BASIC

Joint Interest Billing Class - Text

I_JntIntrstBillgClassText is a Basic CDS View that provides data about "Joint Interest Billing Class - Text" in SAP S/4HANA. It reads from 1 data source (t8j6b) and exposes 7 fields with key fields CompanyCode, Language, JntIntrstBillgClass. It has 3 associations to related views.

Data Sources (1)

SourceAliasJoin Type
t8j6b t1 from

Associations (3)

CardinalityTargetAliasCondition
[0..1] I_Language _Language $projection.Language = _Language.Language
[0..1] I_CompanyCode _CompanyCode $projection.CompanyCode = _CompanyCode.CompanyCode
[1..1] I_JntIntrstBillgClass _JntIntrstBillgClass $projection.JntIntrstBillgClass = _JntIntrstBillgClass.JntIntrstBillgClass and $projection.CompanyCode = _JntIntrstBillgClass.CompanyCode

Annotations (12)

NameValueLevelField
AbapCatalog.sqlViewName IJIBCLT view
AbapCatalog.compiler.compareFilter true view
AbapCatalog.preserveKey true view
AccessControl.authorizationCheck #CHECK view
EndUserText.label Joint Interest Billing Class - Text view
VDM.viewType #BASIC view
ObjectModel.usageType.dataClass #MASTER view
ObjectModel.usageType.sizeCategory #S view
ObjectModel.usageType.serviceQuality #D view
ObjectModel.dataCategory #TEXT view
ClientHandling.algorithm #SESSION_VARIABLE view
ObjectModel.representativeKey JntIntrstBillgClass view

Fields (7)

KeyFieldSource TableSource FieldDescription
KEY CompanyCode t8j6b bukrs Value
KEY Language t8j6b spras Off. Language
KEY JntIntrstBillgClass t8j6b class User Group
JntIntrstBillgClassText t8j6b ctext Text
_Language _Language
_CompanyCode _CompanyCode
_JntIntrstBillgClass _JntIntrstBillgClass

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_JntIntrstBillgClassText.
-- 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: IJIBCLT

CREATE VIEW I_JntIntrstBillgClassText AS
SELECT
  t1.bukrs AS CompanyCode,
  t1.spras AS Language,
  t1.class AS JntIntrstBillgClass,
  t1.ctext AS JntIntrstBillgClassText
FROM t8j6b AS t1
LEFT OUTER JOIN I_Language AS _Language ON Language = _Language.Language  -- association [0..1]
LEFT OUTER JOIN I_CompanyCode AS _CompanyCode ON CompanyCode = _CompanyCode.CompanyCode  -- association [0..1]
LEFT OUTER JOIN I_JntIntrstBillgClass AS _JntIntrstBillgClass ON JntIntrstBillgClass = _JntIntrstBillgClass.JntIntrstBillgClass AND CompanyCode = _JntIntrstBillgClass.CompanyCode  -- association [1..1]
;