I_SDMassChgCkptChgReqErrLg

DDL: I_SDMASSCHGCKPTCHGREQERRLG Type: view BASIC Package: SD_CHANGE_COCKPIT_CMN_VDM

Mass Change of Sales Doc Chg Req Err Log

I_SDMassChgCkptChgReqErrLg is a Basic CDS View that provides data about "Mass Change of Sales Doc Chg Req Err Log" in SAP S/4HANA. It reads from 1 data source (I_SDMassChgCkptMassChgReqLog) and exposes 14 fields with key fields SlsDocMassChangeRequestUUID, SalesDocument, SalesDocumentItem, ScheduleLine, SlsDocMassChgReqLogMsgNumber. Part of development package SD_CHANGE_COCKPIT_CMN_VDM.

Data Sources (1)

SourceAliasJoin Type
I_SDMassChgCkptMassChgReqLog I_SDMassChgCkptMassChgReqLog from

Annotations (11)

NameValueLevelField
ClientHandling.algorithm #SESSION_VARIABLE view
EndUserText.label Mass Change of Sales Doc Chg Req Err Log view
VDM.viewType #BASIC view
AbapCatalog.sqlViewName ISDMCCMCHGREQERR view
AbapCatalog.compiler.compareFilter true view
AbapCatalog.preserveKey true view
AccessControl.authorizationCheck #CHECK view
ObjectModel.usageType.dataClass #TRANSACTIONAL view
ObjectModel.usageType.serviceQuality #B view
ObjectModel.usageType.sizeCategory #L view
Metadata.ignorePropagatedAnnotations true view

Fields (14)

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
_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 I_SDMassChgCkptChgReqErrLg.
-- 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 I_SDMassChgCkptChgReqErrLg AS
SELECT
  SlsDocMassChangeRequestUUID,
  SalesDocument,
  SalesDocumentItem,
  ScheduleLine,
  SlsDocMassChgReqLogMsgNumber,
  SlsDocMassChgReqLogMsgClass,
  SlsDocMassChgReqLogMsgType,
  SlsDocMassChgReqLgMsgVarbl1Txt,
  SlsDocMassChgReqLgMsgVarbl2Txt,
  SlsDocMassChgReqLgMsgVarbl3Txt,
  SlsDocMassChgReqLgMsgVarbl4Txt,
  SlsDocMassChangeReqItmStatus,
  SlsDocMassChgReqLgIsMnllyCmplt
FROM I_SDMassChgCkptMassChgReqLog
;