I_SupplierInvoiceStatusValHelp

DDL: I_SUPPLIERINVOICESTATUSVALHELP SQL: ISUPINVCSTSVH Type: view BASIC Package: ODATA_MM_IV_LST_ENH

Supplier Invoice List Status Value Help Interface View

I_SupplierInvoiceStatusValHelp is a Basic CDS View that provides data about "Supplier Invoice List Status Value Help Interface View" in SAP S/4HANA. It reads from 1 data source (dd07t) and exposes 4 fields with key fields InvoiceStatusAndOrigin, Language. It has 1 association to related views. Part of development package ODATA_MM_IV_LST_ENH.

Data Sources (1)

SourceAliasJoin Type
dd07t dd07t from

Associations (1)

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

Annotations (13)

NameValueLevelField
ObjectModel.dataCategory #TEXT view
ObjectModel.representativeKey InvoiceStatusAndOrigin view
VDM.viewType #BASIC view
VDM.lifecycle.contract.type #SAP_INTERNAL_API view
AccessControl.authorizationCheck #NOT_REQUIRED view
AccessControl.personalData.blocking #NOT_REQUIRED view
ClientHandling.algorithm #SESSION_VARIABLE view
ObjectModel.usageType.serviceQuality #A view
ObjectModel.usageType.sizeCategory #L view
ObjectModel.usageType.dataClass #TRANSACTIONAL view
AbapCatalog.sqlViewName ISUPINVCSTSVH view
AbapCatalog.compiler.compareFilter true view
EndUserText.label Supplier Invoice List Status Value Help Interface View view

Fields (4)

KeyFieldSource TableSource FieldDescription
KEY InvoiceStatusAndOrigin
KEY Language ddlanguage
SupplierInvoiceStatusDesc
_Language _Language
@ObjectModel.dataCategory: #TEXT
@ObjectModel.representativeKey: 'InvoiceStatusAndOrigin'
@VDM.viewType: #BASIC
@VDM.lifecycle.contract.type: #SAP_INTERNAL_API 
@AccessControl.authorizationCheck: #NOT_REQUIRED
@AccessControl.personalData.blocking: #NOT_REQUIRED
@ClientHandling.algorithm: #SESSION_VARIABLE
@ObjectModel.usageType.serviceQuality: #A
@ObjectModel.usageType.sizeCategory: #L
@ObjectModel.usageType.dataClass: #TRANSACTIONAL
@AbapCatalog.sqlViewName: 'ISUPINVCSTSVH'
@AbapCatalog.compiler.compareFilter: true
@EndUserText.label: 'Supplier Invoice List Status Value Help Interface View'
define view I_SupplierInvoiceStatusValHelp
  as select from dd07t

  association [0..1] to I_Language as _Language on $projection.Language = $session.system_language

{

  key cast ( substring( domvalue_l, 1, 2 ) as mmiv_invoice_state preserving type)       as InvoiceStatusAndOrigin,
      @Semantics.language: true
  key ddlanguage                                                                        as Language,
      @Semantics.text: true
      cast ( ddtext as mmiv_description_text preserving type)                           as SupplierInvoiceStatusDesc,

      //association

      _Language
      
}
where
      domname  = 'MMIV_INVOICE_STATE'
  and as4local = 'A'