Application Development Discussions
Join the discussions or start your own on all things application development, including tools and APIs, programming models, and keeping your skills sharp.
cancel
Showing results for 
Search instead for 
Did you mean: 

Issueing Multiple Smartforms in sequence

Former Member
0 Kudos

Hi Friends,

I have a requirement to issue the Smartfrom for each material in the delivery(I will display some characterstics of each material as a form). This would be called from VL02N through configuration. I have written a driver program and i am calling Smartform's function module as many times as many Number of materials i have inside the loop. But i am not getting all smartforms. I am only getting First material smartform.

Please suggest me proper method.

Thanks,

Sekhar.J

1 REPLY 1

Former Member
0 Kudos

Hai,

Call the smartform in a loop.

For example:

collect all materials for the selected delivery into gt_material_info.

Now Call a new smartform for each materilal by loop thru the materials.

Loop at gt_material_info.

        • Here call new smartform for each material.

endloop.