on ‎2005 Dec 12 3:36 AM
Hi,
Iam new to smartforms. Where can i find step by step process to create smartforms?Or is any one having simple document on smartforms?
Points guraranteed
cheers
kaki
Request clarification before answering.
Hi Kaki,
Steps to create sample Smart Form:
1. Define ur internal table in form interface-> tables.
2. Create page.
3. Create table. Design rows & columns according to ur requirement in table tab.
4. In data tab check loop & pass ur internal table for eg. it into it
5. In table u get header, main area & footer.
6. In header create table line and specify line type in output options. so u get no of columns according to ur table design. In each column create text.
7. In Main area same way create table line and specify line type. Now here u create text in which u have to write &it-belnr& and other fields u want in each column.
Sample Program of Smart Form:
TABLES : mara.
DATA : it LIKE mara OCCURS 0 WITH HEADER LINE.
DATA : fm TYPE rs38l_fnam.
SELECT-OPTIONS : p_matnr FOR mara-matnr.
START-OF-SELECTION.
SELECT * FROM mara INTO TABLE it
WHERE matnr IN p_matnr.
SORT it BY matnr.
IF sy-subrc = 0.
CALL FUNCTION 'SSF_FUNCTION_MODULE_NAME'
EXPORTING
formname = 'YSDM_INV_COV_LETTER'
IMPORTING
fm_name = fm
EXCEPTIONS
no_form = 1
no_function_module = 2
OTHERS = 3.
CALL FUNCTION fm
TABLES
it = it.
ENDIF.
Regards,
Digesh Panchal
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
hi
<b>for Smartforms</b>
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
<b>How to trace smartform</b>
http://help.sap.com/saphelp_47x200/helpdata/en/49/c3d8a4a05b11d5b6ef006094192fe3/frameset.htm
regards
Arun
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Hi vijay,
I have reffered these sites already.But still iam not clear.
I want to display in the output like this one box.
-
|
Reference no:123456789 |
-
in the form interface-> tables i have difined like this.
ITAB LIKE BKPF.
In the main window i have created one page and in that i have written like this
&itab-belnr&.
In the abap i have written a code like SF_EXAMPLE_01.
In the output iam getting same &itab-belnr&.
Not the value. What might be reason?
cheers
kaki
Hi Kaki,
PL go through the following <a href="http://www.sap-basis-abap.com/sapsf001.htm">link</a>
Regards,
Suresh Datti
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Hi,
REFER
http://help.sap.com/saphelp_nw04/helpdata/en/9b/e3b0d9c2a711d3b558006094192fe3/frameset.htm
You can search www.help.sap.com for more details.
The following wesites provide details about ABAP and smartforms
http://cma.zdnet.com/book/abap/index.htm
http://abap4.0catch.com/SAP_and_ABAP_Links.html#SAP_Hints_and_Tips
search for weblogs or code samples in sdn it will also help.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
| User | Count |
|---|---|
| 9 | |
| 6 | |
| 4 | |
| 4 | |
| 3 | |
| 3 | |
| 3 | |
| 2 | |
| 2 | |
| 2 |
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.