I_CURRENTCHEMICALNAMETEXT

CDS View

Current ChemicalNameText

I_CURRENTCHEMICALNAMETEXT is a CDS View in S/4HANA. Current ChemicalNameText. 1 CDS views read from this table.

CDS Views using this table (1)

ViewTypeJoinVDMDescription
A_ChemicalNameText view from COMPOSITE Chemical Name Text
@AbapCatalog.sqlViewName: 'ICURRCHMNAMETXT'
@AbapCatalog.compiler.compareFilter: true
@AccessControl.authorizationCheck: #CHECK
@EndUserText.label: 'Current ChemicalNameText'
@VDM.viewType: #BASIC
@ObjectModel.dataCategory: #TEXT
@ObjectModel.representativeKey: 'ChemicalUUID'

// Client handling by session

@ClientHandling.algorithm: #SESSION_VARIABLE

// used for BOBF Master Data Object

@ObjectModel.usageType:{ serviceQuality: #C,        // < 15 msec

                         sizeCategory:  #L,         // < 10.000.000

                         dataClass: #MASTER }
                         
/*+[hideWarning] { "IDS" : [ "KEY_CHECK" ]  } */
define view I_CurrentChemicalNameText as select from I_ChemicalNameText {
  key ChemicalUUID,
  @Semantics.language: true
  key Language,
  _Language,
  @Semantics.text: true
  NameOfChemical
} where
      RevisionStartDate <= $session.system_date
  and RevisionEndDate >= $session.system_date
/*+[internal] {
"BASEINFO":
{
"FROM":
[
"I_CHEMICALNAMETEXT"
],
"ASSOCIATED":
[
"I_LANGUAGE"
],
"BASE":
[
"I_CHEMICALNAMETEXT"
],
"VERSION":0
}
}*/