I_FlocLabelingState

DDL: I_FLOCLABELINGSTATE SQL: IFLOCLABELSTATE Type: view BASIC Package: ILOM

Functional Location Labeling State

I_FlocLabelingState is a Basic CDS View that provides data about "Functional Location Labeling State" in SAP S/4HANA. It reads from 1 data source (itobcust) and exposes 2 fields. Part of development package ILOM.

Data Sources (1)

SourceAliasJoin Type
itobcust itobcust from

Annotations (7)

NameValueLevelField
EndUserText.label Functional Location Labeling State view
VDM.viewType #BASIC view
AbapCatalog.sqlViewName IFLOCLABELSTATE view
AccessControl.authorizationCheck #NOT_REQUIRED view
ObjectModel.usageType.dataClass #CUSTOMIZING view
ObjectModel.usageType.serviceQuality #A view
ObjectModel.usageType.sizeCategory #S view

Fields (2)

KeyFieldSource TableSource FieldDescription
AlternativeLabelingIsActive itobcust cnvrt
AlternativeLabelingStatus itobcust state
@EndUserText.label: 'Functional Location Labeling State'
@VDM.viewType: #BASIC
@AbapCatalog.sqlViewName: 'IFLOCLABELSTATE'
@AccessControl.authorizationCheck:#NOT_REQUIRED

//@ClientHandling.algorithm: #SESSION_VARIABLE

@ObjectModel.usageType.dataClass: #CUSTOMIZING
@ObjectModel.usageType.serviceQuality: #A
@ObjectModel.usageType.sizeCategory: #S

define view I_FlocLabelingState
  as select from itobcust
{
  itobcust.cnvrt as AlternativeLabelingIsActive, // Alternative Labeling active

  itobcust.state as AlternativeLabelingStatus // 1 = Inactive, 2 = Active, 3 = Deactivated

}