I_AdditionalCustomerMaterialTP

DDL: I_ADDITIONALCUSTOMERMATERIALTP SQL: ICUSTMATACMTP Type: view TRANSACTIONAL Package: ODATA_SD_CUSTOMER_MATERIAL

Additional Customer Material BO Node

I_AdditionalCustomerMaterialTP is a Transactional CDS View that provides data about "Additional Customer Material BO Node" in SAP S/4HANA. It reads from 1 data source (I_AdditionalCustomerMaterial) and exposes 8 fields with key fields SalesOrganization, DistributionChannel, Customer, Material, MaterialByCustomer. It has 1 association to related views. Part of development package ODATA_SD_CUSTOMER_MATERIAL.

Data Sources (1)

SourceAliasJoin Type
I_AdditionalCustomerMaterial I_AdditionalCustomerMaterial from

Associations (1)

CardinalityTargetAliasCondition
[1..1] I_CustomerMaterialTP _CustomerMaterial $projection.SalesOrganization = _CustomerMaterial.SalesOrganization and $projection.DistributionChannel = _CustomerMaterial.DistributionChannel and $projection.Customer = _CustomerMaterial.Customer and $projection.Material = _CustomerMaterial.Material

Annotations (18)

NameValueLevelField
ClientHandling.algorithm #SESSION_VARIABLE view
AbapCatalog.sqlViewName ICUSTMATACMTP view
AbapCatalog.compiler.compareFilter true view
AbapCatalog.preserveKey true view
Search.searchable false view
AccessControl.authorizationCheck #NOT_REQUIRED view
AccessControl.personalData.blocking #NOT_REQUIRED view
EndUserText.label Additional Customer Material BO Node view
VDM.viewType #TRANSACTIONAL view
VDM.lifecycle.contract.type #SAP_INTERNAL_API view
ObjectModel.draftEnabled true view
ObjectModel.writeDraftPersistence ICUSMATACMDRAFT view
ObjectModel.createEnabled true view
ObjectModel.deleteEnabled true view
ObjectModel.updateEnabled true view
ObjectModel.usageType.serviceQuality #C view
ObjectModel.usageType.sizeCategory #L view
ObjectModel.usageType.dataClass #TRANSACTIONAL view

Fields (8)

KeyFieldSource TableSource FieldDescription
KEY SalesOrganization SalesOrganization Sales Organization
KEY DistributionChannel DistributionChannel RefDistCh-Cust/Mat.
KEY Customer Customer Sold-to Party
KEY Material Vehicle Model
KEY MaterialByCustomer MaterialByCustomer Customer Mat.
MaterialByCustomerForEdit MaterialByCustomer Customer Mat.
MaterialDescriptionByCustomer MaterialDescriptionByCustomer Customer Descr.
_CustomerMaterial _CustomerMaterial

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_AdditionalCustomerMaterialTP.
-- 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: ICUSTMATACMTP

CREATE VIEW I_AdditionalCustomerMaterialTP AS
SELECT
  SalesOrganization,
  DistributionChannel,
  Customer,
  cast (Material as productnumber preserving type) AS Material,
  MaterialByCustomer,
  MaterialByCustomer AS MaterialByCustomerForEdit,
  MaterialDescriptionByCustomer
FROM I_AdditionalCustomerMaterial
LEFT OUTER JOIN I_CustomerMaterialTP AS _CustomerMaterial ON SalesOrganization = _CustomerMaterial.SalesOrganization AND DistributionChannel = _CustomerMaterial.DistributionChannel AND Customer = _CustomerMaterial.Customer AND Material = _CustomerMaterial.Material  -- association [1..1]
;