C_ABOPVariantTextTP

DDL: C_ABOPVARIANTTEXTTP SQL: CABOPVARIANTTTP Type: view CONSUMPTION

BOP Variant Text with Draft

C_ABOPVariantTextTP is a Consumption CDS View that provides data about "BOP Variant Text with Draft" in SAP S/4HANA. It reads from 1 data source (I_ABOPVariantTextTP) and exposes 6 fields with key fields ABOPVariantUUID, Language. It has 1 association to related views.

Data Sources (1)

SourceAliasJoin Type
I_ABOPVariantTextTP I_ABOPVariantTextTP from

Associations (1)

CardinalityTargetAliasCondition
[1..1] C_ABOPVariantTP _Variant $projection.ABOPVariantUUID = _Variant.ABOPVariantUUID

Annotations (17)

NameValueLevelField
AbapCatalog.sqlViewName CABOPVARIANTTTP view
AbapCatalog.compiler.compareFilter true view
AbapCatalog.preserveKey true view
AccessControl.authorizationCheck #NOT_REQUIRED view
ClientHandling.algorithm #SESSION_VARIABLE view
VDM.viewType #CONSUMPTION view
Search.searchable true view
ObjectModel.dataCategory #TEXT view
ObjectModel.transactionalProcessingDelegated true view
ObjectModel.representativeKey ABOPVariantUUID view
ObjectModel.createEnabled true view
ObjectModel.updateEnabled true view
ObjectModel.deleteEnabled true view
ObjectModel.usageType.serviceQuality #C view
ObjectModel.usageType.sizeCategory #M view
ObjectModel.usageType.dataClass #MASTER view
EndUserText.label BOP Variant Text with Draft 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
_Language _Language
_Variant _Variant

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 C_ABOPVariantTextTP.
-- 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: CABOPVARIANTTTP

CREATE VIEW C_ABOPVariantTextTP AS
SELECT
  ABOPVariantUUID,
  Language,
  ABOPVariantDescription,
  ABOPVariantDescriptionUUID
FROM I_ABOPVariantTextTP
LEFT OUTER JOIN C_ABOPVariantTP AS _Variant ON ABOPVariantUUID = _Variant.ABOPVariantUUID  -- association [1..1]
;