I_FunctionalLocationStatus

DDL: I_FUNCTIONALLOCATIONSTATUS Type: view_entity COMPOSITE Package: IEQM

Functional Location Status

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

Data Sources (1)

SourceAliasJoin Type
P_FuncnlLocStatusAggrgn _FuncnlLocStatus from

Annotations (7)

NameValueLevelField
AccessControl.authorizationCheck #CHECK view
Metadata.ignorePropagatedAnnotations true view
VDM.viewType #COMPOSITE view
ObjectModel.usageType.serviceQuality #C view
ObjectModel.usageType.sizeCategory #XL view
ObjectModel.usageType.dataClass #MIXED view
EndUserText.label Functional Location Status view

Fields (7)

KeyFieldSource TableSource FieldDescription
KEY FunctionalLocation P_FuncnlLocStatusAggrgn FunctionalLocation
MaintObjectInternalID P_FuncnlLocStatusAggrgn MaintObjectInternalID
FuncnlLocIsMarkedForDeletion
FuncnlLocIsDeleted
FunctionalLocationIsActive
FunctionalLocationIsCreated
FuncnlLocIsDeactivated
@AccessControl.authorizationCheck: #CHECK
@Metadata.ignorePropagatedAnnotations:true
@VDM.viewType: #COMPOSITE
@ObjectModel.usageType: {serviceQuality: #C, sizeCategory: #XL, dataClass: #MIXED}
@EndUserText.label: 'Functional Location Status'
@ObjectModel.supportedCapabilities: [#SQL_DATA_SOURCE, #CDS_MODELING_DATA_SOURCE, #CDS_MODELING_ASSOCIATION_TARGET]
define view entity I_FunctionalLocationStatus
  as select from P_FuncnlLocStatusAggrgn as _FuncnlLocStatus
{
  key _FuncnlLocStatus.FunctionalLocation,
      _FuncnlLocStatus.MaintObjectInternalID,
      cast(_FuncnlLocStatus.FuncnlLocIsMarkedForDeletion as xfeld preserving type) as FuncnlLocIsMarkedForDeletion,
      cast(_FuncnlLocStatus.FuncnlLocIsDeleted as xfeld preserving type)           as FuncnlLocIsDeleted,
      cast(_FuncnlLocStatus.FunctionalLocationIsActive as xfeld preserving type)   as FunctionalLocationIsActive,
      cast(_FuncnlLocStatus.FunctionalLocationIsCreated as xfeld preserving type)  as FunctionalLocationIsCreated,   //Added : 2308 

      cast(_FuncnlLocStatus.FuncnlLocIsDeactivated as xfeld preserving type)       as FuncnlLocIsDeactivated
};