I_RFM_IncompletionTxt

DDL: I_RFM_INCOMPLETIONTXT Type: view BASIC

Sales Document Incompletion

I_RFM_IncompletionTxt is a Basic CDS View that provides data about "Sales Document Incompletion" in SAP S/4HANA. It reads from 1 data source (dd07v) and exposes 3 fields with key field SlsDocIncompletionCode.

Data Sources (1)

SourceAliasJoin Type
dd07v dd07v from

Annotations (10)

NameValueLevelField
ClientHandling.algorithm #SESSION_VARIABLE view
EndUserText.label Sales Document Incompletion view
VDM.viewType #BASIC view
AccessControl.authorizationCheck #CHECK view
AbapCatalog.sqlViewName IRFMINCTXT view
AbapCatalog.preserveKey true view
AbapCatalog.compiler.compareFilter true view
ObjectModel.usageType.serviceQuality #B view
ObjectModel.usageType.sizeCategory #M view
ObjectModel.usageType.dataClass #MASTER view

Fields (3)

KeyFieldSource TableSource FieldDescription
KEY SlsDocIncompletionCode
SlsDocIncompletionFieldName ddtext
SalesDocument
@ClientHandling.algorithm: #SESSION_VARIABLE
@EndUserText.label: 'Sales Document Incompletion'
@VDM.viewType: #BASIC
@AccessControl.authorizationCheck: #CHECK
@AbapCatalog: {
  sqlViewName: 'IRFMINCTXT',
  preserveKey: true,
  compiler.compareFilter: true
}
@ObjectModel: {
    usageType: {
     serviceQuality: #B,
     sizeCategory:   #M,
     dataClass   :   #MASTER
   } 
   }


define view I_RFM_IncompletionTxt 
  as select from dd07v
{
      key cast(domvalue_l as rfm_manage_sd_incompletion) as SlsDocIncompletionCode,
               ddtext                                  as SlsDocIncompletionFieldName,
          cast('' as vbeln_va)                         as SalesDocument

}
where 
(
      domname    = 'RFM_MANAGE_SD_INCOMPLETION' and
      ddlanguage = $session.system_language
)
 /*+[internal] {
"BASEINFO":
{
"FROM":
[
"DD07V"
],
"ASSOCIATED":
[],
"BASE":
[],
"ANNO_REF":
[],
"VERSION":0,
"ANNOREF_EVALUATION_ERROR":""
}
}*/