P_BG_SAFTSUPPLIERID

DDL: P_BG_SAFTSUPPLIERID Type: view_entity CONSUMPTION Package: GLO_FIN_IS_SAFT_BG

BG SAFT Supplier ID

P_BG_SAFTSUPPLIERID is a Consumption CDS View that provides data about "BG SAFT Supplier ID" in SAP S/4HANA. It reads from 3 data sources (I_BusinessPartner, I_Businesspartnertaxnumber, I_Supplier_to_BusinessPartner) and exposes 2 fields with key field Supplier. Part of development package GLO_FIN_IS_SAFT_BG.

Data Sources (3)

SourceAliasJoin Type
I_BusinessPartner BP inner
I_Businesspartnertaxnumber BPVAT from
I_Supplier_to_BusinessPartner Sup inner

Annotations (6)

NameValueLevelField
AccessControl.authorizationCheck #NOT_REQUIRED view
VDM.viewType #CONSUMPTION view
VDM.private true view
ObjectModel.usageType.sizeCategory #M view
ObjectModel.usageType.serviceQuality #A view
ObjectModel.usageType.dataClass #MASTER view

Fields (2)

KeyFieldSource TableSource FieldDescription
KEY Supplier I_Supplier_to_BusinessPartner Supplier
BPTaxLongNumber I_Businesspartnertaxnumber BPTaxLongNumber
@AccessControl.authorizationCheck: #NOT_REQUIRED
@VDM.viewType: #CONSUMPTION
@VDM.private:true
@ObjectModel.usageType.sizeCategory: #M
@ObjectModel.usageType.serviceQuality: #A
@ObjectModel.usageType.dataClass: #MASTER
define view entity P_BG_SAFTSUPPLIERID
  as select from I_Businesspartnertaxnumber    as BPVAT
    inner join   I_BusinessPartner             as BP  on BP.BusinessPartner = BPVAT.BusinessPartner
    inner join   I_Supplier_to_BusinessPartner as Sup on Sup.BusinessPartnerUUID = BP.BusinessPartnerUUID

{

  key    Sup.Supplier,
         BPVAT.BPTaxLongNumber
}
where
  BPVAT.BPTaxType = 'BG8'