I_LabelSetVH

DDL: I_LABELSETVH SQL: ILABELSETVH Type: view COMPOSITE

Label Set Value Help

I_LabelSetVH is a Composite CDS View that provides data about "Label Set Value Help" in SAP S/4HANA. It reads from 1 data source (I_LabelSet) and exposes 10 fields with key field LabelSetInternalID. It has 2 associations to related views.

Data Sources (1)

SourceAliasJoin Type
I_LabelSet hd from

Associations (2)

CardinalityTargetAliasCondition
[1..1] I_SpecificationNonHistoric _SpecificationNonHistoric $projection.LabelSetSpecificationIntID = _SpecificationNonHistoric.SpecificationInternalID
[1..*] I_Specification _Specification $projection.LabelSetSpecificationIntID = _Specification.SpecificationInternalID

Annotations (16)

NameValueLevelField
AbapCatalog.sqlViewName ILABELSETVH view
AbapCatalog.compiler.compareFilter true view
AbapCatalog.preserveKey true view
AccessControl.authorizationCheck #CHECK view
ClientHandling.algorithm #SESSION_VARIABLE view
Consumption.ranked true view
Metadata.ignorePropagatedAnnotations true view
ObjectModel.dataCategory #VALUE_HELP view
ObjectModel.representativeKey LabelSetInternalID view
ObjectModel.usageType.sizeCategory #L view
ObjectModel.usageType.serviceQuality #C view
ObjectModel.usageType.dataClass #MASTER view
Search.searchable true view
VDM.lifecycle.contract.type #NONE view
VDM.viewType #COMPOSITE view
EndUserText.label Label Set Value Help view

Fields (10)

KeyFieldSource TableSource FieldDescription
KEY LabelSetInternalID I_LabelSet LabelSetInternalID
LabelSetSpecificationIntID LabelSetSpecificationIntID
LabelSetSpecification _SpecificationNonHistoric Specification
LabelSetAlternativeNumber LabelSetAlternativeNumber
LabelSetVersionNumber LabelSetVersionNumber
LabelSetDescription
LabelSetAuthorizationGroup detail LabelSetAuthorizationGroup
LabelSetStatus detail LabelSetStatus
_Specification _Specification
_SpecificationNonHistoric _SpecificationNonHistoric
@AbapCatalog.sqlViewName: 'ILABELSETVH'
@AbapCatalog.compiler.compareFilter: true
@AbapCatalog.preserveKey: true

@AccessControl.authorizationCheck: #CHECK
@AccessControl.privilegedAssociations: ['_SpecificationNonHistoric']

@ClientHandling.algorithm: #SESSION_VARIABLE

@Consumption.ranked: true

@Metadata.ignorePropagatedAnnotations: true

@ObjectModel.dataCategory: #VALUE_HELP
@ObjectModel.representativeKey: 'LabelSetInternalID'

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

@Search.searchable: true

@VDM.lifecycle.contract.type: #NONE
@VDM.viewType: #COMPOSITE

@EndUserText.label: 'Label Set Value Help'
define view I_LabelSetVH
  as select from           I_LabelSet       as hd
    left outer to one join I_LabelSetDetail as detail on hd.LabelSetInternalID = detail.LabelSetInternalID
  association [1..1] to I_SpecificationNonHistoric as _SpecificationNonHistoric on $projection.LabelSetSpecificationIntID = _SpecificationNonHistoric.SpecificationInternalID
  association [1..*] to I_Specification            as _Specification            on $projection.LabelSetSpecificationIntID = _Specification.SpecificationInternalID

{
  key hd.LabelSetInternalID,

      @Consumption.hidden: true
      LabelSetSpecificationIntID,

      @Search.defaultSearchElement: true
      @Search.fuzzinessThreshold: 0.8
      @Search.ranking: #HIGH
      _SpecificationNonHistoric.Specification as LabelSetSpecification,

      LabelSetAlternativeNumber,
      LabelSetVersionNumber,

      @Search.defaultSearchElement: true
      @Search.fuzzinessThreshold: 0.8
      @Search.ranking: #LOW
      @Semantics.text
      _LabelSetText[1:Language = $session.system_language].LabelSetDescription,

      detail.LabelSetAuthorizationGroup,
      detail.LabelSetStatus,

      @Consumption.hidden:true
      _Specification,

      @Consumption.hidden:true
      _SpecificationNonHistoric
}
/*+[internal] {
"BASEINFO":
{
"FROM":
[
"I_LABELSET",
"I_LABELSETDETAIL",
"I_LABELSETTEXT",
"I_SPECIFICATIONNONHISTORIC"
],
"ASSOCIATED":
[
"I_SPECIFICATION",
"I_SPECIFICATIONNONHISTORIC"
],
"BASE":
[],
"ANNO_REF":
[],
"SCALAR_FUNCTION":
[],
"VERSION":0,
"ANNOREF_EVALUATION_ERROR":""
}
}*/