I_FUNCTIONALLOCATIONLABELSTDVH

CDS View

Functional Location Value Help

I_FUNCTIONALLOCATIONLABELSTDVH is a CDS View in S/4HANA. Functional Location Value Help. It contains 1 fields. 2 CDS views read from this table.

CDS Views using this table (2)

ViewTypeJoinVDMDescription
C_FldLogsFunctionalLocationVH view_entity from CONSUMPTION Functional Location
I_MAIFDynamicFormObjectKeyVH view_entity union_all COMPOSITE Mobile App Dynamic Form Object Keys

Fields (1)

KeyField CDS FieldsUsed in Views
FunctionalLocationName MAIFDynFormObjectDescription 1
@AbapCatalog.sqlViewName: 'IFUNCLOCSTDVH'
@AbapCatalog.compiler.compareFilter: true
@AbapCatalog.preserveKey:true
@VDM.viewType: #COMPOSITE

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

@AccessControl.authorizationCheck: #CHECK

@ClientHandling.algorithm: #SESSION_VARIABLE

@EndUserText.label: 'Functional Location Value Help'
@Search.searchable: true
@Consumption.ranked:true
define view I_FunctionalLocationLabelStdVH
  as select from I_FunctionalLocationLabel
  association [1..1] to I_FunctionalLocation     as _FunctionalLocation     on $projection.FunctionalLocation = _FunctionalLocation.FunctionalLocation
  association [0..*] to I_FunctionalLocationText as _FunctionalLocationText on $projection.FunctionalLocation = _FunctionalLocationText.FunctionalLocation
  
{
      @UI.hidden: true
      @Search: {defaultSearchElement: true, ranking: #HIGH}
  key cast(FunctionalLocation as  functionallocation preserving type) as FunctionalLocation,

      // @Search: {defaultSearchElement: true, ranking: #HIGH, fuzzinessThreshold: 0.7 }

      _FuncLocationLabelSearch.FunctionalLocationLabelName,
      @EndUserText:{ label: 'Description', quickInfo: 'Description of Functional Location' }
      @Search: {defaultSearchElement: true, ranking: #LOW, fuzzinessThreshold: 0.7 }
      _FunctionalLocationText[1:Language = $session.system_language].FunctionalLocationName,

      @Consumption.hidden: true
      @Search: {defaultSearchElement: true, ranking: #HIGH, fuzzinessThreshold: 0.7 }
      _FuncLocationLabelSearch.FunctionalLocationLabelName            as OpFunctionalLocationLabelName,


      //Fields for DCL

      @Consumption.hidden: true
      _FunctionalLocation.MaintObjectLocAcctAssgmtNmbr,
      @Consumption.hidden: true
      _FunctionalLocation.AuthorizationGroup,
      @Consumption.hidden: true
      _FunctionalLocation.MaintenancePlannerGroup,
      @Consumption.hidden: true
      _FunctionalLocation.MaintenancePlanningPlant,

      //Associations for DCL

      @Consumption.hidden: true
      _FunctionalLocation._LocationAccountAssignment
}