‎2006 Jun 27 12:21 PM
HI,
PLZ TELL ME HOW TO CREATE LABELS IN SMARTFORMS BCOZ I NEED TO WORK WITH THEM
REGARDS
NA
‎2006 Jun 27 12:23 PM
‎2006 Jun 27 12:23 PM
‎2006 Jun 27 12:26 PM
Hai Nayak
Go through the following Links
http://www.sap-img.com/smartforms/smart-006.htm
http://www.sap-img.com/smartforms/smartforms-faq-part-two.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
http://www.sapgenie.com/abap/smartforms.htm
http://www.sap-img.com/smartforms/sap-smart-forms.htm
http://help.sap.com/saphelp_46c/helpdata/en/a5/de6838abce021ae10000009b38f842/frameset.htm
http://help.sap.com/printdocu/core/Print46c/en/Data/htm/english.htm
http://www.sap-img.com/smartforms/smart-001.htm
http://www.sap-img.com/smartforms/smartform-tutorial.htm
http://www.sap-img.com/smartforms/smart-002.htm
http://www.sapgenie.com/abap/smartforms.htm
http://www.sap-img.com/smartforms/sap-smart-forms.htm
Thanks & regards
Sreenivasulu P
‎2006 Jun 27 12:26 PM
HI,
Create a text node and enter your text required.
also check these links for details.
http://www.sap-img.com/smartforms/sap-smart-forms.htm
http://www.sapgenie.com/abap/smartforms.htm
http://www.sapbrain.com/TUTORIALS/TECHNICAL/SMARTFORMS_tutorial.html
Regards,
Wasim Ahmed
‎2006 Jun 27 12:38 PM
Hi Nayak,
That is not at all a problem how to create the labels in your smartform.You have the layout.Create a smartform and create the same layout in your smartform using windows.Most important thing is that create separate windows for all the fields and their values.The main problem you will face in Printer setting that your Basis person will do and you have to do some printer specific setting in your print program.I am sending you that setting.
DATA : g_output TYPE ssfcompop,
g_control TYPE ssfctrlop,
g_printer TYPE rspoptype,
g_dest TYPE rspopname.
*FM to accept the device type and returns the short name of the output device
CALL FUNCTION 'EFG_GET_PRINTER'
EXPORTING
x_no_dialog = ' '
x_obligatory = 'X'
IMPORTING
y_tddest = g_dest
EXCEPTIONS
cancelled = 1
failed = 2
OTHERS = 3.
.
*device type name for the output device
SELECT SINGLE patype "#EC CI_NOFIELD
FROM tsp03d
INTO g_printer
WHERE padest = g_dest.
*printer setting
g_control-no_dialog = 'X'.
g_output-tdarmod = '1'.
g_output-tdcopies = '001'.
g_output-tddest = g_dest.
g_output-tdprinter = g_printer.
g_output-tdnewid = 'X'.
g_output-tdimmed = 'X'.
*Calling Smartform
CALL FUNCTION 'SSF_FUNCTION_MODULE_NAME'
EXPORTING
formname = g_form
IMPORTING
fm_name = g_fm_name
EXCEPTIONS
no_form = 1
no_function_module = 2
OTHERS = 3.
‎2006 Jun 27 12:43 PM
MORE THANKS MUKESH
BUT I NEED THE PROCEDURE HOW TO DO
POINTS SURE
REGARDS
NA
‎2006 Jun 27 12:48 PM
Hi Nayak,
Labels are not created in smartforms.Smartforms are developed as per your layout requirement.In the smartform you have to do the printer setting as i have given you in the previous mail.When you will call the smartform in the print program and will exceute the print program the label will be created in the zebra printer.If you have any doubt reply this thread.I have worked in this type of task.
Regards,
Mueksh Kumar
‎2006 Jun 27 12:52 PM
‎2006 Jun 27 1:19 PM
Hi Nayak,
Send your issues in this forum only.I will try to solve.I will try to solve all your issues related to the programs but for the zebra printer setting you have to contact your basis team.I cannot help you there.
regards,
Mueksh Kumar
‎2007 Feb 15 3:28 AM
Hi Mukesh,
I have developed a smart form for a label printing. I am able to print it on ordinary printer. Now I have to print it on a Zebra Printer.
The settings you have posted is it same for every print program ?
Do I need to insert any ZPL commands?
Can I use the same settings and when I go for printer selection and when I select
a zebra printer and click on print will it print?
My Zebra printer is zebra170xiII
Guys if any one of you solved the problem please let me knw..
with regards,
chaithanya.