2006 Jul 31 4:26 AM
hello!
i first time in the smartforms,so i want to seek some excemple,step by step,and about bar code,thank you everyone!
2006 Jul 31 4:32 AM
Hi Hong Yang,
You can go through the given links for step by step learning of Smartforms. Her you will get all information about smartforms.
http://esnips.com/doc/58566115-54a4-4405-8872-8de952e245e5/smartform.pdf
http://www.sapgenie.com/abap/smartforms.htm ===> Program
http://esnips.com/doc/7e67af5c-6188-4252-8613-41816756d560/from-sappres.pdf
http://esnips.com/doc/2276d194-dc47-4b1e-9c14-7af0ffe923ca/smartforms-xsf-output.pdf
http://esnips.com/doc/97acb00a-e513-4611-91f0-c626f460bfc5/Smart_Form_Overview.pdf
http://esnips.com/doc/77a981b9-8fe3-4fbb-8101-67745c1fe60c/SMART-FORMS_shail.ppt
If you want more docs give me your email id I have some good docs on smartforms.
Reward points if found useful.
Regards,
Amit.
hello!
i first time in the smartforms,so i want to seek some excemple,step by step,and about bar code,thank you everyone!
2006 Jul 31 4:32 AM
Hi Hong Yang,
You can go through the given links for step by step learning of Smartforms. Her you will get all information about smartforms.
http://esnips.com/doc/58566115-54a4-4405-8872-8de952e245e5/smartform.pdf
http://www.sapgenie.com/abap/smartforms.htm ===> Program
http://esnips.com/doc/7e67af5c-6188-4252-8613-41816756d560/from-sappres.pdf
http://esnips.com/doc/2276d194-dc47-4b1e-9c14-7af0ffe923ca/smartforms-xsf-output.pdf
http://esnips.com/doc/97acb00a-e513-4611-91f0-c626f460bfc5/Smart_Form_Overview.pdf
http://esnips.com/doc/77a981b9-8fe3-4fbb-8101-67745c1fe60c/SMART-FORMS_shail.ppt
If you want more docs give me your email id I have some good docs on smartforms.
Reward points if found useful.
Regards,
Amit.
2006 Jul 31 4:33 AM
Hi Hong Yang,
Please take a look at these links.. They give a comprehensive coverage of smartforms..
http://www.sap-img.com/smartforms/smartform-tutorial.htm
http://www.sapgenie.com/abap/smartforms.htm
http://sapgenie.com/abap/smartforms_described.htm -- Sample program
http://help.sap.com/saphelp_470/helpdata/en/a5/de6838abce021ae10000009b38f842/frameset.htm -- Smartform documentation
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
Hope this answers your question !
cheers,
Prashanth
P.S Please mark helpful answers
2006 Jul 31 6:06 AM
Hi,
<b>What is Smartform:</b>
Smart forms is very similar to SAP scripts . This is also a tool which is extensively used to creat layouts and then a separate print program is created. This print program is used to create the output internal table which ibn turn is thrown to the smart form where the field values are displayed .
In the print program mentioned below ...an output internal table is created by populating certain fields from database tables into it . Once the output internal table is ready , then the function module SSF_FUNCTION_MODULE_NAME is called . Here , in the import parameters , the name of the smartform is given . The output of this function module is the name of another function module .
This function module is again called , in this examplpe , the name of the function module is "/1BCDWB/SF00000007" .
The output of this function module is the output internal table that we have created earlier in the program i.e.. I_YCUSTOMER .
So , in case of smart forms , we use 2 function modules for the processing of the smartform. Once this internal table is thrown from the smart form , then in the layout , the required fields can be displayed .
This is how a smartform works.
REPORT YSMARTLOK .
TABLES: YCUSTOMER.
DATA : FM_NAME TYPE RS38L_FNAM.
TYPES : BEGIN OF T_YCUSTOMER,
YKUNNR LIKE YCUSTOMER-YKUNNR,
YLAND1 LIKE YCUSTOMER-YLAND1,
YNAME1 LIKE YCUSTOMER-YNAME1,
YNAME2 LIKE YCUSTOMER-YNAME2,
YORT01 LIKE YCUSTOMER-YORT01,
END OF T_YCUSTOMER.
DATA : I_YCUSTOMER TYPE STANDARD TABLE OF T_YCUSTOMER WITH HEADER LINE .
DATA : WA_YCUSTOMER TYPE T_YCUSTOMER.
SELECT * FROM YCUSTOMER INTO TABLE I_YCUSTOMER.
CALL FUNCTION 'SSF_FUNCTION_MODULE_NAME'
EXPORTING
FORMNAME = 'YSMARTLOK'
VARIANT = ' '
DIRECT_CALL = ' '
IMPORTING
FM_NAME = FM_NAME
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 '/1BCDWB/SF00000007'
EXPORTING
ARCHIVE_INDEX =
ARCHIVE_INDEX_TAB =
ARCHIVE_PARAMETERS =
CONTROL_PARAMETERS =
MAIL_APPL_OBJ =
MAIL_RECIPIENT =
MAIL_SENDER =
OUTPUT_OPTIONS =
USER_SETTINGS = 'X'
IMPORTING
DOCUMENT_OUTPUT_INFO =
JOB_OUTPUT_INFO =
JOB_OUTPUT_OPTIONS =
TABLES
I_YCUSTOMER = I_YCUSTOMER
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.
<b>Below links will definitely help you:</b>
<b>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
<b>Reward If helpful</b>
Regards,
Shakuntala
2006 Jul 31 6:14 AM
hi,
Check these Links out
http://www.sapgenie.com/abap/smartforms.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.sap-basis-abap.com/sapsf001.htm
Regards,
Santosh
2006 Jul 31 6:22 AM
hi hong,
check the below links
most imp link
http://www.sapbrain.com/ARTICLES/TECHNICAL/SMARTFORMS/smartforms.html
Check these links.In this,I am explaining everything step-by-step.Kindly reward points by clikcing the star on the left of reply,if it is useful.
Check these links also.
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
http://www.ossincorp.com/Black_Box/Black_Box_2.htm
http://sap.niraj.tripod.com/id67.html
http://myweb.dal.ca/hchinni/sap/smartforms_home.htm
Step by StepGood one):
If u find it useful plz mark the points
Regards,
Naveen
2006 Aug 01 4:51 AM
Thank you everyone,if you have some more usefull excemple please mail to me,my e-mail is [email protected].
thank you.
2006 Aug 01 5:12 AM
Hi Hong Yang,
I had sent you this morning some docs on your mail id. I am sending you few more documents on smartforms on your mail id.
Reward points if found useful.
Regards,
Amit.
2006 Aug 01 11:49 AM
Hi,
Have a look at these good links-
<b>Smartforms</b>
http://www.sapgenie.com/abap/smartforms.htm
http://www.sap-img.com/smartforms/smartform-tutorial.htm
http://www.sap-img.com/smartforms/sap-smart-forms.htm
http://www.sapgenie.com/abap/smartforms_sapscript.htm
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/smartforms-faq-part-two.htm
http://www.esnips.com/doc/97acb00a-e513-4611-91f0-c626f460bfc5/Smart_Form_Overview.pdf
http://www.esnips.com/doc/77a981b9-8fe3-4fbb-8101-67745c1fe60c/SMART-FORMS_shail.ppt
<b>The following link will explain the process step by step with pictures.</b>
<b>SapScript</b>
http://www.sap-img.com/sapscripts.htm
http://www.henrikfrank.dk/abapexamples/SapScript/sapscript.htm
<b>How to trace smartform</b>
http://help.sap.com/saphelp_47x200/helpdata/en/49/c3d8a4a05b11d5b6ef006094192fe3/frameset.htm
Mark useful answers.
Regards,
Tanuja.
| User | Count |
|---|---|
| 4 | |
| 2 | |
| 2 | |
| 1 | |
| 1 | |
| 1 | |
| 1 | |
| 1 | |
| 1 | |
| 1 |