I_FunctionalLocationStdVH

DDL: I_FUNCTIONALLOCATIONSTDVH Type: view_entity COMPOSITE Package: ILOM

Functional Location

I_FunctionalLocationStdVH is a Composite CDS View that provides data about "Functional Location" in SAP S/4HANA. It reads from 1 data source (I_FunctionalLocation) and exposes 8 fields with key field FunctionalLocation. Part of development package ILOM.

Data Sources (1)

SourceAliasJoin Type
I_FunctionalLocation I_FunctionalLocation from

Annotations (12)

NameValueLevelField
VDM.viewType #COMPOSITE view
ObjectModel.dataCategory #VALUE_HELP view
Analytics.technicalName IFL__VH view
Consumption.ranked true view
ObjectModel.representativeKey FunctionalLocation view
ObjectModel.usageType.dataClass #MASTER view
ObjectModel.usageType.serviceQuality #A view
ObjectModel.usageType.sizeCategory #L view
AccessControl.authorizationCheck #CHECK view
Metadata.ignorePropagatedAnnotations true view
EndUserText.label Functional Location view
Search.searchable true view

Fields (8)

KeyFieldSource TableSource FieldDescription
KEY FunctionalLocation FunctionalLocation
FunctionalLocationName
_FunctionalLocationText _FunctionalLocationText
MaintObjectLocAcctAssgmtNmbr MaintObjectLocAcctAssgmtNmbr
AuthorizationGroup AuthorizationGroup
MaintenancePlannerGroup MaintenancePlannerGroup
MaintenancePlanningPlant MaintenancePlanningPlant
_LocationAccountAssignment _LocationAccountAssignment
@VDM.viewType: #COMPOSITE

@ObjectModel.dataCategory: #VALUE_HELP
@Analytics.technicalName: 'IFL__VH'
@Consumption.ranked: true    // Optimize Type ahead for value helps - 2302

@ObjectModel.representativeKey: 'FunctionalLocation'

@ObjectModel.usageType.dataClass: #MASTER
@ObjectModel.usageType.serviceQuality: #A
@ObjectModel.usageType.sizeCategory: #L
@ObjectModel.supportedCapabilities: [ #SQL_DATA_SOURCE,
 #CDS_MODELING_DATA_SOURCE,
 #CDS_MODELING_ASSOCIATION_TARGET,
 #VALUE_HELP_PROVIDER,
 #SEARCHABLE_ENTITY
 ]

@AccessControl.authorizationCheck: #CHECK
@AccessControl.privilegedAssociations:['_LocationAccountAssignment','_FunctionalLocationText'] 

@Metadata.ignorePropagatedAnnotations: true

@EndUserText.label: 'Functional Location'
@Search.searchable: true


define view entity I_FunctionalLocationStdVH
  as select from I_FunctionalLocation
{
      @ObjectModel.text.association: '_FunctionalLocationText'
      @Search: { defaultSearchElement: true, ranking: #HIGH, fuzzinessThreshold: 0.7 } 
      @Consumption.valueHelpDefault.binding.usage:#FILTER_AND_RESULT // Optimize Type ahead for value helps - 2302

  key FunctionalLocation,
    
      @Search: { defaultSearchElement: true, ranking: #LOW, fuzzinessThreshold: 0.7 } // ranking #HIGH to #LOW - Optimize Type ahead for value helps - 2302

      @Consumption.hidden: true
      _FunctionalLocationText[1:Language = $session.system_language].FunctionalLocationName,
      
      _FunctionalLocationText,
      @Consumption.hidden: true
      MaintObjectLocAcctAssgmtNmbr,
      @Consumption.hidden: true
      AuthorizationGroup,
      @Consumption.hidden: true
      MaintenancePlannerGroup,
      @Consumption.hidden: true
      MaintenancePlanningPlant,

      @Consumption.hidden: true
      _LocationAccountAssignment
}