P_REALTIMEMFGORDERLOG

CDS View

P_REALTIMEMFGORDERLOG is a CDS View in S/4HANA. It contains 4 fields. 1 CDS views read from this table.

CDS Views using this table (1)

ViewTypeJoinVDMDescription
I_RealTimeMfgOrderLog view from BASIC Analyze Event-Based WIP and Variance Exceptions Log

Fields (4)

KeyField CDS FieldsUsed in Views
ControllingObject ControllingObject 1
CreatedByUser CreatedByUser 1
CreationDate CreationDate 1
OrderID OrderID 1
@AbapCatalog.sqlViewName: 'PRTMOLOG'
@AbapCatalog.compiler.compareFilter: true
@AccessControl.authorizationCheck: #NOT_REQUIRED
@ClientHandling.algorithm: #SESSION_VARIABLE
@VDM.viewType: #BASIC
@VDM.private:true
@ObjectModel.usageType.serviceQuality: #B
@ObjectModel.usageType.sizeCategory: #XXL
@ObjectModel.usageType.dataClass: #TRANSACTIONAL
//@EndUserText.label: 'Event-Based WIP Order Application Log'

@AbapCatalog.preserveKey:true

define view P_RealTimeMfgOrderLog
  as select from P_RealTimeMfgOrderLogData 
{
  key LogNumber,
      LogHandle,
      LogMessageText,
      ApplicationLogObject,
      ApplicationLogSubobject,
      EvtBsdOrdRefTransText,
      CreatedByUser,
      CreationDate,
      CreationTime,
      EvtBsdProdnCostErrProcgSts,
      Ledger,
      case EvtBsdProdnCostMsgCat
        when '01' then 'Costing'
        when '02' then 'Locking'
        when '03' then 'Customizing'
        when '04' then 'MasterData'
        when '05' then 'Posting'
        when '99' then 'Others'
        else 'Others'
        end as EvtBsdProdnCostErrorType,
      OrderID,
      ControllingObject,
      Severity
}