C_FldLogsStockTypeVH

DDL: C_FLDLOGSSTOCKTYPEVH SQL: CFLSTKTYPEVH Type: view CONSUMPTION Package: ODATA_FLOG_PROCESS_RECEIPTS

Field Logistics Stock Type

C_FldLogsStockTypeVH is a Consumption CDS View that provides data about "Field Logistics Stock Type" in SAP S/4HANA. It reads from 1 data source (dd07t) and exposes 3 fields with key fields Language, StockType. 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
dd07t dd07t from

Annotations (17)

NameValueLevelField
AbapCatalog.sqlViewName CFLSTKTYPEVH view
AbapCatalog.compiler.compareFilter true view
AbapCatalog.preserveKey true view
AccessControl.authorizationCheck #NOT_REQUIRED view
EndUserText.label Field Logistics Stock Type view
ObjectModel.resultSet.sizeCategory #XS view
ObjectModel.dataCategory #VALUE_HELP view
ObjectModel.usageType.dataClass #MASTER view
ObjectModel.usageType.serviceQuality #C view
ObjectModel.usageType.sizeCategory #S view
ObjectModel.representativeKey StockType view
ClientHandling.algorithm #SESSION_VARIABLE view
VDM.viewType #CONSUMPTION view
VDM.lifecycle.contract.type #PUBLIC_LOCAL_API 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 Language ddlanguage
KEY StockType
StockTypeName ddtext
@AbapCatalog.sqlViewName: 'CFLSTKTYPEVH'
@AbapCatalog.compiler.compareFilter: true
@AbapCatalog.preserveKey: true
@AccessControl.authorizationCheck: #NOT_REQUIRED
@EndUserText.label: 'Field Logistics Stock Type'
@ObjectModel.resultSet.sizeCategory: #XS
@ObjectModel.dataCategory: #VALUE_HELP
@ObjectModel.usageType.dataClass: #MASTER
@ObjectModel.usageType.serviceQuality:#C
@ObjectModel.usageType.sizeCategory: #S
@ObjectModel.representativeKey: 'StockType'
@ClientHandling.algorithm: #SESSION_VARIABLE
@VDM.viewType: #CONSUMPTION
@VDM.lifecycle.contract.type: #PUBLIC_LOCAL_API
@Search.searchable: true
@Consumption.ranked: true
@Consumption.valueHelpDefault.fetchValues:#AUTOMATICALLY_WHEN_DISPLAYED
@Consumption.dbHints: [ 'USE_HEX_PLAN' ]
define view C_FldLogsStockTypeVH
  as select from dd07t

{

          @UI.hidden                   : true
  key     ddlanguage                        as Language,
          //@Search: { defaultSearchElement: true, ranking: #HIGH, fuzzinessThreshold: 0.8 }

          @ObjectModel.text.element    : ['StockTypeName']
          @UI.textArrangement :#TEXT_FIRST
  key     cast( domvalue_l as abap.char(1)) as StockType,
          @Search: { defaultSearchElement: true, ranking: #HIGH, fuzzinessThreshold: 0.8 }
          @Semantics.text: true
          ddtext                            as StockTypeName
}
where
       domname    = 'INSMK'
  and  ddlanguage = $session.system_language
  and(
       domvalue_l = ''
    or domvalue_l = 'X'
    or domvalue_l = 'S'
  );