I_LoanConditionHeaderTypeText

DDL: I_LOANCONDITIONHEADERTYPETEXT Type: view BASIC Package: FVVD_VDM

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)

SourceAliasJoin Type
dd07t dd07t from

Associations (2)

CardinalityTargetAliasCondition
[0..1] I_Language _Language $projection.Language = _Language.Language
[0..1] I_LoanConditionHeaderType _LoanConditionHeaderType $projection.LoanConditionHeaderType = _LoanConditionHeaderType.LoanConditionHeaderType

Annotations (14)

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

KeyFieldSource TableSource FieldDescription
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'