I_FrcElmntOrgSubType

DDL: I_FRCELMNTORGSUBTYPE SQL: IFEORGSUBTYPE Type: view BASIC

Value Help Interface view for Sub Type of FE Org

I_FrcElmntOrgSubType is a Basic CDS View that provides data about "Value Help Interface view for Sub Type of FE Org" in SAP S/4HANA. It reads from 1 data source (t777z) and exposes 5 fields with key fields FrcElmntOrgType, FrcElmntOrgInfoType, FrcElmntOrgSubType. It has 1 association to related views.

Data Sources (1)

SourceAliasJoin Type
t777z _FrcElmntOrgSubType from

Associations (1)

CardinalityTargetAliasCondition
[1..*] I_FrcElmntOrgSubTypeText _FrcElmntOrgSubTypeText $projection.FrcElmntOrgSubType = _FrcElmntOrgSubTypeText.FrcElmntOrgSubType and $projection.FrcElmntOrgInfoType = _FrcElmntOrgSubTypeText.FrcElmntOrgInfoType

Annotations (10)

NameValueLevelField
AbapCatalog.sqlViewName IFEORGSUBTYPE view
AbapCatalog.compiler.compareFilter true view
AbapCatalog.preserveKey true view
AccessControl.authorizationCheck #CHECK view
VDM.viewType #BASIC view
ObjectModel.usageType.dataClass #CUSTOMIZING view
ObjectModel.usageType.serviceQuality #A view
ObjectModel.usageType.sizeCategory #M view
ClientHandling.algorithm #SESSION_VARIABLE view
EndUserText.label Value Help Interface view for Sub Type of FE Org view

Fields (5)

KeyFieldSource TableSource FieldDescription
KEY FrcElmntOrgType t777z otype Type of Val.
KEY FrcElmntOrgInfoType t777z infty Infotype
KEY FrcElmntOrgSubType t777z subty Subtype
FrcElmntOrgSubTypeName
_FrcElmntOrgSubTypeText _FrcElmntOrgSubTypeText

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_FrcElmntOrgSubType.
-- 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: IFEORGSUBTYPE

CREATE VIEW I_FrcElmntOrgSubType AS
SELECT
  _FrcElmntOrgSubType.otype AS FrcElmntOrgType,
  _FrcElmntOrgSubType.infty AS FrcElmntOrgInfoType,
  _FrcElmntOrgSubType.subty AS FrcElmntOrgSubType,
  _FrcElmntOrgSubTypeText[1:FrcElmntOrgLanguage=$session.system_language].FrcElmntOrgSubTypeName AS FrcElmntOrgSubTypeName
FROM t777z AS _FrcElmntOrgSubType
LEFT OUTER JOIN I_FrcElmntOrgSubTypeText AS _FrcElmntOrgSubTypeText ON FrcElmntOrgSubType = _FrcElmntOrgSubTypeText.FrcElmntOrgSubType AND FrcElmntOrgInfoType = _FrcElmntOrgSubTypeText.FrcElmntOrgInfoType  -- association [1..*]
;