‎2008 Feb 26 7:24 AM
Hi,
In script Driver Program, How to call the 2 or more script form. can anyone regret me the same. Send me some sample code...
Thanks In advance
Regards,
Saran
‎2008 Feb 26 7:29 AM
You can call 2 scripts in single driver program by using multiple 'START_FORM' function modules.
Example:
**To create spool request
call function open_form.
1st script
call function start_form.
call function write_form.
call function end_form.
**2nd script
call function start_form.
call function write_form.
call function end_form.
**To close the spool request
call function close_form.
Reward points...
‎2008 Feb 26 7:35 AM