Application Development and Automation Discussions
Join the discussions or start your own on all things application development, including tools and APIs, programming models, and keeping your skills sharp.
cancel
Showing results for 
Search instead for 
Did you mean: 
Read only

smartforms

Former Member
0 Likes
643

hi all,

can anyone help me regarding smartforms? Can anyone give me some materials related to it? Also, where should i code my programs in smartforms? Also, how can i call a smartforms from the abap editor.

Thanks a lot,

Jc

1 ACCEPTED SOLUTION
7 REPLIES 7
Read only

Former Member
0 Likes
611

Hi,

You can search any SAP sites for smartforms material.

For smartforms, the tcode is smartforms...you can go to this tcode and you can program it.

First, whenever u creat a smartform , a function module is created.That function module u have to call in the ABAP program.

In ABAP program for knowing the function module name, u can use,

SSF_FUNCTION_MODULE_NAME....function module....

Regards,

Sushil.

Read only

Former Member
0 Likes
611

Hi,

Smart Forms are used to create and maintain forms for mass printing in SAP system.

You can find good docu. for Smart Forms in the link below,

<a href="http://help.sap.com/saphelp_nw2004s/helpdata/en/a9/de6838abce021ae10000009b38f842/frameset.htm">Smart Forms</a>

You can code in your Smart Form definition.

You call up a Smart Form from the ABAP Editor using the fn. module that's generated for every Smart Form by the system.

To get the name of the fn. module generated by the system use the fn. module SSF_FUNCTION_MODULE_NAME.

Have a look at the sample code below


     DATA: FM_NAME TYPE RS38L_FNAM.

     CALL FUNCTION 'SSF_FUNCTION_MODULE_NAME'
       EXPORTING
         FORMNAME = 'Smartformname'
       IMPORTING
         FM_NAME  =  FM_NAME.


     CALL FUNCTION FM_NAME
       EXPORTING
        ...
       IMPORTING
        ...
       TABLES
        ...
       EXCEPTIONS
        ...

Regards,

Mustajab

Read only

Former Member
0 Likes
611

hi all,

im doing a smartform consisting of 3 pages.

page 1: 4 windows: A, B, C, D

page 2: 5 windows: A, B, C, D, E

page 3: 5 windows: A, B, C, D, E

window c is the main window

do i need to create another windows for page 2 and 3 or i can use the windows in page 1.

pls help how can i do this.

thanx

Read only

0 Likes
611

Hi,

You can copy the windows form page 1 and paste them in page 2 and page 3.

Thanks and Regards,

Bharat Kumar Reddy.V

Read only

0 Likes
611

give me u r mail id.

Read only

0 Likes
611

jaycee.j.d.bundalian@accenture.com

thanx