I_InternalOrderSystemStatus

DDL: I_INTERNALORDERSYSTEMSTATUS SQL: IFIINDORDSYSSTS Type: view BASIC

Internal Order System Status

I_InternalOrderSystemStatus is a Basic CDS View (Dimension) that provides data about "Internal Order System Status" in SAP S/4HANA. It has 2 associations to related views.

Associations (2)

CardinalityTargetAliasCondition
[0..*] I_InternalOrderSystemStatusT _Text $projection.ControllingObjectStatus = _Text.SystemStatus
[0..1] I_ControllingObject _ControllingObject $projection.ControllingObject = _ControllingObject.ControllingObject

Annotations (15)

NameValueLevelField
EndUserText.label Internal Order System Status view
Analytics.dataCategory #DIMENSION view
Analytics.dataExtraction.enabled true view
Analytics.internalName #LOCAL view
VDM.viewType #BASIC view
AbapCatalog.sqlViewName IFIINDORDSYSSTS view
AbapCatalog.preserveKey true view
AbapCatalog.compiler.compareFilter true view
AccessControl.authorizationCheck #CHECK view
ObjectModel.representativeKey ControllingObjectStatus view
ClientHandling.algorithm #SESSION_VARIABLE view
ObjectModel.usageType.serviceQuality #B view
ObjectModel.usageType.sizeCategory #M view
ObjectModel.usageType.dataClass #TRANSACTIONAL view
Metadata.allowExtensions true view

Fields (7)

KeyFieldSource TableSource FieldDescription
KEY ControllingObject jest objnr Val. Obj. No.
KEY ControllingObjectStatus jest stat Status of Time-Dependent Document Linkage
StatusIsInactive jest inact TRUE
StatusObjectStatusChangeNumber jest chgnr Change Number
ControllingArea aufk kokrs Org. Value
_Text _Text
_ControllingObject _ControllingObject

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_InternalOrderSystemStatus.
-- 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: IFIINDORDSYSSTS

CREATE VIEW I_InternalOrderSystemStatus AS
SELECT
  jest.objnr AS ControllingObject,
  jest.stat AS ControllingObjectStatus,
  jest.inact AS StatusIsInactive,
  jest.chgnr AS StatusObjectStatusChangeNumber,
  aufk.kokrs AS ControllingArea
LEFT OUTER JOIN I_InternalOrderSystemStatusT AS _Text ON ControllingObjectStatus = _Text.SystemStatus  -- association [0..*]
LEFT OUTER JOIN I_ControllingObject AS _ControllingObject ON ControllingObject = _ControllingObject.ControllingObject  -- association [0..1]
;