i have a line say "if cust_id = ' ' then". i am passing this line to a sub routine.
myline = 'if cust_id = xyz then'
call mod_line myline
mod_line:
parse arg var1 var2 var3 var4 var5
call mod_line myline
mod_line:
parse arg var1 var2 var3 var4 var5
now instead of parsing into var1 var2 and so on...
is it possible to have it in a stem and access it whenever i wanted?
if so please provide me with a solution...