I_TextDeterminationProcedure
Text Determination Procedure
I_TextDeterminationProcedure is a Basic CDS View that provides data about "Text Determination Procedure" in SAP S/4HANA. It reads from 1 data source (ttxg) and exposes 5 fields with key fields TextObjectCategory, TextDeterminationProcedure. It has 2 associations to related views.
Data Sources (1)
| Source | Alias | Join Type |
|---|---|---|
| ttxg | ttxg | from |
Associations (2)
| Cardinality | Target | Alias | Condition |
|---|---|---|---|
| [0..1] | I_TextObjectCategory | _TextObjectCategory | $projection.TextObjectCategory = _TextObjectCategory.TextObjectCategory |
| [0..*] | I_TextDeterminationProcedureT | _Text | $projection.TextDeterminationProcedure = _Text.TextDeterminationProcedure and $projection.TextObjectCategory = _Text.TextObjectCategory |
Annotations (13)
| Name | Value | Level | Field |
|---|---|---|---|
| ClientHandling.algorithm | #SESSION_VARIABLE | view | |
| AbapCatalog.sqlViewName | ITEXTDETPROC | view | |
| AbapCatalog.preserveKey | true | view | |
| AbapCatalog.compiler.compareFilter | true | view | |
| AbapCatalog.buffering.type | #FULL | view | |
| AbapCatalog.buffering.status | #ACTIVE | view | |
| VDM.viewType | #BASIC | view | |
| AccessControl.authorizationCheck | #NOT_REQUIRED | view | |
| ObjectModel.representativeKey | TextDeterminationProcedure | view | |
| ObjectModel.usageType.dataClass | #CUSTOMIZING | view | |
| ObjectModel.usageType.serviceQuality | #A | view | |
| ObjectModel.usageType.sizeCategory | #S | view | |
| EndUserText.label | Text Determination Procedure | view |
Fields (5)
| Key | Field | Source Table | Source Field | Description |
|---|---|---|---|---|
| KEY | TextObjectCategory | tdobject | ||
| KEY | TextDeterminationProcedure | txtgr | ||
| TextDeterminationProcedObject | txtob | |||
| _Text | _Text | |||
| _TextObjectCategory | _TextObjectCategory |
@ClientHandling.algorithm: #SESSION_VARIABLE
@AbapCatalog: {
sqlViewName: 'ITEXTDETPROC',
preserveKey: true,
compiler.compareFilter: true,
buffering: {
type: #FULL,
status: #ACTIVE
}
}
@VDM.viewType: #BASIC
@AccessControl.authorizationCheck: #NOT_REQUIRED
@ObjectModel: {
representativeKey: 'TextDeterminationProcedure',
usageType: {
dataClass: #CUSTOMIZING,
serviceQuality: #A,
sizeCategory: #S
}
}
@EndUserText.label: 'Text Determination Procedure'
define view I_TextDeterminationProcedure
as select from ttxg
association [0..1] to I_TextObjectCategory as _TextObjectCategory on $projection.TextObjectCategory = _TextObjectCategory.TextObjectCategory
association [0..*] to I_TextDeterminationProcedureT as _Text on $projection.TextDeterminationProcedure = _Text.TextDeterminationProcedure
and $projection.TextObjectCategory = _Text.TextObjectCategory
{
@ObjectModel.foreignKey.association: '_TextObjectCategory'
key tdobject as TextObjectCategory,
@ObjectModel.text.association: '_Text'
key txtgr as TextDeterminationProcedure,
txtob as TextDeterminationProcedObject,
_Text,
_TextObjectCategory
}
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