C_FldLogsValnTypeVH

DDL: C_FLDLOGSVALNTYPEVH SQL: CFLVALTY Type: view CONSUMPTION Package: ODATA_FLOG_PROCESS_RECEIPTS

Valuation Type VH

C_FldLogsValnTypeVH is a Consumption CDS View that provides data about "Valuation Type VH" in SAP S/4HANA. It reads from 1 data source (I_ProductByValuationVH) and exposes 3 fields with key fields Product, ValuationArea, ValuationType. It is exposed through 1 OData service (UI_PROCESS_RECEIPTS). It is used in 1 Fiori application: Process Receipt. Part of development package ODATA_FLOG_PROCESS_RECEIPTS.

Data Sources (1)

SourceAliasJoin Type
I_ProductByValuationVH I_ProductByValuationVH from

Annotations (15)

NameValueLevelField
AbapCatalog.sqlViewName CFLVALTY view
AbapCatalog.compiler.compareFilter true view
AbapCatalog.preserveKey true view
AccessControl.authorizationCheck #CHECK view
EndUserText.label Valuation Type VH view
ObjectModel.usageType.dataClass #MASTER view
ObjectModel.usageType.serviceQuality #C view
ObjectModel.usageType.sizeCategory #L view
ObjectModel.dataCategory #VALUE_HELP view
VDM.viewType #CONSUMPTION view
AccessControl.personalData.blocking #NOT_REQUIRED view
ClientHandling.algorithm #SESSION_VARIABLE view
Search.searchable true view
Consumption.ranked true view
Consumption.valueHelpDefault.fetchValues #AUTOMATICALLY_WHEN_DISPLAYED view

OData Services (1)

ServiceBindingVersionContractRelease
UI_PROCESS_RECEIPTS UI_PROCESS_RECEIPTS V2 C1 NOT_TO_BE_RELEASED_STABLE

Fiori Apps (1)

App IDApp NameTypeDescription
F5316 Process Receipt Transactional This application is used to Receive Purchase Order Items and Inbound delivery items at Base Plant and Remote Plant. The items can consist of both Stock and Supplier Items.

Process Receipt

Business Role: Receiving Specialist (Oil & Gas)

This feature enables you to: Create batches with supplier batches using the Create Batch action. View additional fields such as Order Category, Order Number, Recipient, Requisitioner, and Unloading Point details on the list page. Perform a two-step Goods Receipt (GR) process with an alternate unit of measurement. Create a Putaway Warehouse Task for non-stock and supplier items in a single-plant scenario.

Fields (3)

KeyFieldSource TableSource FieldDescription
KEY Product Product Product
KEY ValuationArea ValuationArea Valuation Area
KEY ValuationType ValuationType Valuation Type
@AbapCatalog.sqlViewName: 'CFLVALTY'
@AbapCatalog.compiler.compareFilter: true
@AbapCatalog.preserveKey: true
@AccessControl.authorizationCheck: #CHECK
@EndUserText.label: 'Valuation Type VH'
@ObjectModel.usageType.dataClass: #MASTER
@ObjectModel.usageType.serviceQuality: #C
@ObjectModel.usageType.sizeCategory: #L
@ObjectModel.dataCategory: #VALUE_HELP
@VDM.viewType: #CONSUMPTION
@AccessControl.personalData.blocking: #NOT_REQUIRED
@ClientHandling.algorithm: #SESSION_VARIABLE
@Search.searchable: true
@Consumption.ranked: true
@Consumption.valueHelpDefault.fetchValues:#AUTOMATICALLY_WHEN_DISPLAYED
@Consumption.dbHints: [ 'USE_HEX_PLAN' ]
define view C_FldLogsValnTypeVH

  as select from I_ProductByValuationVH
{
      @Search: { defaultSearchElement: true, ranking: #LOW, fuzzinessThreshold: 0.8 }
      @UI.lineItem: [{position: 20 }]
      @UI.selectionField: [{position: 20 }]
      @EndUserText.label: 'Product'  
  key Product,
  @Search: { defaultSearchElement: true, ranking: #LOW, fuzzinessThreshold: 0.8 }
      @UI.lineItem: [{position: 30 }]
      @UI.selectionField: [{position: 30 }]
      @EndUserText.label: 'Valuation Area'  
  key ValuationArea,
  @Search: { defaultSearchElement: true, ranking: #HIGH, fuzzinessThreshold: 0.8 }
      @UI.lineItem: [{position: 10 }]
      @UI.selectionField: [{position: 10 }]
      @EndUserText.label: 'Valuation Type'
  key ValuationType
}