cancel
Showing results for 
Search instead for 
Did you mean: 

how to call specific page of smartforms

Former Member
0 Kudos

i have smartform in which 5 different pages are there

i want to call PAGE1 when my sy-tcode eq tc1

and PAGE2 when sy-tcode eq tc2 like wise...

how to pass the page name in function module of smartforms???

Accepted Solutions (1)

Accepted Solutions (1)

Former Member
0 Kudos

Hi,

try this

case sy-tcode.

when

Populate control structure SSFCTRLOP structure.... startpage field

endcase.

this should help you

regards

padma

Answers (1)

Answers (1)

Former Member
0 Kudos

HI,

try this...

case sy-tcode.

when ' '.

Populate the TDPAGESLCT of structure SSFCOMPOP include SSFSPOUTOP of OUTPUT_OPTIONS in form interface of the smartform.

endcase.

call the smartform functionmodule

regards

padma

Former Member
0 Kudos

Thanks Padmavathi,

But it is not working, At runtime, it is giving Error Message something like "page errornoues".

however it is working FINE , if i dont give above options and run it for all pages....