I_FunctionalLocationStatus
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)
| Source | Alias | Join Type |
|---|---|---|
| P_FuncnlLocStatusAggrgn | _FuncnlLocStatus | from |
Annotations (7)
| Name | Value | Level | Field |
|---|---|---|---|
| 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)
| Key | Field | Source Table | Source Field | Description |
|---|---|---|---|---|
| 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
};
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