SUIM_PROF_TITLE
SUIM|Short Text for Auth.-Profiles
SUIM_PROF_TITLE is a CDS View that provides data about "SUIM|Short Text for Auth.-Profiles" in SAP S/4HANA. It reads from 1 data source (usr10) and exposes 2 fields with key field profn.
Data Sources (1)
| Source | Alias | Join Type |
|---|---|---|
| usr10 | x | from |
Annotations (6)
| Name | Value | Level | Field |
|---|---|---|---|
| AccessControl.authorizationCheck | #NOT_REQUIRED | view | |
| EndUserText.label | SUIM|Short Text for Auth.-Profiles | view | |
| Metadata.ignorePropagatedAnnotations | true | view | |
| ObjectModel.usageType.serviceQuality | #X | view | |
| ObjectModel.usageType.sizeCategory | #S | view | |
| ObjectModel.usageType.dataClass | #MIXED | view |
Fields (2)
| Key | Field | Source Table | Source Field | Description |
|---|---|---|---|---|
| KEY | profn | usr10 | profn | |
| tx_val |
@AbapCatalog.viewEnhancementCategory: [#NONE]
@AccessControl.authorizationCheck: #NOT_REQUIRED
@EndUserText.label: 'SUIM|Short Text for Auth.-Profiles'
@Metadata.ignorePropagatedAnnotations: true
@ObjectModel.usageType:{
serviceQuality: #X,
sizeCategory: #S,
dataClass: #MIXED
}
define view entity SUIM_PROF_TITLE
as select from usr10 as x
association to usr11 as _tx_sys on ( _tx_sys.profn = x.profn and _tx_sys.langu = $session.system_language and _tx_sys.aktps = 'A' )
association to usr11 as _tx_en on ( _tx_en.profn = x.profn and _tx_en.langu = 'E' and _tx_en.aktps = 'A' )
{
key x.profn,
coalesce( _tx_sys.ptext, _tx_en.ptext ) as tx_val
} where x.aktps = 'A'
/*+[internal] {
"BASEINFO":
{
"FROM":
[
"USR10",
"USR11"
],
"ASSOCIATED":
[],
"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