I_ACMTrdgContrTextObjTypeTxt
Master Data for ACM Trading Contract - Text
I_ACMTrdgContrTextObjTypeTxt is a Basic CDS View that provides data about "Master Data for ACM Trading Contract - Text" in SAP S/4HANA. It reads from 1 data source (I_TextObjectTypeText) and exposes 5 fields with key fields TextObjectCategory, TextObjectType, Language.
Data Sources (1)
| Source | Alias | Join Type |
|---|---|---|
| I_TextObjectTypeText | I_TextObjectTypeText | from |
Annotations (12)
| Name | Value | Level | Field |
|---|---|---|---|
| AbapCatalog.sqlViewName | ICONTRTXTOBJTEXT | view | |
| AbapCatalog.compiler.compareFilter | true | view | |
| AbapCatalog.preserveKey | true | view | |
| ObjectModel.dataCategory | #TEXT | view | |
| AccessControl.authorizationCheck | #CHECK | view | |
| VDM.viewType | #BASIC | view | |
| VDM.lifecycle.contract.type | #PUBLIC_LOCAL_API | view | |
| ClientHandling.algorithm | #SESSION_VARIABLE | view | |
| ObjectModel.usageType.dataClass | #MASTER | view | |
| ObjectModel.usageType.serviceQuality | #D | view | |
| ObjectModel.usageType.sizeCategory | #L | view | |
| EndUserText.label | Master Data for ACM Trading Contract - Text | view |
Fields (5)
| Key | Field | Source Table | Source Field | Description |
|---|---|---|---|---|
| KEY | TextObjectCategory | TextObjectCategory | ||
| KEY | TextObjectType | TextObjectType | ||
| KEY | Language | Language | ||
| TextObjectTypeName | TextObjectTypeName | |||
| _ACMTextObject | _ACMTextObject |
@AbapCatalog.sqlViewName: 'ICONTRTXTOBJTEXT'
@AbapCatalog.compiler.compareFilter: true
@AbapCatalog.preserveKey: true
@ObjectModel.dataCategory: #TEXT
@AccessControl.authorizationCheck: #CHECK
@VDM: {
viewType: #BASIC,
lifecycle.contract.type: #PUBLIC_LOCAL_API
}
@ClientHandling.algorithm: #SESSION_VARIABLE
@ObjectModel:{
usageType: {
dataClass: #MASTER,
serviceQuality: #D,
sizeCategory: #L
}
}
@EndUserText.label: 'Master Data for ACM Trading Contract - Text'
define view I_ACMTrdgContrTextObjTypeTxt
as select from I_TextObjectTypeText
association to parent I_ACMTrdgContrTextObjType as _ACMTextObject on
$projection.TextObjectCategory = _ACMTextObject.TextObjectCategory and
$projection.TextObjectType = _ACMTextObject.TextObjectType
{
key TextObjectCategory,
key TextObjectType,
@Semantics.language: true
key Language,
@Semantics.text: true
TextObjectTypeName,
_ACMTextObject
}
/*+[internal] {
"BASEINFO":
{
"FROM":
[
"I_TEXTOBJECTTYPETEXT"
],
"ASSOCIATED":
[
"I_ACMTRDGCONTRTEXTOBJTYPE"
],
"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