‎2006 Sep 05 7:27 AM
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
‎2006 Sep 05 7:31 AM
‎2006 Sep 05 7:31 AM
‎2006 Sep 05 7:32 AM
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.
‎2006 Sep 05 7:39 AM
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
‎2006 Sep 05 7:43 AM
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
‎2006 Sep 05 7:53 AM
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
‎2006 Sep 05 8:19 AM
‎2006 Sep 05 8:24 AM