I_FuncLocationLabelSearch
Functional Location Search
I_FuncLocationLabelSearch is a Basic CDS View that provides data about "Functional Location Search" in SAP S/4HANA. It reads from 2 data sources (iflos, iflot) and exposes 7 fields with key fields FunctionalLocation, FunctionalLocLabelingSyst, FunctionalLocationLabelName, FunctionalLocLabelingSyst, FunctionalLocationLabelName. Part of development package ILOM.
Annotations (9)
| Name | Value | Level | Field |
|---|---|---|---|
| EndUserText.label | Functional Location Search | view | |
| VDM.viewType | #BASIC | view | |
| AccessControl.authorizationCheck | #NOT_REQUIRED | view | |
| AbapCatalog.sqlViewName | IFUNCLOCSEARCH | view | |
| ClientHandling.algorithm | #SESSION_VARIABLE | view | |
| Search.searchable | true | view | |
| ObjectModel.usageType.dataClass | #MASTER | view | |
| ObjectModel.usageType.serviceQuality | #A | view | |
| ObjectModel.usageType.sizeCategory | #L | view |
Fields (7)
@EndUserText.label: 'Functional Location Search' //same as DDL description
@VDM.viewType: #BASIC
@AccessControl.authorizationCheck: #NOT_REQUIRED
@AbapCatalog.sqlViewName: 'IFUNCLOCSEARCH' //must start with "I"
@ClientHandling.algorithm: #SESSION_VARIABLE
@Search.searchable: true
@ObjectModel.usageType.dataClass: #MASTER
@ObjectModel.usageType.serviceQuality: #A
@ObjectModel.usageType.sizeCategory: #L
// Helper view to enable searching on the Functional Location Label field (HANA contains())
define view I_FuncLocationLabelSearch
as select from iflos
{
key iflos.tplnr as FunctionalLocation,
key iflos.alkey as FunctionalLocLabelingSyst,
@Search.defaultSearchElement: true
key iflos.strno as FunctionalLocationLabelName,
iflos.actvs as FunctionalLocLabelIsActive //3146870
}
union all
select from iflot
{
key iflot.tplnr as FunctionalLocation,
key cast('' as ilom_alkey ) as FunctionalLocLabelingSyst,
@Search.defaultSearchElement: true
key iflot.tplnr as FunctionalLocationLabelName,
cast('' as ilom_actvs ) as FunctionalLocLabelIsActive //3146870
}
Learn More
- What Is a CDS View in SAP S/4HANA?
- Types of CDS Views: Basic, Composite, Consumption, and Transactional
- SAP Tables vs CDS Views — Key Differences
- Understanding Data Lineage in SAP S/4HANA
- VDM (Virtual Data Model) in SAP S/4HANA Explained
- CDS View Annotations — A Complete Guide
- CDS View Field Mapping and Associations
- Understanding the SAP S/4HANA Data Model
- CDS View Extensions and Custom Fields in SAP S/4HANA
- Released APIs and Stability Contracts in SAP S/4HANA