I_APInvoiceProcgStatusText

DDL: I_APINVOICEPROCGSTATUSTEXT SQL: IAPINVPROSTATTXT Type: view BASIC

Invoice Processing Status Text

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

Data Sources (1)

SourceAliasJoin Type
dd07t dd07t from

Associations (1)

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

Annotations (11)

NameValueLevelField
EndUserText.label Invoice Processing Status Text view
ObjectModel.dataCategory #TEXT view
VDM.viewType #BASIC view
AbapCatalog.sqlViewName IAPINVPROSTATTXT view
AccessControl.authorizationCheck #NOT_REQUIRED view
ObjectModel.representativeKey SupplierInvoiceStatus view
ObjectModel.usageType.sizeCategory #M view
ObjectModel.usageType.dataClass #MASTER view
ObjectModel.usageType.serviceQuality #A view
ClientHandling.algorithm #SESSION_VARIABLE view
Metadata.ignorePropagatedAnnotations true view

Fields (4)

KeyFieldSource TableSource FieldDescription
KEY SupplierInvoiceStatus
KEY Language
SupplierInvoiceStatusDesc
_Language _Language
@EndUserText.label: 'Invoice Processing Status Text'
@ObjectModel.dataCategory: #TEXT
@VDM.viewType: #BASIC
@AbapCatalog.sqlViewName: 'IAPINVPROSTATTXT'
@AccessControl.authorizationCheck: #NOT_REQUIRED
@ObjectModel.representativeKey: 'SupplierInvoiceStatus'
@ObjectModel.usageType.sizeCategory: #M
@ObjectModel.usageType.dataClass:  #MASTER
@ObjectModel.usageType.serviceQuality: #A
@ClientHandling.algorithm: #SESSION_VARIABLE
@Metadata.ignorePropagatedAnnotations: true 

define view I_APInvoiceProcgStatusText as select from dd07t
association [0..1] to I_Language as _Language on $projection.Language = _Language.Language
{
     
    key  cast( substring( domvalue_l, 1, 1 ) as farp_invoice_procg_status) as SupplierInvoiceStatus,  
    @Semantics.language: true
    key cast ( ddlanguage as spras) as Language,

    @Semantics.text: true
    cast( ddtext as fis_val_text )  as SupplierInvoiceStatusDesc ,

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