I_TrdgContrFieldCatalogData

DDL: I_TRDGCONTRFIELDCATALOGDATA SQL: ICONTFLDCATALOG Type: view BASIC

Trading Contract field catalog data

I_TrdgContrFieldCatalogData is a Basic CDS View that provides data about "Trading Contract field catalog data" in SAP S/4HANA. It reads from 5 data sources (wbhd, wbhi, wbgt, wbhk, mara) and exposes 17 fields with key fields ContractNum, TradingContractItem.

Data Sources (5)

SourceAliasJoin Type
wbhd Business inner
wbhi ContractItem inner
wbgt GenericDocInfo inner
wbhk Header from
mara Material inner

Annotations (11)

NameValueLevelField
AbapCatalog.sqlViewName ICONTFLDCATALOG view
AccessControl.authorizationCheck #NOT_REQUIRED view
ClientHandling.type #INHERITED view
ClientHandling.algorithm #SESSION_VARIABLE view
VDM.viewType #BASIC view
AbapCatalog.compiler.compareFilter true view
AbapCatalog.preserveKey true view
ObjectModel.usageType.dataClass #TRANSACTIONAL view
ObjectModel.usageType.serviceQuality #C view
ObjectModel.usageType.sizeCategory #L view
EndUserText.label Trading Contract field catalog data view

Fields (17)

KeyFieldSource TableSource FieldDescription
KEY ContractNum wbhi tkonn Trading Contract
KEY TradingContractItem wbhi tposn Item Number
inco1_sdelseendasIncoterms
CompanyCode wbhk company_code Company Code
ProfitCenter wbhi prctr Profit Centers
SalesOrganization wbhk vkorg SD Sales Org.
DistributionChannel wbhk vtweg RefDistCh-Cust/Mat.
Division wbhk spart Source supplier
PurchasingOrganization wbhd ekorg Purchasing Org.
PurchasingGroup wbhd ekgrp Sub. purchasing grp
ContractPlant wbhi werks Receiving Plant
ContractMaterial wbhi matnr Vehicle Model
TradingContractType wbhk tctyp Contract Type
ModeOfTransport nom_hdr vktra Single-Character Flag
elifnelseendasCounterparty
Commodity mara commodity Commodity Code
MaterialGroup wbhi matkl Product Sold Group

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_TrdgContrFieldCatalogData.
-- 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: ICONTFLDCATALOG

CREATE VIEW I_TrdgContrFieldCatalogData AS
SELECT
  ContractItem.tkonn AS ContractNum,
  ContractItem.tposn AS TradingContractItem,
  case GenericDocInfo.side when 'P' then Business.inco1_mm when 'S' then Business.inco1_sd else '' end as Incoterms AS inco1_sdelseendasIncoterms,
  Header.company_code AS CompanyCode,
  ContractItem.prctr AS ProfitCenter,
  Header.vkorg AS SalesOrganization,
  Header.vtweg AS DistributionChannel,
  Header.spart AS Division,
  Business.ekorg AS PurchasingOrganization,
  Business.ekgrp AS PurchasingGroup,
  ContractItem.werks AS ContractPlant,
  ContractItem.matnr AS ContractMaterial,
  Header.tctyp AS TradingContractType,
  nom_hdr.vktra AS ModeOfTransport,
  case GenericDocInfo.side when 'S' then Header.kunnr when 'P' then Business.elifn else '' end as Counterparty AS elifnelseendasCounterparty,
  Material.commodity AS Commodity,
  ContractItem.matkl AS MaterialGroup
FROM wbhk AS Header
INNER JOIN wbhi AS ContractItem ON /* join condition not captured in parsed metadata */
INNER JOIN wbgt AS GenericDocInfo ON /* join condition not captured in parsed metadata */
INNER JOIN wbhd AS Business ON /* join condition not captured in parsed metadata */
INNER JOIN mara AS Material ON /* join condition not captured in parsed metadata */
;