cancel
Showing results for 
Search instead for 
Did you mean: 

Calling a smart form inside a loop

Former Member
0 Kudos

Hi all,

I am calling a smartform inside loop. It is called several times.

I want to genarate a single spool if i give print. How can i achive this

I have used new id inside the loop, it is noe working ..How to use NO open and no close to achieve this

Thanks

Saravana

Accepted Solutions (0)

Answers (2)

Answers (2)

Former Member
0 Kudos

You use <b>NO_OPEN</b> and <b>NO_CLOSE</b> to include several forms into one print request. When calling the generated functions modules, set the parameters as follows:

1st call: NO_OPEN = SPACE.

NO_CLOSE = 'X'.

nth call: NO_OPEN = 'X'.

NO_CLOSE = 'X'.

last call: NO_OPEN = 'X'.

NO_CLOSE = SPACE .

Former Member
former_member225631
Active Contributor
0 Kudos

Don't call inside the loop, but pass the internal table as tables parameter.