Skip to main content

Hello, 

 

I want to configure a IFS report for a particular inventory location to printed to a default printer. 

 

How can I set this up report rules. 

Review here to see if this is what you’re looking for.  Thanks!  Jane

 


Hallo
I had a same problem and I solved in a other way. We have two workplaces (with PC) in the logistics with two printers each. The workers use also a WaDaCo-Handheld. I solved. that I use the historical Log to found out on witch workspace (PC) the user is logged when they print out some label from the WaDaCo-Handheld.

 

Report Rule
 

 

<&SELECT 
   hla.new_value 
FROM 
   history_log_attribute_tab hla, 
   history_log_tab hl 
WHERE hl.log_id = hla.log_id 
   AND hl.lu_name = 'FndClientLogon' 
   AND hl.history_type = '1'
   AND hla.column_name = 'MACHINE' 
   AND ( hl.username = ' #CurrentUser]' 
      OR hl.username = '/#PrintedBy]' ) 
ORDER BY hla.log_id DESC 
FETCH FIRST ROW ONLY]

 

Best Regards,
André


Hi,

It entirely depends on what IFS report you are trying to print. Is LOCATION_NO available as a field in the report per default?
See example for INVENT_LOCATION_NO_BARCODE_REP below.

If LOCATION NO is not available in the report you will have to create a custom field.

BR
Johan


Reply