I_ReceivableFinancingStatus

DDL: I_RECEIVABLEFINANCINGSTATUS Type: view_entity BASIC Package: FTRF_CORE

Receivable Financing Status

I_ReceivableFinancingStatus is a Basic CDS View that provides data about "Receivable Financing Status" in SAP S/4HANA. It reads from 1 data source (dd07l) and exposes 2 fields with key field ReceivableFinancingStatus. It has 1 association to related views. Part of development package FTRF_CORE.

Data Sources (1)

SourceAliasJoin Type
dd07l dd07l from

Associations (1)

CardinalityTargetAliasCondition
[0..*] I_RblFinancingStatusText _Text $projection.ReceivableFinancingStatus = _Text.ReceivableFinancingStatus

Annotations (10)

NameValueLevelField
AccessControl.authorizationCheck #NOT_REQUIRED view
EndUserText.label Receivable Financing Status view
Metadata.ignorePropagatedAnnotations true view
ObjectModel.representativeKey ReceivableFinancingStatus view
ObjectModel.usageType.dataClass #META view
ObjectModel.usageType.serviceQuality #A view
ObjectModel.usageType.sizeCategory #S view
ObjectModel.modelingPattern #ANALYTICAL_DIMENSION view
ObjectModel.resultSet.sizeCategory #XS view
VDM.viewType #BASIC view

Fields (2)

KeyFieldSource TableSource FieldDescription
KEY ReceivableFinancingStatus
_Text _Text
@AccessControl.authorizationCheck: #NOT_REQUIRED
@EndUserText.label: 'Receivable Financing Status'
@Metadata.ignorePropagatedAnnotations: true
@ObjectModel.representativeKey: 'ReceivableFinancingStatus'
@ObjectModel: { usageType: { dataClass: #META,
                             serviceQuality: #A,
                             sizeCategory: #S },
                supportedCapabilities:  [ #CDS_MODELING_DATA_SOURCE, #CDS_MODELING_ASSOCIATION_TARGET,#SQL_DATA_SOURCE, #ANALYTICAL_DIMENSION ],
                modelingPattern:  #ANALYTICAL_DIMENSION }                                                                    
@ObjectModel.resultSet.sizeCategory: #XS
@VDM.viewType: #BASIC
define view entity I_ReceivableFinancingStatus 

  as select from dd07l

  association [0..*] to I_RblFinancingStatusText as _Text on $projection.ReceivableFinancingStatus = _Text.ReceivableFinancingStatus
{
      @ObjectModel.text.association: '_Text'
  key cast( left(dd07l.domvalue_l, 1) as frp_rcvbl_financing_status preserving type) as ReceivableFinancingStatus,

      _Text

}

where
      dd07l.domname  = 'FARP_RBL_FINCG_STATUS'
  and dd07l.as4local = 'A'