I_ACMBUSPARTUOMCONFIGNDETAIL

CDS View

ACM Business Partner UoM Configuration Detail

I_ACMBUSPARTUOMCONFIGNDETAIL is a CDS View in S/4HANA. ACM Business Partner UoM Configuration Detail. 1 CDS views read from this table.

CDS Views using this table (1)

ViewTypeJoinVDMDescription
I_ACMBusPartUoMConfign view from COMPOSITE UoM Configuration
@AbapCatalog.sqlViewName: 'IUOMCONFIGDET'
@AbapCatalog.compiler.compareFilter: true
@AbapCatalog.preserveKey: true
@AccessControl.authorizationCheck: #CHECK
@EndUserText.label: 'ACM Business Partner UoM Configuration Detail'
@VDM: {
  viewType: #COMPOSITE,
  lifecycle.contract.type: #PUBLIC_LOCAL_API
  }
@ClientHandling.type: #CLIENT_DEPENDENT
@ClientHandling.algorithm: #SESSION_VARIABLE
@ObjectModel:{
               usageType: {
                 dataClass: #MASTER,
                 serviceQuality: #C,
                 sizeCategory: #S
               }
}
define view I_ACMBusPartUoMConfignDetail
  as select distinct from   I_ACMBusinessPartnerInfo as BpType
    left outer to many join I_ACMBusPartnerUoMConfig as BpUoMConfigWithBpClass    on BpUoMConfigWithBpClass.ACMBusinessPartnerType = BpType.ACMBusinessPartnerType
    left outer to many join I_ACMBusPartnerUoMConfig as BpUoMConfigWithoutBpClass on BpUoMConfigWithoutBpClass.ACMBusinessPartnerType is initial
{
  key BusinessPartnerNumber,
  key case
        when BpUoMConfigWithBpClass.PreferredUnitOfMeasure is not initial
          then BpUoMConfigWithBpClass.PreferredUnitOfMeasure
          else BpUoMConfigWithoutBpClass.PreferredUnitOfMeasure
        end as PreferredUnitOfMeasure
}
/*+[internal] {
"BASEINFO":
{
"FROM":
[
"I_ACMBUSINESSPARTNERINFO",
"I_ACMBUSPARTNERUOMCONFIG"
],
"ASSOCIATED":
[],
"BASE":
[],
"ANNO_REF":
[],
"SCALAR_FUNCTION":
[],
"VERSION":0,
"ANNOREF_EVALUATION_ERROR":""
}
}*/