A_GrantCoreText
Grant Text
A_GrantCoreText is a Composite CDS View that provides data about "Grant Text" in SAP S/4HANA. It reads from 1 data source (R_GrantCoreTextTP) and exposes 5 fields with key fields GrantID, Language.
Data Sources (1)
| Source | Alias | Join Type |
|---|---|---|
| R_GrantCoreTextTP | R_GrantCoreTextTP | projection |
Annotations (10)
| Name | Value | Level | Field |
|---|---|---|---|
| ObjectModel.dataCategory | #TEXT | view | |
| AccessControl.authorizationCheck | #CHECK | view | |
| EndUserText.label | Grant Text | view | |
| Metadata.ignorePropagatedAnnotations | true | view | |
| VDM.lifecycle.contract.type | #PUBLIC_REMOTE_API | view | |
| ObjectModel.usageType.dataClass | #MASTER | view | |
| ObjectModel.usageType.serviceQuality | #A | view | |
| ObjectModel.usageType.sizeCategory | #L | view | |
| OData.entityType.name | GrantCoreText_Type | view | |
| VDM.viewType | #COMPOSITE | view |
Fields (5)
| Key | Field | Source Table | Source Field | Description |
|---|---|---|---|---|
| KEY | GrantID | GrantID | ||
| KEY | Language | Language | ||
| GrantName | GrantName | |||
| GrantDescription | GrantDescription | |||
| _GrantredirectedtoparentA_GrantCore |
@ObjectModel.dataCategory: #TEXT
@AccessControl.authorizationCheck: #CHECK
@EndUserText.label: 'Grant Text'
@Metadata.ignorePropagatedAnnotations: true
@VDM.lifecycle.contract.type: #PUBLIC_REMOTE_API
@ObjectModel.usageType: {
dataClass: #MASTER,
serviceQuality: #A,
sizeCategory: #L
}
@OData.entityType.name: 'GrantCoreText_Type'
@VDM.viewType: #COMPOSITE
@VDM.usage.type:[#TRANSACTIONAL_PROCESSING_SERVICE]
define view entity A_GrantCoreText
as projection on R_GrantCoreTextTP
// as select from I_GrantText
// association [1..1] to A_GrantCore as _Grant on $projection.GrantID = _Grant.GrantID
{
key GrantID,
@Semantics.language:true
key Language,
@Semantics.text:true
GrantName,
@Semantics.text:true
GrantDescription,
/* Associations */
_Grant: redirected to parent A_GrantCore
}
/*+[internal] {
"BASEINFO":
{
"FROM":
[
"R_GRANTCORETEXTTP"
],
"ASSOCIATED":
[
"A_GRANTCORE",
"R_GRANTCORETP"
],
"BASE":
[
"R_GRANTCORETEXTTP"
],
"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