I_SDMassChgCkptBusObjAction

DDL: I_SDMASSCHGCKPTBUSOBJACTION Type: view BASIC

Mass Change of Sales Doc BO Action

I_SDMassChgCkptBusObjAction is a Basic CDS View that provides data about "Mass Change of Sales Doc BO Action" in SAP S/4HANA. It reads from 1 data source (I_SDMassChgCkptSystBusObjAct) and exposes 8 fields with key fields SlsDocMassChgActionID, SDDocumentCategory. It has 1 association to related views.

Data Sources (1)

SourceAliasJoin Type
I_SDMassChgCkptSystBusObjAct bo_action from

Associations (1)

CardinalityTargetAliasCondition
[0..1] I_SDMassChgCkptActionMaster _ActionMaster $projection.SlsDocMassChgActionID = _ActionMaster.SlsDocMassChgActionID

Annotations (12)

NameValueLevelField
AbapCatalog.sqlViewName ISDMCCBOACT view
AbapCatalog.compiler.compareFilter true view
AbapCatalog.preserveKey true view
EndUserText.label Mass Change of Sales Doc BO Action view
VDM.viewType #BASIC view
ObjectModel.representativeKey SDDocumentCategory view
ObjectModel.usageType.dataClass #MASTER view
ObjectModel.usageType.serviceQuality #A view
ObjectModel.usageType.sizeCategory #S view
Metadata.ignorePropagatedAnnotations true view
AccessControl.authorizationCheck #NOT_REQUIRED view
ClientHandling.algorithm #SESSION_VARIABLE view

Fields (8)

KeyFieldSource TableSource FieldDescription
KEY SlsDocMassChgActionID SlsDocMassChgActionID Action
KEY SDDocumentCategory SDDocumentCategory Document Cat.
SlsDocMassChgActionProced SlsDocMassChgActionProced Type Name
SlsDocMassChgActionCategory SlsDocMassChgActionCategory Action Category
SlsDocMassChgEntityLevel SlsDocMassChgEntityLevel Entity Level
SlsDocMassChgEntityType SlsDocMassChgEntityType Entity Type
_ActionMaster _ActionMaster
_SDDocumentCategory _SDDocumentCategory

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_SDMassChgCkptBusObjAction.
-- 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_SDMassChgCkptBusObjAction AS
SELECT
  SlsDocMassChgActionID,
  SDDocumentCategory,
  SlsDocMassChgActionProced,
  SlsDocMassChgActionCategory,
  SlsDocMassChgEntityLevel,
  SlsDocMassChgEntityType
FROM I_SDMassChgCkptSystBusObjAct AS bo_action
LEFT OUTER JOIN I_SDMassChgCkptActionMaster AS _ActionMaster ON SlsDocMassChgActionID = _ActionMaster.SlsDocMassChgActionID  -- association [0..1]
;