I_CustMgmtPartnerFuncText
Service Document Partner Function Text
I_CustMgmtPartnerFuncText is a Basic CDS View that provides data about "Service Document Partner Function Text" in SAP S/4HANA. It reads from 1 data source (crmc_partner_ft) and exposes 3 fields with key fields PartnerFunction, Language. Part of development package CRMS4_REPORT.
Data Sources (1)
| Source | Alias | Join Type |
|---|---|---|
| crmc_partner_ft | crmc_partner_ft | from |
Annotations (12)
| Name | Value | Level | Field |
|---|---|---|---|
| AbapCatalog.sqlViewName | ICUSTPARTFUNCTXT | view | |
| AbapCatalog.preserveKey | true | view | |
| AbapCatalog.compiler.compareFilter | true | view | |
| ObjectModel.dataCategory | #TEXT | view | |
| ObjectModel.usageType.dataClass | #CUSTOMIZING | view | |
| ObjectModel.usageType.serviceQuality | #A | view | |
| ObjectModel.usageType.sizeCategory | #S | view | |
| ClientHandling.algorithm | #SESSION_VARIABLE | view | |
| EndUserText.label | Service Document Partner Function Text | view | |
| VDM.viewType | #BASIC | view | |
| AccessControl.authorizationCheck | #CHECK | view | |
| ObjectModel.representativeKey | PartnerFunction | view |
Fields (3)
| Key | Field | Source Table | Source Field | Description |
|---|---|---|---|---|
| KEY | PartnerFunction | |||
| KEY | Language | spras | ||
| PartnerFunctionName | description |
@AbapCatalog.sqlViewName: 'ICUSTPARTFUNCTXT'
@AbapCatalog.preserveKey:true
@AbapCatalog.compiler.compareFilter: true
@ObjectModel.dataCategory: #TEXT
@ObjectModel.usageType.dataClass: #CUSTOMIZING
@ObjectModel.usageType.serviceQuality: #A
@ObjectModel.usageType.sizeCategory: #S
@ClientHandling.algorithm: #SESSION_VARIABLE
@EndUserText.label: 'Service Document Partner Function Text'
@VDM.viewType: #BASIC
@AccessControl.authorizationCheck:#CHECK
@ObjectModel.representativeKey: 'PartnerFunction'
define view I_CustMgmtPartnerFuncText
as select from crmc_partner_ft
{
key cast( partner_fct as abap.char(8) ) as PartnerFunction,
@Semantics.language: true
key spras as Language,
@Semantics.text: true
description as PartnerFunctionName
}
where
spras = $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