I_PartnerFunction
Partner Function
I_PartnerFunction is a Basic CDS View (Dimension) that provides data about "Partner Function" in SAP S/4HANA. It reads from 1 data source (tpar) and exposes 4 fields with key field PartnerFunction. It has 2 associations to related views. It is exposed through 2 OData services (UI_INBOUNDDELIVERYMANAGE, UI_PRELIMBILLINGDOCUMENT_F6990). Part of development package VDM_SD_BF_PD.
Data Sources (1)
| Source | Alias | Join Type |
|---|---|---|
| tpar | tpar | from |
Associations (2)
| Cardinality | Target | Alias | Condition |
|---|---|---|---|
| [0..*] | I_PartnerFunctionText | _Text | $projection.PartnerFunction = _Text.PartnerFunction |
| [0..*] | I_PartnerFunctionLangDepdnt | _PartnerFunctionLangDepdnt | $projection.PartnerFunction = _PartnerFunctionLangDepdnt.PartnerFunction |
Annotations (17)
| Name | Value | Level | Field |
|---|---|---|---|
| ClientHandling.algorithm | #SESSION_VARIABLE | view | |
| ObjectModel.representativeKey | PartnerFunction | view | |
| ObjectModel.usageType.dataClass | #CUSTOMIZING | view | |
| ObjectModel.usageType.serviceQuality | #A | view | |
| ObjectModel.usageType.sizeCategory | #S | view | |
| EndUserText.label | Partner Function | view | |
| Analytics.dataCategory | #DIMENSION | view | |
| VDM.viewType | #BASIC | view | |
| AccessControl.authorizationCheck | #NOT_REQUIRED | view | |
| AbapCatalog.sqlViewName | ISDPARTFUNC | view | |
| AbapCatalog.buffering.status | #ACTIVE | view | |
| AbapCatalog.buffering.type | #FULL | view | |
| AbapCatalog.preserveKey | true | view | |
| AbapCatalog.compiler.compareFilter | true | view | |
| Metadata.ignorePropagatedAnnotations | true | view | |
| ObjectModel.modelingPattern | #ANALYTICAL_DIMENSION | view | |
| ObjectModel.sapObjectNodeType.name | PartnerFunction | view |
OData Services (2)
| Service | Binding | Version | Contract | Release |
|---|---|---|---|---|
| UI_INBOUNDDELIVERYMANAGE | UI_INBOUNDDELIVERYMANAGE | V4 | C1 | NOT_RELEASED |
| UI_PRELIMBILLINGDOCUMENT_F6990 | UI_PRELIMBILLINGDOCUMENT_F6990 | V4 | C1 | NOT_RELEASED |
Fields (4)
| Key | Field | Source Table | Source Field | Description |
|---|---|---|---|---|
| KEY | PartnerFunction | |||
| SDDocumentPartnerType | nrart | |||
| _Text | _Text | |||
| _PartnerFunctionLangDepdnt | _PartnerFunctionLangDepdnt |
@ClientHandling.algorithm: #SESSION_VARIABLE
@ObjectModel.representativeKey: 'PartnerFunction'
@ObjectModel.usageType.dataClass: #CUSTOMIZING
@ObjectModel.usageType.serviceQuality: #A
@ObjectModel.usageType.sizeCategory: #S
@EndUserText.label: 'Partner Function'
@Analytics.dataCategory: #DIMENSION
@VDM.viewType: #BASIC
@AccessControl.authorizationCheck: #NOT_REQUIRED
@AbapCatalog.sqlViewName: 'ISDPARTFUNC'
@AbapCatalog.buffering.status: #ACTIVE
@AbapCatalog.buffering.type: #FULL
@AbapCatalog.preserveKey: true
@AbapCatalog.compiler.compareFilter: true
@Metadata.ignorePropagatedAnnotations: true
@ObjectModel.modelingPattern: #ANALYTICAL_DIMENSION
@ObjectModel.supportedCapabilities: [ #SQL_DATA_SOURCE,
#CDS_MODELING_DATA_SOURCE,
#CDS_MODELING_ASSOCIATION_TARGET,
#ANALYTICAL_DIMENSION ]
@ObjectModel.sapObjectNodeType.name:'PartnerFunction'
define view I_PartnerFunction
as select from tpar
association [0..*] to I_PartnerFunctionText as _Text on $projection.PartnerFunction = _Text.PartnerFunction
association [0..*] to I_PartnerFunctionLangDepdnt as _PartnerFunctionLangDepdnt on $projection.PartnerFunction = _PartnerFunctionLangDepdnt.PartnerFunction
{
@ObjectModel.text.association: '_Text'
key cast(parvw as parvw_unv) as PartnerFunction,
nrart as SDDocumentPartnerType,
//Association
_Text,
_PartnerFunctionLangDepdnt
};
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