P_BG_SAFTSUPPLIERID
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)
| Source | Alias | Join Type |
|---|---|---|
| I_BusinessPartner | BP | inner |
| I_Businesspartnertaxnumber | BPVAT | from |
| I_Supplier_to_BusinessPartner | Sup | inner |
Annotations (6)
| Name | Value | Level | Field |
|---|---|---|---|
| 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)
| Key | Field | Source Table | Source Field | Description |
|---|---|---|---|---|
| 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'
Learn More
- What Is a CDS View in SAP S/4HANA?
- Types of CDS Views: Basic, Composite, Consumption, and Transactional
- SAP Tables vs CDS Views — Key Differences
- Understanding Data Lineage in SAP S/4HANA
- VDM (Virtual Data Model) in SAP S/4HANA Explained
- CDS View Annotations — A Complete Guide
- CDS View Field Mapping and Associations
- Understanding the SAP S/4HANA Data Model
- CDS View Extensions and Custom Fields in SAP S/4HANA
- Released APIs and Stability Contracts in SAP S/4HANA