I_PrimaryCreditLine
Primary Credit Line
I_PrimaryCreditLine is a Basic CDS View that provides data about "Primary Credit Line" in SAP S/4HANA. It reads from 1 data source (dd07l) and exposes 2 fields with key field CreditLineIdentifier. It has 1 association to related views.
Data Sources (1)
| Source | Alias | Join Type |
|---|---|---|
| dd07l | DomainValue | from |
Associations (1)
| Cardinality | Target | Alias | Condition |
|---|---|---|---|
| [0..*] | I_PrimaryCreditLineText | _Text | $projection.CreditLineIdentifier = _Text.CreditLineIdentifier |
Annotations (13)
| Name | Value | Level | Field |
|---|---|---|---|
| AbapCatalog.sqlViewName | IPRICREDITLINE | view | |
| AbapCatalog.compiler.compareFilter | true | view | |
| AbapCatalog.preserveKey | true | view | |
| AccessControl.authorizationCheck | #NOT_REQUIRED | view | |
| EndUserText.label | Primary Credit Line | view | |
| VDM.viewType | #BASIC | view | |
| ClientHandling.algorithm | #SESSION_VARIABLE | view | |
| ObjectModel.usageType.sizeCategory | #S | view | |
| ObjectModel.usageType.serviceQuality | #B | view | |
| ObjectModel.usageType.dataClass | #MASTER | view | |
| ObjectModel.representativeKey | CreditLineIdentifier | view | |
| Search.searchable | true | view | |
| Consumption.ranked | true | view |
Fields (2)
| Key | Field | Source Table | Source Field | Description |
|---|---|---|---|---|
| KEY | CreditLineIdentifier | |||
| _Text | _Text |
@AbapCatalog.sqlViewName: 'IPRICREDITLINE'
@AbapCatalog.compiler.compareFilter: true
@AbapCatalog.preserveKey: true
@AccessControl.authorizationCheck: #NOT_REQUIRED
@EndUserText.label: 'Primary Credit Line'
@VDM.viewType: #BASIC
@ClientHandling.algorithm: #SESSION_VARIABLE
@ObjectModel:{
usageType : {
sizeCategory: #S,
serviceQuality: #B,
dataClass: #MASTER
},
representativeKey:'CreditLineIdentifier'
}
@Search.searchable: true
@Consumption.ranked: true
define view I_PrimaryCreditLine
as select from dd07l as DomainValue
association [0..*] to I_PrimaryCreditLineText as _Text on $projection.CreditLineIdentifier = _Text.CreditLineIdentifier
{
@Search: {
defaultSearchElement: true,
ranking: #HIGH,
fuzzinessThreshold: 0.8
}
key cast(DomainValue.domvalue_l as tb_credit_line ) as CreditLineIdentifier,
_Text
}
where
DomainValue.domname = 'T_FC_ROOT_LINE'
and DomainValue.as4local = 'A'
/*+[internal] {
"BASEINFO":
{
"FROM":
[
"DD07L"
],
"ASSOCIATED":
[
"I_PRIMARYCREDITLINETEXT"
],
"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