Input From Terminal

rpenridge

New Member
Hi All,

To speed up a delete process I would like to do something along the lines of:

output to myFile.
put v_salesOrderNumber skip skip skip skip.
output close.
input from myFile.
run salesOrderScreen.p
input from terminal.

This piece of code would be called repetitively with a new v_salesOrderNumber each time. It would load the sales order number into the screen, press enter four times for the user then pass control over to the user. Unfortunately what happens is as soon as progress gets to the end of the input it closes the screen.

I can't modify the source code for salesOrderScreen.p.... any ideas?

Thanks,
Rob
 
Top