I_BPCrdtStandingStatusText

DDL: I_BPCRDTSTANDINGSTATUSTEXT SQL: IBPCRDTSTATUSTXT Type: view BASIC

Credit Standing Status of BP - Text

I_BPCrdtStandingStatusText is a Basic CDS View that provides data about "Credit Standing Status of BP - Text" in SAP S/4HANA. It reads from 1 data source (dd07t) and exposes 5 fields with key fields Language, BPCreditStandingStatus. It has 2 associations to related views.

Data Sources (1)

SourceAliasJoin Type
dd07t dd07t from

Associations (2)

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

Annotations (14)

NameValueLevelField
AbapCatalog.sqlViewName IBPCRDTSTATUSTXT view
EndUserText.label Credit Standing Status of BP - Text view
AbapCatalog.compiler.compareFilter true view
AbapCatalog.preserveKey true view
AccessControl.authorizationCheck #NOT_REQUIRED view
AbapCatalog.buffering.status #NOT_ALLOWED view
ClientHandling.algorithm #SESSION_VARIABLE view
ObjectModel.dataCategory #TEXT view
ObjectModel.representativeKey BPCreditStandingStatus view
ObjectModel.usageType.dataClass #MASTER view
ObjectModel.usageType.serviceQuality #B view
ObjectModel.usageType.sizeCategory #S view
VDM.viewType #BASIC view
Metadata.ignorePropagatedAnnotations true view

Fields (5)

KeyFieldSource TableSource FieldDescription
KEY Language dd07t ddlanguage
KEY BPCreditStandingStatus
BPCreditStandingStatusDesc dd07t ddtext
_BPCreditStandingStatus _BPCreditStandingStatus
_Language _Language
@AbapCatalog.sqlViewName: 'IBPCRDTSTATUSTXT'
@EndUserText.label: 'Credit Standing Status of BP - Text'

@AbapCatalog.compiler.compareFilter: true
@AbapCatalog.preserveKey: true
@AccessControl.authorizationCheck: #NOT_REQUIRED
@AbapCatalog.buffering.status: #NOT_ALLOWED
// @AbapCatalog.preserveKey // only if required by ATC check

@ClientHandling.algorithm: #SESSION_VARIABLE
@ObjectModel.dataCategory: #TEXT
@ObjectModel.representativeKey: 'BPCreditStandingStatus'
@ObjectModel.usageType.dataClass: #MASTER
@ObjectModel.usageType.serviceQuality: #B
@ObjectModel.usageType.sizeCategory: #S
@VDM.viewType: #BASIC
@Metadata.ignorePropagatedAnnotations: true // For C1-Release



/*+[hideWarning] { "IDS" :  [ "KEY_CHECK" ] } */
define view I_BPCrdtStandingStatusText

  as select from dd07t
  association [0..1] to I_BPCreditStandingStatus as _BPCreditStandingStatus on $projection.BPCreditStandingStatus = _BPCreditStandingStatus.BPCreditStandingStatus
  association [0..1] to I_Language               as _Language               on $projection.Language = _Language.Language

{

      @Semantics.language: true
      @ObjectModel.foreignKey.association: '_Language'
  key dd07t.ddlanguage                                         as Language,
  
      @ObjectModel.text.element: 'BPCreditStandingStatusDesc'
      @ObjectModel.foreignKey.association: '_BPCreditStandingStatus'
  key cast ( dd07t.domvalue_l as bp_sol_inf )                  as BPCreditStandingStatus,
        
      @Semantics.text: true
      dd07t.ddtext                                             as BPCreditStandingStatusDesc,
      _BPCreditStandingStatus,
      _Language

}
where
      dd07t.domname  = 'BP_SOL_INF'
  and dd07t.as4local = 'A'