I_IndlSystPerspectiveObjectT

DDL: I_INDLSYSTPERSPECTIVEOBJECTT Type: view_entity COMPOSITE

Indl Syst Perspective Obj - Text

I_IndlSystPerspectiveObjectT is a Composite CDS View that provides data about "Indl Syst Perspective Obj - Text" in SAP S/4HANA. It reads from 3 data sources (I_EquipmentText, I_FunctionalLocationText, I_Plant) and exposes 14 fields with key fields IndlSystPerspectiveObject, IndlSystPerspectiveObjectType, Language, IndlSystPerspectiveObjectType, Language. It has 2 associations to related views.

Data Sources (3)

SourceAliasJoin Type
I_EquipmentText I_EquipmentText from
I_FunctionalLocationText I_FunctionalLocationText union_all
I_Plant I_Plant union_all

Associations (2)

CardinalityTargetAliasCondition
[1..1] I_IndlSystPerspectiveObject _IndlSystPerspectiveObject $projection.IndlSystPerspectiveObject = _IndlSystPerspectiveObject.IndlSystPerspectiveObject and $projection.IndlSystPerspectiveObjectType = _IndlSystPerspectiveObject.IndlSystPerspectiveObjectType
[1..1] I_IndlSystPerspctvObjType _IndlSystPerspctvObjType $projection.IndlSystPerspectiveObjectType = _IndlSystPerspctvObjType.IndlSystPerspectiveObjectType

Annotations (11)

NameValueLevelField
EndUserText.label Indl Syst Perspective Obj - Text view
AccessControl.authorizationCheck #MANDATORY view
AccessControl.personalData.blocking #NOT_REQUIRED view
ObjectModel.dataCategory #TEXT view
ObjectModel.usageType.sizeCategory #XL view
ObjectModel.usageType.dataClass #MIXED view
ObjectModel.usageType.serviceQuality #C view
ObjectModel.representativeKey IndlSystPerspectiveObject view
VDM.viewType #COMPOSITE view
Metadata.allowExtensions true view
Metadata.ignorePropagatedAnnotations true view

Fields (14)

KeyFieldSource TableSource FieldDescription
KEY IndlSystPerspectiveObject Equipment check
KEY IndlSystPerspectiveObjectType
KEY Language Language Report Text Language
IndlSystPerspectiveObjectDesc Plant Name
_IndlSystPerspectiveObject _IndlSystPerspectiveObject
KEY IndlSystPerspectiveObjectType
KEY Language Language Report Text Language
IndlSystPerspectiveObjectDesc Plant Name
_IndlSystPerspectiveObject _IndlSystPerspectiveObject
KEY IndlSystPerspectiveObjectType
KEY Language Report Text Language
IndlSystPerspectiveObjectDesc Plant Name
_IndlSystPerspectiveObject _IndlSystPerspectiveObject
_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_IndlSystPerspectiveObjectT.
-- 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_IndlSystPerspectiveObjectT AS
SELECT
  cast ( Equipment as asm_isy_systemperspobject ) AS IndlSystPerspectiveObject,
  cast ( 'EQUI' as asm_isy_systemperspobjtype ) AS IndlSystPerspectiveObjectType,
  Language,
  cast ( EquipmentName as asm_isy_systemperspobjectdesc ) AS IndlSystPerspectiveObjectDesc
FROM I_EquipmentText
LEFT OUTER JOIN I_IndlSystPerspectiveObject AS _IndlSystPerspectiveObject ON IndlSystPerspectiveObject = _IndlSystPerspectiveObject.IndlSystPerspectiveObject AND IndlSystPerspectiveObjectType = _IndlSystPerspectiveObject.IndlSystPerspectiveObjectType  -- association [1..1]
LEFT OUTER JOIN I_IndlSystPerspctvObjType AS _IndlSystPerspctvObjType ON IndlSystPerspectiveObjectType = _IndlSystPerspctvObjType.IndlSystPerspectiveObjectType  -- association [1..1]
-- UNION ALL with additional select branch(es): I_FunctionalLocationText, I_Plant
;