I_ACMApplicationPricingStatus
ACM Pricing Status Domain Values
I_ACMApplicationPricingStatus is a Basic CDS View that provides data about "ACM Pricing Status Domain Values" in SAP S/4HANA. It reads from 2 data sources (dd07l, dd07t) and exposes 3 fields with key fields SAPDataDictionaryDomain, DomainValue.
Annotations (7)
| Name | Value | Level | Field |
|---|---|---|---|
| AccessControl.authorizationCheck | #NOT_REQUIRED | view | |
| EndUserText.label | ACM Pricing Status Domain Values | view | |
| Metadata.ignorePropagatedAnnotations | true | view | |
| ObjectModel.usageType.serviceQuality | #A | view | |
| ObjectModel.usageType.sizeCategory | #S | view | |
| ObjectModel.usageType.dataClass | #MASTER | view | |
| VDM.viewType | #BASIC | view |
@AbapCatalog.viewEnhancementCategory: [#NONE]
@AccessControl.authorizationCheck: #NOT_REQUIRED
@EndUserText.label: 'ACM Pricing Status Domain Values'
@Metadata.ignorePropagatedAnnotations: true
@ObjectModel.usageType:{
serviceQuality: #A,
sizeCategory: #S,
dataClass: #MASTER
}
@VDM.viewType: #BASIC
define view entity I_ACMApplicationPricingStatus
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 dd07l.domname as SAPDataDictionaryDomain,
key dd07l.domvalue_l as DomainValue,
dd07t.ddtext as DomainText
}
where
dd07t.ddlanguage = $session.system_language
and dd07l.as4local = 'A'
and dd07l.domname = '/ACCGO/D_PRC_STS'
/*+[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