I_ACMCharacteristic
DPQS charectoristic value
I_ACMCharacteristic is a Basic CDS View that provides data about "DPQS charectoristic value" in SAP S/4HANA. It reads from 1 data source (cabn) and exposes 6 fields with key field ACMCharacteristicInternal. It has 1 association to related views.
Data Sources (1)
| Source | Alias | Join Type |
|---|---|---|
| cabn | cabn | from |
Associations (1)
| Cardinality | Target | Alias | Condition |
|---|---|---|---|
| [*] | I_ACMCharacteristicText | _DPQSCharacteristicText | |
Annotations (11)
| Name | Value | Level | Field |
|---|---|---|---|
| AbapCatalog.sqlViewName | IACMCHARACTERS | view | |
| AbapCatalog.compiler.compareFilter | true | view | |
| AbapCatalog.preserveKey | true | view | |
| AccessControl.authorizationCheck | #CHECK | view | |
| VDM.viewType | #BASIC | view | |
| VDM.lifecycle.contract.type | #PUBLIC_LOCAL_API | view | |
| ClientHandling.algorithm | #SESSION_VARIABLE | view | |
| ObjectModel.usageType.dataClass | #MASTER | view | |
| ObjectModel.usageType.serviceQuality | #A | view | |
| ObjectModel.usageType.sizeCategory | #L | view | |
| EndUserText.label | DPQS charectoristic value | view |
Fields (6)
| Key | Field | Source Table | Source Field | Description |
|---|---|---|---|---|
| KEY | ACMCharacteristicInternal | |||
| ACMNumberCharacters | anzst | |||
| ACMCharacteristicBaseUnit | msehi | |||
| ACMNumberDecimal | anzdz | |||
| ACMCharacteristicDataType | atfor | |||
| _DPQSCharacteristicText | _DPQSCharacteristicText |
@AbapCatalog.sqlViewName: 'IACMCHARACTERS'
@AbapCatalog.compiler.compareFilter: true
@AbapCatalog.preserveKey: true
@AccessControl.authorizationCheck: #CHECK
@VDM: {
viewType: #BASIC,
lifecycle.contract.type: #PUBLIC_LOCAL_API
}
@ClientHandling.algorithm: #SESSION_VARIABLE
@ObjectModel:{
usageType: {
dataClass: #MASTER,
serviceQuality: #A,
sizeCategory: #L
}
}
@EndUserText.label: 'DPQS charectoristic value'
define root view I_ACMCharacteristic
as select from cabn
composition [*] of I_ACMCharacteristicText as _DPQSCharacteristicText
{
key cast(cabn.atinn as abap.numc( 10 )) as ACMCharacteristicInternal,
anzst as ACMNumberCharacters,
msehi as ACMCharacteristicBaseUnit,
anzdz as ACMNumberDecimal,
atfor as ACMCharacteristicDataType,
_DPQSCharacteristicText
}
/*+[internal] {
"BASEINFO":
{
"FROM":
[
"CABN"
],
"ASSOCIATED":
[
"I_ACMCHARACTERISTICTEXT"
],
"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