I_SupProtCharacteristicVH

DDL: I_SUPPROTCHARACTERISTICVH Type: view_entity COMPOSITE Package: ATP_SUP_VDM

Supply Protection Characteristics

I_SupProtCharacteristicVH is a Composite CDS View that provides data about "Supply Protection Characteristics" in SAP S/4HANA. It reads from 1 data source (I_ProdAllocCharcCatalogPath) and exposes 5 fields with key field ProdAllocCharcCtlgPathUUID. It has 1 association to related views. It is exposed through 1 OData service (ASQL_F4569). Part of development package ATP_SUP_VDM.

Data Sources (1)

SourceAliasJoin Type
I_ProdAllocCharcCatalogPath I_ProdAllocCharcCatalogPath from

Associations (1)

CardinalityTargetAliasCondition
[0..1] I_ProdAllocCharcCtlgPathPicker _CharcCatalogText _CharcCatalogText.ProdAllocCharcCtlgPathIntID = $projection.ProdAllocCharcCtlgPathIntID

Annotations (9)

NameValueLevelField
ObjectModel.dataCategory #VALUE_HELP view
ObjectModel.usageType.serviceQuality #C view
ObjectModel.usageType.sizeCategory #S view
ObjectModel.usageType.dataClass #MIXED view
ObjectModel.representativeKey ProdAllocCharcCtlgPathUUID view
AccessControl.authorizationCheck #MANDATORY view
VDM.lifecycle.contract.type #SAP_INTERNAL_API view
VDM.viewType #COMPOSITE view
EndUserText.label Supply Protection Characteristics view

OData Services (1)

ServiceBindingVersionContractRelease
ASQL_F4569 ASQL_F4569 C2 NOT_RELEASED

Fields (5)

KeyFieldSource TableSource FieldDescription
KEY ProdAllocCharcCtlgPathUUID ProdAllocCharcCtlgPathUUID Product Allocation Characteristic Catalog Path UUID
ProdAllocCharcCtlgPathIntID ProdAllocCharcCtlgPathIntID Catalog Path Internal ID
ProdAllocCharcCatalogType ProdAllocCharcCatalogType Catalog Type
Characteristic
_CharcCatalogText _CharcCatalogText

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_SupProtCharacteristicVH.
-- 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_SupProtCharacteristicVH AS
SELECT
  ProdAllocCharcCtlgPathUUID,
  ProdAllocCharcCtlgPathIntID,
  ProdAllocCharcCatalogType,
  cast(_CharcCatalogText(P_HasText:'X').ProdAllocCharcCtlgPathDesc as sup_charc_text) AS Characteristic
FROM I_ProdAllocCharcCatalogPath
LEFT OUTER JOIN I_ProdAllocCharcCtlgPathPicker AS _CharcCatalogText ON _CharcCatalogText.ProdAllocCharcCtlgPathIntID = ProdAllocCharcCtlgPathIntID  -- association [0..1]
;