I_TenderingRequestIsCompleted

DDL: I_TENDERINGREQUESTISCOMPLETED Type: view BASIC

Indicator that Tendering is completed

I_TenderingRequestIsCompleted is a Basic CDS View (Dimension) that provides data about "Indicator that Tendering is completed" in SAP S/4HANA. It reads from 1 data source (dd07l) and exposes 2 fields with key field TenderingRequestIsCompleted.

Data Sources (1)

SourceAliasJoin Type
dd07l dd07l from

Annotations (12)

NameValueLevelField
EndUserText.label Indicator that Tendering is completed view
Analytics.dataCategory #DIMENSION view
Analytics.dataExtraction.enabled true view
ObjectModel.representativeKey TenderingRequestIsCompleted view
ObjectModel.usageType.serviceQuality #A view
ObjectModel.usageType.sizeCategory #S view
ObjectModel.usageType.dataClass #CUSTOMIZING view
VDM.viewType #BASIC view
AbapCatalog.compiler.compareFilter true view
AbapCatalog.sqlViewName IISTENDCOMPL view
AccessControl.authorizationCheck #NOT_REQUIRED view
ClientHandling.algorithm #SESSION_VARIABLE view

Fields (2)

KeyFieldSource TableSource FieldDescription
KEY TenderingRequestIsCompleted
_Text _Text
@EndUserText:   {label:              'Indicator that Tendering is completed'}
@Analytics:     {dataCategory:       #DIMENSION, 
                 dataExtraction:     {enabled: true}}
@ObjectModel:   {representativeKey:  'TenderingRequestIsCompleted',
                 usageType:          {serviceQuality:  #A,
                                      sizeCategory:    #S,
                                      dataClass:       #CUSTOMIZING}}
@VDM:           {viewType:           #BASIC}
@AbapCatalog:   {compiler:           {compareFilter:   true},
                 sqlViewName:        'IISTENDCOMPL'}
@AccessControl: {authorizationCheck: #NOT_REQUIRED}
@ClientHandling.algorithm:           #SESSION_VARIABLE

define view I_TenderingRequestIsCompleted
as select from dd07l
association[0..*] to I_TenderingRequestIsCmpltdText as _Text on $projection.TenderingRequestIsCompleted = _Text.TenderingRequestIsCompleted
{
    @ObjectModel.text.association: '_Text'
key cast(substring(domvalue_l, 1, 1) as /scmtms/vdm_cmpltd_tend_req preserving type) as TenderingRequestIsCompleted,

    /* Associations */
    _Text
} 
where domname = '/SCMTMS/VDM_CMPLTD_TEND_REQ'
and as4local = 'A';
/*+[internal] {
"BASEINFO":
{
"FROM":
[
"DD07L"
],
"ASSOCIATED":
[
"I_TENDERINGREQUESTISCMPLTDTEXT"
],
"BASE":
[],
"ANNO_REF":
[],
"VERSION":0
}
}*/