cancel
Showing results for 
Search instead for 
Did you mean: 

Smartform Driver Program to trigger different smartforms, all having single input.

Former Member
0 Kudos

I want to develop a Driver Program that has to take Input and also it has 2 Radio Buttons for displaying the corresponding form Selected.

Both the forms have the sme Input.

I need to trigger the Form, that I select in the Driver Program, through Radio Btn.

Let me know.

Thanks in advance.

Accepted Solutions (0)

Answers (1)

Answers (1)

former_member183073
Active Participant
0 Kudos

Hi Ravi,

Just a bit of research would have answered your question, Please tell what you have learnt and searched before raising a question?

just use the Parameters for accepting the input from the user and use radio buttons like below:

   PARAMETERS: rb_1 RADIOBUTTON GROUP r1 DEFAULT 'X',
                           rb_2 RADIOBUTTON GROUP r1.

and check which button was selected and fetch the data  and trigger the smartform.

case 'X'.

     when rb_1.

               do this.

     when rb_2.

               do this.

end case.