P_ACMSideText
Domain Value Text for Side
P_ACMSideText is a Basic CDS View that provides data about "Domain Value Text for Side" in SAP S/4HANA. It reads from 2 data sources (dd07l, dd07t) and exposes 3 fields with key fields ACMDocumentSide, Language.
Annotations (11)
| Name | Value | Level | Field |
|---|---|---|---|
| AbapCatalog.sqlViewName | PACMSIDETXT | view | |
| AbapCatalog.compiler.compareFilter | true | view | |
| AccessControl.authorizationCheck | #NOT_REQUIRED | view | |
| ClientHandling.algorithm | #SESSION_VARIABLE | view | |
| VDM.viewType | #BASIC | view | |
| VDM.private | true | view | |
| ObjectModel.usageType.dataClass | #CUSTOMIZING | view | |
| ObjectModel.usageType.sizeCategory | #S | view | |
| ObjectModel.usageType.serviceQuality | #A | view | |
| Metadata.ignorePropagatedAnnotations | true | view | |
| EndUserText.label | Domain Value Text for Side | view |
Fields (3)
| Key | Field | Source Table | Source Field | Description |
|---|---|---|---|---|
| KEY | ACMDocumentSide | |||
| KEY | Language | |||
| DocumentSide | dd07t | ddtext |
@AbapCatalog.sqlViewName: 'PACMSIDETXT'
@AbapCatalog.compiler.compareFilter: true
@AccessControl.authorizationCheck: #NOT_REQUIRED
@ClientHandling.algorithm: #SESSION_VARIABLE
@VDM.viewType: #BASIC
@VDM.private: true
@ObjectModel.usageType.dataClass: #CUSTOMIZING
@ObjectModel.usageType.sizeCategory: #S
@ObjectModel.usageType.serviceQuality: #A
@Metadata.ignorePropagatedAnnotations:true
@EndUserText.label: 'Domain Value Text for Side'
define view P_ACMSideText
as select from dd07l
inner join dd07t on dd07l.domname = dd07t.domname
and dd07l.as4local = dd07t.as4local
and dd07l.valpos = dd07t.valpos
and dd07l.domvalue_l = dd07t.domvalue_l
{
key cast( dd07l.domvalue_l as wlf_pr_side ) as ACMDocumentSide,
@Semantics.language: true
key cast( dd07t.ddlanguage as spras ) as Language,
@Semantics.text:true
dd07t.ddtext as DocumentSide
}
where
dd07l.domname = 'WLF_PR_SIDE'
and dd07l.as4local = 'A'
/*+[internal] {
"BASEINFO":
{
"FROM":
[
"DD07L",
"DD07T"
],
"ASSOCIATED":
[],
"BASE":
[],
"ANNO_REF":
[],
"SCALAR_FUNCTION":
[],
"VERSION":0,
"ANNOREF_EVALUATION_ERROR":""
}
}*/
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