I_ADDITIONALCUSTOMERMATERIAL

CDS View

Additional Customer Materials

I_ADDITIONALCUSTOMERMATERIAL is a CDS View in S/4HANA. Additional Customer Materials. 1 CDS views read from this table.

CDS Views using this table (1)

ViewTypeJoinVDMDescription
I_AdditionalCustomerMaterialTP view from TRANSACTIONAL Additional Customer Material BO Node
@ClientHandling.algorithm: #SESSION_VARIABLE
@ObjectModel.usageType.dataClass: #MASTER
@ObjectModel.usageType.serviceQuality: #A 
@ObjectModel.usageType.sizeCategory: #M 
@EndUserText.label: 'Additional Customer Materials'
@VDM.viewType: #BASIC
@AccessControl.authorizationCheck: #NOT_REQUIRED
@AccessControl.personalData.blocking: #NOT_REQUIRED
@AbapCatalog.sqlViewName: 'ISDADDCUSTMAT'
@AbapCatalog.compiler.compareFilter: true
@AbapCatalog.preserveKey: true
@AbapCatalog.buffering.status: #ACTIVE
@AbapCatalog.buffering.type: #FULL
@Metadata.ignorePropagatedAnnotations: true

define view I_AdditionalCustomerMaterial as 

select

from knmta
join knmt on knmta.guid = knmt.guid

association [1..1] to I_CustomerMaterial as _CustomerMaterial 
    on  $projection.SalesOrganization = _CustomerMaterial.SalesOrganization 
    and $projection.DistributionChannel = _CustomerMaterial.DistributionChannel
    and $projection.Customer = _CustomerMaterial.Customer
    and $projection.Material = _CustomerMaterial.Material
    and $projection.Product = _CustomerMaterial.Product

{
    key knmt.vkorg  as SalesOrganization,
    key knmt.vtweg  as DistributionChannel,
    key knmt.kunnr  as Customer,
    @VDM.lifecycle.status: #DEPRECATED
    @VDM.lifecycle.successor: 'Product'
    key knmt.matnr  as Material,
    key cast (knmt.matnr as productnumber preserving type) as Product,
    key knmta.kdmat as MaterialByCustomer,

    @Semantics.text: true
    addpostx        as MaterialDescriptionByCustomer,
    
    _CustomerMaterial
}

/*+[internal] {
"BASEINFO":
{
"FROM":
[
"KNMT",
"KNMTA"
],
"ASSOCIATED":
[
"I_CUSTOMERMATERIAL"
],
"BASE":
[],
"ANNO_REF":
[],
"SCALAR_FUNCTION":
[],
"VERSION":0,
"ANNOREF_EVALUATION_ERROR":""
}
}*/