Table of Contents

7. Inventory Transactions

This documentation describes the Goods Receipt and the Goods Issue options of Produmex Scan. For information on stock counting click here.

7.1. Goods Receipt

Select the Goods Receipt option on the Main Menu under the Inventory Transactions section. On the next screen create a new Goods Receipt document or proceed with an already started one.

Goods receipt

On the Goods Receipt (list) screen add the warehouse to the Warehouse field. By default the warehouse is empty or it is the last warehouse in the same document. Scan the item or enter the item code to the Item field. Enter the quantity and tap the Add or Upd. button to add the item.

If there are multiple UoMs for the item, you can select a different UoM than the default. Default: inventory/base UoM.

On the grid already added items are listed.

If the warehouse has bin locations, and/or the item is managed by batches/serial numbers, the system proceeds to a screen where the bin location, batch and serial numbers can be added.

The total quantity must be equal to the quantity entered on the previous screen in order to proceed.

Tap the Print button to print the item label.

Tap the Done button to proceed. The system goes back to the previous screen and saves the entered data.

Tap the Cancel button to go back without saving the data.

*Price/Account: a user query has to be defined with the name bx_mobile_wh9_goodsreceipt_pricing.

Parameters Result
[%1] Employee ID
[%2] Warehouse
[%3] ItemCode
Price (BXITPRC)
Currency (BXITCURR)
Account number (BXITACCN)
Distribution Rule (BXITDSTR)

Example query:

 SELECT OITM.AVGPrice as BXITPRC. '$' as BXITCURR FROM OITM WHERE ItemCode=[%3]

7.2. Goods Issue

Select the Goods Issue option on the Main Menu under the Inventory Transactions section.

On the next screen create a new Goods Issue document or proceed with a started one.

Goods Issue

On the Goods Issue (list) screen add the warehouse to the Warehouse field. By default the warehouse is empty or it is the last warehouse in the same document. Scan the item or enter the item code to the Item field. Only inventory items can be scanned or selected. Enter the quantity and press the Add or Upd. button to add the item.

If there are multiple UoMs for the item, you can select a different UoM than the default. Default: inventory/base UoM.

On the grid already added items are listed.

If the warehouse has bin locations, and/or the item is managed by batches/serial numbers, the system proceeds to a screen where the bin location, batch and serial numbers can be added.

The total quantity must be equal to the quantity entered on the previous screen in order to proceed.

Tap the Print button to print the item label.

Tap the Done button to proceed. The system goes back to the previous screen and saves the entered data.

Tap the Cancel button to go back without saving the data.

Price/Account: a user query has to be defined with the name bx_mobile_wh9_goodsissue_pricing.

Parameters Result
[%1] Employee ID
[%2] Warehouse
[%3] ItemCode
Price (BXITPRC)
Currency (BXITCURR)
Account number (BXITACCN)
Distribution Rule (BXITDSTR)

Example query:

 SELECT 
   "OITM"."AVGPrice" as "BXITPRC", 
   '$' as "BXITCURR", 
   (select "AcctCode" from "OACT" where "FormatCode" = replace('11100000-01-001-01', '-', '' )) as "BXITACCN" 
FROM 
   "OITM" WHERE "ItemCode" = [%3]