I_MfgControllingObjectStatus

DDL: I_MFGCONTROLLINGOBJECTSTATUS SQL: IMFGCTRLGOBJSTS Type: view COMPOSITE

Manufacturing Controlling Object Status

I_MfgControllingObjectStatus is a Composite CDS View that provides data about "Manufacturing Controlling Object Status" in SAP S/4HANA. It reads from 2 data sources (I_StatusObjectActiveStatus, I_ProductCostCtrlgOrder) and exposes 8 fields with key fields StatusObject, StatusCode.

Data Sources (2)

SourceAliasJoin Type
I_StatusObjectActiveStatus _ObjectActiveStatus from
I_ProductCostCtrlgOrder _Order left_outer

Annotations (11)

NameValueLevelField
AbapCatalog.sqlViewName IMFGCTRLGOBJSTS view
ClientHandling.type #CLIENT_DEPENDENT view
ClientHandling.algorithm #SESSION_VARIABLE view
AbapCatalog.compiler.compareFilter true view
AccessControl.authorizationCheck #CHECK view
EndUserText.label Manufacturing Controlling Object Status view
VDM.viewType #COMPOSITE view
ObjectModel.usageType.serviceQuality #C view
ObjectModel.usageType.sizeCategory #L view
ObjectModel.usageType.dataClass #TRANSACTIONAL view
Metadata.ignorePropagatedAnnotations true view

Fields (8)

KeyFieldSource TableSource FieldDescription
KEY StatusObject StatusObject Status Object
KEY StatusCode StatusCode Statuscode
StatusProfile StatusProfile Status Profile
IsUserStatus IsUserStatus
ControllingArea ControllingArea Controlling Area
_StatusObject _StatusObject
_StatusCode _StatusCode
_StatusProfile _StatusProfile

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_MfgControllingObjectStatus.
-- 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.
-- SQL view name: IMFGCTRLGOBJSTS

CREATE VIEW I_MfgControllingObjectStatus AS
SELECT
  StatusObject,
  StatusCode,
  StatusProfile,
  IsUserStatus,
  ControllingArea
FROM I_StatusObjectActiveStatus AS _ObjectActiveStatus
LEFT OUTER JOIN I_ProductCostCtrlgOrder AS _Order ON /* join condition not captured in parsed metadata */
;