I_QA_ServiceOriginalCodeVH

DDL: I_QA_SERVICEORIGINALCODEVH Type: view_entity BASIC

Search Help for QA Origin of Service

I_QA_ServiceOriginalCodeVH is a Basic CDS View that provides data about "Search Help for QA Origin of Service" in SAP S/4HANA. It reads from 1 data source (dd07l) and exposes 2 fields with key field QA_ServiceOriginalCode. It has 1 association to related views.

Data Sources (1)

SourceAliasJoin Type
dd07l _DomainValue from

Associations (1)

CardinalityTargetAliasCondition
[0..1] I_QA_ServiceOriginalCodeDesc _Text $projection.QA_ServiceOriginalCode = _Text.QA_ServiceOriginalCode and _Text.Language = $session.system_language

Annotations (11)

NameValueLevelField
AccessControl.authorizationCheck #NOT_REQUIRED view
EndUserText.label Search Help for QA Origin of Service view
Metadata.ignorePropagatedAnnotations true view
ObjectModel.usageType.serviceQuality #A view
ObjectModel.usageType.sizeCategory #S view
ObjectModel.usageType.dataClass #MIXED view
ObjectModel.dataCategory #VALUE_HELP view
VDM.viewType #BASIC view
Search.searchable true view
Consumption.ranked true view
ObjectModel.representativeKey QA_ServiceOriginalCode view

Fields (2)

KeyFieldSource TableSource FieldDescription
KEY QA_ServiceOriginalCode
_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_QA_ServiceOriginalCodeVH.
-- 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_QA_ServiceOriginalCodeVH AS
SELECT
  cast ( cast ( substring( domvalue_l, 1, 1 ) as abap.char( 1 ) ) as fiapqa_orign_service_new ) AS QA_ServiceOriginalCode
FROM dd07l AS _DomainValue
LEFT OUTER JOIN I_QA_ServiceOriginalCodeDesc AS _Text ON QA_ServiceOriginalCode = _Text.QA_ServiceOriginalCode AND _Text.Language = $session.system_language  -- association [0..1]
;