C_ChmlCmplncInfoVH

DDL: C_CHMLCMPLNCINFOVH Type: view CONSUMPTION

Value Help for Chemical Compliance Information

C_ChmlCmplncInfoVH is a Consumption CDS View that provides data about "Value Help for Chemical Compliance Information" in SAP S/4HANA. It reads from 1 data source (I_ChmlCmplncInfoVH) and exposes 13 fields with key field ChmlCmplncInfoUUID.

Data Sources (1)

SourceAliasJoin Type
I_ChmlCmplncInfoVH ChemicalComplianceInfo from

Annotations (13)

NameValueLevelField
EndUserText.label Value Help for Chemical Compliance Information view
AbapCatalog.sqlViewName CCCINFOVH view
AbapCatalog.compiler.compareFilter true view
AccessControl.authorizationCheck #MANDATORY view
AccessControl.personalData.blocking #NOT_REQUIRED view
ClientHandling.algorithm #SESSION_VARIABLE view
VDM.viewType #CONSUMPTION view
ObjectModel.usageType.serviceQuality #C view
ObjectModel.usageType.dataClass #MIXED view
ObjectModel.usageType.sizeCategory #L view
ObjectModel.dataCategory #VALUE_HELP view
Metadata.ignorePropagatedAnnotations true view
Search.searchable true view

Fields (13)

KeyFieldSource TableSource FieldDescription
KEY ChmlCmplncInfoUUID I_ChmlCmplncInfoVH ChmlCmplncInfoUUID
CombinedNameChmlCmplncInfoCombinedName
Material
ChmlCmplncInternalName
ProdStewardshipRespUnit I_ChmlCmplncInfoVH ProdStewardshipRespUnit
DngrsGdsRespUnit I_ChmlCmplncInfoVH DngrsGdsRespUnit
ChmlCmplncInfoType I_ChmlCmplncInfoVH ChmlCmplncInfoType
MaterialIsSold I_ChmlCmplncInfoVH MaterialIsSold
MaterialIsTransported I_ChmlCmplncInfoVH MaterialIsTransported
MaterialIsSourced I_ChmlCmplncInfoVH MaterialIsSourced
MaterialIsProduced I_ChmlCmplncInfoVH MaterialIsProduced
MaterialIsDisposed I_ChmlCmplncInfoVH MaterialIsDisposed
MaterialIsEmissionRelevant I_ChmlCmplncInfoVH MaterialIsEmissionRelevant
@EndUserText.label: 'Value Help for Chemical Compliance Information'
@AbapCatalog:
{
  sqlViewName: 'CCCINFOVH',
  compiler.compareFilter: true
}

@AccessControl.authorizationCheck: #MANDATORY
// blocking of personal data not required (no personal data fields exposed for material (MARA0); material data can not be blocked and no material info exposed)

@AccessControl.personalData.blocking: #NOT_REQUIRED
@ClientHandling.algorithm: #SESSION_VARIABLE
@VDM.viewType: #CONSUMPTION
@ObjectModel.usageType: {
     serviceQuality:  #C,
     dataClass:       #MIXED,
     sizeCategory:    #L
   }
@ObjectModel.semanticKey:  [ 'ChmlCmplncInfoCombinedName' ]
@ObjectModel.dataCategory: #VALUE_HELP
@Metadata.ignorePropagatedAnnotations: true

@UI:
{
  presentationVariant.sortOrder: [{by: 'ChmlCmplncInfoCombinedName', direction: 'ASC' }]
}

@Search.searchable: true

/*----------------------------------------------------------------------------------------------------------------------
    Value Help view to find Chemical Compliance Info records.
------------------------------------------------------------------------------------------------------------------------*/

define view C_ChmlCmplncInfoVH
  as select from I_ChmlCmplncInfoVH as ChemicalComplianceInfo

{
      @UI.hidden: true
      @UI.selectionField.exclude: true
      @Consumption.semanticObject: 'ChmlCmplncInfoUUID'
  key ChemicalComplianceInfo.ChmlCmplncInfoUUID,

      -- Combined Name
      @UI: {
        lineItem : {
           position:   10,
           importance: #HIGH
        },
        identification : {
           position:   10,
           importance: #HIGH
        }
      }
      ChmlCmplncInfoCombinedName,

      -- Material
      @UI: {
              lineItem : {
                 position:   20,
                 importance: #HIGH
              },
              identification : {
                 position:   20,
                 importance: #HIGH
              }
            }
      @Search: {
        defaultSearchElement: true,
        fuzzinessThreshold:   0.8,
        ranking: #HIGH
      }
      ChemicalComplianceInfo.Material,

      -- Internal Name
      @UI: {
        lineItem : {
           position:   30,
           importance: #HIGH
        },
        identification : {
           position:   30,
           importance: #HIGH
        }
      }
      @Search: {
        defaultSearchElement: true,
        fuzzinessThreshold:   0.8,
        ranking: #LOW
      }
      ChemicalComplianceInfo.ChmlCmplncInternalName,

      // needed for DCL

      @UI.hidden: true
      ChemicalComplianceInfo.ProdStewardshipRespUnit    as ProdStewardshipRespUnit,
      @UI.hidden: true
      ChemicalComplianceInfo.DngrsGdsRespUnit           as DngrsGdsRespUnit,
      @UI.hidden: true
      ChemicalComplianceInfo.ChmlCmplncInfoType         as ChmlCmplncInfoType,
      @UI.hidden: true
      ChemicalComplianceInfo.MaterialIsSold             as MaterialIsSold,
      @UI.hidden: true
      ChemicalComplianceInfo.MaterialIsTransported      as MaterialIsTransported,
      @UI.hidden: true
      ChemicalComplianceInfo.MaterialIsSourced          as MaterialIsSourced,
      @UI.hidden: true
      ChemicalComplianceInfo.MaterialIsProduced         as MaterialIsProduced,
      @UI.hidden: true
      ChemicalComplianceInfo.MaterialIsDisposed         as MaterialIsDisposed,
      @UI.hidden: true
      ChemicalComplianceInfo.MaterialIsEmissionRelevant as MaterialIsEmissionRelevant
}
/*+[internal] {
"BASEINFO":
{
"FROM":
[
"I_CHMLCMPLNCINFOVH"
],
"ASSOCIATED":
[],
"BASE":
[],
"ANNO_REF":
[],
"SCALAR_FUNCTION":
[],
"VERSION":0,
"ANNOREF_EVALUATION_ERROR":""
}
}*/