Script logo printing

I am uploading colored BMP/TIF file using program RSTXLDMC. I am using BCOL as type. But when i go for print preview from SO10, it is coming as black and white. Even in invoice it is not colored.
Please tell me how to get colored image.

hi praveen,
this may be helpful to u.
-> you should have the logo or any graphical element that you want to include inthe form/layoutset in a valid graphic file format like .bmp or.jpg
->this .bmp/.jpg has to first converted into a .tiff file format using any software that would do the conversion like a software called photowork.
-> to include this graphic inthe form,define a new window and incorporate the text element (ie the tiff file) in the new window.
->after converting to the tiff format,access thefile on front end.
->upload the file as text module using the abap/4 report RSTXLDMC.
->execute this program from the abap/4 editor.
->use RSTXLDMC to save the TIFF file on your front end.
->enter the location of the TIFF file name on ur system.
->specify BMON or BCOL as type of raster image.
->the system generates a suggested name for the text : ZHEX-MACRO-*.the asterix denotes file tyep.for eg: ZHEX-MACRO-LOGO.
->use the ID 'ST' and the logon language.
->this completes the process of converting the .tiff file into text element.
->to incorporate the logo specific text elment into form/layout set,enter INCLUDE ZHEX-MACRO-LOGO OBJECT TEXT ID ST in the first line.
regards,
sravanthi.

Similar Messages

  • Folder script to print folder content automator

    Hi,
    I had a folder script that printed any document added to a folder and when printed, then it deleted the document.  That script help me to print from an OS 9 emulator  (SheepShaver) through OS X.
    For I don't know the reason, the folder script does not work anymore.  It could be Yosemite or my new iMac upgrade.  Find out ?  And Apple Script is far away in my mind ... so I am not really sure what is going wrong.
    I would like to have the script to print from any folder it is assigned to, instead of applying to only one folder.  Can you help ?   Here is the actual folder script:
    property myPrinter : "HP_Officejet_8500" -- Le nom exact de l'imprimante est obtenu en faisant «lpstat -p» dans terminal.
    property filesFolderName : "Nous/Documents/SheepShaver/Données/En impression" -- Déterminer le chemin du dossier contenant les fichiers à imprimer.
    property fileStamp : ""
    property theFilePath : ""
    on adding folder items to thisFolder after receiving theseItems
              -- Définir le chemin du dossier contenant les fichiers à imprimer.
              set filesFolderPath to POSIX path of (path to users folder) & filesFolderName & "/"
              -- Pour chaque fichier dans le dossier ...
              repeat with i in theseItems
                       -- ... définir les informations du fichier; ...
                       set {name:fileName, name extension:fileExt} to info for i
                       -- ... définir l'estampe du fichier (date et l'heure), ...
                       --set fileStamp to do shell script "/bin/date +'('%d-%m-%y' '%HH%MM%S')'"
                       -- ... définir le chemin du fichier, ...
                       set theFilePath to quoted form of (filesFolderPath & fileName)
                       -- ... et enfin, l'imprimer sur l'imprimante choisie.
                       do shell script "usr/bin/lpr -P " & myPrinter & space & theFilePath
                       do shell script "/bin/sleep 10"
                       -- ... détruire le fichier imprimé.
                       do shell script "/bin/rm " & theFilePath
                       get theFilePath
              end repeat
    end adding folder items to
    Thanks in advance.
    Robert Lespérance

    You would think this would work, remember universal access - enable access must be on.
    tell application "System Events"
    tell application "Finder" to activate
    tell process "Finder"
    keystroke "a" using command down
    keystroke left using command down & option down
    end tell
    end tell
    The Select All works, but the collapse all doesn't
    CE Quickkey will do it with ease but that $80us a machine
    http://www.cesoft.com/products/qkx.html
    you could try the OS X scripting addition but it shareware and want money too and I don't know if it will work
    http://osaxen.com/files/extrasuites1.1.html
    Must be a free OS X scripting addition (osaxen) that does keystokes
    good luck.

  • Sapscript logo printing reverse

    In a sapscript, I am using a logo. In print preview, its coming fine but when it is printed, it is coming reverse.
    What could be the problem and possible solutions? I have seen some threads here related to that but I would like to know if those solutions solved their problems.
    I appreciate your time and input in advance.
    Thanks a lot.

    hi Krishen,
    Check out these threads
    logo printing reverse
    Sapscript logo is printing topside down
    Regards,
    santosh

  • Script for printing using alternate layout in Word

    I am relatively new to Applescript, but have a basic understanding of commands, etc. I am trying to write a script to print the active document in MSWord in draft quality. I often print large volumes of docs for quick reference but do not need high quality output. I am simply saving ink. How does Applescript access the printing preference settings? The Word script library obviously has no specific commands for the print dialog options, and I don't see any applescript commands to do it either. Since printing is handled by OS X, not by Word, I assume the commands will rest outside of the Word tell block?
    Any help would be super!
    Dual 2.0 G5 PPC   Mac OS X (10.4.8)   1GB DDR GeForce 6800 Ultra Mac Mini 1.4

    It can't be done using only a PDF file - any link to a URL will simply open your web browser, and whatever handler that browser uses when presented with MP3 files will be triggered (download, play, etc.) - nothing in the PDF can override that handler and force a "save" operation.
    Instead you'll need to configure your website to force downloads (using HTTP headers) and link to those URLs instead; which is a subject outside this forum.

  • SCRIPT Problem (Printing)

    Hi All.
    I am having a problem in printing invoice using SCRIPT.
    I am printing &item_amount(.2C) & i.e total amount of an line item.
    While debugging i am getting correct value but while printing it is printing value '0'
    And i am having this problem only for a particular invoice number, for other invoices script is printing correct data.
    Data in database is also correct.
    Thanks in advance.

    Hi,
    remove the c in the brackets.
    i.e. put &item_amount(.2) & .
    Regards,
    Sooness

  • Sap script text printing issue..

    Hi,
    I have a SAP script with a text symbol say &abc& defined in the SAP script main window.
    From the print program I want to pass some text to this text symbol.
    In the print program I have an internal table with lines of text, sometime it can have just one line of
    text CHAR512 length or it can have multiple lines of char512 length text.
    Now how do I pass these lines to the text symbol &abc& ?
    I tried to do the following, but it does not help...
    DATA l_data TYPE STRING.
    loop thru the internal table
    concatenate l_data with text got from internal table
    endloop
    CALL FUNCTION 'TEXT_SYMBOL_SETVALUE'
        EXPORTING
          name   = '&abc&'
          value  = l_data
        EXCEPTIONS
          OTHERS = 0.
    I debugged and saw that l_data has most of the text (not all) but the sap script's printed output
    has only few text.
    what should I do to get all the text displayed on the printed output ?
    thnks

    Hi Vivek,
        Including two work area next to each other should not be a problem because i am doing the same thing. Check whether the length of field of work area one is over lapping the field of other work area.
    Note: Reward points if helpful.
    Cheers,
    Shafiq

  • SAP Script not printing as viewed in preview

    Hi Experts,
    I have a SAP Script which is driven via RFFOUS_C Program.The script is using custom page format which is created via SPAD.
    I have a wierd issue like i can see all my data in preview but when i print all the lines are not printing as viewed in preview.Its printing from top of the page till 70% and the bottom portions are not getting printed.
    How can I solve this?
    Thanks,
    Siva

    Hi Siva
    Please check the page format as well as printer on which are printing settings in SPAD..Do we have any custom space before and after defined...? You can also try by testing it with existing format and different printers to find the issue whether it is at script/page/printer level
    Nabheet

  • Script for downloading files from pdf placed on web, script for printing for exchange-

    Looking for java script command to set on button in pdf. We have mp3 and pdfs on our web site, example of URL: http://www.uzlicek.cz/download/Pohadky/O_holcicce_ktera_si_prala_byt_dospela.mp3
    By clicking on button/link in reader I would like to appear a dialog box with offer to Safe file as…
    Any suggestion? In case of using “link tool” the file starts downloading to cache and this is not the objective. In case of using “sound tool”, the file does not appear for saving.
    For exchange the script for Print the current page:
       var n = this.pageNum;
        var pp = this.getPrintParams();
        //pp.pageSubset = pp.subsets.all;
        //pp.printContent = pp.constants.printContent.doc;
        pp.firstPage = n;
        pp.lastPage = n;
        this.print(pp);
    Cheers Martin

    It can't be done using only a PDF file - any link to a URL will simply open your web browser, and whatever handler that browser uses when presented with MP3 files will be triggered (download, play, etc.) - nothing in the PDF can override that handler and force a "save" operation.
    Instead you'll need to configure your website to force downloads (using HTTP headers) and link to those URLs instead; which is a subject outside this forum.

  • Logo printing issue in Smartform

    Hi,
    I have uploaded company logo and i am using this logo in my Z*PO smart form, during printpreview it is showing correctly (the alignment and resolution), if i print that, the logo alignment is not proper, it is coming down than what i am aligned, the placement is perfect in printpreview.
    Let me know, is there  any other setting that i need to make.
    Thanks,
    Prasad S.

    Hi friend,
    I think there are lot of related post in SDN for this problem. Just search the forum before posting questions.
    One of the similar post i have attached below.
    Link : [Problem with printing logo in smartforms|Problem with printing logo in smartforms;
    I think this will help you. If you still did not get the answer just search in Google by giving the key word "SAP + SDN + Smartforms + Logo printing problem". There are large of solutions to help you.
    Thanks,
    Sri Hari

  • Transport.of SAP script form , printer def and device type is not enaugh

    I transported the SAP script form , printer definition and device types of a thermal printer.
    On original system the printout is ok but on target system not. What should I do?

    Thank you for your fast answer
    As the matther of fact I am technical person. I think Output type belongs to application. However the difference is visible in  se71 ->Utilities->Printing test -> output device ->print preview.
    As I wrote I transpored corresponding. SAP script form , printer def and device type

  • SAP Script: Barcode printing in Local Win. Printer

    Hi All,
    In SAP Script, I have used Barcode format to print a Number.
    When I issue the Print output by selecting the Configured SAP network printer, The barcodes are properly printed.
    but When i select the "Local windows printer" (which has barcode printing facility) option i.e Device type: SAPWIN, the Barcodes are not getting printed.
    I have Specified that Network printer as my Default Windows printer, but still when we give "Local printer" the Barcodes does not print.
    But for the same network printer when i select it from the List of SAP printers, the barcodes are printed.
    Please suggest why barcodes are not getting printed when we give "local windows printer" as the Print device.
    Does the same issue also happens for Smart forms?
    Midhun.

    Please only post your question once.
    SAP Script: Barcode printing in "Local windows printer"
    Regards,
    Nick

  • Logo Print

    Hi all,
    I am having one problem with Logo print .
    In one smartform i have changed one logo
    In preview it is showing perfectly
    But in print out it is showing it is showing
    dots ..,
    regards,
    Mohd.

    Hi,
       If you have uploaded the logo from the desktop means it will come like that if you want to remove the dots before saving the logo first the image as 256 bit format image and then upload.
    Or else if you are using an already existing image then change the resolution of the image in the smartform and then if the problem persists try to take the print out by changing the printer there if it is coming fine means then the problem will be with the printer.
    Hope this will help you.
    Regards,
    Venkat.

  • Script Check printing Problem

    Hi All,
    I checked many posts on this but i couldn't found the solution please any one help me to solve this problem
    Senario: I copied F110_PRENUM_CHCK standard script i did modification i am running this through F-58 for first page its working fine for second page it is printing standard IDES logo page in my script i already deleted next page and and last page still i am getting second page standard ides page.I not copied the standard print program i copied only standard script.
    (i want to print multiple pages the Cheque should display only in last page and remaining pages i want display in cheque place ********* like this or this cheque is not valid like that for this i did in window if &page& =0 then printing window else print ***** please let me know weather this works or not how to archive this .)
    Thanks ,
    Kumar.

    Hi All ,
    My Problem still there any inputs ,
    my Problem is i copied standard form F110_PRENUM_CHCK and deleted second page and last page added logo and removed standard logo , i am executing this from through F-58 and (IN SE38) RFFOUS_C EXCUTING THE REPORT .
    once i executed the form first page printing correct and second page printing standard page i checked in all windows there is no newpage or goto next page or next page in all windows and also in first page page option i changed next page as first page .
    Can any one please help me .
    Thanks,
    Kumar

  • Logo printing

    Guys,
    For printing logo i wrote like this
    i created one window i wrote like this.
    IF &EKPO-WERKS& ='0982' OR &EKPO-WERKS& ='1027'
    INCLUDE ZHCC_LOGO_PO OBJECT TEXT ID ST
    else
    INCLUDE ZUS_BHI_LOGO_PO OBJECT TEXT ID ST
    endif
    but my onsite guy told me he want's like this.
    Please create the new window for the new standard text. If the plant = 0982 or 1027 please print this logo window else plz print this old window.
    pleeeeeeeese help.
    reg,
    vijay

    hi vijay,
    as i understood the question,
    if EKPO-WERKS& ='0982' OR EKPO-WERKS ='1027'.
    NEW-WINDOW <window name>
    else
    NEW-WINDOW <window name>
    endif.
    it should be in PC editor ( in script) not in print program
    hope it will help, if this is not ur requirement or not helpful, ignore this
    bye

  • Inverted Sap Script LOGO

    Hi Gems,
    I have an SAP Script layout where in the LOGO in the output appears to be inverted.
    But for some of us we are seeing the LOGO properly.
    Can any one suggest me where it is going wrong?
    Thanks
    Dan

    Hi,
         Two things:
    1) Upload the logo again using SE78
    2) If you are seeing the Print preview and not Print out take a print out and see the same..
    Raghav

Maybe you are looking for

  • HP Photosmart C5580 and MacBook Pro Snow Leopard wireless printer with router

    I have a macbook pro OSX operating system and a C5580 HP Photosmart printer.  I have spent hours with netgear as I did purchase a new router getting my macbook pro to print wirelessly.  Whatever the fix it is temporary and my private tech has to take

  • Help with CSS image Gallery

    Found this simple css image gallery. However I'm having trouble adjusting it do my needs. I ideally want to make each small image slightly bigger than currently and have 3 or 4 on each line. Also want to make the enlarged image bigger. The width woul

  • Using the 6525 counter to measure frequency: is there a neater way?

    I'm currently using the high speed counter on the a USB 6525 module to measure the frequency of a spinning object via a hall effect sensor. I was wondering if there was a simpler/ more effective way of coding it than this? Currently all I do is take

  • Convert number of dayes per year to data

    Please i need help in Convert number of dayes to date I have ID's like id FT*09025*0000000001 date=20090125 FT*01171*0000000002 date=20100620 so should convert first five number after FT to date example *09025* 09 map to 2009 025 number of dayes per

  • Out of memory error back in lightroom 1.3

    My wife likes to print lots of pictures on one page, like 8 to 16 typically. lately while printing instead of printing pictures, random frames wil be grey and read out of memory. the monitor displays the photo however. looking at the print jobs the p