Printing Dark Area in smartforms

Hi All,
I am having problem with printing graphics in Smartform. In preview it is okay.. But when I print it ..it is just printing Dark black area. I am expereincing same problem with Table Hedings. Please let me know ..What could be the error.
Thanks in Advance.
Good Wishes
Venkat Reddy

hi,
try this out...
Go to transaction SE78.
SAPSCRIPT GRAPHICS --> STORED ON DOCUMENT SERVER --> GRAPHICS --> BMAP
Enter the name of the graphics file on the right side and Go to the menu GRAPHIC --> IMPORT.
OR
RUN THE PROGRAM RSTXLDMC FOR UPLOADING THE IMAGE AND THEN IN THE SCRIPT GIVE
:/ INCLUDE ZLOGO OBJECT TEXT ID ST LANGUAGE EN.
HOPE THIS HELPS,
THANKS,
PRIYA.

Similar Messages

  • Printing dunning notices using SMARTFORMS,error during parameter transfer

    Hi Friends,
                    I face a error message "Include text ZGA_DUN_HDR does not exist (object TEXT, ID ST)" when i run the dunning run.
                    I had searched every node for text ZGA_DUN_HDR in the smartform,I didnt find the text in it.
    However when I execute the smart form for print preview an error message "Printing dunning notices using SMARTFORMS,error during parameter transfer".This error i believe is due to wrong parameter passing in the fm 'GET_SF_DUNN_DATA'.It raises an error no_parameters_found.All parameters are passed correctly.
                    Can you guys help me out.
    Edited by: RAJIV KAUSHAL on Nov 14, 2008 6:03 PM

    you can create this text ZGA_DUN_HDR  in SO10 tcode and try ...

  • Printing Dunning Letters using Smartforms

    Hi all,
    I have a requirement wherein I need to print dunning letters using smartforms; the dunning data are extracted in program SAPF150D2;I modified the subroutine OFI_DUN_ACT to call function module FI_PRINT_DUNNING_NOTICE_SMARTF.
    Now I need to extract the dunning data in program SAPF150D2 to be imported to my new form using GET_SF_DUNN_DATA, my question is where do I code the calling of FM GET_SFG_DUNN_DATA? I'm a little bit confused on the step by step process of the dunning data extraction to printing of the form... Thanks...

    In the INITIALIZATION of the Smartforms, after the call to  GET_SF_DUNN_DATA, you have a many informations back, of which the record of MHNK and an internal table of MHND, which you can use to select other informations from database.
    So fill or enrich your own internal table in the initialization.
    I enclose thereafter a sample to help you
    * Load data
      CALL FUNCTION 'GET_SF_DUNN_DATA'
           EXPORTING
                is_sfparam          = is_sfparam
           IMPORTING
                es_mhnk             = mhnk
                es_t001             = t001
                es_knb5             = knb5
                es_lfb5             = lfb5
                es_t047             = t047
                es_t047c            = t047c
                es_t047i            = t047i
                es_t056z            = t056z
                es_f150d            = f150d
                es_fsabe            = fsabe
                es_adrnr            = adrnr
                es_uadrnr           = uadrnr
                es_adrs             = adrs
                es_uadrs            = uadrs
                es_t047b            = t047b
                eb_testprint        = testprint
                e_langu             = langu
                e_lang2             = lang2
                es_f150d_esr        = f150d_esr
                es_paymi            = paymi
                es_paymo            = paymo
           TABLES
                t_mhnd              = th_mhnd
           EXCEPTIONS
                no_parameters_found = 1
                OTHERS              = 2.
    IF sy-subrc <> 0.
      sy-msgid = 'FM'.
      sy-msgty = 'E'.
      sy-msgno = 461.
      RAISE others.
    ENDIF.
    h_t040a-text1 = space.
    show_interest = space.
    LOOP AT th_mhnd INTO mhnd WHERE xzins = ' '.
      show_interest = 'X'.
      EXIT.
    ENDLOOP.
    * Load user information
    DATA: usr21 LIKE usr21, addr3_sel LIKE addr3_sel.
    CLEAR: usr21, addr3_sel, addr3_val, adr6.
    * Charger fiche profil
    SELECT SINGLE * FROM usr21 WHERE bname = sy-uname.
    * Récupérer l'adresse
    MOVE-CORRESPONDING usr21 TO addr3_sel.
    CALL FUNCTION 'ADDR_PERS_COMP_GET'
         EXPORTING
              address_pers_in_comp_selection = addr3_sel
         IMPORTING
              address_pers_in_comp_value     = addr3_val
         EXCEPTIONS
              OTHERS                         = 1.
    * load SMTP address
    CLEAR adr6.
    SELECT SINGLE * FROM adr6
      WHERE addrnumber = usr21-addrnumber
        AND persnumber = usr21-persnumber.
    * date format
    SET COUNTRY adrs-land1.
    * Group similar posts
    DATA: xbseg TYPE bseg,
          xbkpf TYPE bkpf,
          xpost TYPE th_outtab.
    REFRESH: t_post, t_cumul_waers.
    LOOP AT th_mhnd INTO mhnd.
    * Select lines to use
      IF mhnk-gmvdt IS INITIAL.
        IF mhnd-xzalb <> space OR mhnd-mansp <> space.
          CONTINUE.
        ELSEIF t047b-xpost NE 'X' AND mhnd-xfael <> 'X'.
          CONTINUE.
        ENDIF.
      ENDIF.
    * Map data
      CLEAR xpost.
      MOVE-CORRESPONDING mhnd TO xpost.
    * Load text from bseg
      SELECT SINGLE sgtxt INTO xpost-sgtxt FROM bseg
        WHERE bukrs EQ mhnd-bbukrs AND belnr EQ mhnd-belnr
          AND gjahr EQ mhnd-gjahr  AND buzei EQ mhnd-buzei.
      PERFORM edit_text CHANGING xpost-zuonr mhnd-xblnr xpost-sgtxt.
    * if "Payment difference" get the date of original document
      IF mhnd-bschl = '06'.
        SELECT SINGLE bldat INTO xpost-bldat
          FROM bkpf
          WHERE bukrs = mhnd-bukrs
            AND belnr = mhnd-rebzg
            AND gjahr = mhnd-rebzj.
      ENDIF.
    * Collect posts to print
      COLLECT xpost INTO t_post.
    * Collect amount per currency
      MOVE-CORRESPONDING xpost TO cumul.
      COLLECT cumul INTO t_cumul_waers.
    ENDLOOP.
    * Load customer information
    SELECT SINGLE * FROM kna1 INTO kna1
      WHERE kunnr = mhnk-kunnr.
    SELECT SINGLE * FROM knb1 INTO knb1
      WHERE bukrs = mhnk-bukrs
        AND kunnr = mhnk-kunnr.
    * Convert date to text
    PERFORM convert_date USING control_parameters-langu mhnk-laufd
      CHANGING text_date.
    PERFORM convert_date USING control_parameters-langu mhnk-prndt_before
      CHANGING text_prev.
    PERFORM convert_date USING control_parameters-langu mhnk-grdat
      CHANGING text_extr.
    Regards

  • Problem printing horizontal text in smartform with zebra Z6M label printer

    hello,
    The situation is this:
    There is a Z smartform wich prints a label to a zebra Z6M label printer with the text and barcodes vertically.
    The form have a command in the main windows with the parameter: S_LZPL_SETUP     '^FWR'
    This label works fine, but the client want to change the form, they have told me to create a new smartform and print the info horizontally, using the same printer.
    The tests i have done are the following:
    create a smartform from ground and write a template text and a barcode with a new font of system barcodes. the bardoce is shown ok(it is shown horizontally), the problem is that the template text is shown vertically, as in the original smartform.
    then i tried on another zebra ZM600 label printer, similar model, but not the same, and the smartform printed was ok (text and barcodes shown horizontally). So i think is a configuration setting problem, but i dont know where to search.
    i have checked the label printer parameters in SPAD, but didnt find anything souspicios.
    have you any idea?
    thanks in advance.

    See these if they be of any help.....
    BARCODE:
    goto smartform styles-> create a style-->
    create a character format.
    under standard settings give the bar code name
    use this style in ur smartform. select the data field which u want to barcode print and assign the character format
    Similarly
    SAPSCRIPT
    open the form and click the character format button and
    repeat the step as above....
    http://help.sap.com/saphelp_nw04/helpdata/en/68/4a0d5b74110d44b1b88d9b6aa1315b/frameset.htm
    Go to Character formate in your form.
    create a new char formate with enable BAR code AND
    you can give its type too.
    To Create a Bar code prefix:
    1) Go to T-code - SPAD -> Full Administration -> Click on Device Type -> Double click the device for which you wish to create the print control -> Click on Print Control tab ->Click on change mode -> Click the plus sign to add a row or prefix say SBP99 (Prefix must start with SBP) -> save you changes , it will ask for request -> create request and save
    2) Now when you go to SE73 if you enter SBP00 for you device it will add the newly created Prefix
    Create a character format C1.Assign a barcode to the character format.Check the check box for the barcode.
    The place where you are using the field value use like this
    <C1> &itab-field& </C1>.
    You will get the field value in the form of barcode.
    Which barcode printer are you using ? Can you download this file and see.
    http://www.servopack.de/Files/HB/ZPLcommands.pdf.
    It will give an idea about barcode commands.
    Check this link:
    http://www.sap-img.com/abap/questions-about-bar-code-printing-in-sap.htm
    Check this link:
    http://help.sap.com/saphelp_nw04/helpdata/en/d9/4a94c851ea11d189570000e829fbbd/content.htm
    Hope this link ll be useful..
    http://help.sap.com/saphelp_nw04/helpdata/en/66/1b45c136639542a83663072a74a21c/content.htm
    go through these links and cose u r previous threads,
    http://www.sap-img.com/abap/questions-about-bar-code-printing-in-sap.htm
    smartform - barcode
    http://www.erpgenie.com/abap/smartforms.htm
    http://sap.ittoolbox.com/groups/technical-functional/sap-basis/print-barcode-with-smartform-634396
    http://sap.ittoolbox.com/groups/technical-functional/sap-dev/printing-barcode-733550
    Detailed information about SAP Barcodes
    A barcode solution consists of the following:
    a barcode printer
    a barcode reader
    a mobile data collection application/program
    A barcode label is a special symbology to represent human readable information such as a material number or batch number
    in machine readable format.
    There are different symbologies for different applications and different industries. Luckily, you need not worry to much about that as the logistics supply chain has mostly standardized on 3 of 9 and 128 barcode symbologies - which all barcode readers support and which SAP support natively in it's printing protocols.
    You can print barcodes from SAP by modifying an existing output form.
    Behind every output form is a print program that collects all the data and then pass it to the form. The form contains the layout as well as the font, line and paragraph formats. These forms are designed using SAPScript (a very easy but frustratingly simplistic form format language) or SmartForms that is more of a graphical form design tool.
    Barcodes are nothing more than a font definition and is part of the style sheet associated with a particular SAPScript form. The most important aspect is to place a parameter in the line of the form that points to the data element that you want to represent as barcode on the form, i.e. material number. Next you need to set the font for that parameter value to one of the supported barcode symbologies.
    Creating Bar code:
    ) Go to T-code - SPAD -> Full Administration -> Click on Device Type -> Double click the device for which you wish to create the print control -> Click on Print Control tab ->Click on change mode -> Click the plus sign to add a row or prefix say SBP99 (Prefix must start with SBP) -> save you changes , it will ask for request -> create request and save
    2) Now when you go to SE73 if you enter SBP00 for you device it will add the newly created Prefix
    Create a character format C1.Assign a barcode to the character format.Check the check box for the barcode.
    The place where you are using the field value use like this
    <C1> &itab-field& </C1>.
    You will get the field value in the form of barcode.
    Check this thread for detail information.
    How to print Barcode in te SAP SCRIPTS?

  • How to Print Employee Photo using Smartform

    Dear All,
    I have requirement to print Employee photo using Smartform.
    Here I want to give breif backgorund to uploading employee image procedure,we are uploading employee Image using transaction code OAOH by providing Business Object PREL and Document Type HRICOLFOTO. Click on create button on second screen by providing employee Code XXXXXXX and infotype 0002  after click on enter button system ask path for uploading image file.After storing image we can see the employee image by using transaction code PA30 after passing employee code.
    These employee image  I want to print in Smartform layout.If any body have done this type of the requirement.Pl.explain me .
    Thanks ,
    Regards

    Hi ABAP Programmer,
    Refer this link
    i  want to retrieve a photo image of an Employee to display in smartforms
    Regards,
    Sravanthi

  • Problem when printing Thai Characters in Smartform

    Hi All,
    When printing thai characters in smartform it takes more spaces between characters than required. I tried all possible font to adjust the character spacing.
    Can anyone help me out.
    Thanks,
    Khushboo Dand

    Dear Khushboo, Jag
    I have observed that tThe tiny boxes that are appearing in the Smartform text element is only occuring when you are printing a variable whose content is thai and nothing else with that. by nothing else i mean no THAI hardcoded text.
    if you try and check you will observe that when you try to print something like this in your Text element
    with your paragraph format alright/ output device and device type everythng in place
    eg:
    ของผู้มีเงินได้ &G_VAR& -
    is printing alright : content of G_VAR is thai characters
    but if you are printing just the variable
    eg:
    &G_VAR& --- it will print boxes
    to overcome this after trying no.of checks / online helps / settings etc etc which , ofcourse, did not help
    I did a lil bit trick with the system
    You can create a character format in your smartstyle with FONT : THANGSAN and maintain the COLOR as white
    now go to your text element key in a THAI character at the start or end of you variable and assign your new character format to that character. and Eureka! it will work
    eg: <CF> ข </>  &G_VAR&  - --- seen in your change editor
    where CF is the new "colorless" character format I have asked you to create.
    Thanks and Regards,
    Charu.
    Edited by: Charu Borkar on Aug 3, 2011 00.14 am

  • Dot matrix printers Capable of printing TABLE lines In Smartforms

    Hey guys,
       we are using EPSON LX-300+ (dot matrix pritner)
    but the problem is,
    it is not able to print table lines present in a SMARTFORM..
    it can print the same table lines presnet in SCRIPT ...
    so i want to know,
      all the dot matrix printers in the market...
    that can print table lines in SMARTFORMS...
    (pls suggest the DM printers u are using and dont have this problem..i.e unable to print table lines in SMARTFORMS)
    thank you...

    Hi Sreesudha,
    I have used three different line types for the main window.
    LTYPE1(Header) : For printing the column heading along with the title for consignor address.
    LTYPE2(Main Area) : For printing the line items detail. For the first line, I have to print Material Description and chapter Id and if the same    material exists for the second line item, then it should not be printed, so I have written condition for not printing it.
    LTYPE3(Footer) : For printing the footer with the net and gross weight details.
    And for paragraph format, I have used the custom Para. Format only.
    Suggest me ASAP.
    Rgds,
    JK

  • Supress print pop up in smartforms

    Dear Friends,
    I need to supress the print popup in smartforms. I mean i want print directly, i dont want pop up. Now when i execute that program i am getting pop up and giving printer name and then print. But i want the print directly, i am giving printer name on the selection screen.
    I have tried with different combinations of control parameters and output parameters, but its not working.
    Any help will be highly appreciated.
    Thanks a lot in advance.

    DATA : z_control TYPE ssfctrlop,                                                " here define two structures (ctrl and options)
           z_options TYPE ssfcompop.                                                   " like  ssfctrlop and ssfcompop.
      MOVE 'X' TO : Z_control-no_dialog,                                         " these are the status of variables
                    Z_options-tdnewid,                        "  of 'output options' and 'control parameters' structures
                    z_control-PREVIEW.                              " that have to be set before passing to the form.
      MOVE 'LP01' TO Z_options-tddest.                "
      MOVE space  TO Z_options-tdimmed.                "
      MOVE 'PRINTER' TO Z_control-device.           "
      call function 'SSF_FUNCTION_MODULE_NAME'
        EXPORTING
          formname = 'ZPURCHASEORDER2'
        IMPORTING
          fm_name  = fname.
      CALL FUNCTION FNAME
        EXPORTING
          CONTROL_PARAMETERS = z_control                 " here the structures are passed
          OUTPUT_OPTIONS     = z_options                 " into the form in stmt 'exporting' so that
          USER_SETTINGS      = ''                                 " print options are not popped up b4 disp of smartform.
        TABLES
          IT_EKKO            = TAB_EKKO
          IT_EKPO            = TAB_EKPO
          IT_LFA1            = TAB_LFA1.
    Regars,
    Sumit Nene.

  • Moving from Corel Ventura into InDesign CS4 - prints dark

    My company has been using Corel Ventura for years, up to version 10.   We are now switching in InDesign CS4, but everything is printing dark.  We use it to publish black & white manuals, including some photos  & vector art.
    Ventura had an essentially unmanaged color workflow -  everything was set to generic - i.e. - "Generic RGB" & "Generic  CMYK"
    In Indesign, currently we are using "North American General  Purpose 2".  The files are printed to a postscript file in InDesign.   Then made into a PDF via Distiller.  The settings for the PS file &  Distiller we are using came from LightingSource.com.
    I  was assuming that the problem came up in the creation of the PS file -  under Color Handling - it is set to "Let InDesign Determine Colors".  So  I took the other option & used "Let PS printer determine colors"   The pages print lighter now, but they are actually too light.  I'm not  sure what to try next, given that any direct alteration of the printer  setup is out of the question.
    Any help would be great!!!
    Lighting Source Settings -  http://lightningsource.com/ops/files/premedia/PSsettingsINDcs4_PC_int.pdf

    Not knowing more, this is a possible solution if you have Photoshop:
    1. In Photoshop with no documents open: Edit Color Settings. By CMYK, Custom CMYK. Black Generation "Maximum"
    2. Hit OK, but NOT to the whole Color Settings dialog, just the Custom CMYK dialog. Again in the CMYK pull down, "Save CMYK" Put the profile in your Color Sync folder where InDesign will recognize it. After you save it CANCEL. You don't really want to alter your Photoshop color settings, you just want to create the Max Black Generation profile
    3. In InDesign. Create a top most layer on master page. Create a white box to fill the whole page. Set Blend Mode to "Color" Lock the layer.
    4. Change the transparency blend space to RGB (Under Edit)
    5. Assign the new Max Black CMYK profile to the ID document (Edit: Assign Profile)
    6. Check with Separations Preview, you should have K channel only
    7. Export PDF/X1a. By Output: Destination: "Document CMYK." You must flatten transparency when you output PDF, and X-1a will do this. The PDF result will be black and white, K channel only. Verify in Acrobat.
    This process converts an all color InDesign document to K only CMYK. Dot Gain will be standard 20% but can be changed in step 1 when you create the custom CMYK.
    Any grayscale images placed should not be affected by this workflow.
    This process is the closest thing I know of to grayscale color management in InDesign.

  • Pixma Pro 100 printing dark and muddy

    Hi, 
    I have seen several threads about this and tried to read those over and learn from them first but I'll admit to being so lost.
    I've had the printer since August and previously had a PC with Windows 8. Since December, I've been using a Mac. With both computers, though, I always got dark and muddy prints, especially with blues and greens.  I have installed drivers and looked for any software updates and the Canon website says I'm up to date. But when I go to print something, in the drop down box there are two options for paper - plain and photo. With my PC, there were a dozen or more options (matte paper, glossy paper, art paper, etc.).
    I have installed ICC profiles from Red River Paper, as I did with the PC.
    On a previous thread, I saw to go to Canon My Printer and then to settings. I'm guessing that's software? I don't seem to have that on my computer. I looked online and it came up on various software download sites but not the Canon web site. I am leery about installing from one of those web sites so I didn't.
    After reading another thread, I went in to PhotoShop and selected a different color space (Adobe 1998).
    I apologize for being so lost but apparently I am in need of super-simplified instructions. I cannot seem to figure this out. It's so frustrating and discouraging. I appreciate any help! 
    Thank you!

    First, you must not let the printer set anything.  Turn off every bit off control it has.  You can do this with the Canon My Printer under the Printer Settings tab.  Do you know how?  I will guess, yes, for now but if you don't get back to me.
    Second, you need to have your photo editor (like Photoshop) handle all the settings and color matching.  You know how to do this? I prefer Photoshop.
    And lastly, it is essential you get some settings on your monitor that somewhat matches what the printer is printing.  Your printer may be doing exactly what you are telling it to do and you have no idea it is, because your monitor is so far off.  If you don't do this step, you can forget the other steps.  However, there are only a few things that you need to be concerned with. You don't need any fancy extra add-ins to do this.  No additional software or gadgets, no spiders or monkeys, etc.
    But you must get the gray-scale very close.  You need to get the brightness very close and you need the contrast very close.
    Most folks set there brightness way too high by default. This presents a big problem when judging prints. You need to judge your prints in good light, preferably daylight. Again they may be correct and you don't know it.
    After you do these things you can make adjustments to your prints by just looking at your screen.  Because you know the monitor and printer are on the same level.  One more point, you can NOT get a printer to print every color exactly the way you saw it.  It isn't possible as all colors and adjustments effect all others.  My goal is to get the skin tones right.  That is what people notice most. Remember you are dealing with two different disciplines here.  One is colored light and the other is colored dyes.  They are not the same thing.
    For instance, I know my Pro-100 tends to print darker than what I see on the monitor (typical for most users).  So, I automatically know to set it's prints 1/2 to one stop brighter in Photoshop, in my case.  It also prints with a slightly warn tone.  Most of the time, with portraits especially, this if OK but sometimes it is not.  In that case I adjust the "temp" setting slightly cooler in PS.
    All the Canon photo printers I have ever seen have this warm/magenta cast.  Canon engineers must prefer this look.  It can not be changed.  You need to "fix" it in post. You will also likely see a color tint even in your B&W prints. This is normal.
    Make sure you have the correct ICC profiles and you are using Canon brand ink and paper until you get good with the printer.  Very, very important, otherwise you don't know if the printer is doing exactly what you are telling it to or not. This is a must!
    Important to, use the USB connection until everything is right.  You are just adding another issue when you try to set up the printing and the wireless all at the same time.  Just like using Canon branded products until it is a go.  Use a real printer USB cable.  Not just any old USB cable.
    EOS 1Ds Mk III, EOS 1D Mk IV EF 50mm f1.2 L, EF 24-70mm f2.8 L,
    EF 70-200mm f2.8 L IS II, Sigma 120-300mm f2.8 EX APO
    Photoshop CS6, ACR 9, Lightroom 6

  • Photosmart C5250 All-In-One photos print dark

    My photos appear bright on screen but when printed out, are always darker.  Any answers?

    What operating system?  What color management settings?  Is your monitor calibrated?  What program are you using to print?  What are the print settings?  Are you doing color management in both the application and the printer driver?  (Should do one or the other, not both).
    Regards,
    Bob Headrick, Microsoft MVP Printing/Imaging
    Bob Headrick,  HP Expert
    I am not an employee of HP, I am a volunteer posting here on my own time.
    If your problem is solved please click the "Accept as Solution" button ------------V
    If my answer was helpful please click the "Thumbs Up" to say "Thank You"--V

  • To print bar code in smartforms.

    Hi,
             I want to print bar code in smartforms. how to do that one.
      Thanks ,
      sanjukta

    Hi,
    There's another way of doing it. Here we go... You can generate an ITF file for your data from any third party softwares.
    Once you have the ITF file, this is what you have got to do.
    <b>Uploading label file to SAPscript</b>
    1. Use the standard text editor (Transaction SO10) to upload the print file to SAPscript.
    2. Create a new standard text with any name. In the text editor load the created print file
    (.ITF file) with the function "Text->Upload" and select "ASCII" as a format. Store the ITF
    print file as a standard text.
    3. Include the standard text in your SAPScript.
    4. <b>Set up Device Type </b>Generally, a special device type (a variant of the device type ASCIIPRI) must be used for the correct printout of the layout set on a label printer. SAP supplies these device types on the ftp server sapservX and delivers them in the standard SAP system. The device type ASCIIPRI can normally be used for the basic test of procedure with other label printers.
    5. <b>Define your output Device</b> As the last step, an output device (printer) must be set up in the R/3 with Transaction SPAD. The special device type or ASCIIPRI is assigned to this output device (printer). The application program must now use this output device to print the labels. The label printer connects itself to the R/3 via one of the standard available connection types in SAP R/3 (local print on the application server/removed print via lpd server/removed print via Windows PC and SAPlpd/frontend print). Your thermal printer must be connected to one of the available output channels for print output.
    6. What is the Barcode Symbology you are using? Upload method doesn't support EAN.UCC 128. But still there is workaround.
    Feel free to revert back.
    --Ragu

  • Print Shop Papers in Smartforms

    I've got a task to print Shop Paper in Smartform. The SAP standard form was PM_JOB_TICKET and print driver was RIPRJT01. The transaction to print (in Sapscript format) Shop Paper is IW3D. I'm an ABAPer so I know how to convert form from Sapscript into Smartform. But I don't know how to make transaction IW3D to print my Smartform. I tried to change Output program, Form routine & Form name under transaction OIDF but it seems I cann't link a Smartform name with this transaction. Can you please help urgently?

    Rohit,
    I have just read your response. Thanks for that, can l just get some clarification on a couple of things.
    1. Are you saying that you did get SMARTFORMS working for PM ?
    2. If so, did you do this by getting the SAP Script to call the SMARTFORMS ??
    Thanks in advance
    Julie Tonkin

  • Using Wireless printer 4500 series and prints dark from laptop but light when sent from a phone?

    I am using a wireless  f4580 printer i believe and when I print from my laptop the item print dark but when I send items from my Iphone 4 to the print they print so light you can barely see them and I just replaced the ink so I know it isn't that. What am doing wrong or what do I need to do? thanks in advance.

    Do you see any advanced options for managing print quality,  like "Economode printing" or changing print speed (draft, normal, best etc.) while printing from Iphone4?  If yes,  then choose options to give best print output.
    If there are no options available while printing document, then you might need to see if you have same document or same document properties & contents (font - size, color, etc.) while printing from different computers.
    Please mark the post that solves your problem as Accepted Solution
    Click the 'Kudos Thumbs Up' if this was helpful. Thank You!
    (Although I am an HP employee, I am speaking for myself and not for HP)

  • How to print horizantal lines in smartforms?

    hi friends,
                       how to print horizantal lines in smartforms.
    waiting for ur valuble replies.
    Thanks,
    Kiran

    HI,
    If u use templates or table,then use borders to print the horizontal lines.
    Eg : Create template-->Table painter->click select pattern button->Display framed pattern->select 3rd one.it will display only horizantal lines.
    if want to print horizantal line under the text, then create one paragraph or character formate with Underline in smartstyles.Use that paragraph or character to u r text element

Maybe you are looking for