P_RawChmlCmplncSupInProcCt

DDL: P_RAWCHMLCMPLNCSUPINPROCCT Type: view CONSUMPTION Package: EHFND_BO_CCI

Counter for Supplier Materials in status 'In Process'

P_RawChmlCmplncSupInProcCt is a Consumption CDS View that provides data about "Counter for Supplier Materials in status 'In Process'" in SAP S/4HANA. It reads from 1 data source (I_ChmlCmplncSuplrMatlAssgmt) and exposes 3 fields. Part of development package EHFND_BO_CCI.

Data Sources (1)

SourceAliasJoin Type
I_ChmlCmplncSuplrMatlAssgmt I_ChmlCmplncSuplrMatlAssgmt from

Annotations (6)

NameValueLevelField
AbapCatalog.sqlViewName PCCRSUPIPCT view
AbapCatalog.compiler.compareFilter true view
AccessControl.authorizationCheck #NOT_REQUIRED view
ClientHandling.algorithm #SESSION_VARIABLE view
VDM.viewType #CONSUMPTION view
VDM.private true view

Fields (3)

KeyFieldSource TableSource FieldDescription
ChmlCmplncInfoUUID ChmlCmplncInfoUUID
SupMatInProcessCount
recordCount
@AbapCatalog:
{
  -- SQL view name (16 characters)
  sqlViewName: 'PCCRSUPIPCT',

  --If it's true, the filter conditions are compared and, if they match, the associated join expression is evaluated only once
  compiler.compareFilter: true
}

--Access Control: Authorizations Checks
@AccessControl:
{
  authorizationCheck: #NOT_REQUIRED
}

--Client Handling of the view
@ClientHandling.algorithm: #SESSION_VARIABLE

--VDM view type
@VDM.viewType: #CONSUMPTION
@VDM.private: true

define view P_RawChmlCmplncSupInProcCt
  as select from I_ChmlCmplncSuplrMatlAssgmt {
  
  ChmlCmplncInfoUUID,
  count (*) as SupMatInProcessCount,
  count (*) as recordCount
  
}
where ChmlSuplrMatlSuplrSts = 'IP' or ChmlSuplrMatlSuplrSts  = 'NE' 
group by ChmlCmplncInfoUUID