I_IPUTSApplComponentVH

DDL: I_IPUTSAPPLCOMPONENTVH Type: view_entity BASIC

IPUTS Application Component

I_IPUTSApplComponentVH is a Basic CDS View that provides data about "IPUTS Application Component" in SAP S/4HANA. It reads from 1 data source (df14l) and exposes 3 fields with key field IPUTSApplComponentID. It has 1 association to related views.

Data Sources (1)

SourceAliasJoin Type
df14l df14l from

Associations (1)

CardinalityTargetAliasCondition
[0..*] df14t _Text $projection.IPUTSApplComponentID = _Text.fctr_id and _Text.as4local = 'A' and _Text.langu = $session.system_language

Annotations (9)

NameValueLevelField
AccessControl.authorizationCheck #NOT_REQUIRED view
EndUserText.label IPUTS Application Component view
Metadata.ignorePropagatedAnnotations true view
ObjectModel.usageType.serviceQuality #X view
ObjectModel.usageType.sizeCategory #S view
ObjectModel.usageType.dataClass #MIXED view
VDM.viewType #BASIC view
ObjectModel.dataCategory #VALUE_HELP view
ObjectModel.representativeKey IPUTSApplComponentID view

Fields (3)

KeyFieldSource TableSource FieldDescription
KEY IPUTSApplComponentID df14l fctr_id Component
IPUTSApplicationComponent df14l ps_posid WBS Element
IPUTSApplComponentText _Text name Zone name

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_IPUTSApplComponentVH.
-- 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_IPUTSApplComponentVH AS
SELECT
  df14l.fctr_id AS IPUTSApplComponentID,
  df14l.ps_posid AS IPUTSApplicationComponent,
  _Text.name AS IPUTSApplComponentText
FROM df14l
LEFT OUTER JOIN df14t AS _Text ON IPUTSApplComponentID = _Text.fctr_id AND _Text.as4local = 'A' AND _Text.langu = $session.system_language  -- association [0..*]
;