Production > Work order general > WO structure > Issue Reservations screen > Reservation screen > Inventory list - robinfeng/beashelp GitHub Wiki
Navigation: Production > Work order general > WO structure > Issue / Reservations screen > Reservation screen: Inventory list No contents entries on this page Contents Inventory with batch/serial number/bin location, sorted by priority • 1. Reserved goods for this order line • 2. Allocation warehouse • 3. Standard warehouse • 4. Other warehouses. Within that sorting: withdrawal rule according to configuration wizard
There are only warehouses displayed, which are relevant to the field. In multi-branch solution: only warehouses of the same branch are displayed.
See Edit warehouse master data
Alternatively, the warehouse filter can be changed by script hmtoggle_plus1 Customized warehouse filter
i windowevent loadstock next to UDFs warehouse filter can be defined. Use variable "e_stock_(area)_where" or subordinated: e_stock_where for definition. Area: destinguish between normal, batch or serial number items. Batch: e_stock_batch_where Series: e_stock_serial_where Normal: e_stock_std_where A general filter in variable "e_stock_where" can be defined or a separate filter for batch or serial number items. The standard behavior can be changed completely.
Priority: Filter as per area filter e_stock_(area)_where If not set: filter as in variable e_stock_where If not set: standard filter (see Standard behavior)
Enter a SQL-fragment for the WHERE-clause The following tables are available: Serial number: OSRN, OSRQ, OWHS, OITW, BEAS_WHSBINITEM, BEAS_WHS, BEAS_WHSBIN, BEAS_WHSAREA Batch: OBTN, OBTQ, OWHS, OITW, BEAS_WHSBINITEM, BEAS_WHS, BEAS_WHSBIN, BEAS_WHSAREA Normal: OWHS, OITW, BEAS_WHSBINITEM, BEAS_WHS, BEAS_WHSBIN, BEAS_WHSAREA
Example:
User "harald" may only withdraw from warehouse "02" and "03"
windowevent loadstock
if = harald then
setvar=e_stock_where= andOWHS
.WhsCode
in ('01','02')
end if
end event
This window can be called up as reservation or issue window. If depending on the area different filters are needed, use the variable as_menu.
Area Content Variable as_menu Reservation reservation Allocation supply issue provision parts externalissue issue issuewo
Example: Extended rule only for issue
windowevent loadstock
if <as_menu> = issuewo then
setvar=e_stock_where= andOWHS
.WhsCode
in ('01','02')
end if
end event
Note: The rule defined here has no effect on allocation. This is set up separately. See Extended rules
See Customization beas9.0-000-002-006
Field Meaning ... current status see Icons Available Current stock of available material Reserved reserved quantity Assigned Thereof already assigned to the work order Reserve Enter quantity manually to reserve for the above given work order unit Unit of measurement Warehouse Current warehouse Bin location Current bin location Info 1 Serial number: manufacturer serial number Batch number: Batch attribute 1 Info 2 Serial number: Batch number Batch number: Batch attribute 2 Info 3 Batch and serial number details Description Item description. With activated item version control: description of item version Drawing number Drawing number of item. With activated item version control: Drawing number of version udf1...udf4 Fields can be defined freely in windowevent loadstock hmtoggle_plus1 Description There are serial number/batch related and normal items Serial number: e_stock_serial_udf1 ..4, e_stock_serial_udfname1 ... udfname4 Batch: e_stock_batch_udf1...4, e_stock_batch_udfname1 ... udfname4 Normal: e_stock_std_udf1..4, e_stock_std_udf1name1 ... udfname4
The following tables are available: Serial number: OSRN, OSRQ, OWHS, OITW, BEAS_WHSBINITEM, BEAS_WHS, BEAS_WHSBIN, BEAS_WHSAREA Chargen: OBTN, OBTQ, OWHS, OITW, BEAS_WHSBINITEM, BEAS_WHS, BEAS_WHSBIN, BEAS_WHSAREA Normal: OWHS, OITW, BEAS_WHSBINITEM, BEAS_WHS, BEAS_WHSBIN, BEAS_WHSAREA
To check which screen is currently open, check the content of the variable "as_menu". In reservation screen "reservation" is stored.
Example:
in case of serial numbers and reservations in UDF1 the field U_myfield shall be displayed and labeled with "my field"
windowevent loadstock
setvar=e_stock_serial_udf1=OSRN
.U_myfield
setvar=e_stock_serial_udfname1=my field
end event
Note: Set variables are not reset as long as the window is not reopened.
UDF's are only visible, if activated in windows settings. beas9.0-000-001-006 See Customization
back to issue and reservation screen Window: reservation_set_master
返回 主页