A_ChangeMasterCharcValue
Change Number Characteristic Values
A_ChangeMasterCharcValue is a Composite CDS View that provides data about "Change Number Characteristic Values" in SAP S/4HANA. It reads from 1 data source (I_ClfnObjectCharcValForKeyDate) and exposes 23 fields with key fields ChangeNumber, ClassType, CharcInternalID, CharcValuePositionNumber. It has 1 association to related views.
Data Sources (1)
| Source | Alias | Join Type |
|---|---|---|
| I_ClfnObjectCharcValForKeyDate | I_ClfnObjectCharcValForKeyDate | from |
Parameters (1)
| Name | Type | Default |
|---|---|---|
| P_KeyDate | sydate |
Associations (1)
| Cardinality | Target | Alias | Condition |
|---|---|---|---|
| [1..1] | A_ChangeMaster_1 | _ChangeMaster | $projection.ChangeNumber = _ChangeMaster.ChangeNumber |
Annotations (13)
| Name | Value | Level | Field |
|---|---|---|---|
| ClientHandling.algorithm | #SESSION_VARIABLE | view | |
| AbapCatalog.sqlViewName | ANGCCLFN3 | view | |
| AbapCatalog.compiler.compareFilter | true | view | |
| AbapCatalog.preserveKey | true | view | |
| AccessControl.authorizationCheck | #CHECK | view | |
| VDM.viewType | #COMPOSITE | view | |
| VDM.lifecycle.contract.type | #PUBLIC_REMOTE_API | view | |
| Metadata.ignorePropagatedAnnotations | true | view | |
| ObjectModel.usageType.sizeCategory | #XL | view | |
| ObjectModel.usageType.serviceQuality | #C | view | |
| ObjectModel.usageType.dataClass | #MIXED | view | |
| Consumption.filter.businessDate.at | true | view | |
| EndUserText.label | Change Number Characteristic Values | view |
Fields (23)
| Key | Field | Source Table | Source Field | Description |
|---|---|---|---|---|
| KEY | ChangeNumber | ClfnObjectID | ||
| KEY | ClassType | ClassType | ||
| KEY | CharcInternalID | CharcInternalID | ||
| KEY | CharcValuePositionNumber | CharcValuePositionNumber | ||
| KeyDate | ||||
| CharcValueDependency | CharcValueDependency | |||
| CharcValue | CharcValue | |||
| CharcFromNumericValue | CharcFromNumericValue | |||
| CharcFromNumericValueUnit | CharcFromNumericValueUnit | |||
| CharcToNumericValue | CharcToNumericValue | |||
| CharcToNumericValueUnit | CharcToNumericValueUnit | |||
| CharcFromDecimalValue | CharcFromDecimalValue | |||
| CharcToDecimalValue | CharcToDecimalValue | |||
| CharcFromAmount | CharcFromAmount | |||
| CharcToAmount | CharcToAmount | |||
| Currency | Currency | |||
| CharcFromDate | CharcFromDate | |||
| CharcToDate | CharcToDate | |||
| CharcFromTime | CharcFromTime | |||
| CharcToTime | CharcToTime | |||
| CharacteristicAuthor | CharacteristicAuthor | |||
| CharcMaintAuthGrp | ||||
| _ChangeMaster | _ChangeMaster |
@ClientHandling.algorithm: #SESSION_VARIABLE
@AbapCatalog.sqlViewName: 'ANGCCLFN3'
@AbapCatalog.compiler.compareFilter: true
@AbapCatalog.preserveKey: true
@AccessControl.authorizationCheck: #CHECK
@VDM.viewType: #COMPOSITE
@VDM.lifecycle.contract.type: #PUBLIC_REMOTE_API
@Metadata.ignorePropagatedAnnotations: true
@ObjectModel.usageType.sizeCategory: #XL
@ObjectModel.usageType.serviceQuality: #C
@ObjectModel.usageType.dataClass: #MIXED
@Consumption.filter.businessDate.at: true
@EndUserText.label: 'Change Number Characteristic Values'
define view A_ChangeMasterCharcValue
with parameters
@Consumption.hidden: true
@Semantics.businessDate.at: true
P_KeyDate:sydate
as select from I_ClfnObjectCharcValForKeyDate(P_KeyDate: $parameters.P_KeyDate) as Valuation
association [1..1] to A_ChangeMaster_1 as _ChangeMaster on
$projection.ChangeNumber = _ChangeMaster.ChangeNumber
{
key ClfnObjectID as ChangeNumber,
key ClassType,
key CharcInternalID,
key CharcValuePositionNumber,
$parameters.P_KeyDate as KeyDate,
CharcValueDependency,
CharcValue,
CharcFromNumericValue,
CharcFromNumericValueUnit,
CharcToNumericValue,
CharcToNumericValueUnit,
CharcFromDecimalValue,
CharcToDecimalValue,
@Semantics.amount.currencyCode: 'Currency'
CharcFromAmount,
@Semantics.amount.currencyCode: 'Currency'
CharcToAmount,
@Semantics.currencyCode: true
Currency,
CharcFromDate,
CharcToDate,
CharcFromTime,
CharcToTime,
CharacteristicAuthor,
_Characteristic(P_KeyDate: $parameters.P_KeyDate).CharcMaintAuthGrp,
_ChangeMaster
}
where
ClfnObjectTable = 'AENR' and
ClfnObjectType = 'O'
/*+[internal] {
"BASEINFO":
{
"FROM":
[
"I_CLFNCHARACTERISTICFORKEYDATE",
"I_CLFNOBJECTCHARCVALFORKEYDATE"
],
"ASSOCIATED":
[
"A_CHANGEMASTER_1"
],
"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