I_JntVntrRecoveryIndText
Joint Venture Recovery Indicator Text
I_JntVntrRecoveryIndText is a Basic CDS View that provides data about "Joint Venture Recovery Indicator Text" in SAP S/4HANA. It reads from 1 data source (t8jjt) and exposes 7 fields with key fields CompanyCode, JointVentureRecoveryCode, Language. It has 3 associations to related views.
Data Sources (1)
| Source | Alias | Join Type |
|---|---|---|
| t8jjt | t8jjt | from |
Associations (3)
| Cardinality | Target | Alias | Condition |
|---|---|---|---|
| [0..1] | I_CompanyCode | _CompanyCode | $projection.CompanyCode = _CompanyCode.CompanyCode |
| [0..1] | I_Language | _Language | $projection.Language = _Language.Language |
| [0..1] | I_JntVntrRecoveryInd | _JntVntrRecoveryInd | $projection.JointVentureRecoveryCode = _JntVntrRecoveryInd.JointVentureRecoveryCode and $projection.CompanyCode = _JntVntrRecoveryInd.CompanyCode |
Annotations (13)
| Name | Value | Level | Field |
|---|---|---|---|
| AbapCatalog.sqlViewName | IJVRIT | view | |
| AbapCatalog.compiler.compareFilter | true | view | |
| AbapCatalog.preserveKey | true | view | |
| AccessControl.authorizationCheck | #CHECK | view | |
| EndUserText.label | Joint Venture Recovery Indicator Text | view | |
| ObjectModel.dataCategory | #TEXT | view | |
| VDM.viewType | #BASIC | view | |
| ClientHandling.algorithm | #SESSION_VARIABLE | view | |
| ObjectModel.usageType.sizeCategory | #M | view | |
| ObjectModel.usageType.serviceQuality | #C | view | |
| ObjectModel.usageType.dataClass | #CUSTOMIZING | view | |
| ObjectModel.representativeKey | JointVentureRecoveryCode | view | |
| Metadata.ignorePropagatedAnnotations | true | view |
Fields (7)
| Key | Field | Source Table | Source Field | Description |
|---|---|---|---|---|
| KEY | CompanyCode | |||
| KEY | JointVentureRecoveryCode | |||
| KEY | Language | spras | ||
| JointVentureRecoveryCodeName | ttext | |||
| _CompanyCode | _CompanyCode | |||
| _JntVntrRecoveryInd | _JntVntrRecoveryInd | |||
| _Language | _Language |
@AbapCatalog.sqlViewName: 'IJVRIT'
@AbapCatalog.compiler.compareFilter: true
@AbapCatalog.preserveKey:true
@AccessControl.authorizationCheck: #CHECK
@EndUserText.label: 'Joint Venture Recovery Indicator Text'
@ObjectModel.dataCategory: #TEXT
@VDM.viewType: #BASIC
@ClientHandling.algorithm: #SESSION_VARIABLE
@ObjectModel.usageType.sizeCategory: #M
@ObjectModel.usageType.serviceQuality: #C
@ObjectModel.usageType.dataClass: #CUSTOMIZING
@ObjectModel.representativeKey: 'JointVentureRecoveryCode'
@Metadata.ignorePropagatedAnnotations:true
define view I_JntVntrRecoveryIndText
as select from t8jjt
association [0..1] to I_CompanyCode as _CompanyCode on $projection.CompanyCode = _CompanyCode.CompanyCode
association [0..1] to I_Language as _Language on $projection.Language = _Language.Language
association [0..1] to I_JntVntrRecoveryInd as _JntVntrRecoveryInd on $projection.JointVentureRecoveryCode = _JntVntrRecoveryInd.JointVentureRecoveryCode
and $projection.CompanyCode = _JntVntrRecoveryInd.CompanyCode
{
@ObjectModel.foreignKey.association: '_CompanyCode'
key cast( bukrs as fis_bukrs preserving type ) as CompanyCode,
@ObjectModel.foreignKey.association: '_JntVntrRecoveryInd'
@ObjectModel.text.element: 'JointVentureRecoveryCodeName'
key cast( recid as jv_recind_cds preserving type ) as JointVentureRecoveryCode,
@ObjectModel.foreignKey.association: '_Language'
@Semantics.language
@UI.hidden: true
key spras as Language,
@Semantics.text:true
ttext as JointVentureRecoveryCodeName,
_CompanyCode,
_JntVntrRecoveryInd,
_Language
}
/*+[internal] {
"BASEINFO":
{
"FROM":
[
"T8JJT"
],
"ASSOCIATED":
[
"I_COMPANYCODE",
"I_JNTVNTRRECOVERYIND",
"I_LANGUAGE"
],
"BASE":
[],
"ANNO_REF":
[],
"SCALAR_FUNCTION":
[],
"VERSION":0,
"ANNOREF_EVALUATION_ERROR":""
}
}*/
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