I_IndlSystPerspectiveObject

DDL: I_INDLSYSTPERSPECTIVEOBJECT Type: view_entity COMPOSITE

Industrial System Perspective Object

I_IndlSystPerspectiveObject is a Composite CDS View that provides data about "Industrial System Perspective Object" in SAP S/4HANA. It reads from 3 data sources (I_Equipment, I_FunctionalLocation, I_Plant) and exposes 11 fields with key fields IndlSystPerspectiveObject, IndlSystPerspectiveObjectType, IndlSystPerspectiveObjectType, IndlSystPerspectiveObjectType. It has 2 associations to related views.

Data Sources (3)

SourceAliasJoin Type
I_Equipment _Equipment from
I_FunctionalLocation _FunctionalLocation union_all
I_Plant _MaintenancePlant union_all

Associations (2)

CardinalityTargetAliasCondition
[1..1] I_IndlSystPerspctvObjType _IndlSystPerspctvObjType $projection.IndlSystPerspectiveObjectType = _IndlSystPerspctvObjType.DomainValue
[0..*] I_IndlSystPerspectiveObjectT _Text $projection.IndlSystPerspectiveObject = _Text.IndlSystPerspectiveObject and $projection.IndlSystPerspectiveObjectType = _Text.IndlSystPerspectiveObjectType

Annotations (9)

NameValueLevelField
EndUserText.label Industrial System Perspective Object view
AccessControl.authorizationCheck #MANDATORY view
AccessControl.personalData.blocking #NOT_REQUIRED view
ObjectModel.usageType.sizeCategory #XL view
ObjectModel.usageType.dataClass #MASTER view
ObjectModel.usageType.serviceQuality #C view
VDM.viewType #COMPOSITE view
Metadata.allowExtensions true view
Metadata.ignorePropagatedAnnotations true view

Fields (11)

KeyFieldSource TableSource FieldDescription
KEY IndlSystPerspectiveObject
KEY IndlSystPerspectiveObjectType
IndlSystPerspectiveObjectLabel
_Text _Text
KEY IndlSystPerspectiveObjectType
IndlSystPerspectiveObjectLabel
_Text _Text
KEY IndlSystPerspectiveObjectType
IndlSystPerspectiveObjectLabel
_Text _Text
_IndlSystPerspctvObjType _IndlSystPerspctvObjType

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_IndlSystPerspectiveObject.
-- 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_IndlSystPerspectiveObject AS
SELECT
  cast ( _Equipment.Equipment as asm_isy_systemperspobject ) AS IndlSystPerspectiveObject,
  cast ( 'EQUI' as asm_isy_systemperspobjtype ) AS IndlSystPerspectiveObjectType,
  cast ( ltrim( _Equipment.Equipment , '0' ) as asm_isy_systemperspobjectlabel ) AS IndlSystPerspectiveObjectLabel
FROM I_Equipment AS _Equipment
LEFT OUTER JOIN I_IndlSystPerspctvObjType AS _IndlSystPerspctvObjType ON IndlSystPerspectiveObjectType = _IndlSystPerspctvObjType.DomainValue  -- association [1..1]
LEFT OUTER JOIN I_IndlSystPerspectiveObjectT AS _Text ON IndlSystPerspectiveObject = _Text.IndlSystPerspectiveObject AND IndlSystPerspectiveObjectType = _Text.IndlSystPerspectiveObjectType  -- association [0..*]
-- UNION ALL with additional select branch(es): I_FunctionalLocation, I_Plant
;