I_ABOPVariantText

DDL: I_ABOPVARIANTTEXT SQL: IABOPVARIANT_T Type: view BASIC

ABOP Variant Text

I_ABOPVariantText is a Basic CDS View that provides data about "ABOP Variant Text" in SAP S/4HANA. It reads from 1 data source (atp_bop_variantt) and exposes 6 fields with key fields ABOPVariantUUID, Language. It has 2 associations to related views.

Data Sources (1)

SourceAliasJoin Type
atp_bop_variantt atp_bop_variantt from

Associations (2)

CardinalityTargetAliasCondition
[0..1] I_Language _Language $projection.Language = _Language.Language
[1..1] I_ABOPVariant _Variant $projection.ABOPVariantUUID = _Variant.ABOPVariantUUID

Annotations (13)

NameValueLevelField
EndUserText.label ABOP Variant Text view
VDM.viewType #BASIC view
AccessControl.authorizationCheck #NOT_REQUIRED view
AbapCatalog.sqlViewName IABOPVARIANT_T view
AbapCatalog.preserveKey true view
Search.searchable true view
ClientHandling.algorithm #SESSION_VARIABLE view
AbapCatalog.compiler.compareFilter true view
ObjectModel.dataCategory #TEXT view
ObjectModel.representativeKey ABOPVariantUUID view
ObjectModel.usageType.serviceQuality #A view
ObjectModel.usageType.sizeCategory #M view
ObjectModel.usageType.dataClass #MASTER view

Fields (6)

KeyFieldSource TableSource FieldDescription
KEY ABOPVariantUUID abopvariantuuid BOP Variant UUID
KEY Language language Report Text Language
ABOPVariantDescription abopvariantdescription BOP Variant Desc
ABOPVariantDescriptionUUID abopvariantdescriptionuuid Description UUID
_Variant _Variant
_Language _Language

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_ABOPVariantText.
-- 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: IABOPVARIANT_T

CREATE VIEW I_ABOPVariantText AS
SELECT
  ABOPVariantUUID,
  Language,
  ABOPVariantDescription,
  ABOPVariantDescriptionUUID
FROM atp_bop_variantt
LEFT OUTER JOIN I_Language AS _Language ON Language = _Language.Language  -- association [0..1]
LEFT OUTER JOIN I_ABOPVariant AS _Variant ON ABOPVariantUUID = _Variant.ABOPVariantUUID  -- association [1..1]
;