I_ProdStrucVarGnrcObjTypeMap

DDL: I_PRODSTRUCVARGNRCOBJTYPEMAP SQL: IPSVAROBJMAP Type: view BASIC

IPPE variants to GOS objects mapping

I_ProdStrucVarGnrcObjTypeMap is a Basic CDS View that provides data about "IPPE variants to GOS objects mapping" in SAP S/4HANA. It reads from 1 data source (cpvtype) and exposes 2 fields with key field ProductStructureVariantType.

Data Sources (1)

SourceAliasJoin Type
cpvtype cpvtype from

Annotations (10)

NameValueLevelField
AbapCatalog.sqlViewName IPSVAROBJMAP view
AbapCatalog.compiler.compareFilter true view
AbapCatalog.preserveKey true view
AccessControl.authorizationCheck #NOT_REQUIRED view
VDM.viewType #BASIC view
ObjectModel.usageType.sizeCategory #S view
ObjectModel.usageType.serviceQuality #C view
ObjectModel.usageType.dataClass #MASTER view
ClientHandling.algorithm #SESSION_VARIABLE view
EndUserText.label IPPE variants to GOS objects mapping view

Fields (2)

KeyFieldSource TableSource FieldDescription
KEY ProductStructureVariantType pvtype Variant Type
ProductStructureGnrcObjType _ppe_c_i2g gos_object

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_ProdStrucVarGnrcObjTypeMap.
-- 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: IPSVAROBJMAP

CREATE VIEW I_ProdStrucVarGnrcObjTypeMap AS
SELECT
  pvtype AS ProductStructureVariantType,
  _ppe_c_i2g.gos_object AS ProductStructureGnrcObjType
FROM cpvtype
;