Application_Component_Text
Application Component Description
Application_Component_Text is a CDS View that provides data about "Application Component Description" in SAP S/4HANA. It reads from 1 data source (df14t) and exposes 3 fields with key fields ApplicationComponent, Language.
Data Sources (1)
| Source | Alias | Join Type |
|---|---|---|
| df14t | df14t | from |
Annotations (5)
| Name | Value | Level | Field |
|---|---|---|---|
| AbapCatalog.sqlViewName | APPLCOMPTEXT | view | |
| EndUserText.label | Application Component Description | view | |
| ObjectModel.usageType.serviceQuality | #P | view | |
| ClientHandling.algorithm | #SESSION_VARIABLE | view | |
| AccessControl.authorizationCheck | #NOT_REQUIRED | view |
@AbapCatalog.sqlViewName: 'APPLCOMPTEXT'
@EndUserText.label: 'Application Component Description'
@ObjectModel.usageType.serviceQuality: #P
@ClientHandling.algorithm: #SESSION_VARIABLE
@AccessControl.authorizationCheck: #NOT_REQUIRED
define view Application_Component_Text as select from df14t {
key df14t.fctr_id as ApplicationComponent,
key df14t.langu as Language,
df14t.name as ApplicationComponentText
} where df14t.as4local = 'A'
/*+[internal] {
"BASEINFO":
{
"FROM":
[
"DF14T"
],
"ASSOCIATED":
[],
"BASE":
[],
"VERSION":0
}
}*/
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