cancel
Showing results for 
Search instead for 
Did you mean: 

ABAP Smartforms

08-19-2019 5:23 PM
vivek_2690 Explorer
436 views 3 comments
0 Likes
SAP Managed Tags
Subscribe

How to Print Multiple Smart forms selection of multiple check box In selection screen of driver program.

0 Likes

Accepted Solutions (0)

Answers (1)

Answers (1)

danilo_henriques
Explorer
0 Likes

If I understood this right, you have a report and more than one Smart Forms that need to be printed according to the user's selection.

Every Smart Forms has a structure called control_parameters(type SSFCTRLOP). You are going to use fields no_open and no_close when calling your function modules.

Something like this:

First form: no_open = space, no_close = X
Second form: no_open = X, no_close = X
Last form: no_open = X, no_close = space

There are plenty of discussions with the same matter here in the forum.

Regards