I_ItemBillingIncompletionSts

DDL: I_ITEMBILLINGINCOMPLETIONSTS Type: view BASIC

Item Billing Incompletion Status

I_ItemBillingIncompletionSts is a Basic CDS View (Dimension) that provides data about "Item Billing Incompletion Status" in SAP S/4HANA. It reads from 1 data source (dd07l) and exposes 2 fields with key field ItemBillingIncompletionStatus. It has 1 association to related views.

Data Sources (1)

SourceAliasJoin Type
dd07l dd07l from

Associations (1)

CardinalityTargetAliasCondition
[0..*] I_ItemBillingIncompletionStsT _Text $projection.ItemBillingIncompletionStatus = _Text.ItemBillingIncompletionStatus

Annotations (17)

NameValueLevelField
ClientHandling.algorithm #SESSION_VARIABLE view
VDM.viewType #BASIC view
AccessControl.authorizationCheck #NOT_REQUIRED view
AbapCatalog.sqlViewName ISDITMBLINCPSTS view
AbapCatalog.compiler.compareFilter true view
AbapCatalog.preserveKey true view
Analytics.dataCategory #DIMENSION view
ObjectModel.modelingPattern #ANALYTICAL_DIMENSION view
ObjectModel.resultSet.sizeCategory #XS view
ObjectModel.representativeKey ItemBillingIncompletionStatus view
ObjectModel.sapObjectNodeType.name SDDocItemBillingIncompltnSts view
ObjectModel.usageType.dataClass #META view
ObjectModel.usageType.serviceQuality #A view
ObjectModel.usageType.sizeCategory #S view
Search.searchable true view
Metadata.ignorePropagatedAnnotations true view
EndUserText.label Item Billing Incompletion Status view

Fields (2)

KeyFieldSource TableSource FieldDescription
KEY ItemBillingIncompletionStatus
_Text _Text
@ClientHandling.algorithm: #SESSION_VARIABLE

@VDM.viewType: #BASIC

@AccessControl.authorizationCheck:#NOT_REQUIRED

@AbapCatalog: {
  sqlViewName: 'ISDITMBLINCPSTS',
  compiler.compareFilter: true,
  preserveKey: true
}

@Analytics.dataCategory: #DIMENSION

@ObjectModel: {
  modelingPattern:   #ANALYTICAL_DIMENSION,
  resultSet.sizeCategory: #XS,
  representativeKey: 'ItemBillingIncompletionStatus',
  sapObjectNodeType.name:'SDDocItemBillingIncompltnSts',   
  supportedCapabilities: [ #SQL_DATA_SOURCE,
                           #CDS_MODELING_DATA_SOURCE,
                           #CDS_MODELING_ASSOCIATION_TARGET,
                           #ANALYTICAL_DIMENSION,
                           #SEARCHABLE_ENTITY ],                          
  usageType: {
    dataClass: #META,
    serviceQuality: #A,
    sizeCategory: #S
  }
 
}
@Search.searchable: true

@Metadata.ignorePropagatedAnnotations: true            

@EndUserText.label: 'Item Billing Incompletion Status'                           
/*+[hideWarning] { "IDS" : [ "CALCULATED_FIELD_CHECK" ]  } */
define view I_ItemBillingIncompletionSts 
as select from dd07l 

association [0..*] to I_ItemBillingIncompletionStsT as _Text on $projection.ItemBillingIncompletionStatus = _Text.ItemBillingIncompletionStatus
{
    @ObjectModel.text.association: '_Text'
    key SUBSTRING(dd07l.domvalue_l, 1, 1) as ItemBillingIncompletionStatus,
    
    @Search.defaultSearchElement: true
    _Text  
}
where (dd07l.domname = 'STATV') and (dd07l.as4local = 'A')
  and ((dd07l.domvalue_l = 'A') or (dd07l.domvalue_l = 'C'));  
/*+[internal] {
"BASEINFO":
{
"FROM":
[
"DD07L"
],
"ASSOCIATED":
[
"I_ITEMBILLINGINCOMPLETIONSTST"
],
"BASE":
[],
"ANNO_REF":
[],
"SCALAR_FUNCTION":
[],
"VERSION":0,
"ANNOREF_EVALUATION_ERROR":""
}
}*/