I_PrimaryCreditLine

DDL: I_PRIMARYCREDITLINE SQL: IPRICREDITLINE Type: view BASIC

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)

SourceAliasJoin Type
dd07l DomainValue from

Associations (1)

CardinalityTargetAliasCondition
[0..*] I_PrimaryCreditLineText _Text $projection.CreditLineIdentifier = _Text.CreditLineIdentifier

Annotations (13)

NameValueLevelField
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)

KeyFieldSource TableSource FieldDescription
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":""
}
}*/