I_JntIntrstBillgSubclass

DDL: I_JNTINTRSTBILLGSUBCLASS SQL: IJIBSUBCL Type: view BASIC Package: GJVA

Joint Interest Billing Subclass

I_JntIntrstBillgSubclass is a Basic CDS View (Dimension) that provides data about "Joint Interest Billing Subclass" in SAP S/4HANA. It reads from 1 data source (t8j6c) and exposes 6 fields with key fields CompanyCode, JntIntrstBillgClass, JntIntrstBillgSubClass. It has 3 associations to related views. It is exposed through 2 OData services (ASQL_F3516, ASQL_F4011). Part of development package GJVA.

Data Sources (1)

SourceAliasJoin Type
t8j6c t8j6c from

Associations (3)

CardinalityTargetAliasCondition
[0..1] I_CompanyCode _CompanyCode $projection.CompanyCode = _CompanyCode.CompanyCode
[1..1] I_JntIntrstBillgClass _JntIntrstBillgClass $projection.CompanyCode = _JntIntrstBillgClass.CompanyCode and $projection.JntIntrstBillgClass = _JntIntrstBillgClass.JntIntrstBillgClass
[0..*] I_JntIntrstBillgSubclassT _JntIntrstBillgSubclassT $projection.CompanyCode = _JntIntrstBillgSubclassT.CompanyCode and $projection.JntIntrstBillgClass = _JntIntrstBillgSubclassT.JntIntrstBillgClass and $projection.JntIntrstBillgSubClass = _JntIntrstBillgSubclassT.JntIntrstBillgSubClass

Annotations (14)

NameValueLevelField
AbapCatalog.sqlViewName IJIBSUBCL view
AbapCatalog.compiler.compareFilter true view
AbapCatalog.preserveKey true view
AccessControl.authorizationCheck #CHECK view
ClientHandling.algorithm #SESSION_VARIABLE view
Analytics.dataCategory #DIMENSION view
Analytics.internalName #LOCAL view
Metadata.allowExtensions true view
VDM.viewType #BASIC view
ObjectModel.representativeKey JntIntrstBillgSubClass view
ObjectModel.usageType.dataClass #CUSTOMIZING view
ObjectModel.usageType.sizeCategory #S view
ObjectModel.usageType.serviceQuality #A view
EndUserText.label Joint Interest Billing Subclass view

OData Services (2)

ServiceBindingVersionContractRelease
ASQL_F3516 ASQL_F3516 C2 NOT_RELEASED
ASQL_F4011 ASQL_F4011 C2 NOT_RELEASED

Fields (6)

KeyFieldSource TableSource FieldDescription
KEY CompanyCode bukrs Value
KEY JntIntrstBillgClass class User Group
KEY JntIntrstBillgSubClass subclass Subclass
_CompanyCode _CompanyCode
_JntIntrstBillgClass _JntIntrstBillgClass
_JntIntrstBillgSubclassT _JntIntrstBillgSubclassT

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_JntIntrstBillgSubclass.
-- 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: IJIBSUBCL

CREATE VIEW I_JntIntrstBillgSubclass AS
SELECT
  bukrs AS CompanyCode,
  class AS JntIntrstBillgClass,
  subclass AS JntIntrstBillgSubClass
FROM t8j6c
LEFT OUTER JOIN I_CompanyCode AS _CompanyCode ON CompanyCode = _CompanyCode.CompanyCode  -- association [0..1]
LEFT OUTER JOIN I_JntIntrstBillgClass AS _JntIntrstBillgClass ON CompanyCode = _JntIntrstBillgClass.CompanyCode AND JntIntrstBillgClass = _JntIntrstBillgClass.JntIntrstBillgClass  -- association [1..1]
LEFT OUTER JOIN I_JntIntrstBillgSubclassT AS _JntIntrstBillgSubclassT ON CompanyCode = _JntIntrstBillgSubclassT.CompanyCode AND JntIntrstBillgClass = _JntIntrstBillgSubclassT.JntIntrstBillgClass AND JntIntrstBillgSubClass = _JntIntrstBillgSubclassT.JntIntrstBillgSubClass  -- association [0..*]
;