I_PayFnPartyRoleIdentifierText
Party Role - Text
I_PayFnPartyRoleIdentifierText is a Basic CDS View that provides data about "Party Role - Text" in SAP S/4HANA. It reads from 1 data source (dd07t) and exposes 3 fields with key fields Language, PayFnPartyRoleIdentifier. Part of development package RAP_PF2_UI_MON.
Data Sources (1)
| Source | Alias | Join Type |
|---|---|---|
| dd07t | dd07t | from |
Annotations (11)
| Name | Value | Level | Field |
|---|---|---|---|
| AccessControl.authorizationCheck | #NOT_REQUIRED | view | |
| EndUserText.label | Party Role - Text | view | |
| Metadata.ignorePropagatedAnnotations | true | view | |
| ObjectModel.dataCategory | #TEXT | view | |
| ObjectModel.representativeKey | PayFnPartyRoleIdentifier | view | |
| ObjectModel.usageType.sizeCategory | #L | view | |
| ObjectModel.usageType.serviceQuality | #C | view | |
| ObjectModel.usageType.dataClass | #META | view | |
| Search.searchable | true | view | |
| VDM.viewType | #BASIC | view | |
| Analytics.technicalName | IPayFnPartyRoleIdText | view |
Fields (3)
| Key | Field | Source Table | Source Field | Description |
|---|---|---|---|---|
| KEY | Language | |||
| KEY | PayFnPartyRoleIdentifier | |||
| PayFnAccountGroupRole |
//@AbapCatalog.viewEnhancementCategory: [#NONE]
@AccessControl.authorizationCheck: #NOT_REQUIRED
@EndUserText.label: 'Party Role - Text'
@Metadata.ignorePropagatedAnnotations: true
@ObjectModel.dataCategory: #TEXT
@ObjectModel.representativeKey: 'PayFnPartyRoleIdentifier'
//@ObjectModel.modelingPattern: #LANGUAGE_DEPENDENT_TEXT
@ObjectModel.usageType.sizeCategory: #L
@ObjectModel.usageType.serviceQuality: #C
@ObjectModel.usageType.dataClass: #META
@Search.searchable: true
@VDM.viewType: #BASIC
//@AbapCatalog.sqlViewName: 'IDIRECTIONT'
@Analytics.technicalName: 'IPayFnPartyRoleIdText'
define view entity I_PayFnPartyRoleIdentifierText
as select from dd07t
// association [0..1] to I_Language as _Language on $projection.Language = _Language.Language
{
// @ObjectModel.foreignKey.association: '_Language'
@Semantics.language: true
key cast( dd07t.ddlanguage as spras preserving type ) as Language,
@ObjectModel.text.element: ['PayFnAccountGroupRole']
key cast (dd07t.domvalue_l as pf2_party_role_id ) as PayFnPartyRoleIdentifier,
@Search.defaultSearchElement: true
@Search.fuzzinessThreshold: 0.8
@Search.ranking: #LOW
@Semantics.text: true
cast( dd07t.ddtext as pf2_account_group_role ) as PayFnAccountGroupRole
// ,
//
// _Language
}
where
(
dd07t.domname = 'PF2_PARTY_ROLE_ID'
and dd07t.as4local = 'A'
and dd07t.as4vers = '0000'
)
and dd07t.ddlanguage = $session.system_language
;
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