A_ChangeMasterAltDate

DDL: A_CHANGEMASTERALTDATE SQL: AECNALTDATE Type: view BASIC

Change Number Alternative Dates

A_ChangeMasterAltDate is a Basic CDS View that provides data about "Change Number Alternative Dates" in SAP S/4HANA. It reads from 1 data source (I_ChangeMasterAltDate) and exposes 6 fields with key fields ChangeNumber, ChgNmbrAlternativeDateCounter. It has 1 association to related views.

Data Sources (1)

SourceAliasJoin Type
I_ChangeMasterAltDate I_ChangeMasterAltDate from

Associations (1)

CardinalityTargetAliasCondition
[0..1] A_ChangeMaster _ChangeMaster $projection.ChangeNumber = _ChangeMaster.ChangeNumber

Annotations (11)

NameValueLevelField
AbapCatalog.sqlViewName AECNALTDATE view
AbapCatalog.compiler.compareFilter true view
AccessControl.authorizationCheck #CHECK view
ClientHandling.algorithm #SESSION_VARIABLE view
ObjectModel.usageType.sizeCategory #L view
ObjectModel.usageType.serviceQuality #A view
ObjectModel.usageType.dataClass #MASTER view
VDM.viewType #BASIC view
VDM.lifecycle.contract.type #PUBLIC_REMOTE_API view
Metadata.ignorePropagatedAnnotations true view
EndUserText.label Change Number Alternative Dates view

Fields (6)

KeyFieldSource TableSource FieldDescription
KEY ChangeNumber ChangeNumber
KEY ChgNmbrAlternativeDateCounter ChgNmbrAlternativeDateCounter
ChgNmbrAlternativeDate ChgNmbrAlternativeDate
ChgNmbrAlternativeDateText ChgNmbrAlternativeDateText
ChgNmbrAltvDateIsAssignedToObj ChgNmbrAltvDateIsAssignedToObj
_ChangeMaster _ChangeMaster
@AbapCatalog.sqlViewName: 'AECNALTDATE'
@AbapCatalog.compiler.compareFilter: true

@AccessControl.authorizationCheck: #CHECK

@ClientHandling.algorithm: #SESSION_VARIABLE

@ObjectModel.usageType.sizeCategory: #L
@ObjectModel.usageType.serviceQuality: #A
@ObjectModel.usageType.dataClass: #MASTER

@VDM.viewType: #BASIC

@VDM.lifecycle.contract.type: #PUBLIC_REMOTE_API

@Metadata.ignorePropagatedAnnotations: true

@EndUserText.label: 'Change Number Alternative Dates'
define view A_ChangeMasterAltDate
  as select from I_ChangeMasterAltDate

  association [0..1] to A_ChangeMaster as _ChangeMaster on $projection.ChangeNumber = _ChangeMaster.ChangeNumber
{
  key ChangeNumber,
  key ChgNmbrAlternativeDateCounter,

      ChgNmbrAlternativeDate,
      ChgNmbrAlternativeDateText,
      ChgNmbrAltvDateIsAssignedToObj,

      /* Associations */
      _ChangeMaster
}
/*+[internal] {
"BASEINFO":
{
"FROM":
[
"I_CHANGEMASTERALTDATE"
],
"ASSOCIATED":
[
"A_CHANGEMASTER"
],
"BASE":
[],
"ANNO_REF":
[],
"SCALAR_FUNCTION":
[],
"VERSION":0,
"ANNOREF_EVALUATION_ERROR":""
}
}*/