I_JntIntrstBillgClassText
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. Part of development package GJVA.
Data Sources (1)
| Source | Alias | Join Type |
|---|---|---|
| t8j6b | t1 | from |
Associations (3)
| Cardinality | Target | Alias | Condition |
|---|---|---|---|
| [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)
| Name | Value | Level | Field |
|---|---|---|---|
| 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 |
@AbapCatalog.sqlViewName: 'IJIBCLT'
@AbapCatalog.compiler.compareFilter: true
@AbapCatalog.preserveKey:true
@AccessControl.authorizationCheck: #CHECK
@EndUserText.label: 'Joint Interest Billing Class - Text'
@VDM.viewType: #BASIC
@ObjectModel:{
usageType.dataClass: #MASTER,
usageType.sizeCategory: #S,
usageType.serviceQuality: #D,
dataCategory: #TEXT }
@ClientHandling.algorithm: #SESSION_VARIABLE
@ObjectModel.representativeKey: 'JntIntrstBillgClass'
define view I_JntIntrstBillgClassText
as select from t8j6b as t1
association [0..1] to I_Language as _Language on $projection.Language = _Language.Language
association [0..1] to I_CompanyCode as _CompanyCode on $projection.CompanyCode = _CompanyCode.CompanyCode
association [1..1] to I_JntIntrstBillgClass as _JntIntrstBillgClass on $projection.JntIntrstBillgClass = _JntIntrstBillgClass.JntIntrstBillgClass
and $projection.CompanyCode = _JntIntrstBillgClass.CompanyCode
{
@ObjectModel.foreignKey.association: '_CompanyCode'
key t1.bukrs as CompanyCode,
@ObjectModel.foreignKey.association: '_Language'
@Semantics.language
key t1.spras as Language,
@ObjectModel.text.element: 'JntIntrstBillgClassText'
key t1.class as JntIntrstBillgClass,
@Semantics.text: true
t1.ctext as JntIntrstBillgClassText,
_Language,
_CompanyCode,
_JntIntrstBillgClass
}
Learn More
- What Is a CDS View in SAP S/4HANA?
- Types of CDS Views: Basic, Composite, Consumption, and Transactional
- SAP Tables vs CDS Views — Key Differences
- Understanding Data Lineage in SAP S/4HANA
- VDM (Virtual Data Model) in SAP S/4HANA Explained
- CDS View Annotations — A Complete Guide
- CDS View Field Mapping and Associations
- Understanding the SAP S/4HANA Data Model
- CDS View Extensions and Custom Fields in SAP S/4HANA
- Released APIs and Stability Contracts in SAP S/4HANA