C_ProdStorageLocationVH

DDL: C_PRODSTORAGELOCATIONVH SQL: CPRDSTORAGELOCVH Type: view CONSUMPTION Package: VDM_MD_PRODUCT

Product Storage Location Value Help View

C_ProdStorageLocationVH is a Consumption CDS View (Dimension) that provides data about "Product Storage Location Value Help View" in SAP S/4HANA. It reads from 1 data source (I_StorageLocation) and exposes 8 fields with key fields Plant, StorageLocation. It is exposed through 1 OData service (UI_RETURNSWORKORDERVIEW). It is used in 1 Fiori application: Initiate Returns - By order. Part of development package VDM_MD_PRODUCT.

Data Sources (1)

SourceAliasJoin Type
I_StorageLocation StorageLocation from

Annotations (12)

NameValueLevelField
AbapCatalog.sqlViewName CPRDSTORAGELOCVH view
EndUserText.label Product Storage Location Value Help View view
VDM.viewType #CONSUMPTION view
AccessControl.authorizationCheck #CHECK view
Search.searchable true view
ObjectModel.representativeKey StorageLocation view
ObjectModel.usageType.sizeCategory #S view
ObjectModel.usageType.serviceQuality #A view
ObjectModel.usageType.dataClass #CUSTOMIZING view
Analytics.dataCategory #DIMENSION view
ClientHandling.algorithm #SESSION_VARIABLE view
Metadata.allowExtensions true view

OData Services (1)

ServiceBindingVersionContractRelease
UI_RETURNSWORKORDERVIEW UI_RETURNSWORKORDERVIEW V2 C1 NOT_TO_BE_RELEASED_STABLE

Fiori Apps (1)

App IDApp NameTypeDescription
F4682 Initiate Returns - By order Transactional An application to initiate Returns from a remote location in Field Logistics via the Maintenance Order List View.

Initiate Returns - By order

Business Role: Warehouse Clerk (Oil & Gas)

This feature enables you as a warehouse clerk (IOG) to post the products back to remote stock, which can then be returned. This is allowed for a single reservation as well as for multiple products assigned to a particular maintenance order.

Fields (8)

KeyFieldSource TableSource FieldDescription
KEY Plant I_StorageLocation Plant
KEY StorageLocation I_StorageLocation StorageLocation
StorageLocationName I_StorageLocation StorageLocationName
SalesOrganization I_StorageLocation SalesOrganization
DistributionChannel I_StorageLocation DistributionChannel
Division I_StorageLocation Division
IsStorLocAuthznCheckActive I_StorageLocation IsStorLocAuthznCheckActive
_Plant _Plant
@AbapCatalog.sqlViewName: 'CPRDSTORAGELOCVH'
@EndUserText.label: 'Product Storage Location Value Help View'
@VDM.viewType: #CONSUMPTION
@AccessControl.authorizationCheck: #CHECK
@Search.searchable: true

@ObjectModel.representativeKey: 'StorageLocation'
@ObjectModel.usageType.sizeCategory: #S
@ObjectModel.usageType.serviceQuality: #A
@ObjectModel.usageType.dataClass:#CUSTOMIZING
@Analytics.dataCategory: #DIMENSION
@ClientHandling.algorithm: #SESSION_VARIABLE
@Metadata.allowExtensions:true

define view C_ProdStorageLocationVH
  as select from I_StorageLocation as StorageLocation
{
      @Search.defaultSearchElement: true
      @Search.fuzzinessThreshold: 0.8
      @Consumption.filter.hidden: true
  key StorageLocation.Plant,
      @ObjectModel.text.element: 'StorageLocationName'
      @Search.defaultSearchElement: true
      @Search.fuzzinessThreshold: 0.8
      @Search.ranking: #HIGH
  key StorageLocation.StorageLocation,
      @Semantics.text: true
      @Search.defaultSearchElement: true
      @Search.ranking: #HIGH
      StorageLocation.StorageLocationName,
      StorageLocation.SalesOrganization,
      StorageLocation.DistributionChannel,
      StorageLocation.Division,
      StorageLocation.IsStorLocAuthznCheckActive,
      _Plant
}