R_SlsDocMassChgReqSuccessLogTP

DDL: R_SLSDOCMASSCHGREQSUCCESSLOGTP Type: view_entity TRANSACTIONAL

Mass Chg of Sls Doc Request Success Log

R_SlsDocMassChgReqSuccessLogTP is a Transactional CDS View that provides data about "Mass Chg of Sls Doc Request Success Log" in SAP S/4HANA. It reads from 1 data source (I_SDMassChgCkptChgReqSuccssLg) and exposes 15 fields with key fields SlsDocMassChangeRequestUUID, SalesDocument, SalesDocumentItem, ScheduleLine, SlsDocMassChgReqLogMsgNumber.

Data Sources (1)

SourceAliasJoin Type
I_SDMassChgCkptChgReqSuccssLg SlsDocMassChgReqSuccessLog from

Annotations (8)

NameValueLevelField
AccessControl.authorizationCheck #CHECK view
EndUserText.label Mass Chg of Sls Doc Request Success Log view
VDM.viewType #TRANSACTIONAL view
VDM.lifecycle.contract.type #SAP_INTERNAL_API view
ObjectModel.usageType.dataClass #TRANSACTIONAL view
ObjectModel.usageType.serviceQuality #C view
ObjectModel.usageType.sizeCategory #XL view
Metadata.ignorePropagatedAnnotations true view

Fields (15)

KeyFieldSource TableSource FieldDescription
KEY SlsDocMassChangeRequestUUID SlsDocMassChangeRequestUUID Job ID
KEY SalesDocument SalesDocument SD Document
KEY SalesDocumentItem SalesDocumentItem Sales Document Item
KEY ScheduleLine ScheduleLine Schedule Line
KEY SlsDocMassChgReqLogMsgNumber SlsDocMassChgReqLogMsgNumber Message Number
KEY SlsDocMassChgReqLogMsgClass SlsDocMassChgReqLogMsgClass Message Class
SlsDocMassChgReqLogMsgType SlsDocMassChgReqLogMsgType Message Type
SlsDocMassChgReqLgMsgVarbl1Txt SlsDocMassChgReqLgMsgVarbl1Txt Message Variable
SlsDocMassChgReqLgMsgVarbl2Txt SlsDocMassChgReqLgMsgVarbl2Txt Message Variable
SlsDocMassChgReqLgMsgVarbl3Txt SlsDocMassChgReqLgMsgVarbl3Txt Message Variable
SlsDocMassChgReqLgMsgVarbl4Txt SlsDocMassChgReqLgMsgVarbl4Txt Message Variable
SlsDocMassChangeReqItmStatus SlsDocMassChangeReqItmStatus Job Item Status
SlsDocMassChgReqLgIsMnllyCmplt SlsDocMassChgReqLgIsMnllyCmplt Mnlly Cmplt
_ChangeRequest _ChangeRequest
_SalesDocument _SalesDocument

Derived SQL interpretation, reconstructed from the parsed view metadata (data sources, associations, and field mappings). SAP annotations are omitted and the structure is reformulated as SQL — this is a functional approximation, not the verbatim SAP source.

-- Derived SQL interpretation of CDS view R_SlsDocMassChgReqSuccessLogTP.
-- Reconstructed from parsed metadata (data sources, associations, fields).
-- SAP annotations are omitted and the structure is reformulated as SQL;
-- this is a functional approximation, not the verbatim SAP source. Some join
-- conditions may be unavailable and a few CDS constructs are kept as-is.

CREATE VIEW R_SlsDocMassChgReqSuccessLogTP AS
SELECT
  SlsDocMassChangeRequestUUID,
  SalesDocument,
  SalesDocumentItem,
  ScheduleLine,
  SlsDocMassChgReqLogMsgNumber,
  SlsDocMassChgReqLogMsgClass,
  SlsDocMassChgReqLogMsgType,
  SlsDocMassChgReqLgMsgVarbl1Txt,
  SlsDocMassChgReqLgMsgVarbl2Txt,
  SlsDocMassChgReqLgMsgVarbl3Txt,
  SlsDocMassChgReqLgMsgVarbl4Txt,
  SlsDocMassChangeReqItmStatus,
  SlsDocMassChgReqLgIsMnllyCmplt
FROM I_SDMassChgCkptChgReqSuccssLg AS SlsDocMassChgReqSuccessLog
;