cancel
Showing results for 
Search instead for 
Did you mean: 

smartforms

Former Member
0 Kudos

Hi Friends,

what is use of Print Program Creation in Smartforms??

other than Print Program Can we carete Smartform individually

and use for the certain issues??

suggestions pls.

regards,

Accepted Solutions (0)

Answers (5)

Answers (5)

Former Member
0 Kudos

Hi,

The Smart Form print program is where the majority of data extraction occurs. Typically, one

Smart Form print program should be associated with one type of form. For example, the Smart

Form purchase order has a corresponding Smart Form purchase order print program that only

handles data extraction for that form.

This one-to-one relationship improves the transparency for the user between what is being

performed in the form versus the print program.

we can create Smartform individually. If u need to print only comapny logo and static text etc we can have individual smartform.

Former Member
0 Kudos

Hi,

You can directly execute smartform without print program.

If you want to pass import export parameters to the functionmodule generated by smartform then print program is useful.... You can pass the data to the function module and pass the internal tables to the respective parameters

regards

padma

Former Member
0 Kudos

check this link

http://www.abapguide.com/uploads/2007/12/smartform-tutorial.pdf

and if u r using a print prog then:

CALL FUNCTION 'SSF_FUNCTION_MODULE_NAME'

EXPORTING

formname = <smartform name>

IMPORTING

fm_name = v_form_fm

EXCEPTIONS

no_form = 1

no_function_module = 2

OTHERS = 3.

  • Call Smartfrom to print the document

CALL FUNCTION v_form_fm

EXPORTING

p_compensation = p_comp <--parameter list

p_skill = p_skill

p_deci_auhtority = p_da

TABLES

s_job = s_job <--select option list

s_level = s_level

s_date = s_date

EXCEPTIONS

formatting_error = 1

internal_error = 2

send_error = 3

user_canceled = 4

OTHERS = 5.

Former Member
0 Kudos

Hi venugopal,

Yes you can create smartforms individually.

[http://www.abapguide.com/uploads/2007/12/smartform-tutorial.pdf]

Regards,

Sravanthi

Former Member
0 Kudos