C_ProcmtHubIncotermsClsfctnVH

DDL: C_PROCMTHUBINCOTERMSCLSFCTNVH SQL: CPROCHUBINCTRMS Type: view CONSUMPTION Package: ODATA_MM_PUR_EXT_PO

C-View for Search Help of Incoterms from Connected System

C_ProcmtHubIncotermsClsfctnVH is a Consumption CDS View that provides data about "C-View for Search Help of Incoterms from Connected System" in SAP S/4HANA. It reads from 1 data source (I_ProcmtHubIncotermsClsfctn) and exposes 4 fields with key fields ProcurementHubSourceSystem, IncotermsClassification. It has 1 association to related views. It is exposed through 2 OData services (ASQL_F3486, ASQL_F4104). Part of development package ODATA_MM_PUR_EXT_PO.

Data Sources (1)

SourceAliasJoin Type
I_ProcmtHubIncotermsClsfctn I_ProcmtHubIncotermsClsfctn from

Associations (1)

CardinalityTargetAliasCondition
[1..1] I_BackendSourceSystem _BackendSourceSystem $projection.ProcurementHubSourceSystem = _BackendSourceSystem.ProcurementHubSourceSystem

Annotations (10)

NameValueLevelField
AbapCatalog.sqlViewName CPROCHUBINCTRMS view
AbapCatalog.compiler.compareFilter true view
AccessControl.authorizationCheck #NOT_REQUIRED view
EndUserText.label C-View for Search Help of Incoterms from Connected System view
Search.searchable true view
VDM.viewType #CONSUMPTION view
ObjectModel.usageType.serviceQuality #B view
ObjectModel.usageType.sizeCategory #L view
ObjectModel.usageType.dataClass #MASTER view
ClientHandling.algorithm #SESSION_VARIABLE view

OData Services (2)

ServiceBindingVersionContractRelease
ASQL_F3486 ASQL_F3486 C2 NOT_RELEASED
ASQL_F4104 ASQL_F4104 C2 NOT_RELEASED

Fields (4)

KeyFieldSource TableSource FieldDescription
KEY ProcurementHubSourceSystem ProcurementHubSourceSystem Connected System ID
KEY IncotermsClassification IncotermsClassification Incoterms
IncotermsClassificationName _ProcmtHubIncotermsClsfctnTxt IncotermsClassificationName Incoterms description
ProcurementHubSourceSystemName _BackendSourceSystem ProcurementHubSourceSystemName Connected System Name

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_ProcmtHubIncotermsClsfctnVH.
-- 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: CPROCHUBINCTRMS

CREATE VIEW C_ProcmtHubIncotermsClsfctnVH AS
SELECT
  ProcurementHubSourceSystem,
  IncotermsClassification,
  _ProcmtHubIncotermsClsfctnTxt.IncotermsClassificationName AS IncotermsClassificationName,
  _BackendSourceSystem.ProcurementHubSourceSystemName AS ProcurementHubSourceSystemName
FROM I_ProcmtHubIncotermsClsfctn
LEFT OUTER JOIN I_BackendSourceSystem AS _BackendSourceSystem ON ProcurementHubSourceSystem = _BackendSourceSystem.ProcurementHubSourceSystem  -- association [1..1]
;