Atov_Pk_Text_Package
Description of Package
Atov_Pk_Text_Package is a CDS View that provides data about "Description of Package" in SAP S/4HANA. It reads from 3 data sources (Atov_Pk_Text_Package_Masterlan, Atov_Pk_Text_Package_Sylangu, tdevc) and exposes 1 field with key field devclass.
Data Sources (3)
| Source | Alias | Join Type |
|---|---|---|
| Atov_Pk_Text_Package_Masterlan | Atov_Pk_Text_Package_Masterlan | left_outer |
| Atov_Pk_Text_Package_Sylangu | Atov_Pk_Text_Package_Sylangu | left_outer |
| tdevc | tdevc | from |
Annotations (4)
| Name | Value | Level | Field |
|---|---|---|---|
| AbapCatalog.sqlViewName | ATO_V_PK_T_P | view | |
| ClientHandling.type | #INHERITED | view | |
| ClientHandling.algorithm | #SESSION_VARIABLE | view | |
| EndUserText.label | Description of Package | view |
Fields (1)
| Key | Field | Source Table | Source Field | Description |
|---|---|---|---|---|
| KEY | devclass | tdevc | devclass |
@AbapCatalog.sqlViewName: 'ATO_V_PK_T_P'
@ClientHandling:{ type: #INHERITED, algorithm: #SESSION_VARIABLE }
@EndUserText.label: 'Description of Package'
define view Atov_Pk_Text_Package as select from tdevc
left outer join Atov_Pk_Text_Package_Sylangu
on Atov_Pk_Text_Package_Sylangu.devclass = tdevc.devclass
left outer join Atov_Pk_Text_Package_Masterlan
on Atov_Pk_Text_Package_Masterlan.devclass = tdevc.devclass
{
key tdevc.devclass,
case COALESCE( Atov_Pk_Text_Package_Sylangu.description, '' )
when ''
then
case COALESCE( Atov_Pk_Text_Package_Masterlan.description, '' )
when ''
then ''
else Atov_Pk_Text_Package_Masterlan.description
end
else Atov_Pk_Text_Package_Sylangu.description
end as description
}
/*+[internal] {
"BASEINFO":
{
"FROM":
[
"ATOV_PK_TEXT_PACKAGE_MASTERLAN",
"ATOV_PK_TEXT_PACKAGE_SYLANGU",
"TDEVC"
],
"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