I_ChgRecdStatusColorConfign

DDL: I_CHGRECDSTATUSCOLORCONFIGN SQL: ICRSTSCOLCONFIG Type: view BASIC

Change Record Status User defined color

I_ChgRecdStatusColorConfign is a Basic CDS View that provides data about "Change Record Status User defined color" in SAP S/4HANA. It reads from 1 data source (/plmi/cr_usrstat) and exposes 4 fields with key fields ChangeRecordType, ChangeRecordStatusProfile, ChangeRecordStatus.

Data Sources (1)

SourceAliasJoin Type
/plmi/cr_usrstat /plmi/cr_usrstat from

Annotations (10)

NameValueLevelField
AbapCatalog.sqlViewName ICRSTSCOLCONFIG view
AbapCatalog.compiler.compareFilter true view
AbapCatalog.preserveKey true view
VDM.viewType #BASIC view
ClientHandling.algorithm #SESSION_VARIABLE view
AccessControl.authorizationCheck #NOT_REQUIRED view
EndUserText.label Change Record Status User defined color view
ObjectModel.usageType.serviceQuality #C view
ObjectModel.usageType.dataClass #MIXED view
ObjectModel.usageType.sizeCategory #S view

Fields (4)

KeyFieldSource TableSource FieldDescription
KEY ChangeRecordType cr_type
KEY ChangeRecordStatusProfile status_profile
KEY ChangeRecordStatus user_status
ChangeRecordStatusColor status_color

@AbapCatalog.sqlViewName: 'ICRSTSCOLCONFIG'
@AbapCatalog.compiler.compareFilter: true
@AbapCatalog.preserveKey: true
@VDM.viewType: #BASIC
@ClientHandling.algorithm: #SESSION_VARIABLE
@AccessControl.authorizationCheck: #NOT_REQUIRED
@EndUserText.label: 'Change Record Status User defined color'
@ObjectModel.usageType: {serviceQuality: #C,
                         dataClass: #MIXED,
                         sizeCategory: #S}
define view I_ChgRecdStatusColorConfign
  as select from /plmi/cr_usrstat
{
  key cr_type        as ChangeRecordType,
  key status_profile as ChangeRecordStatusProfile,
  key user_status    as ChangeRecordStatus,
      status_color   as ChangeRecordStatusColor
}
where
  is_color_status = 'X'
/*+[internal] {
"BASEINFO":
{
"FROM":
[
"/PLMI/CR_USRSTAT"
],
"ASSOCIATED":
[],
"BASE":
[],
"ANNO_REF":
[],
"VERSION":0,
"ANNOREF_EVALUATION_ERROR":""
}
}*/