cancel
Showing results for 
Search instead for 
Did you mean: 

smartforms issues

Former Member
0 Kudos

Hi All,

I am creating a new smartform as per my clients requirement. I am having few issues if u can help.

1. Want my smartform in landscape format but cudnt see anywhere where i can specify. I checked out the output options on the first page but is not giving me some frutiful.

2. do i need to translate it to any other language?

3. Most imp : the data that i want to display is in my internal table. now this internaa table is not derived from any standard table but rather a few elements from here and there. How do i work around that?

and also i want to knw can i pass a variable in the call to function module for smart form??

thanks in advance,

Gaurav

Accepted Solutions (1)

Accepted Solutions (1)

former_member181962
Active Contributor
0 Kudos

1)In form attibutes section, the format field will tell us the format in which you want the output to be, (check the widths and heights of some fornats in the f4).

3) YOu have to get the data from those different tables in your driver program and then pass the table to the smartform function module.

for example smartform driver programs,

go to se38 and give ssfexample and press f4.

Regards,

ravi

Former Member
0 Kudos

Hi,

You first define a structure of output.

then define a table with same structure in Smart Form interface .

Now you define a table with same structure . Append this program table with your required data . Pass this table to smartforms.

********************************

CALL FUNCTION 'SSF_FUNCTION_MODULE_NAME'

EXPORTING

formname = 'YOU SMART FORM NAME'

IMPORTING

fm_name = v_fmname.

CALL FUNCTION v_fmname

EXPORTING

V_BUKRS = p_bukrs

v_gjahr = p_gjahr

tables

it_belnr = it_bkpf.

****************************

Now you can use this table in your smart form.

Regards ,

Urjit

Answers (1)

Answers (1)

Former Member
0 Kudos

landscape format is solved, please help with other issues..

thanks and regards,

Gaurav