I_SupplierInvoiceStatusText

DDL: I_SUPPLIERINVOICESTATUSTEXT SQL: ISINVCSTATUSTEXT Type: view BASIC

Supplier Invoice Status Text

I_SupplierInvoiceStatusText is a Basic CDS View that provides data about "Supplier Invoice Status Text" in SAP S/4HANA. It reads from 1 data source (dd07t) and exposes 6 fields with key fields SupplierInvoiceStatus, Language. It has 2 associations to related views.

Data Sources (1)

SourceAliasJoin Type
dd07t dd07t from

Associations (2)

CardinalityTargetAliasCondition
[0..1] I_Language _Language $projection.Language = $session.system_language
[1..1] I_SupplierInvoiceStatus _SupplierInvoiceStatus $projection.SupplierInvoiceStatus = _SupplierInvoiceStatus.SupplierInvoiceStatus

Annotations (14)

NameValueLevelField
ObjectModel.dataCategory #TEXT view
ObjectModel.representativeKey SupplierInvoiceStatus view
EndUserText.label Supplier Invoice Status Text view
VDM.viewType #BASIC view
VDM.lifecycle.contract.type #SAP_INTERNAL_API view
AbapCatalog.sqlViewName ISINVCSTATUSTEXT view
AccessControl.authorizationCheck #NOT_REQUIRED view
ClientHandling.algorithm #SESSION_VARIABLE view
ObjectModel.usageType.serviceQuality #A view
ObjectModel.usageType.sizeCategory #L view
ObjectModel.usageType.dataClass #TRANSACTIONAL view
AccessControl.personalData.blocking #NOT_REQUIRED view
AbapCatalog.preserveKey true view
AbapCatalog.compiler.compareFilter true view

Fields (6)

KeyFieldSource TableSource FieldDescription
KEY SupplierInvoiceStatus
KEY Language ddlanguage
SupplierInvoiceStatusDesc
DomainValue dd07t domvalue_l
_SupplierInvoiceStatus _SupplierInvoiceStatus
_Language _Language
@ObjectModel.dataCategory: #TEXT
@ObjectModel.representativeKey: 'SupplierInvoiceStatus'
@EndUserText.label: 'Supplier Invoice Status Text'
@VDM.viewType : #BASIC
@VDM.lifecycle.contract.type: #SAP_INTERNAL_API 
@AbapCatalog.sqlViewName: 'ISINVCSTATUSTEXT'
@AccessControl.authorizationCheck: #NOT_REQUIRED
@ClientHandling.algorithm: #SESSION_VARIABLE
@ObjectModel.usageType.serviceQuality: #A
@ObjectModel.usageType.sizeCategory: #L
@ObjectModel.usageType.dataClass: #TRANSACTIONAL
//This is a technical view only returning texts for the invoice status

@AccessControl.personalData.blocking:#NOT_REQUIRED 
@AbapCatalog.preserveKey:true 
@AbapCatalog.compiler.compareFilter:true

define view I_SupplierInvoiceStatusText
  as select from dd07t
  association [0..1] to I_Language              as _Language              on $projection.Language = $session.system_language
  association [1..1] to I_SupplierInvoiceStatus as _SupplierInvoiceStatus on $projection.SupplierInvoiceStatus = _SupplierInvoiceStatus.SupplierInvoiceStatus

{
  key cast ( domvalue_l as rbstat ) as SupplierInvoiceStatus,
      @Semantics.language: true
  key ddlanguage                                                              as Language,
      @Semantics.text: true
      cast ( ddtext as mmiv_description_text preserving type)                 as SupplierInvoiceStatusDesc,
      @Consumption.hidden: true
      dd07t.domvalue_l as DomainValue,
      
      //association

      _SupplierInvoiceStatus,
      _Language
}
where
      domname  = 'RBSTAT'
  and as4local = 'A'  
 /*+[internal] {
"BASEINFO":
{
"FROM":
[
"DD07T"
],
"ASSOCIATED":
[
"I_LANGUAGE",
"I_SUPPLIERINVOICESTATUS"
],
"BASE":
[],
"ANNO_REF":
[],
"SCALAR_FUNCTION":
[],
"VERSION":0,
"ANNOREF_EVALUATION_ERROR":""
}
}*/