‎2009 Feb 13 4:42 PM
Hi. I have the next problem. My main program call differents smartforms. What I want to do, is capture the spool order of the first smarform (wich I already know), and pass that order to the next smartform, because right now, i can capture the spool order of the first smartforms, but when i check the spool (sp01), only appears the first smartform.
‎2009 Feb 13 5:02 PM
You should Call your all Smartforms FM within the call of FM SSF_OPEN and SSF_CLOSE.
It should be like:
Call FM SSF_OPEN
Call FM Smartform_FM1
Call FM smartform_FM2
..
Call FM Smartform_FMn
Call FM SSF_CLOSE
While calling the SSF_OPEN FM set the control parameters like:
data: control type ssfctrlop.
control-no_open = 'X'.
control-no_close = 'X'.
Check Program SF_EXAMPLE_03 for reference.
Regards,
Naimesh Patel
‎2009 Feb 13 5:02 PM
You should Call your all Smartforms FM within the call of FM SSF_OPEN and SSF_CLOSE.
It should be like:
Call FM SSF_OPEN
Call FM Smartform_FM1
Call FM smartform_FM2
..
Call FM Smartform_FMn
Call FM SSF_CLOSE
While calling the SSF_OPEN FM set the control parameters like:
data: control type ssfctrlop.
control-no_open = 'X'.
control-no_close = 'X'.
Check Program SF_EXAMPLE_03 for reference.
Regards,
Naimesh Patel
‎2009 Feb 13 5:14 PM
‎2009 Feb 13 5:21 PM
‎2009 Feb 13 5:13 PM