Logo disapearing after printing in alv report

Hi Techis
I uploaded a logo in alv grid display and its showing fine but when i print the report it is disapearing from Printed document.
pls help it out.
Regards
Santosh L.

Hi Santhosh,
  Now am strucked with the same problem regarding the logo during printing. While printing the report the alv is not coming in printout. I also done the logo uploading through OAER. But it is not coming in printout. Please give me the solution how you got the logo while printing.
Thanks
Ravi

Similar Messages

  • Logo is not printing in ALV report

    Hi all,
             I have to print logo in the O/P list of an ALV report. for this i have written the code like......
    FORM TOP-OF-PAGE.
      wa_listheader-typ  = 'H'.
      wa_listheader-info = 'This is an ALV report'.
      append wa_listheader to it_listheader.
        CALL FUNCTION 'REUSE_ALV_COMMENTARY_WRITE'
          EXPORTING
            it_list_commentary       = it_listheader
           I_LOGO                   =  'ENJOY'.
    endform.
    and i have passed this TOP-OF-PAGE to I_CALLBACK_TOP_OF_PAGE .Here my problem is the logo and list heading also not getting printed in the o/p, but list is coming...pls help me out...
    Thanks & Regards.
    Laxman.P
    B'lore.
        ENDFORM.

    Hi,
    call function 'REUSE_ALV_GRID_DISPLAY'
    exporting
    i_callback_program = i_repid
    i_callback_user_command = 'USER_COMMAND_PERNR'
    it_fieldcat = header
    is_layout = gt_layout
    i_callback_top_of_page = 'TOP-OF-PAGE1'
    i_grid_title = xyz
    it_sort = gt_sort[]
    i_default = 'X'
    i_save = 'U'
    is_variant = gt_variant
    it_events = gt_events
    tables
    t_outtab = t_output.
    clear t_output.
    Form TOP-OF-PAGE1
    form top-of-page1.
    data: header type slis_t_listheader,
    wa type slis_listheader. "infield like wa-info, nline type n.
    TITLE AREA
    wa-typ = 'S'.
    wa-info = text-h04.
    append wa to header.
    wa-typ = 'S'.
    write sy-datum to wa-info mm/dd/yyyy.
    concatenate text-h03 wa-info into wa-info separated by space.
    append wa to header.
    wa-typ = 'S'.
    concatenate text-h02 sy-uname into wa-info separated by space.
    append wa to header.
    wa-typ = 'S'.
    concatenate text-h01 sy-repid into wa-info separated by space.
    append wa to header.
    ********" LOGO
    call function 'REUSE_ALV_COMMENTARY_WRITE'
    exporting
    it_list_commentary = header
    i_logo = 'ENJOYSAP_LOGO'.
    *********" LOGO
    endform.
    refer this report
    <b>
    BALVST03_GRID</b>
    <b>Reward points</b>
    Regards

  • How to save data in ztable after editing in alv report

    how to save data in ztable after editing in alv report?

    Hi,
        Please find the attachment below.This may be usefull to you.
         [http://wiki.sdn.sap.com/wiki/display/Snippets/ALV-Editingandsavingtheeditedvaluesin+Database%28OOPS%29]
    Regards,
    Ramakrishna Yella.

  • When 'PRINT' in ALV report using FM

    Hi
    I am getting an error when trying to execute and print option in the selection screen. my client system version is 4.6C
    in the dump  the error at :
    I am using FM at my report.
    set_auto_redraw(cl_gui_alf_grid_base)
    can you provide code for when 'PRINT' rs_selfild (dynamic form) for resue*grid_display
    Thanks

    Hi Dana,
    This thread answers ur question..
    alv REPORT PRINTING
    cheers,
    Prashanth
    P.S Please mark helpful answers

  • Unable to print Complete ALV report

    Hi All,
    I have made an Object Oriented ALV report .
    When I try to print the ALV output I get a warning message "Unable to print last 25 records ."
    Any suggestions to remove that message !
    Regards,
    Mukul Sharma.

    This could be an Formscentral issue, the expected behavior is when you click "generate summary report" button, if the form has no responses, it will show "your form has no responses." UI with Test Form button. if the form has at least one response, the report should be generated for you.
    One of such templates is "Training Feedback", "generate summary report" button is on Summary Report tab since this template only have plain text field and an data field.
    Would you mind share your form with me([email protected]) if you don't see upon "expected" behavior.
    Thanks,
    Pengpeng Sun

  • Print an ALV report in A3/A4

    How to print the output of an ALV report in A3 and A4 size. The number of columns in the report are 49. Also the headings of the columns is too long, is there any way to word wrap these headings in to multiple lines?

    You can customize printer with this formats but you can't establish more than one header in ALV

  • Print of ALV report

    Hi ..
    Is there anybody knows alv report can be printed on microline printer (continuous form) . I tried but all column lines are displayed as # .

    Hi,
    Howabout other type of reports?. Are they printing correctly in this printer?.
    If not, I guess the problem is with driver. Check with your basis people to create a new SAP custom printer for micorline printer. It would resolve your problem. 
    Thanks
    Viswa

  • Printing an ALV Report: Header to be printed on first page only

    Hi All,
    I was just wondering if there's a way such that the header of an ALV report appears on the first page only when the report is printed out?
    Thanks for your replies.
    Edited by: Chris Estanislao on Sep 21, 2010 4:22 AM

    Hi Chris,
    Which ALV technique will you use to print out?? (LIST, GRID or something else...).
    Please give us more information.
    Thanks,

  • To print the ALV report on a printer

    Hi all,
    I want to print the report that is displayed on the screen. I have given my pf-status so, normal print functionality is not working. So I have tried adding in a function module GET_PRINT_PARAMETERS. This is printing but the font is very small. Is there a way, where I can print the data normally.
    Thank you, Regards

    Hi Om Prakasah,
    If I understanding correctly, you created a ReportViewer report, but you can’t see print icon when you run the report in browser. If so, please follow these steps:
    If you can’t see the print icon either when running the report in visual studio, you may have set ShowPrintButton to False in Properties window, then please set it to True.
    If there is print icon in visual studio but not in browser, please update the .NET Framework on your web server to the latest version, because the print icon is by default hidden in some version of browser. For more information, you can refer to the relevant
    link below:
    http://blogs.msdn.com/b/selvar/archive/2013/12/20/reportviewer-2012-control-not-showing-print-icon-when-viewed-from-ie-11-desktop-mode.aspx
    If the problem is not resolved, i would appreciate it if you could give us detailed description of your problem, it’s better to provide the version of ReportViewer and browser, it will help us move more quickly toward a solution.
    Thanks,
    Wendy Fu

  • Print in ALV report

    Hi All,
    I have a lengthy list in ALV output with 15 columns. How can I print it properly?
    What are the settings to be maintained
    Thanks
    Ricky

    Hi ricky,
    you don't have many chances to 'compress' the ouput. And if you have too much information in the print list, nobody will look at it.
    Try to reduce the number of columns according to business requirement. Save this as standard layout.
    Or ask your company to order a to buy an oversized format printer and have the proper formats defined.
    Or Convert print output to PDF where you can scale it.
    Regards,
    Clemens

  • Not able to print the ALV Report from NWBC

    Hi,
    I have created one report in ECC and that is attached to NWBC portal via. Tcode.
    When I am taking printout of report using SAP GUI then its printing but while printing it from NWBC its giving Error.
    Please find the attached screen shot.
    Please suggest.
    Thanks in Advance.

    Hi,
    Check out the following code
    CALL FUNCTION 'REUSE_ALV_GRID_DISPLAY'
    EXPORTING
       IT_FIELDCAT                       = v_fdcat "v_fdcat type SLIS_T_FIELDCAT_ALV,
      TABLES
        T_OUTTAB                          = itab
    EXCEPTIONS
      PROGRAM_ERROR                     = 1
      OTHERS                            = 2
    IF SY-SUBRC <> 0.
    MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
            WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
    ENDIF.
    You have to pass the it_fieldcat and the output is obtained as a table.
    Hope this helps.
    Regards,
    Deepthi.
    Edited by: Deepthi S on Jan 28, 2009 2:02 PM

  • Problem in ALV report printing

    Hi,
    I am facing issue while printing the ALV report. The no. of columns in output are dynamic.
    System is giving the printout for 9 columns . If no. of columns are increasing than its printing only one line with garbage values.
    Can anybody help to fix this issue. We need print of 27 (3 static + 24 dynamic (for 12 months)) columns in one go.
    Thanks in advance,
    Vijeta
    Moderator message - Moved to the correct forum
    Edited by: Rob Burbank on Jun 9, 2009 9:30 AM

    Hi
    The font size depends on the format you've choosen for the print.
    The abap list arranges the page as grid: colunmXrow.
    Every colunm of a page means a character.
    If you use the standard format X_65_200, it means you're page is arranged for 65 row and 200 colunm:
    that means the size of a character is optimized to can print 200 chararcter in a A4 page.
    If you use the standard format X_65_132 it means you're page is arranged for 65 row and132 colunm:
    that means the size of a character is optimized to can print 132 chararcter in a A4 page.
    So that mean the size of format X_65_132 will be bigger than X_65_200, because in the same space (page A4) it needs to write 132 char instead of 200.
    If your report print NN char, u should use the format wiith number colunm is closer to NN.
    If there isn't a format or u use the first available format or u create a new one by trx SPAD.
    Max

  • ALV Report Output Print issue with more Columns

    Hi Experts ,
                             I'm facing an issue while printing an ALV report which has around 22 columns .If i reduce the column display in the code . I'm able to print but not with 22 columns.. I have used Line-size = 1023 and line-count = 60 , but still the problem persists .
    I also searched in SDN with similar issue but managed to get only the above solution which is not working .
    Any other ways of doing it , kindly suggest .
    Many Thanks,
    Kumaran

    175 characters is the maximum number of characters that can be generated in a line of a spool (next characters are stored on the next line of the spool). When the spool is printed, these line feeds are respected.
    What is possible (I don't know) is that ALV chooses its own format type instead of the format type you have chosen when you run your program in background. To check that, just look at spool attributes (SP01).

  • How to Print Selection-Screen along with ALV Report output

    Hi,
    I have a requirement wherein i need to also print the Selection Screen of a report when I print the ALV report output.
    Basically i need to print the ALV output along with selection screen.
    Could you plz suggest me the way.
    Regards,
    Nitin

    Hi,
    My selection Screen is a very big one. It contains around 30 select-options.
    So is their any standard method in which you can choose whether you want to take the output printout with or without Selection screen.
    Regards,
    Nitin

  • Printing ALV report by suppressing print dialog box

    Hi,
      I want to print a alv report by passing value in IS_PRINT export parameter which is working prefectly. But I want to suppress the dialog box which is appearing while printing and printing should go to spool directly is it possible.

    Hi,
    You could try something like:
      CALL FUNCTION 'GET_PRINT_PARAMETERS'
        EXPORTING
          no_dialog      = 'X'
        IMPORTING
          out_parameters = ls_params
          valid          = lv_valid
        EXCEPTIONS
          OTHERS         = 1.
      NEW-PAGE PRINT ON PARAMETERS ls_params NO DIALOG.
    * Display Table
      lr_table->display( ).
    hope it helps,
    Kr,
    m.

Maybe you are looking for

  • Having a problem with image IO and drawing image

    My question did not come out on the other posting. I am getting them image from a JPanel. I then convert the image into a renderedimage. Use the ImageIO.write method to convert to png format. I don't want to save the image on the local disk so it is

  • I CAN'T upgrade uninstall or install iTunes...Help?

    Every time I try to upgrade iTunes to 9.2 or I try to uninstall iTunes or download it and install it again it shows a error message saying that itunes.msi is missing so i can't do it and neither I can run iTunes because it shows an error i got my iPh

  • Problem using aspects with appclient

    I am trying to create a jms client server and want to include aspects in my program. I can successfully run using appclient provided no pointcuts from my aspect get called. If it does get called ClassDefNotFound error and NoAspectBoundException are t

  • Select and where clause

    Hi I want to write a select statement and in where condition 1.I want to retrieve the fields which contains a string 'ABAP' 2.I want to retreive the fields which is equal to space. eg; SELECT FLD1 FLD2 FLD3 FROM TABLE1 WHERE    WHERE    fld1 contains

  • Very Large Business Application (VLBA)

    CVLBA Research Center The Center for Very Large Business Applications (CVLBA) is a joint research initiative of the Otto-von-Guericke University Magdeburg and the Technische Universität München which was initiated by SAP in 2006. The decision by SAP