P_BillingDocProcFlowPM1

DDL: P_BILLINGDOCPROCFLOWPM1 SQL: PBILLGDOPROCFPM1 Type: view CONSUMPTION Package: ODATA_SD_BIL_PROCESSFLOW

Billing Doc Process Flow: Level - 1 Incl. Prelim Bill Docs

P_BillingDocProcFlowPM1 is a Consumption CDS View that provides data about "Billing Doc Process Flow: Level - 1 Incl. Prelim Bill Docs" in SAP S/4HANA. It reads from 1 data source (I_BillingDocumentItem) and exposes 4 fields with key field BillingDocument. Part of development package ODATA_SD_BIL_PROCESSFLOW.

Data Sources (1)

SourceAliasJoin Type
I_BillingDocumentItem LevelM1 inner

Annotations (8)

NameValueLevelField
ClientHandling.algorithm #SESSION_VARIABLE view
ObjectModel.usageType.dataClass #MIXED view
ObjectModel.usageType.serviceQuality #C view
ObjectModel.usageType.sizeCategory #XL view
VDM.private true view
VDM.viewType #CONSUMPTION view
AccessControl.authorizationCheck #NOT_REQUIRED view
AbapCatalog.sqlViewName PBILLGDOPROCFPM1 view

Fields (4)

KeyFieldSource TableSource FieldDescription
KEY BillingDocument Level0 BillingDocument
BillingDocumentType Level0 BillingDocumentType
SDDocumentCategory Level0 SDDocumentCategory
SalesOrganization Level0 SalesOrganization
@ClientHandling.algorithm: #SESSION_VARIABLE 
@ObjectModel.usageType.dataClass: #MIXED
@ObjectModel.usageType.serviceQuality: #C
@ObjectModel.usageType.sizeCategory: #XL

@VDM.private: true
@VDM.viewType: #CONSUMPTION
@AccessControl.authorizationCheck: #NOT_REQUIRED
@AbapCatalog.sqlViewName: 'PBILLGDOPROCFPM1'
define view P_BillingDocProcFlowPM1 
  as select distinct from P_BillingDocProcFlow0 as Level0  --> Level 0
    inner join            I_BillingDocumentItem as LevelM1 --> Level Minus1
    on  LevelM1.BillingDocument             = Level0.BillingDocument
    and LevelM1.ReferenceSDDocument         != ''
{
      //Key

  key case 
    when LevelM1.PrelimBillingDocument is initial
      then LevelM1.ReferenceSDDocument
    else
      LevelM1.PrelimBillingDocument
    end as LevelM1Document,

  key case 
    when LevelM1.PrelimBillingDocument is initial
      then LevelM1.ReferenceSDDocumentItem
    else
      LevelM1.PrelimBillingDocumentItem
    end as LevelM1DocumentItem,

  key case 
    when LevelM1.PrelimBillingDocument is initial
      then LevelM1.ReferenceSDDocumentCategory
    else
      'PBD'
    end as LevelM1DocumentCategory,

      //Billing Document

  key Level0.BillingDocument,
      Level0.BillingDocumentType,
      Level0.SDDocumentCategory,

      //Organization

      Level0.SalesOrganization
}