Atov_Pk_Text_Package_Masterlan
Package Text in MasterLangauge
Atov_Pk_Text_Package_Masterlan is a CDS View that provides data about "Package Text in MasterLangauge" in SAP S/4HANA. It reads from 2 data sources (tadir, tdevct) and exposes 4 fields with key field devclass.
Annotations (6)
| Name | Value | Level | Field |
|---|---|---|---|
| AbapCatalog.sqlViewName | ATO_V_PK_T_P_ML | view | |
| ClientHandling.type | #INHERITED | view | |
| ClientHandling.algorithm | #SESSION_VARIABLE | view | |
| AbapCatalog.compiler.compareFilter | true | view | |
| AccessControl.authorizationCheck | #CHECK | view | |
| EndUserText.label | Package Text in MasterLangauge | view |
@AbapCatalog.sqlViewName: 'ATO_V_PK_T_P_ML'
@ClientHandling:{ type: #INHERITED, algorithm: #SESSION_VARIABLE }
@AbapCatalog.compiler.compareFilter: true
@AccessControl.authorizationCheck: #CHECK
@EndUserText.label: 'Package Text in MasterLangauge'
define view Atov_Pk_Text_Package_Masterlan as select from tdevct
inner join tadir as tadir
on tadir.pgmid = 'R3TR' and
tadir.object = 'DEVC' and
tadir.obj_name = tdevct.devclass
{
key tdevct.devclass,
tdevct.ctext as description,
spras as language,
tadir.masterlang as masterlang
}
where spras = tadir.masterlang
/*+[internal] {
"BASEINFO":
{
"FROM":
[
"TADIR",
"TDEVCT"
],
"ASSOCIATED":
[],
"BASE":
[],
"ANNO_REF":
[],
"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