cancel
Showing results for 
Search instead for 
Did you mean: 

smart form

Former Member
0 Kudos

Hi Guys,

I am new to smartforms.I want a step by step procedure to create smart form and coversion of that form into Pdf.

Can anybody send me a link how to do this?

Thanks in advance.

Accepted Solutions (1)

Accepted Solutions (1)

Former Member
0 Kudos

hi,

refer to the following link,

http://www.saptechnical.com/Tutorials/Smartforms/SFMain.htm

you can have examples on the smartform.

reward if useful,

thanks and regards

Answers (4)

Answers (4)

Former Member
0 Kudos

Hi

Check these links for smart forms

http://www.sap-basis-abap.com/sapsf001.htm

http://www.sap-press.com/downloads/h955_preview.pdf

http://www.ossincorp.com/Black_Box/Black_Box_2.htm

http://www.sap-img.com/smartforms/sap-smart-forms.htm

http://www.sap-img.com/smartforms/smartform-tutorial.htm

http://www.sapgenie.com/abap/smartforms.htm.sap-img.com/smartforms/smart-006.htm

http://www.sap-img.com/smartforms/smartforms-faq-part-two.htm

You provide your id so that i can send few good materials across

For FM to interface in your program u need to use this following

data: v_function type rs38l_fnam.

CALL FUNCTION 'SSF_FUNCTION_MODULE_NAME'

EXPORTING

FORMNAME = tnapr-sform

  • VARIANT = ' '

  • DIRECT_CALL = ' '

IMPORTING

FM_NAME = v_FUNCTION

EXCEPTIONS

NO_FORM = 1

NO_FUNCTION_MODULE = 2

OTHERS = 3.

IF SY-SUBRC <> 0.

MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO

WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.

ENDIF.

CALL FUNCTION v_FUNCTION

EXPORTING

USER_SETTINGS = space

TABLES

EXCEPTIONS

FORMATTING_ERROR = 1

INTERNAL_ERROR = 2

SEND_ERROR = 3

USER_CANCELED = 4

OTHERS = 5 .

IF SY-SUBRC <> 0.

MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO

WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.

ENDIF.

Regards

Swetha

Edited by: Swetha on Jun 17, 2008 11:20 AM

former_member215781
Active Participant
0 Kudos
valter_oliveira
Active Contributor
0 Kudos

Hello.

Smartform creation:

http://help.sap.com/saphelp_nw70/helpdata/EN/4b/effd38fbea022ee10000000a114084/frameset.htm

Convertion to PDF.

Check standard report RSTXPDFT4 (convert spool to PDF). You can call it from your program.

Regards.

Valter Oliveira.

Former Member
0 Kudos

http://help.sap.com/saphelp_47x200/helpdata/en/a9/de6838abce021ae10000009b38f842/frameset.htm

and also u can see

SF_example_01,

SF_example_02

SF_example_03

example programs and smartforms in any sap system