cancel
Showing results for 
Search instead for 
Did you mean: 

smartfoms page navigation in webdynpro

Former Member
0 Kudos

I have a smartform with 5 pages. I have linked my smartform to webdynpro ( abap ). Now the smartform is in PDF format. I can navigate and view all the 5 pages using pdf arrows that is well and good. But I want to navigate between pages using webdynpro buttons either custom or standard. Please help me. Thanks in advance.

Accepted Solutions (1)

Accepted Solutions (1)

Former Member
0 Kudos

Answers (1)

Answers (1)

Former Member
0 Kudos

Hello Chethan,

Set property

no_dialog    as abap_false for the work area of type   ssfctrlop which you are sending as parameter

when you are calling smart form.

ex

   ls_ctrl_form-no_dialog    = abap_false.

   ls_ctrl_form-preview      = abap_true.

   ls_ctrl_form-getotf       = abap_true. "returns data in OTF format
   ls_ctrl_form-langu        = mc_lang.

I hope this  will help you

Former Member
0 Kudos

I did but it did not help

Former Member
0 Kudos

Whether your smart form(not pdf) is opening or no after setting this property

Former Member
0 Kudos

smartfom is opening......See my smartfomr has 5 pages.....I want only one page has to be brought to webdynpro and when I press NEXT button the code should bring next page of smartform to pdf.