I_BPSupplierPartnerFunctionTP
Supplier Partner Function TP
I_BPSupplierPartnerFunctionTP is a Transactional CDS View that provides data about "Supplier Partner Function TP" in SAP S/4HANA. It reads from 1 data source (I_BPSupplierPartnerFunction) and exposes 22 fields with key fields BusinessPartner, PurchasingOrganization, PartnerFunction, PartnerCounter. It has 3 associations to related views.
Data Sources (1)
| Source | Alias | Join Type |
|---|---|---|
| I_BPSupplierPartnerFunction | SupplierPartnerFunc | from |
Associations (3)
| Cardinality | Target | Alias | Condition |
|---|---|---|---|
| [1..1] | I_BusinessPartnerPurgOrgTP | _BPPurchasingOrg | $projection.PurchasingOrganization = _BPPurchasingOrg.PurchasingOrganization and $projection.BusinessPartner = _BPPurchasingOrg.BusinessPartner |
| [1..1] | I_BusinessPartnerTP | _BusinessPartner | $projection.BusinessPartner = _BusinessPartner.BusinessPartner |
| [0..1] | I_PartnerFunctionText | _PartnerFunctionText | $projection.PartnerFunctionForEdit = _PartnerFunctionText.PartnerFunction and _PartnerFunctionText.Language = $session.system_language |
Annotations (14)
| Name | Value | Level | Field |
|---|---|---|---|
| AbapCatalog.sqlViewName | IBPSUPPARTFUNCTP | view | |
| AbapCatalog.compiler.compareFilter | true | view | |
| AbapCatalog.preserveKey | true | view | |
| AccessControl.authorizationCheck | #CHECK | view | |
| AccessControl.personalData.blocking | #REQUIRED | view | |
| ClientHandling.algorithm | #SESSION_VARIABLE | view | |
| EndUserText.label | Supplier Partner Function TP | view | |
| ObjectModel.writeDraftPersistence | BPsupl_pf_d | view | |
| ObjectModel.draftEnabled | true | view | |
| VDM.viewType | #TRANSACTIONAL | view | |
| Search.searchable | true | view | |
| ObjectModel.usageType.serviceQuality | #C | view | |
| ObjectModel.usageType.sizeCategory | #XXL | view | |
| ObjectModel.usageType.dataClass | #MASTER | view |
Fields (22)
| Key | Field | Source Table | Source Field | Description |
|---|---|---|---|---|
| KEY | BusinessPartner | I_BPSupplierPartnerFunction | BusinessPartner | |
| KEY | PurchasingOrganization | I_BPSupplierPartnerFunction | PurchasingOrganization | |
| KEY | PartnerFunction | I_BPSupplierPartnerFunction | PartnerFunction | |
| KEY | PartnerCounter | I_BPSupplierPartnerFunction | PartnerCounter | |
| BusinessPartnerForEdit | I_BPSupplierPartnerFunction | BusinessPartner | ||
| PurchasingOrganizationForEdit | I_BPSupplierPartnerFunction | PurchasingOrganization | ||
| PartnerFunctionForEdit | I_BPSupplierPartnerFunction | PartnerFunction | ||
| PartnerCounterForEdit | I_BPSupplierPartnerFunction | PartnerCounter | ||
| Supplier | I_BPSupplierPartnerFunction | Supplier | ||
| BusinessPartnerGrouping | _BusinessPartner | BusinessPartnerGrouping | ||
| ContactPerson | I_BPSupplierPartnerFunction | ContactPerson | ||
| DefaultPartner | I_BPSupplierPartnerFunction | DefaultPartner | ||
| PartnerFunctionType | I_BPSupplierPartnerFunction | PartnerFunctionType | ||
| ReferenceSupplier | I_BPSupplierPartnerFunction | ReferenceSupplier | ||
| Plant | I_BPSupplierPartnerFunction | Plant | ||
| SupplierSubrange | I_BPSupplierPartnerFunction | SupplierSubrange | ||
| Partner | ||||
| BusinessPartnerName | ||||
| PartnerFunctionName | _PartnerFunctionText | PartnerFunctionName | ||
| _BPPurchasingOrg | _BPPurchasingOrg | |||
| _BusinessPartner | _BusinessPartner | |||
| _PartnerFunctionText | _PartnerFunctionText |
@AbapCatalog.sqlViewName: 'IBPSUPPARTFUNCTP'
@AbapCatalog.compiler.compareFilter: true
@AbapCatalog.preserveKey: true
@AccessControl.authorizationCheck: #CHECK
@AccessControl.personalData.blocking: #REQUIRED
@ClientHandling.algorithm: #SESSION_VARIABLE
@EndUserText.label: 'Supplier Partner Function TP'
//@ObjectModel.transactionalProcessingEnabled : true
@ObjectModel.writeDraftPersistence: 'BPsupl_pf_d'
@ObjectModel.draftEnabled:true
@VDM.viewType: #TRANSACTIONAL
@Search.searchable: true
//@ClientDependent: true
@ObjectModel.createEnabled
@ObjectModel.updateEnabled
@ObjectModel.deleteEnabled
@ObjectModel.usageType.serviceQuality: #C
@ObjectModel.usageType.sizeCategory: #XXL
@ObjectModel.usageType.dataClass: #MASTER
define view I_BPSupplierPartnerFunctionTP
as select from I_BPSupplierPartnerFunction as SupplierPartnerFunc
association [1..1] to I_BusinessPartnerPurgOrgTP as _BPPurchasingOrg on $projection.PurchasingOrganization = _BPPurchasingOrg.PurchasingOrganization
and $projection.BusinessPartner = _BPPurchasingOrg.BusinessPartner
association [1..1] to I_BusinessPartnerTP as _BusinessPartner on $projection.BusinessPartner = _BusinessPartner.BusinessPartner
association [0..1] to I_PartnerFunctionText as _PartnerFunctionText on $projection.PartnerFunctionForEdit = _PartnerFunctionText.PartnerFunction
and _PartnerFunctionText.Language = $session.system_language
{
key SupplierPartnerFunc.BusinessPartner as BusinessPartner,
key SupplierPartnerFunc.PurchasingOrganization as PurchasingOrganization,
key SupplierPartnerFunc.PartnerFunction as PartnerFunction,
key SupplierPartnerFunc.PartnerCounter as PartnerCounter,
@ObjectModel.mandatory: 'EXTERNAL_CALCULATION'
SupplierPartnerFunc.BusinessPartner as BusinessPartnerForEdit,
@ObjectModel.mandatory: 'EXTERNAL_CALCULATION'
SupplierPartnerFunc.PurchasingOrganization as PurchasingOrganizationForEdit,
@ObjectModel.mandatory: 'EXTERNAL_CALCULATION'
@ObjectModel.readOnly: 'EXTERNAL_CALCULATION'
SupplierPartnerFunc.PartnerFunction as PartnerFunctionForEdit,
@ObjectModel.mandatory: 'EXTERNAL_CALCULATION'
SupplierPartnerFunc.PartnerCounter as PartnerCounterForEdit,
@Search.defaultSearchElement: true
@Search.fuzzinessThreshold: 0.8
@Search.ranking: #HIGH
@ObjectModel.mandatory: 'EXTERNAL_CALCULATION'
SupplierPartnerFunc.Supplier as Supplier,
@ObjectModel.mandatory: 'EXTERNAL_CALCULATION'
_BusinessPartner.BusinessPartnerGrouping as BusinessPartnerGrouping,
@ObjectModel.readOnly: 'EXTERNAL_CALCULATION'
SupplierPartnerFunc.ContactPerson as ContactPerson,
@ObjectModel.mandatory: 'EXTERNAL_CALCULATION'
@ObjectModel.readOnly: 'EXTERNAL_CALCULATION'
SupplierPartnerFunc.DefaultPartner as DefaultPartner,
SupplierPartnerFunc.PartnerFunctionType as PartnerFunctionType,
@ObjectModel.mandatory: 'EXTERNAL_CALCULATION'
@ObjectModel.readOnly: 'EXTERNAL_CALCULATION'
SupplierPartnerFunc.ReferenceSupplier as ReferenceSupplier,
SupplierPartnerFunc.Plant as Plant,
SupplierPartnerFunc.SupplierSubrange as SupplierSubrange,
_SupplierToBusinessPartner._BusinessPartner.BusinessPartner as Partner,
coalesce(_SupplierToBusinessPartner._BusinessPartner.BusinessPartnerName, _SupplierToBusinessPartner._BusinessPartner.BusinessPartnerFullName) as BusinessPartnerName,
_PartnerFunctionText.PartnerFunctionName,
@ObjectModel.association.type: [ #TO_COMPOSITION_PARENT]
_BPPurchasingOrg,
@ObjectModel.association.type: [ #TO_COMPOSITION_ROOT]
_BusinessPartner,
_PartnerFunctionText
}
/*+[internal] {
"BASEINFO":
{
"FROM":
[
"I_BPSUPPLIERPARTNERFUNCTION",
"I_BUSINESSPARTNER",
"I_BUSINESSPARTNERTP",
"I_PARTNERFUNCTIONTEXT",
"I_SUPPLIERTOBUSINESSPARTNER"
],
"ASSOCIATED":
[
"I_BUSINESSPARTNERPURGORGTP",
"I_BUSINESSPARTNERTP",
"I_PARTNERFUNCTIONTEXT"
],
"BASE":
[],
"ANNO_REF":
[],
"SCALAR_FUNCTION":
[],
"VERSION":0,
"ANNOREF_EVALUATION_ERROR":""
}
}*/
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