I_OutgoingInvoiceStatusText

DDL: I_OUTGOINGINVOICESTATUSTEXT SQL: IOUTGINVCSTATUST Type: view BASIC Package: ODATA_MANAGE_APAR_GEN_INVOICES

Outgoing Invoice Status - Text

I_OutgoingInvoiceStatusText is a Basic CDS View that provides data about "Outgoing Invoice Status - Text" in SAP S/4HANA. It reads from 1 data source (dd07t) and exposes 4 fields with key fields Language, OutgoingInvoiceStatus. It has 1 association to related views. Part of development package ODATA_MANAGE_APAR_GEN_INVOICES.

Data Sources (1)

SourceAliasJoin Type
dd07t dd07t from

Associations (1)

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

Annotations (13)

NameValueLevelField
EndUserText.label Outgoing Invoice Status - Text view
ObjectModel.dataCategory #TEXT view
VDM.viewType #BASIC view
AccessControl.authorizationCheck #NOT_REQUIRED view
AbapCatalog.sqlViewName IOUTGINVCSTATUST view
ObjectModel.representativeKey OutgoingInvoiceStatus view
ClientHandling.algorithm #SESSION_VARIABLE view
AbapCatalog.compiler.compareFilter true view
AbapCatalog.preserveKey true view
ObjectModel.usageType.serviceQuality #A view
ObjectModel.usageType.sizeCategory #M view
ObjectModel.usageType.dataClass #CUSTOMIZING view
ObjectModel.resultSet.sizeCategory #XS view

Fields (4)

KeyFieldSource TableSource FieldDescription
KEY Language
KEY OutgoingInvoiceStatus
StatusDescription ddtext
_Language _Language
@EndUserText.label: 'Outgoing Invoice Status - Text' 
@ObjectModel.dataCategory: #TEXT
@VDM.viewType: #BASIC
@AccessControl.authorizationCheck: #NOT_REQUIRED //

@AbapCatalog.sqlViewName: 'IOUTGINVCSTATUST'
@ObjectModel.representativeKey: 'OutgoingInvoiceStatus'
@ClientHandling.algorithm: #SESSION_VARIABLE
@AbapCatalog.compiler.compareFilter:true
@AbapCatalog.preserveKey:true  
@ObjectModel.usageType.serviceQuality: #A
@ObjectModel.usageType.sizeCategory: #M
@ObjectModel.usageType.dataClass: #CUSTOMIZING
@ObjectModel.resultSet.sizeCategory: #XS
define view I_OutgoingInvoiceStatusText
   as select from dd07t
   association [0..1] to I_Language as _Language on $projection.Language = _Language.Language


{
    
  @Semantics.language
  @ObjectModel.foreignKey.association: '_Language'
  key cast( ddlanguage as spras ) as Language,
 
  key cast ( cast ( substring( domvalue_l, 1, 1 ) as abap.numc( 1 ) ) as farp_miv_status  ) as OutgoingInvoiceStatus,
  
  @Semantics.text
  ddtext as  StatusDescription,
  
  _Language
  
} where domname = 'FARP_MIV_STATUS' and as4local = 'A'