I_SrvcConfIssueText
Text view for customer management conf issue category
I_SrvcConfIssueText is a Basic CDS View that provides data about "Text view for customer management conf issue category" in SAP S/4HANA. It reads from 1 data source (dd07t) and exposes 4 fields with key fields SrvcConfIssue, Language. Part of development package CRMS4_ANALYTICS_SERVICE_CONF.
Data Sources (1)
| Source | Alias | Join Type |
|---|---|---|
| dd07t | dd07t | from |
Annotations (9)
| Name | Value | Level | Field |
|---|---|---|---|
| AccessControl.authorizationCheck | #NOT_REQUIRED | view | |
| EndUserText.label | Text view for customer management conf issue category | view | |
| ObjectModel.dataCategory | #TEXT | view | |
| ObjectModel.representativeKey | SrvcConfIssue | view | |
| ObjectModel.usageType.dataClass | #META | view | |
| ObjectModel.usageType.serviceQuality | #A | view | |
| ObjectModel.usageType.sizeCategory | #S | view | |
| Analytics.technicalName | ISRVCCONFISSTXT | view | |
| VDM.viewType | #BASIC | view |
Fields (4)
| Key | Field | Source Table | Source Field | Description |
|---|---|---|---|---|
| KEY | SrvcConfIssue | |||
| KEY | Language | ddlanguage | ||
| SrvcConfIssueName | ||||
| _Language | _Language |
@AccessControl.authorizationCheck: #NOT_REQUIRED
@EndUserText.label: 'Text view for customer management conf issue category'
@ObjectModel:
{
dataCategory: #TEXT,
representativeKey: 'SrvcConfIssue',
usageType:
{
dataClass: #META,
serviceQuality: #A,
sizeCategory: #S
}
}
@Analytics.technicalName: 'ISRVCCONFISSTXT'
@VDM.viewType: #BASIC
define view entity I_SrvcConfIssueText as
select from dd07t
// association[0..1] to I_ServiceIssue as _ServiceIssue on $projection.CustMgmtIssueCategoryName = _ServiceIssue.CustMgmtIssueCategory
association[0..1] to I_Language as _Language on $projection.Language = _Language.Language
{
// @ObjectModel.foreignKey.association: '_ServiceIssue'
@ObjectModel.text.element: ['SrvcConfIssueName']
key SUBSTRING(dd07t.domvalue_l, 1, 4) as SrvcConfIssue,
@Semantics.language
@ObjectModel.foreignKey.association: '_Language'
key ddlanguage as Language,
@Semantics.text: true
cast( ddtext as crms4_service_issue_name ) as SrvcConfIssueName,
//Associations
// _ServiceIssue,
_Language
}
where domname = 'CRMS4_SRVC_CONF_ISSUE' and as4local = 'A';
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