I_HCMProcessStepStatusText

DDL: I_HCMPROCESSSTEPSTATUSTEXT SQL: IHCMPRSTPSTEXT Type: view BASIC

HCM Process Step Status - Text

I_HCMProcessStepStatusText is a Basic CDS View that provides data about "HCM Process Step Status - Text" in SAP S/4HANA. It reads from 1 data source (dd07t) and exposes 5 fields with key fields Language, HCMProcessStepStatus. It has 2 associations to related views.

Data Sources (1)

SourceAliasJoin Type
dd07t dd07t from

Associations (2)

CardinalityTargetAliasCondition
[0..1] I_HCMProcessStepStatus _HCMProcessStepStatus $projection.HCMProcessStepStatus = _HCMProcessStepStatus.HCMProcessStepStatus
[0..1] I_Language _Language $projection.Language = _Language.Language

Annotations (14)

NameValueLevelField
AbapCatalog.sqlViewName IHCMPRSTPSTEXT view
AbapCatalog.compiler.compareFilter true view
AbapCatalog.preserveKey true view
AccessControl.authorizationCheck #NOT_REQUIRED view
EndUserText.label HCM Process Step Status - Text view
ClientHandling.algorithm #SESSION_VARIABLE view
Metadata.ignorePropagatedAnnotations true view
ObjectModel.dataCategory #TEXT view
ObjectModel.representativeKey HCMProcessStepStatus view
ObjectModel.usageType.sizeCategory #S view
ObjectModel.usageType.dataClass #CUSTOMIZING view
ObjectModel.usageType.serviceQuality #A view
ObjectModel.modelingPattern #LANGUAGE_DEPENDENT_TEXT view
VDM.viewType #BASIC view

Fields (5)

KeyFieldSource TableSource FieldDescription
KEY Language ddlanguage
KEY HCMProcessStepStatus
HCMProcessStepStatusText ddtext
_HCMProcessStepStatus _HCMProcessStepStatus
_Language _Language
@AbapCatalog.sqlViewName: 'IHCMPRSTPSTEXT'
@AbapCatalog.compiler.compareFilter: true
@AbapCatalog.preserveKey: true
@AccessControl.authorizationCheck: #NOT_REQUIRED
@EndUserText.label: 'HCM Process Step Status - Text'
@ClientHandling.algorithm: #SESSION_VARIABLE
@Metadata.ignorePropagatedAnnotations: true
@ObjectModel: { dataCategory: #TEXT,
                representativeKey: 'HCMProcessStepStatus',
                usageType.sizeCategory: #S,
                usageType.dataClass:  #CUSTOMIZING,
                usageType.serviceQuality: #A,
                supportedCapabilities: [ #LANGUAGE_DEPENDENT_TEXT, #CDS_MODELING_ASSOCIATION_TARGET, #SQL_DATA_SOURCE,
                                      #CDS_MODELING_DATA_SOURCE, #SEARCHABLE_ENTITY],
                modelingPattern: #LANGUAGE_DEPENDENT_TEXT }
@VDM.viewType: #BASIC
define view I_HCMProcessStepStatusText as select from dd07t 
  association [0..1] to I_HCMProcessStepStatus as _HCMProcessStepStatus on $projection.HCMProcessStepStatus = _HCMProcessStepStatus.HCMProcessStepStatus
  association [0..1] to I_Language         as _Language         on $projection.Language = _Language.Language
{
      @Semantics.language: true
      @ObjectModel.foreignKey.association: '_Language'
  key ddlanguage as Language,
      @ObjectModel.foreignKey.association: '_HCMProcessStepStatus'
      //@ObjectModel.text.element: ['HCMProcessStatus']

  key cast ( domvalue_l as asr_step_status) as HCMProcessStepStatus,
      @Semantics.text: true
      ddtext as HCMProcessStepStatusText,
      _HCMProcessStepStatus,
      _Language
}
where
      domname  = 'ASR_STEP_STATUS'
  and as4local = 'A'
  
/*+[internal] {
"BASEINFO":
{
"FROM":
[
"DD07T"
],
"ASSOCIATED":
[
"I_HCMPROCESSSTEPSTATUS",
"I_LANGUAGE"
],
"BASE":
[],
"ANNO_REF":
[],
"SCALAR_FUNCTION":
[],
"VERSION":0,
"ANNOREF_EVALUATION_ERROR":""
}
}*/