I_ARunABOPVariantValueHelp

DDL: I_ARUNABOPVARIANTVALUEHELP SQL: IARUNABOPVARVH Type: view BASIC

Value help for BOP Variant

I_ARunABOPVariantValueHelp is a Basic CDS View that provides data about "Value help for BOP Variant" in SAP S/4HANA. It reads from 1 data source (I_ABOPVariant) and exposes 8 fields with key field ABOPVariantName. It has 2 associations to related views.

Data Sources (1)

SourceAliasJoin Type
I_ABOPVariant Variant from

Associations (2)

CardinalityTargetAliasCondition
[0..1] I_ARunRule _ARunRule $projection.ARunRuleUUID = _ARunRule.ARunRuleUUID
[0..1] I_ABOPVariantText _Text $projection.ABOPVariantUUID = _Text.ABOPVariantUUID and _Text.Language = $session.system_language

Annotations (11)

NameValueLevelField
EndUserText.label Value help for BOP Variant view
VDM.viewType #BASIC view
AbapCatalog.sqlViewName IARUNABOPVARVH view
AccessControl.authorizationCheck #NOT_REQUIRED view
Search.searchable true view
ClientHandling.algorithm #SESSION_VARIABLE view
ObjectModel.semanticKey ABOPVariantName view
ObjectModel.dataCategory #VALUE_HELP view
ObjectModel.usageType.serviceQuality #B view
ObjectModel.usageType.sizeCategory #M view
ObjectModel.usageType.dataClass #MASTER view

Fields (8)

KeyFieldSource TableSource FieldDescription
KEY ABOPVariantName ABOPVariantName Variant Name
ABOPVariantUUID ABOPVariantUUID BOP Variant UUID
ABOPVariantDescription _Text ABOPVariantDescription BOP Variant Desc
CreatedByUser CreatedByUser User Name
CreationDateTime CreationDateTime Timestamp
ABOPAssignmentPreviewIsActive _ARunRule ABOPAssignmentPreviewIsActive Assignment Preview
ARunRuleUUID I_ABOPVariant ARunRuleUUID ARun Rule UUID
_Text _Text

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_ARunABOPVariantValueHelp.
-- 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: IARUNABOPVARVH

CREATE VIEW I_ARunABOPVariantValueHelp AS
SELECT
  ABOPVariantName,
  ABOPVariantUUID,
  _Text.ABOPVariantDescription AS ABOPVariantDescription,
  CreatedByUser,
  CreationDateTime,
  _ARunRule.ABOPAssignmentPreviewIsActive AS ABOPAssignmentPreviewIsActive,
  Variant.ARunRuleUUID AS ARunRuleUUID
FROM I_ABOPVariant AS Variant
LEFT OUTER JOIN I_ARunRule AS _ARunRule ON ARunRuleUUID = _ARunRule.ARunRuleUUID  -- association [0..1]
LEFT OUTER JOIN I_ABOPVariantText AS _Text ON ABOPVariantUUID = _Text.ABOPVariantUUID AND _Text.Language = $session.system_language  -- association [0..1]
;