I_CAPaymentLinkStatusText

DDL: I_CAPAYMENTLINKSTATUSTEXT Type: view_entity BASIC Package: ODATA_O2C_FICA_PAYBYLINK_DISP

Payment Link Status - Text

I_CAPaymentLinkStatusText is a Basic CDS View that provides data about "Payment Link Status - Text" in SAP S/4HANA. It reads from 1 data source (dd07t) and exposes 4 fields with key fields CAPaymentLinkStatus, Language. It has 1 association to related views. Part of development package ODATA_O2C_FICA_PAYBYLINK_DISP.

Data Sources (1)

SourceAliasJoin Type
dd07t dd07t from

Associations (1)

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

Annotations (10)

NameValueLevelField
AccessControl.authorizationCheck #NOT_REQUIRED view
Metadata.ignorePropagatedAnnotations true view
ObjectModel.dataCategory #TEXT view
ObjectModel.modelingPattern #LANGUAGE_DEPENDENT_TEXT view
ObjectModel.representativeKey CAPaymentLinkStatus view
ObjectModel.usageType.dataClass #CUSTOMIZING view
ObjectModel.usageType.serviceQuality #B view
ObjectModel.usageType.sizeCategory #S view
VDM.viewType #BASIC view
EndUserText.label Payment Link Status - Text view

Fields (4)

KeyFieldSource TableSource FieldDescription
KEY CAPaymentLinkStatus
KEY Language
CAPaymentLinkStatusText
_Language _Language
@AccessControl.authorizationCheck: #NOT_REQUIRED
@Metadata.ignorePropagatedAnnotations: true
@ObjectModel: { dataCategory: #TEXT,
                modelingPattern: #LANGUAGE_DEPENDENT_TEXT,
                representativeKey: 'CAPaymentLinkStatus',
                supportedCapabilities: [ #CDS_MODELING_ASSOCIATION_TARGET,
                                         #CDS_MODELING_DATA_SOURCE,
                                         #LANGUAGE_DEPENDENT_TEXT,
                                         #SQL_DATA_SOURCE ],
                usageType: { dataClass: #CUSTOMIZING,
                             serviceQuality: #B,
                             sizeCategory: #S } }

@VDM.viewType: #BASIC
@EndUserText.label: 'Payment Link Status - Text'


define view entity I_CAPaymentLinkStatusText
  as select from dd07t
  association [0..1] to I_Language as _Language on $projection.Language = _Language.Language

{
  key cast( left(dd07t.domvalue_l, 1) as paytlinkstatus_kk ) as CAPaymentLinkStatus,

      @Semantics.language: true
      @ObjectModel.foreignKey.association: '_Language'
  key cast( dd07t.ddlanguage as spras preserving type )      as Language,

      @Semantics.text: true
      cast( ddtext as secdep_doci_status_text_kk preserving type )    as CAPaymentLinkStatusText,

      _Language
}
where
      dd07t.domname  = 'PAYTLINKSTATUS_KK'
  and dd07t.as4local = 'A'