I_OCApplObjectTypeText
Application Object Type - Text
I_OCApplObjectTypeText is a Basic CDS View that provides data about "Application Object Type - Text" in SAP S/4HANA. It reads from 1 data source (apoc_i_obj_typet) and exposes 5 fields with key fields OutputControlApplObjectType, Language. It has 2 associations to related views. Part of development package APOC_OUTPUT_CONTROL_IMPL.
Data Sources (1)
| Source | Alias | Join Type |
|---|---|---|
| apoc_i_obj_typet | apoc_i_obj_typet | from |
Associations (2)
| Cardinality | Target | Alias | Condition |
|---|---|---|---|
| [0..1] | I_OutputControlApplObjectType | _OutputControlApplObjectType | $projection.OutputControlApplObjectType = _OutputControlApplObjectType.OutputControlApplObjectType |
| [0..1] | I_Language | _Language | $projection.Language = _Language.Language |
Annotations (13)
| Name | Value | Level | Field |
|---|---|---|---|
| AbapCatalog.sqlViewName | IOCAPPLOBJTYTXT | view | |
| AbapCatalog.compiler.compareFilter | true | view | |
| VDM.viewType | #BASIC | view | |
| Search.searchable | true | view | |
| ClientHandling.type | #INHERITED | view | |
| ClientHandling.algorithm | #SESSION_VARIABLE | view | |
| AccessControl.authorizationCheck | #NOT_REQUIRED | view | |
| ObjectModel.usageType.serviceQuality | #A | view | |
| ObjectModel.usageType.sizeCategory | #M | view | |
| ObjectModel.usageType.dataClass | #META | view | |
| ObjectModel.dataCategory | #TEXT | view | |
| ObjectModel.representativeKey | OutputControlApplObjectType | view | |
| EndUserText.label | Application Object Type - Text | view |
Fields (5)
| Key | Field | Source Table | Source Field | Description |
|---|---|---|---|---|
| KEY | OutputControlApplObjectType | appl_obj_type | ||
| KEY | Language | language | ||
| OCApplObjectTypeDescription | description | |||
| _OutputControlApplObjectType | _OutputControlApplObjectType | |||
| _Language | _Language |
@AbapCatalog.sqlViewName: 'IOCAPPLOBJTYTXT'
@AbapCatalog.compiler.compareFilter: true
@VDM.viewType: #BASIC
@Search.searchable: true
@ClientHandling.type: #INHERITED
@ClientHandling.algorithm: #SESSION_VARIABLE
@AccessControl.authorizationCheck: #NOT_REQUIRED
@ObjectModel: {
usageType.serviceQuality: #A,
usageType.sizeCategory: #M,
usageType.dataClass: #META,
dataCategory: #TEXT,
representativeKey: 'OutputControlApplObjectType'
}
@EndUserText.label: 'Application Object Type - Text'
@UI.presentationVariant:[{sortOrder:[{by:'OutputControlApplObjectType',direction:#DESC}]}]
define view I_OCApplObjectTypeText
as select from apoc_i_obj_typet
association [0..1] to I_OutputControlApplObjectType as _OutputControlApplObjectType on $projection.OutputControlApplObjectType = _OutputControlApplObjectType.OutputControlApplObjectType
association [0..1] to I_Language as _Language on $projection.Language = _Language.Language
{
@ObjectModel.foreignKey.association: '_OutputControlApplObjectType'
key appl_obj_type as OutputControlApplObjectType,
@Semantics.language
@ObjectModel.foreignKey.association: '_Language'
key language as Language,
@Semantics.text
@Search: {
defaultSearchElement: true,
fuzzinessThreshold: 0.8,
ranking: #LOW
}
description as OCApplObjectTypeDescription,
//Associations
_OutputControlApplObjectType,
_Language
}
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