Logo SapScript

Hi every body, i'm trying to edit a logo in a letter trought sap script, but the logo is displayed when i use PDF and not displayed when i use MS Word? some one have an idea why this behavior?

Hi friend,
Make sure that have you done all these steps
<< Moderator message - Cut and paste response from http://wiki.sdn.sap.com/wiki/pages/viewpage.action?pageId=9111 removed. Plagiarism is not allowed in SCN >>
If everything is fine just check whether the you can change the size of the logo window because it may cause any problem also try to change the position of the logo because the window size fr word and PDF is different.
The alignment is also different between the two so just try changing that and see.
If any issues please revert back to me i will help you.
Thanks,
Sri Hari.
Edited by: Rob Burbank on Jan 4, 2012 11:41 AM

Similar Messages

  • Sapscript/Smartform via mail with PDF attachment: logo is missing

    Hi all
    I'm implementing my function to send Sapscript/smartform via mail.
    I need to do it because when a message needs to be sent, I have to insert the message as attachment but also to add a text in the body mail.
    So I've just created a simple sapscript having a logo (as graphic) and a little text.
    I use the fm CONVERT_OTF to convert the OTF to PDF format and the following code to increase the pdf string from 132 to 255 char:
    LOOP AT t_pdf.
          TRANSLATE t_pdf USING ' ~'.
          CONCATENATE l_buffer t_pdf INTO l_buffer.
        ENDLOOP.
        TRANSLATE l_buffer USING '~ '.
        DO.
          MOVE l_buffer TO l_attachment.
          APPEND l_attachment TO x_attachment.
          SHIFT l_buffer LEFT BY 255 PLACES.
          IF l_buffer IS INITIAL.
            EXIT.
          ENDIF.
        ENDDO.
    All seem to work fine, but as soon as I open the pdf file attached to the mail I can't see the logo
    So after calling fm CONVERT_OTF, I've created a pdf file by method GUI_DOWNLOAD, and then upload this file (by GUI_UPLOAD) into internal table for attachment and send the mail.
    Now really all work very fine, becaus I can see the logo
    Of course I don't want to dowload the file before sending a mail, but I need to send my print directly as pdf attachment
    The two ways seem to be equal, they use the same print and the same functions, only the way to upload the internal table for attachment is different:
    1) tha abap code above to expand the line from 132 to 255
    2) the method GUI_UPLOAD
    So something seems to be wrong in the first way because ithe logo is missing in the pdf attachment generated for the mail
    Max

    Hi
    I'm not working on unicode system, anyway I didn't see that parameter BIN_FILE, so I didn't use it
    I've read the note 1324547 and I've done just as it explaines: now works fine
    I don't know why it doesn't work with old manner (i.e data is treated as character-type), but it worls with the new one (If the data is treated as xstring-type)
    I can only suppose the data are corrupted while being elaborated for expand to 255 char....but I don't why
    Anyway your suggestion works for me
    Thank
    Max

  • Can we add logo to sapscript Form Result while coverting to PDF?

    Hi Expert,
                    My requirement is, I have to covert Form Result to PDF.but while converting  Form result to OTF , Can we Add logo to the OTF data? Can logo be saved in text format? only then we can add logo to OTF data probably.
    Please Help.
      Thanks in Advance

    As you have probably searched the forum, you saw that you can get the sapscript result as OTF.
    Graphics are automatically handled by SAP which stores them in the OTF (RD and BM lines).
    And then you convert OTF to PDF as usually.
    So, where is the question?

  • How to get rid of IDES logo in the SAPScript Layout PSFC_PRINT_LAY ?

    Hello Guys,
    I am trying to print the standard production order.
    The printout has the IDES logo on top left corner for the SAPScript Layoutset PSFC_PRINT_LAY.
    How do I get rid of it?
    Is there a config setting for that?
    How do I insert my own logo?
    Thanks
    George King

    hi
    I tcode se78 where you have to import your logo from outside to SAP system. and then copy this to the  smartform of PSFC_PRINT_LAY
    but for this you have to consult with ABAPER
    Regards
    Pravin

  • How to include a logo in sapscript

    how to put a logo in sapscript and how to attach it with the tp

    Hi,
    U have a pust button Text Elements if u click on it, it takes u to the editor where we write code in script.
    There follow the menu path
    Insert ---> Graphics
    Now u get a Pop-up  Include Graphic . There u have two Tabs. In that select the Tab Stored on Document Server. Select the radio button Black and White or Color depending on ur requirment.
    Give the name of the logo which u what to insert. If u dont know then press F4 then u get the list of logos which are present on the application server.
    Best regards,
    raam

  • SAPscript to PDF in SAP 4.0B - Logo Not appearing correctly

    Hi Gurus,
    I have an issue where I am converting a Sapscript to a PDF using CONVERT_OTF Function Module. The PDF is being generated correctly but the logos are appearing in other places or not appearing at all. The SAP Version is SAP 4.0B (Really old one) so the function modules available to convert from OTF Data to PDF are very limited.
    I searched the web and SDN and found several threads but all of them in version 4.6x on wards.
    Any idea why this is going on and how can I solve it?
    Thanks & Regards,
    Ernesto.

    Hi,
    While calling FM CONVERT_OTFSPOOLJOB_2_PDF, pass import parameter Country Key to SRC_SPOOLID.
    i.e. SRC_SPOOLID-RQTELELAN.
    I feel this should solve the problem.
    Best regards,
    Prashant

  • SAPScript: Print of Logo depending on company code

    Hello everybody!
    I have a simple question, hopefully. I am implementing a dunning form in SAPScript and now I want to print a logo and a footer depending on the company code. I have uploaded the graphics in SE78. So far no problems.
    Within the form I have two new windows.
    The coding is:
    /:     IF &MHND-BUKRS& = u20181001u2019.
    /:     BITMAP 'HEAD_256_1001' OBJECT GRAPHICS ID BMAP TYPE BCOL
    /:     ENDIF.
    /:     IF &MHND-BUKRS& = u20181011u2019.
    /:     BITMAP 'HEAD_256_1011' OBJECT GRAPHICS ID BMAP TYPE BCOL
    /:     ENDIF.
    The problem is that the IF - ENDIF inquiry is not working. I have also tested the CASE and ENDCASE function with the same result. No graphic is printed.
    The next thing I've tested was not to print a graphic but a simple text.
    /:     IF &MHND-BUKRS& = u20181001u2019.
    *     Test 1001
    /:     ENDIF.
    /:     IF &MHND-BUKRS& = u20181011u2019.
    *     Test 1011
    /:     ENDIF.
    And also no text was printed on the form.
    When using the command without IF / ENDIF
        BUKRS: &MHND-BUKRS&
    The print out shows BUKRS: 1011 for example. So the variable &MHND-BUKRS& has a value.
    Has anyone an idea how to solve the problem? I do not want to create one form for each company code.
    Thanks in advance!
    Kind Regards,
    Melanie

    Hi,
    Did you checked in debug what company code are u checking for ?
    Try ths code
    /: IF &MHND-BUKRS& EQ u20181001u2019.
    /: BITMAP 'HEAD_256_1001' OBJECT GRAPHICS ID BMAP TYPE BCOL
    /: ELSEIF &MHND-BUKRS& EQ u20181011u2019.
    /: BITMAP 'HEAD_256_1011' OBJECT GRAPHICS ID BMAP TYPE BCOL
    /: ENDIF.
    Regards,
    Madhukar Shetty

  • SAPScript: how tu adjust heigh and width of standard text (logo)?

    Hi!
    how to adjust heigh and width of standard text (logo)?
    I do not want to edit the logo, because it is used elsewhere, so I need to adjust heigh and width when using it in a form.
    For now stadard text comes over the window. Here is how I use it:
    INCLUDE ZHEX-LOGO OBJECT TEXT ID ST
    Will reward,
    Mindaugas

    Hi Mindaugas,
    While uploading using RSTXLDMC. You have to maintain your size of the logo.
    Go through below mentioned document.
    Upload TIFF files to SAPscript texts
    Description
    The report RSTXLDMC allows a TIFF graphics file to be uploaded from the file system of the R/3 GUI to a standard text in the R/3 word processor SAPscript. (TIFF is a registered trademark of the Aldus Corporation.)
    When uploading, the TIFF graphic is converted either into a black and white raster image (parameter type=BMON ) or as a color raster image with a maximum of 256 colors (parameter type=BCOL).
    The black and white raster images ( BMON) can be printed using the following printer types:
    PCL-5 printer
    PostScript printer
    Kyocera PRESCRIBE printer
    Device type SAPWIN (with SAPlpd 32-bit as of Version 2.41 for Windows NT or Windows 95)
    The color raster images (BCOL) can be printed using the following printer types:
    PCL-5 printer with color capability (e.g. HP Color LaserJet). Color graphics are not printed properly on monochrome PCL-5 printers (e.g. HP LaserJet 5), because the printer cannot set the color palette as required and does not perform any gray-level conversion.
    PostScript printer (color graphics are automatically converted to gray levels on black and white printers using PostScript) Device type SAPWIN (with SAPlpd 32-bit as of Version 2.41 for Windows NT or Windows 95) During TIFF graphic import, the basic set " Baseline TIFF 6.0 " of the TIFF specification 6.0 is supported.
    To maintain compatibility with earlier versions of the report RSTXLDMC, it is also possible to convert the TIFF graphic directly into a black and white raster image for a particular printer type when uploading. These are the three printer types PCL-5 (parameter type=PCL ), PostScript (parameter type=POST) and Kyocera PRESCRIBE (parameter type=PRES ). A raster image uploaded in this manner can only be printed using the appropriate printer type.
    Besides TIFF raster graphics, direct printer commands in the respective printer language (PCL-5, PostScript or Prescribe) can also be contained in the file which is to be uploaded (printer macros). They are then transferred to the standard text unmodified.
    The graphics are output by inserting the standard text into the document which is to be printed, directly or using an INCLUDE command. The printer commands, which for example draw a company logo on the page, are only output if the print request is processed by the printer driver corresponding to the macro type, otherwise they are ignored. Example: A macro of type PCL is contained in a print request. If the request is output to a printer with type HPLJIIID (to which the driver HPL2 is assigned), the macro data is sent to the printer. If the request is printed on a printer of type POSTSCPT (to which the driver POST is assigned), the output of the macro data is suppressed.
    In the standard text, the printer commands are inserted between the HEX ... ENDHEX command lines in hex notation. Various report parameters allow the graphic or printer macro to be placed on the page or at the current text position. Note: When the /:HEX command line which precedes the macro appears in the text, a line break is generally made before the graphic is output. The output of the macro therefore begins in the next text line at the left window border of the current page window, as long as a shift to the right is not specified (see below).
    If your own printer macros are uploaded and not TIFF files, you must ensure yourself that the normal (text) output of the driver is not impaired when the printer commands are inserted in the output from the uploaded file. The printer drivers pass the data contained in the file to the printer unmodified, therefore without control over the individual actions this triggers on the printer. For example, syntax errors should not be generated by the PostScript commands (type POST), or form feeds should not be contained in the file (unless this was intended) for PCL-5 (type PCL).
    Restrictions:
    In general, the output of graphics generated via RSTXLDMC from R/3 is not suitable for mass printing (that is, unless you are using the "Graphic resident on printer" feature): the R/3 spooler has to hold significantly more data in its output files. If the graphics occur several times in a spool request, the data also reoccurs. Apart from this, the network is more heavily loaded in sending the increased volume of data to the printer and the printer output is slowed significantly (varies according to printer model) if raster graphics are output as well as the text.
    If your graphics reside on your printer during a printing job, the degree of 'correctness' with which they are printed depends on the amount of memory available in your printer. R/3 print drivers are unable to determine whether the amount of memory available is enough! If one of the graphics that you have marked as resident is not displayed, try reloading the graphic and switching off the parameter "Graphic resident on printer".
    When printing black and white graphics on PCL-5 printers, image data is compressed in order to greatly reduce the file size.
    The output of graphics and macros on PCL-5 printers, PostScript printers and device type SAPWIN (type BMON, BCOL, PCL, POST) is adapted to the page orientation used, that is if landscape is used instead of portrait, the graphic is also turned when output. This is not the case for the PRESCRIBE printers (type BMON, PRES)! With these printers, the graphic is not automatically turned when landscape is used, but appears on the page in the identical position as for portrait. You are therefore recommended not to output raster images when printing in landscape on PRESCRIBE printers.
    PRESCRIBE printers do not support the resolutions 200 and 600 dots per inch when printing raster images.
    Not all PCL-5 compatible printers support the resolutions 200 and 600 dots per inch when printing raster images.
    TIFF graphics with compression type 2 ("CCITT Group 3 1-Dimensional Modified Huffman run length encoding ") can currently not be imported although this is a component of the Baseline TIFF 6.0 specification for monochrome images.
    Color TIFF graphics with full color representation (ie. a lot more than 256 colors) are automatically converted into 256 gray levels when uploading with type BCOL.
    When TIFF graphics are converted to black and white raster images (type BMON, PCL, POST, PRES) there is no default simulation of gray levels or colors of the original image on the printer (for example, by using different tones of gray). Each pixel of the original image is converted to a white or black pixel on the printer according to its intensity value.
    The parameter "Number of TIFF gray levels" does, however, allow a simulation of gray/colour tones of the original image through levels of gray on the printer, when using type PCL, POST or PRES. This parameter is ignored for type BMON.
    The conversion of TIFF graphics can be so time-consuming that it is recommendable to execute the report RSTXLDMC in batch processing. Note: in batch, the file is always read from the file system of the application server (ie. not from the file system of the GUI).
    The length of an individual text in the text file is limited. When importing TIFF graphics with very large dimensions, especially if more than 2 gray levels are used, a termination can therefore occur when saving the standard text ("EXPORT_TOO_MUCH_DATA"). This restriction can only be avoided by reducing the TIFF graphics. Note: The display of a raster image in Postscript or PRESCRIBE format needs from two to three times as much space as displaying in PCL-5.
    When processing very large TIFF images on PostScript printers, a print termination can occur with PS error message "limitcheck". In this case the internal memory of the printer is insufficient to scale the required raster image. This implementation limit cannot be influenced by changing the report parameters when importing.
    Requirement
    The file which is to be uploaded can contain the following formats/ commands:
    Baseline TIFF 6.0 raster image files. The image information of the TIFF file is converted into black and white/color raster images when uploading. Note: As the TIFF format allows a variety of variants, only a basic set of TIFF 6.0 formats is supported here described in the TIFF 6.0 specification as Baseline TIFF 6.0.
    PCL : PCL-5, Hewlett Packard Printer Control Language 5 for HP LaserJet 3, 4, 5 series and compatible printers. The data is output by the printer driver HPL2 only.
    PRES: Kyocera PRESCRIBE for Kyocera laser printers. The data is output by the printer driver PRES only.
    POST: Adobe PostScript or EPS format (encapsulated PostScript ) for PostScript printers. The data is output by the printer driver POST only. In the upload, one of the end-of-file markers (CTRL-D, hex $04) which may be contained in the PostScript file is not transferred.
    For PostScript files which contain a bounding box entry (for example, all EPS files) the macro/graphic can be scaled to a size specified by the user. In this case, a small lead text and trailer are generated by the report for the macro data and inserted in the standard text.
    Parameters of RSTXLDMC
    File name
    Path and file name of the file to be uploaded in the file system of the R/3 frontend (dialog processing) or in the file system of the application server (batch processing)
    Type
    Way which the data contained in the file is to be converted. Possible values are BMON, BCOL, PCL, POST and PRES. With parameter values BMON and BCOL, a TIFF 6.0 file is expected. This is converted into either a black and white raster image (BMON) or a color raster image (BCOL). These raster images are printer-independent and can be printed using various printer types (see above).
    With parameter values PCL, POST and PRES, either a TIFF 6.0 file or a file with printer commands in the appropriate printer langauge is expected. If the file is a TIFF file, it is converted into a black and white raster image for the printer type specified in the parameter. The presence of a TIFF file is recognized automatically. If the file is not a TIFF file, the file contents are regarded as the printer macro of the respective type. Data loaded with type PCL, POST or PRES can only be printed on the respective printer type.
    Resolution for TIFF raster images
    Resolution which should be used when importing a TIFF raster image, in dots per inch (dpi). If an allowed value is entered here, this overrides the resolution information in the TIFF file. The allowed values are:
    75 dpi
    100 dpi
    150 dpi
    200 dpi (not for type PRES, for PCL only HP LaserJet 4,5 series)
    300 dpi
    600 dpi (not for type PRES, for PCL only HP LaserJet 4,5 series)
    Changing the resolution affects the size of the graphic on the printer. If a resolution of 300 dpi is stated in the TIFF file and this parameter is set to 75 dpi, the graphic is four times as big when printed as at the outset.
    Note: Kyocera PRESCRIBE printers do not support 200 and 600 dpi resolutions.
    Note: Not all PCL-5 printers support resolutions 200 and 600 dpi, for example HP LaserJet 3 series does not, but LaserJet 4 and 5 series do.
    Graphic Resident on Printer
    Normally, graphics that occur more than once in a printing job (a company logo that appears on each page, for example) are sent to the printer repeatedly each time they are needed. In order to avoid this kind of redundancy, you can select this checkbox on the selection screen. The R/3 print driver then stores the graphic in the printer's memory and the printer retrieves the 'resident' graphic memory every time that re-occurs in your job.
    Caution: Whether or not the printer correctly reproduces the graphic depends on the amount of memory available in the printer during the printing job! You should avoid using this feature with color graphics since they take up a lot more memory than monochrome graphics.
    This parameter can only be used with types "BMON" and "BCOL".
    Absolute positioning
    Determines whether the macro/graphic is positioned absolutely or is to be output at the current text position. If this checkbox is selected, the graphic is positioned absolutely (parameters "X-position" and "Y-position" are used), if this checkbox is not selected, the graphic is positioned at the current text position (parameters "Reserved height" and "Shift to right" are used)
    Absolute X-position
    Horizontal position (space from left border) of the macro/graphic, if absolute positioning is required. This is the parameter XPOS of the HEX command.
    Absolute Y-position
    Vertical position (space from upper border) of the macro/graphic, if absolute positioning is required. This is the parameter YPOS of the HEX command.
    Reserve height automatically
    If this checkbox is selected, the system automatically inserts the actual height of the graphic during printing into the subsequent "Reserved height" parameter.
    Reserved height
    If positioned at the current text position, this parameter specifies the horizontal spacing to be reserved for the macro/graphic, which must not be printed with text from the paragraph. This is the parameter HEIGHT of the HEX command.
    Shift to right
    If positioned at the current text position, this parameter specifies the space between the left border of the macro/graphic and the left border of the page window. If this value is increased, the macro/graphic is shifted to the right. This is the parameter LEFT of the HEX command.
    Unit of measurement for positioning
    The unit of measurement in which the position values (X,Y, height, shift) are specified. Possible values are CM (centimeters), MM (millimeters), IN (inches), PT (typographic point = 1/72 inch), TW (1/20 point = 1/1440 inch)
    Text title
    Comment used for the attribute "Title" of the standard text generated as well as as a comment line in the text itself
    Line width
    Number of columns to be used in the standard text when generating the HEX...ENDHEX command lines. The default value is 132
    Text name
    Name of the standard text to be generated. If an * character occurs in the name, it is replaced by the value of the parameter "Printer type". For example, if the entry is ZHEX-IMAGE1-* and the printer type = PCL, the text name ZHEX-IMAGE1-PCL is generated. The default value for the name is ZHEX-MACRO-<printer type>, but the standard text can be named as required (take into account customer reserve). Standard texts are client-dependent!
    Note: The name of a standard text can be up to 32 characters long !
    Text ID
    ID of the standard text to be generated. The default value is ST (general standard texts)
    Text language
    Language key of the standard text to be generated. The default value is the logon language
    PostScript scaling
    Flag which determines how the macros/graphics of type POST are handled. If set to 'X', the report expects a PostScript comment line in the file
    %%BoundingBox llx lly urx ury (e.g. %%BoundingBox -1.5 0 21.4 14.1)
    as present, for example, in all EPS files, in which the dimensions and the position of the macro/graphic are specified (if a bounding box comment is not included, 0 0 1 1 is assumed as the default value). This information is then used by the report to insert PostScript commands which scale the macro/graphic to the size specified in the parameters "Width" and "Height" (listed below).
    If the flag is set to ' ' (blank), the PostScript file is transferred to the standard text without any additions (any transformations to the coordinate system used by the printer driver must already be contained in the file).
    The flag must be set to 'X' for the import of TIFF files for type POST.
    Width according to PS scaling
    Required width of the macro/graphic if the flag PostScript scaling is set. Can remain at zero for the import of TIFF files, the size is then determined by the resolution of the graphic.
    Height according to PS scaling
    Required height of the macro/graphic if the flag PostScript scaling is set. Can remain at zero for the import of TIFF files, the size is then determined by the resolution of the graphic.
    If you want to scale the PostScript graphic with these parameters, one of the two values, width or height, can be specified with zero. The graphic is then scaled so that the width-to-height ratio remains unchanged and the original graphic is not distorted.
    Unit of measurement for PS scaling
    Unit of measurement in which the parameters "Width" and "Height" are specified. Possible values are CM (centimeters), MM (millimeters), IN (inches), PT (typographic point = 1/72 inch), TW (1/20 point = 1/1440 inch)
    Number of TIFF gray levels
    Number of gray tones which are to be used on the printer for displaying the original image. Note: This parameter is only evaluated when using types PCL, POST or PRES!
    Possible values are 2,4,9. With the default value 2, each pixel of the original image is converted either to a white or a black pixel on the printer. With the value 4, each pixel of the original image is converted on the printer with 4 pixels, which simulate 4 different gray levels. With the value 9, each pixel of the original image is converted on the printer with 9 pixels which simulate 9 different gray levels.
    Note: With values 4 or 9 the resolution of the image is doubled or tripled. The restrictions on the possible resolutions (see previous parameter) then apply for the resulting resolution.
    Output
    Individual steps of the upload procedure are logged in the report list generated and, if necessary, errors reported. The uploading of TIFF graphics, in particular, is cancelled if there is a variant which is not supported. A message to this effect is then issued. If execution is successful, the report generates a standard text with the key specified in the parameters. If the standard text already exists, a window appears with a warning before the text is overwritten.
    Regards,
    Ameer Baba.

  • Logos not printing in SAPScript in background

    Hi all,
    Company logo is part of check printing, which is developed using SAPSCript.
    The printed checks have the logo, if the job is run from foreground.
    But, when check printing is scheduled, it is not getting printed.  Ideally, check printing will be a scheduled process only.
    Also, this issue happens with certain users only.  Can anybody help me in identifying the auth object that relates to logos?
    Request the experts to provide input on these.
    Regards,
    Sridevi
    Edited by: Sridevi on Jul 2, 2008 10:39 AM

    Hi,
    I ran ST01 and found S_BDS_DS object missing.
    Regards,
    Sridevi

  • How to add Logo in SAPSCRIPT

    Hi frnds,
    How I will upload Logo in SAPSCRIPT?
    I have created Header window, Now I want to add Logo in Header Window.
    Regards.

    Hi,
    These are the steps to be followed for uploading graphics in R/3 system
    1. First save the file as BMP
    2. Open the BMP file in IMaging (Goto -> Programs -> Accessories -> Imaging) and
    make it Zoom as 100% and save as *.TIFF
    3. Open SE38 and execute program RSTXLDMC
    4. Give your TIFF file path name
    5. Select Bcol (for Color)
    6. TEXT ID will be ZHEX-MACRO-*.
    7. Inplace of * write your own logo name (ZCOMPANYLOGO)
    8. Execute the program
    9. Now Goto SE71 create your ZFORM
    10. Create logo window
    11. Goto text element of logo window
    or
    In 4.6x :-
    1. Goto SE71 Change the mode to GRAPHICAL
    2. Choose the Graph Tabstrips
    3. Now type in some name for the LOGO WINDOW
    4. Press the IMPORT BUTTON and then IMPORT the BMP file from your DESKTOP
    5. The code will be written automatically. You just need to drag and drop wherever you want
    the graphics to be.
    regards,
    Munibabu.K

  • 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

  • SAPscript logo and HR forms

    hie guys
    i have succesfully uploaded a clients logo thru SE78 as a bit map image however wen i print the form the logo appears to have tiny dots around it. is it because i uploaded the image as a colour image and im printing on a B&W printer?
    Secondly the page footers for most of the forms are not showing the clients directors and i have been tasked to find out where i can maintain them, i would like to know where!
    lastly could anyone give me some materials to help me out for the HR forms and SAPscripts in general as well??
    Many thanx in advance
    Prince

    Hi
    Check the printer also for the wrong printing of LOGO because certain printers will not print the logo correctly.
    HR FORMS
    http://help.sap.com/saphelp_erp2004/helpdata/en/3d/a458c7a4ab2a4382c5b6bfe988edcd/frameset.htm
    Go through these pdf docs....
    http://help.sap.com/printdocu/core/Print46c/en/data/pdf/PAXX/PYINT_FORMS.pdf
    http://help.sap.com/printdocu/core/Print46c/en/data/pdf/PYXXFORM/PYINT_FORMBUILDER.pdf
    SAPScripts
    Link for SAP Scripts (step by step procedure)
    http://smoschid.tripod.com/How_to_do_things_in_SAP/How_To_Create_A_SAPSCRIPT_Form/How_to_Create_SAPSCRIPT.html
    http://esnips.com/doc/1ff9f8e8-0a4c-42a7-8819-6e3ff9e7ab44/sapscripts.pdf
    http://esnips.com/doc/1e487f0c-8009-4ae1-9f9c-c07bd953dbfa/script-command.pdf
    http://esnips.com/doc/64d4eccb-e09b-48e1-9be9-e2818d73f074/faqss.pdf
    http://esnips.com/doc/cb7e39b4-3161-437f-bfc6-21e6a50e1b39/sscript.pdf
    http://esnips.com/doc/fced4d36-ba52-4df9-ab35-b3d194830bbf/symbols-in-scripts.pdf
    http://esnips.com/doc/b57e8989-ccf0-40d0-8992-8183be831030/sapscript-how-to-calculate-totals-and-subtotals.htm
    SAP SCRIPT FIELDS
    http://help.sap.com/saphelp_erp2005vp/helpdata/en/d1/8033ea454211d189710000e8322d00/content.htm
    scripts easy material
    http://www.allsaplinks.com/sap_script_made_easy.html
    <b>Reward points for useful Answers</b>
    Regards
    Anji

  • Sapscript logo inverted

    Hi. We were having problem with the printing of logo in sapscript. WHen we use LOCL the company logo is inverted. We had this problem when we replaced the printer we r using as LOCL. Please advise what to do. What are the possible solutions to this problem?

    <i>
    <b>Symptom</b>
    Graphics are printed upside down from the SAP System when printed on HP Deskjets via generic device type SAPWIN.
    <b>Other terms</b>
    SAPlpd SAPWIN
    <b>
    Reason and Prerequisites</b>
    error in the Windows printer drivers of HP
    <b>
    Solution</b>
    This HP printing issue is fixed in BJ 1100 driver version Armstrong R233-L, in BJ990, in BJ 2550, and in BJ4050.
    We certainly require answers to the below questions and a contact person with mail and phone address.
    HP standard print drivers are located at HP Website :
    http://www.hp.com/country/us/en/support.html?pageDisplay=drivers
    alternative :
    Point&Print drivers (aka wizard drivers) for several printer models can be found here:
    http://www.hp.com/cgi-bin/pond/pnp/
    Please be so kind and give us some feedback about the results.
    If the printer drivers didn't fix your problem, please be so kind and send us the following information:
    1. printer model
    2. a detailed description of the issue
    3. steps to reproduce (ie. Which transaction are they printing from?
    Can it be reproduced from SE78 with the logo only - if logo  related, etc.)
    4. which device type is used. In case of SAPwin, see below
    5. a copy of the intermediate saplpd output files
    To capture the SAPlpd files, please run SAPlpd from the command prompt BEFORE you start the print job. This is how to do it: at the command prompt, type "saplpd.exe -k" (without the quotation marks). When you print, two files will be created. You can find them in the directory where SAPlpd runs. On my PC, this is C:\Program Files\SAP\FrontEnd\SAPgui\SAPlpd The two files will have the same name except for the ".slp" extension of one of them.
    6. a hardcopy example of the print out
    7. if the issue is logo related, a copy of the logo for testing
    8. a copy of the printer's configuration and menu pages
    The printer's configuration and menu pages, We need the test pages from the printer which will tell us which firmware it has, which settings are used on the printer etc., not the screenshots from the SAP device setup.
    If you use SAPwin:
    9. which Windows version is used and which SP
    10. which driver - pcl5/pcl6/PostScript, and which version?
    The version number can be found here: Open the printers folder, open the printer properties, click the "About" tab (all the way to the right). At the top of the next screen you will see something like 60.xxxx.xxxx.xxxx. This is the driver version number. If you want to add more information, a driver test page will show the version numbers of the different files used.
    11. a copy of the intermediate saplpd output
    To capture the SAPlpd files, please run SAPlpd from the command prompt BEFORE you start the print job. This is how to do it: at the command prompt, type "saplpd.exe -k" (without the quotation marks). When you print, two files will be created. You can find them in the directory where SAPlpd runs. On my PC, this is C:\Program Files\SAP\FrontEnd\SAPgui\SAPlpd The two files will have the same name except for the ".slp" extension of one of them.
    12. a print-to-file from the Windows system
    13. Print out of a testpage (will contain some information about the file versions installed as well as whether it is PCL or PostSript
    </i>
    Regards,
    Rich Heilman

  • Urgent! Graphic-logo in Sapscript form!!!

    How to insert Graphic in SapScript form???
    i tried many ways. it doesnt work!!!

    Hi
    These are the steps to be followed for uploading graphics in R/3 system
    1. First save the file as BMP
    2. Open the BMP file in IMaging (Goto -> Programs -> Accessories -> Imaging) and
    make it Zoom as 100% and save as *.TIFF
    3. Open SE38 and execute program RSTXLDMC
    4. Give your TIFF file path name
    5. Select Bcol (for Color)
    6. TEXT ID will be ZHEX-MACRO-*.
    7. Inplace of * write your own logo name (ZCOMPANYLOGO)
    8. Execute the program
    9. Now Goto SE71 create your ZFORM
    10. Create logo window
    11. Goto text element of logo window
    or
    In 4.6x :-
    1. Goto SE71 Change the mode to GRAPHICAL
    2. Choose the Graph Tabstrips
    3. Now type in some name for the LOGO WINDOW
    4. Press the IMPORT BUTTON and then IMPORT the BMP file from your DESKTOP
    5. The code will be written automatically. You just need to drag and drop wherever you want
    the graphics to be.
    Please note that in 4.6c onwards, you can also used Windows Bitmap file ( .BMP).
    Refer this thread:
    How to change SAP SCRIPT logos at runtime

  • Logo in standard SAPScript

    Hi all,
    I am working on standard SAPScript, In that I am facing the problem with logo , I have to include my companys logo.
    Thus I had change standard   ADRS_HEADER using so10 Tcode. The logo is coming but in left side of the header window as it requires on write side although the IDES  logo is on write side.
    Thanks and Regards
    R Satalkar

    Hi R Satalkar,
    Do you use the BITMAP command to place your logo graphic? You can use the XPOS and YPOS paramaeters to place yuor logo differently. please see the SAP Note:
    307414 - Documentation on SAPscript command BITMAP
    Regards,
    Aidan

Maybe you are looking for

  • Looking for a specific country

    Hey guys, I was just wondering if Ovi maps for Armenia is available. I updated to 3.06, but I could have sworn to have seen it available for download before updating. When I check in Ovi suite now, it is not available. Solved! Go to Solution.

  • Nokia Lumia 521 Amber Update

    Downloaded update but now stuck on "preparing to install" 100% complete.

  • Help: Multi-language Support in Jdeveloper 9i Log Window

    I have basically solved the multi-language display problem in code editor, compiling and run. If I send the output out of JDeveloper, it's displayed well. However, if I run or debug in JDeveloper and want to see the result in JDeveloper log window, t

  • Solaris 10 installation issue

    Hi, I have tried to install solari 10 many time but it fails. it goes throught the installation process and copies over the files then when i reboot and load solaris 10 from the menu it get to the stage where it asks if it want to override the nfs do

  • RE-LINKING HELP

    Hi, Basically i created a file in Illustrator which contained 60 layers, then imported them into AE under 'composition - retain layer sizes' so i could use each individual layer, now ive moved the original Illustrator file and now each layer is marke