I_ProdCmplncSrvcReqTypeText

DDL: I_PRODCMPLNCSRVCREQTYPETEXT SQL: IPCSERVREQTYPET Type: view BASIC

Product Compl. Service Request Type Text

I_ProdCmplncSrvcReqTypeText is a Basic CDS View that provides data about "Product Compl. Service Request Type Text" in SAP S/4HANA. It reads from 1 data source (dd07t) and exposes 4 fields with key fields ProdCmplncServiceRequestType, Language.

Data Sources (1)

SourceAliasJoin Type
dd07t dd07t from

Annotations (11)

NameValueLevelField
AbapCatalog.sqlViewName IPCSERVREQTYPET view
AbapCatalog.compiler.compareFilter true view
AccessControl.authorizationCheck #NOT_REQUIRED view
EndUserText.label Product Compl. Service Request Type Text view
ClientHandling.algorithm #SESSION_VARIABLE view
VDM.viewType #BASIC view
ObjectModel.dataCategory #TEXT view
ObjectModel.representativeKey ProdCmplncServiceRequestType view
ObjectModel.usageType.serviceQuality #A view
ObjectModel.usageType.sizeCategory #S view
ObjectModel.usageType.dataClass #META view

Fields (4)

KeyFieldSource TableSource FieldDescription
KEY ProdCmplncServiceRequestType
KEY Language dd07t ddlanguage Lang.
ProdCmplncSrvcReqTypeName
_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_ProdCmplncSrvcReqTypeText.
-- 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: IPCSERVREQTYPET

CREATE VIEW I_ProdCmplncSrvcReqTypeText AS
SELECT
  cast(dd07t.domvalue_l as prodcmplncservicerequesttype preserving type ) AS ProdCmplncServiceRequestType,
  dd07t.ddlanguage AS Language,
  cast( dd07t.ddtext as prodcmplncsrvcreqtypename preserving type ) AS ProdCmplncSrvcReqTypeName
FROM dd07t
;