I_LoanConditionHeaderTypeText
Loan Condition Header Type - Text
I_LoanConditionHeaderTypeText is a Basic CDS View that provides data about "Loan Condition Header Type - Text" in SAP S/4HANA. It reads from 1 data source (dd07t) and exposes 5 fields with key fields Language, LoanConditionHeaderType. It has 2 associations to related views. Part of development package FVVD_VDM.
Data Sources (1)
| Source | Alias | Join Type |
|---|---|---|
| dd07t | dd07t | from |
Associations (2)
| Cardinality | Target | Alias | Condition |
|---|---|---|---|
| [0..1] | I_Language | _Language | $projection.Language = _Language.Language |
| [0..1] | I_LoanConditionHeaderType | _LoanConditionHeaderType | $projection.LoanConditionHeaderType = _LoanConditionHeaderType.LoanConditionHeaderType |
Annotations (14)
| Name | Value | Level | Field |
|---|---|---|---|
| AbapCatalog.sqlViewName | ILCNDHDRTYPTXT | view | |
| AbapCatalog.compiler.compareFilter | true | view | |
| AbapCatalog.preserveKey | true | view | |
| AccessControl.authorizationCheck | #NOT_REQUIRED | view | |
| ObjectModel.dataCategory | #TEXT | view | |
| ObjectModel.usageType.serviceQuality | A | view | |
| ObjectModel.usageType.sizeCategory | S | view | |
| ObjectModel.usageType.dataClass | CUSTOMIZING | view | |
| ObjectModel.representativeKey | LoanConditionHeaderType | view | |
| VDM.viewType | #BASIC | view | |
| Metadata.ignorePropagatedAnnotations | true | view | |
| Analytics.dataExtraction.enabled | true | view | |
| ClientHandling.algorithm | #SESSION_VARIABLE | view | |
| EndUserText.label | Loan Condition Header Type - Text | view |
Fields (5)
| Key | Field | Source Table | Source Field | Description |
|---|---|---|---|---|
| KEY | Language | ddlanguage | ||
| KEY | LoanConditionHeaderType | |||
| LoanConditionHeaderTypeText | ddtext | |||
| _Language | _Language | |||
| _LoanConditionHeaderType | _LoanConditionHeaderType |
@AbapCatalog:{
sqlViewName: 'ILCNDHDRTYPTXT',
compiler.compareFilter: true,
preserveKey: true
}
@AccessControl.authorizationCheck: #NOT_REQUIRED
@ObjectModel:{
dataCategory: #TEXT,
usageType:{
serviceQuality: 'A',
sizeCategory: 'S',
dataClass: 'CUSTOMIZING'
},
supportedCapabilities: [ #LANGUAGE_DEPENDENT_TEXT,
#CDS_MODELING_ASSOCIATION_TARGET,
#SQL_DATA_SOURCE,
#CDS_MODELING_DATA_SOURCE,
#EXTRACTION_DATA_SOURCE ],
representativeKey: 'LoanConditionHeaderType'
}
@VDM.viewType: #BASIC
@Metadata.ignorePropagatedAnnotations:true
@Analytics.dataExtraction.enabled: true
@ClientHandling.algorithm: #SESSION_VARIABLE
@EndUserText.label: 'Loan Condition Header Type - Text'
define view I_LoanConditionHeaderTypeText
as select from dd07t
association [0..1] to I_Language as _Language on $projection.Language = _Language.Language
association [0..1] to I_LoanConditionHeaderType as _LoanConditionHeaderType on $projection.LoanConditionHeaderType = _LoanConditionHeaderType.LoanConditionHeaderType
{
@ObjectModel.foreignKey.association: '_Language'
@Semantics.language: true
key ddlanguage as Language,
@ObjectModel.foreignKey.association: '_LoanConditionHeaderType'
key cast(substring(domvalue_l, 1, 2) as skokoart) as LoanConditionHeaderType,
@Semantics.text: true
ddtext as LoanConditionHeaderTypeText,
_Language,
_LoanConditionHeaderType
}
where
domname = 'SKOKOART'
and as4local = 'A'
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