ALV header not printing

Hello everybody,
I am printing an ALV report. The problem i am facing is,
1. When using write statement top of page event is triggered but O/P IN GRID header is blank?
2. When using REUSE_ALV_COMMENTARY_WRITE, header is printed. But how can I move the texts to custom position.
Urgent reply needed.
Thanks.

Hi Michael,
One idea could be place ur text in the wa as per ur requirement(i.e. position).
eg: WA_LIST_COMMENTARY-INFO+20(10) = 'My Header'.
    APPEND WA_LIST_COMMENTARY TO IT_LIST_COMMENTARY.
Now Pass this internal table to COMMENTARY WRITE FM.
But here u have restriction. Max length that can be passed to
this internal table is 60 characters.
Thanks,
Vinod.

Similar Messages

  • PDF Header not printing via Concurrent Manager.

    XML Publisher 5.6.3
    Oracle Financials 12.0.6
    RTF Template created by Word 2003
    When submitting a XML Publisher report request via concurrent manager and choosing a pasta driver printer to print too.
    The report prints with no header details.
    If you view the PDF report from the concurrent manager by clicking the view output button. The PDF document does have a header and if you print this PDF report via internet explorer the header does print out.
    i.e. No header printer via oracle financials concurrent manager
    But header printed out via internet explorer
    so PDF is getting printed by Linux through CC Manager and no header details appear in the print out.
    Any ideas?

    All of the complex report logic is handled in your Oracle Report (rdf) file.
    If your Oracle report is working OK, then this report should be generating XML.
    After running your report, go to the View Requests window. Highlight your request, and click the Diagnostics button. Then click the 'View XML' button. If you see XML data, then you should be OK.
    When I faced a similar issue, it was because the '1 step' process didnt work for the particular report I was using. The '1 step' process doesn't work for every report. Which report are you using?
    If the report is submitted via a form (not the concurrent manager request form), then you probably need to use 2 steps to produce the desired output.
    For more information, see the following thread:
    Enhancment to avoid 2 step check printing
    HTH,
    Mark K

  • ALV header not showing in display

    Hello experts,
    This problem has been bugging me for quite some time. I modified a report to be shown in ALV format. Now, when I execute the report the header does not display. Anyway, I have pasted below my code so you guys might see if I'm missing something. Help would be greatly appreciated. Thanks guys and have a nice day!
    FORM display_alv.
      PERFORM f_build_comment USING gt_list_top_of_page[].
      PERFORM f_build_layout USING gs_layout.
      PERFORM f_init_fieldcat USING gt_fieldcat[].
      PERFORM f_init_events USING 'TOP' gt_events[].
      CALL FUNCTION 'REUSE_ALV_BLOCK_LIST_INIT'
           EXPORTING
                i_callback_program      = g_repid
                i_callback_user_command = 'USER_COMMAND'.
      CALL FUNCTION 'REUSE_ALV_BLOCK_LIST_APPEND'
           EXPORTING
                it_fieldcat = gt_fieldcat[]
                is_layout   = gs_layout
                i_tabname   = 'IT_ZTS0001'
                it_events   = gt_events[]
                it_sort     = gt_sort_del
                i_text      = '1ST'
           TABLES
                t_outtab    = it_zts0001.
      gt_print-reserve_lines = 2.
      gt_print-no_coverpage = 'X'.
      CALL FUNCTION 'REUSE_ALV_BLOCK_LIST_DISPLAY'
           EXPORTING
                is_print = gt_print.
    ENDFORM.                    " DISPLAY_ALV
          FORM f_build_comment                                          *
    -->  %TOP_OF_PAGE                                                  *
    FORM f_build_comment USING %top_of_page TYPE slis_t_listheader.
      DATA: ls_line TYPE slis_listheader,
            d_name(60),
            lv_date(10),
            lv_time(10),
            lc_dttm(50).
    **-REPORT NAME
      CLEAR: d_name, ls_line.
      MOVE: sy-title TO d_name.
      ls_line-typ  = 'H'.
      ls_line-info = d_name.
      APPEND ls_line TO %top_of_page.
    **-USER ID AND DATE/TIME
      CLEAR: d_name, ls_line.
      CONCATENATE: 'Generated by:' sy-uname INTO d_name SEPARATED BY space.
      ls_line-typ  = 'H'.
      ls_line-info = d_name.
      APPEND ls_line TO %top_of_page.
      CLEAR: d_name, ls_line.
      WRITE: sy-datum TO lv_date MM/DD/YYYY,
             sy-uzeit TO lv_time USING EDIT MASK '__:__:__'.
      CONCATENATE: 'Generated on:' lv_date lv_time
        INTO d_name SEPARATED BY space.
      ls_line-typ  = 'H'.
      ls_line-info = d_name.
      APPEND ls_line TO %top_of_page.
    ENDFORM.                    " F_BUILD_COMMENT
          FORM f_build_layout                                           *
    -->  %LAYOUT                                                       *
    FORM f_build_layout USING %layout TYPE slis_layout_alv.
      %layout-zebra             = 'X'.
    ENDFORM.                    " F_BUILD_LAYOUT
          FORM f_init_fieldcat                                          *
    -->  %FIELDCAT                                                     *
    FORM f_init_fieldcat USING %fieldcat TYPE slis_t_fieldcat_alv.
      DATA: lc_fieldcat TYPE slis_fieldcat_alv.
      CLEAR lc_fieldcat.
      DEFINE m_field.
        add 1 to lc_fieldcat-col_pos.
        lc_fieldcat-fieldname   = &1.
        lc_fieldcat-outputlen   = &2.
        lc_fieldcat-seltext_l   = &3.
        lc_fieldcat-do_sum      = &4.
        lc_fieldcat-inttype     = &5.
        lc_fieldcat-hotspot     = &6.
        lc_fieldcat-fix_column  = &7.
        lc_fieldcat-ddictxt     = 'L'.
        lc_fieldcat-no_zero     = 'X'.
        append lc_fieldcat to %fieldcat.
      END-OF-DEFINITION.
      m_field 'KUNNR' '12' 'Customer Number'        ''  ''  ''  ''.
      m_field 'CD_SEQ' '12' 'Code'                  ''  ''  ''  ''.
      m_field 'ZADDRESS' '12' 'Address'             ''  ''  ''  ''.
      m_field 'ZCPERSON' '12' 'Contact Person'      ''  ''  '' ''.
      m_field 'ZCNUMBER' '12' 'Contact Number'      ''  ''  '' ''.
    ENDFORM.                    " f_init_fieldcat
          FORM f_init_events                                            *
    -->  P_TYPE                                                        *
    -->  %EVENTS                                                       *
    FORM f_init_events USING p_type CHANGING %events TYPE slis_t_event.
      CALL FUNCTION 'REUSE_ALV_EVENTS_GET'
           EXPORTING
                i_list_type     = 0
           IMPORTING
                et_events       = %events
           EXCEPTIONS
                list_type_wrong = 1
                OTHERS          = 2.
      IF sy-subrc = 0.
        PERFORM f_build_events USING: slis_ev_user_command.
        IF p_type = 'TOP'.
          PERFORM f_build_events USING: gc_top.
       ELSEIF p_type = 'SUM'.
         PERFORM f_build_events_sum USING: gc_topsum.
        ENDIF.
      ELSE.
        MESSAGE ID sy-msgid TYPE sy-msgty NUMBER sy-msgno
                WITH sy-msgv1 sy-msgv2 sy-msgv3 sy-msgv4.
      ENDIF.
    ENDFORM.                    " F_INIT_EVENTS
          FORM f_build_events                                           *
    -->  %EVENT                                                        *
    FORM f_build_events USING %event.
      READ TABLE gt_events WITH KEY name = %event.
      IF sy-subrc = 0.
        MOVE: %event TO gt_events-form.
       MOVE 'USER_COMMAND' TO gt_events-form.
        MODIFY gt_events INDEX sy-tabix.
      ENDIF.
    ENDFORM.                    " F_BUILD_EVENTS
          FORM top_of_page                                              *
    FORM top_of_page.
      CALL FUNCTION 'REUSE_ALV_COMMENTARY_WRITE'
           EXPORTING
                it_list_commentary = gt_list_top_of_page.
    ENDFORM.

    Hi,
    Using ALV_BLOCK you can append multiple internal table and display them in one shot.
    With ALV Grid you cannot do that, but the output is more prettier than a list. It will look a excel sheet.
    Look at the layout values you are passing for the size of the ALV.
    Regards,
    Ravi
    Note : Please mark the helpful answers

  • Need to add checkbox in alv header Not  in grid

    Dear Guru's,
                       My question is i want to add checkbox on top of alv grid ie on top of page .
    my requriement is for SD module- status of order -Mass Update.
    suppose status checkbox on header is HFSC is checked ( check box),
    for all the sales order which are showed on the alv grid must be updated with this status for which i am calling trasaction VA02 in program and doing changes but i am not able to create checkbox on header .
    Again i have already used ALV without classesso please give me solution accordinglly . Thanks in advance.

    Hi,
    For working with top of page we generally use SLIS_LISTHEADER right.
    In this type the first field is
    type - which can accept values as follows
               H - Heading
               S - Selection
               A - Action
    May be the options Selection or Action may help u.

  • ALV spool not printing complete line while sent to spool

    Hello all:
    Could some one please help with below situation.
    I wrote a report with report output as alv in abap objects, at the same time when i run the report in foreground i am sending a copy of report to spool, by passing the print parameters.
    When i am trying to look at spool i am not able to see all the content which i was able to see in the foreground reprot.
    i am only able to see 63 columns in each row.
    Please help me.
    Thanks,
    Ratnakar.

    Hi ratnakarg07,
    the number of columns displayed is limited by the line length of the printer format - usually a maximum of 255 columns. If your printer does not support more, you have no chance except creating an layout with the columns important for print output that does not exceed the given limit.
    I think if you do not specify the print format in the print parameters, ALV should choose an appropriate format.
    Regards,
    Clemens

  • MS Project Header Not Printing

    I'm using MS Project 2010 with MS 7, 64-bit.  When I print my Project Schedule to any of 6 different printers in our office, the headers print fine.  If I print it to a pdf, the headers disappear.  Does anybody have any idea why this is?
     It's extremely frustrating!

    Dave,
    Do you have SP2 for Project 2010 installed? If not, install it. In addition, I recommend you install the June 2013 cumulative update as it was released after SP2.
    Check that out and then we can go from there.
    John

  • Officejet 4500, Only printing header, not printing text in body of any document.

    Cannot get Officejet 4500 to print any thing other than headers on any document.
    Nothing in the body of any document is printing.
    Full ink cartridges, set for grayscale only.
    Does print test pages and is connected to my wireless network.
    Any help would be appreciated.
    DBSLTE

    Hi dbslte,
    What program(s) are you printing from when this happens? Have you tried different programs (besides the test print)?
    Any extra information can be helpful in finding a resolution.
    If I have helped in any way, just click the Kudos star on the left. Also, if your issue has been resolved, don't forget to select Accept as Solution

  • Alv heading to display in excel

    Hi
    i have a problem ,
    i want 2 take print of body of alv with ALV header.
    while printing , only body is comin for print-out, not a header.
    guide me.
    points vil be rewarded

    write the header under the event top-fo-page and use listheader structure and also use FM ALV_commentary _write
    see following code for example
    http://sapprograms.blogspot.com/2008/04/alv-grid-display-report.html

  • Regarding ALV Header to display at Right side of Header

    Hi dudes..
    How to handle ALV header to print content at right side of the report out-put.
    If we use ALV_list dispaly line size ends to 80 and Other than
    using OOP's is there any way to do this..
    Could You please let me know.How to handle this issue??
    Regards,
    Sg

    Hi,
    CALL FUNCTION 'REUSE_ALV_GRID_DISPLAY'
    EXPORTING
    i_callback_program = 'ZALV_PRDS'
    i_callback_user_command = 'USER_COMMAND'
    i_callback_html_top_of_page = 'HTML_TOP_OF_PAGE' "for header alignment
    it_fieldcat = t_fcat
    i_save = 'A'
    it_events = t_eve
    TABLES
    t_outtab = itab
    IF sy-subrc 0.
    MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
    WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
    ENDIF.
    FORM html_top_of_page USING document TYPE REF TO cl_dd_document.
    DATA: text TYPE sdydo_text_element.
    CALL METHOD document->add_gap
    EXPORTING
    width = 200.
    text = 'Material Information'.
    CALL METHOD document->add_text
    EXPORTING
    text = text
    sap_style = 'HEADING'.
    CALL METHOD document->new_line.
    CALL METHOD document->new_line.
    CALL METHOD document->new_line.
    ENDFORM. "HTML_TOP_OF_PAGE
    For more details, refer to the methods of the class cl_dd_document
    Also check the below link.
    https://www.sdn.sap.com/irj/sdn/wiki?path=/pages/viewpage.action&pageid=37566
    Also this link
    Report header using ALV Grid(oops)
    Please reward points if it helps
    Thanks
    Vikranth

  • Header not visible in alv output print preview using html_top_of_page

    hi to all experts,
    im using html_top_of_page for alv header and using fm reuse_alv_grid_display. when i see the print preview im getting the report output but not the alv header . what could be the problem

    Hi tarun,
    im unable to see the header print preview . I can see it in the report output .
    here is my code
    FORM html_top_of_page USING document
            TYPE REF TO cl_dd_document .
      CREATE OBJECT:  document.
      DATA:text TYPE sdydo_text_element.
      DATA: l_repid TYPE sy-repid,
            l_mandt TYPE sy-mandt,
            l_date(10),
            l_yr(4),
            l_mm(2),
            l_dd(2),
            l_hr(2),
            l_sec(2),
            l_min(2),
            l_time(10).
      CALL METHOD document->add_gap
        EXPORTING
          width = 70.
      text = text-005.
      CALL METHOD document->add_text
        EXPORTING
          text      = text-005
          sap_style = 'HEADING'.
      CALL METHOD document->new_line.
      CONCATENATE 'Report:' sy-repid INTO text.
      CALL METHOD document->add_text
        EXPORTING
          text         = text
          sap_emphasis = 'Strong'.
      CALL METHOD document->add_gap
        EXPORTING
          width = 206.
      l_date = sy-datum.
      MOVE: l_date+0(4) TO l_yr,
            l_date+4(2) TO l_mm,
            l_date+6(2) TO l_dd.
      CONCATENATE 'Run Date:' l_dd '.' l_mm '.' l_yr
                  INTO text.
      CALL METHOD document->add_text
        EXPORTING
          text          =  text
          sap_style     =  space
          sap_color     =  space
          sap_fontsize  =  cl_dd_document=>medium
          sap_emphasis  =  cl_dd_document=>strong
          style_class   =  space
    *  CHANGING
    *    document      =
      CALL METHOD document->new_line.
      CONCATENATE 'Client:' sy-mandt INTO text.
      CALL METHOD document->add_text
        EXPORTING
          text          = text
          sap_fontstyle = cl_dd_document=>medium
          sap_emphasis  = cl_dd_document=>strong.
      CALL METHOD document->add_gap
        EXPORTING
          width = 220.
      l_time = sy-uzeit.
      l_hr = l_time+0(2).
      l_mm = l_time+2(4) .
      l_sec = l_time+4(6).
      CONCATENATE l_hr ':' l_mm ':' l_sec
           INTO l_time.
      CONCATENATE 'Time:' l_time INTO text.
      CALL METHOD document->add_text
        EXPORTING
          text           = text
          sap_fontstyle =  cl_dd_document=>medium
          sap_emphasis  =  cl_dd_document=>strong
          style_class   =  space
    *  CHANGING
    *    document      =
      CALL METHOD document->new_line.
      CONCATENATE 'User Id:' sy-uname INTO text.
      CALL METHOD document->add_text
        EXPORTING
           text          =  text
          sap_style     = space
          sap_color     = space
          sap_fontstyle = cl_dd_document=>medium
          sap_emphasis  = cl_dd_document=>strong
          style_class   = space
    *  CHANGING
    *    document      =
      CALL METHOD document->new_line.
      CALL METHOD document->new_line.
      text = 'Note: The maximum value for the column Qty to Print is 10,000.'.
      CALL METHOD document->add_text
        EXPORTING
           text          = text
    *    text_table    =
    *    fix_lines     =
    *     sap_style     =  cl_dd_document=>strong
           sap_color     = cl_dd_document=>list_negative
    *    sap_fontsize  =
          sap_fontstyle = cl_dd_document=>strong
    *    sap_emphasis  =
    *    style_class   =
    *  CHANGING
    *    document      =
      CALL METHOD document->new_line.
      CALL METHOD document->new_line.
      text = 'Selection Criteria:'.
      CALL METHOD document->add_text
        EXPORTING
           text          = text
    *      text_table    =
    *      fix_lines     =
           sap_style      = 'KEY'
    *      sap_color     =
           sap_fontsize  = cl_dd_document=>medium
           sap_fontstyle = cl_dd_document=>strong.
    *  CALL METHOD document->new_line.
    *  CALL METHOD document->new_line.
      IF so_mblnr[] IS NOT INITIAL.
        CALL METHOD document->new_line.
        IF so_mblnr-high IS NOT INITIAL.
          CONCATENATE 'Material Doc:' so_mblnr-low '  TO   '  so_mblnr-high INTO text SEPARATED BY space.
        ELSE.
          CONCATENATE 'Material Doc:' so_mblnr-low INTO text SEPARATED BY space.
        ENDIF.
        CALL METHOD document->add_text
          EXPORTING
            text          = text
            sap_fontsize  = cl_dd_document=>medium
            sap_fontstyle = cl_dd_document=>strong.
      ENDIF.
      IF so_bwart[] IS NOT INITIAL.
        CALL METHOD document->new_line.
        IF so_bwart-high IS NOT INITIAL.
          CONCATENATE 'Movement Type:' so_bwart-low ' TO  ' so_bwart-high INTO text SEPARATED BY space.
        ELSE.
          CONCATENATE 'Movement Type:' so_bwart-low INTO text SEPARATED BY space.
        ENDIF.
        CALL METHOD document->add_text
          EXPORTING
            text          = text
            sap_fontsize  = cl_dd_document=>medium
            sap_fontstyle = cl_dd_document=>strong.
      ENDIF.
      IF so_bldat[] IS NOT INITIAL.
        CALL METHOD document->new_line.
        IF so_bldat-high IS NOT INITIAL.
          CONCATENATE 'Document Date:' so_bldat-low ' TO  ' so_bldat-high INTO text SEPARATED BY space.
        ELSE.
          CONCATENATE 'Document Date:' so_bldat-low  INTO text SEPARATED BY space.
        ENDIF.
        CALL METHOD document->add_text
          EXPORTING
            text          = text
            sap_fontsize  = cl_dd_document=>medium
            sap_fontstyle = cl_dd_document=>strong.
      ENDIF.
      IF so_budat[] IS NOT INITIAL.
        CALL METHOD document->new_line.
        IF  so_budat-high IS NOT INITIAL.
          CONCATENATE 'Posting Date:' so_budat-low ' TO  ' so_budat-high INTO text SEPARATED BY space.
        ELSE.
          CONCATENATE 'Posting Date:' so_budat-low INTO text SEPARATED BY space.
        ENDIF.
        CALL METHOD document->add_text
          EXPORTING
            text          = text
            sap_fontsize  = cl_dd_document=>medium
            sap_fontstyle = cl_dd_document=>strong.
      ENDIF.
      IF so_matnr[] IS NOT INITIAL.
        CALL METHOD document->new_line.
        IF so_matnr-high IS NOT INITIAL.
          CONCATENATE 'Material ID:' so_matnr-low ' TO  ' so_matnr-high INTO text SEPARATED BY space.
        ELSE.
          CONCATENATE 'Material ID:' so_matnr-low INTO text SEPARATED BY space.
        ENDIF.
        CALL METHOD document->add_text
          EXPORTING
            text          = text
            sap_fontsize  = cl_dd_document=>medium
            sap_fontstyle = cl_dd_document=>strong.
      ENDIF.
      IF so_werks[] IS NOT INITIAL.
        CALL METHOD document->new_line.
        IF so_werks-high IS NOT INITIAL.
          CONCATENATE 'Plant:' so_werks-low ' TO  ' so_werks-high INTO text SEPARATED BY space.
        ELSE.
          CONCATENATE 'Plant:' so_werks-low INTO text SEPARATED BY space.
        ENDIF.
        CALL METHOD document->add_text
          EXPORTING
            text          = text
            sap_fontsize  = cl_dd_document=>medium
            sap_fontstyle = cl_dd_document=>strong.
      ENDIF.
      IF so_lgort[] IS NOT INITIAL.
        CALL METHOD document->new_line.
        IF so_lgort-high IS NOT INITIAL.
          CONCATENATE 'Storage Location:' so_lgort-low ' TO  ' so_lgort-high INTO text SEPARATED BY space.
        ELSE.
          CONCATENATE 'Storage Location:' so_lgort-low INTO text SEPARATED BY space.
        ENDIF.
        CALL METHOD document->add_text
          EXPORTING
            text          = text
            sap_fontsize  = cl_dd_document=>medium
            sap_fontstyle = cl_dd_document=>strong.
      ENDIF.
      IF so_lifnr[] IS NOT INITIAL.
        CALL METHOD document->new_line.
        IF so_lifnr-high IS NOT INITIAL.
          CONCATENATE 'Vendor:' so_lifnr-low ' TO  ' so_lifnr-high INTO text SEPARATED BY space.
        ELSE.
          CONCATENATE 'Vendor:' so_lifnr-low INTO text SEPARATED BY space.
        ENDIF.
        CALL METHOD document->add_text
          EXPORTING
            text          = text
            sap_fontsize  = cl_dd_document=>medium
            sap_fontstyle = cl_dd_document=>strong.
      ENDIF.
      IF so_xblnr[] IS NOT INITIAL.
        CALL METHOD document->new_line.
        IF so_xblnr-high IS NOT INITIAL.
          CONCATENATE 'Delivery Note:' so_xblnr-low 'TO' so_xblnr-high INTO text SEPARATED BY space.
        ELSE.
          CONCATENATE 'Delivery Note:' so_xblnr-low INTO text SEPARATED BY space.
        ENDIF.
        CALL METHOD document->add_text
          EXPORTING
            text          = text
            sap_fontsize  = cl_dd_document=>medium
            sap_fontstyle = cl_dd_document=>strong.
      ENDIF.
      IF so_ebeln[] IS NOT INITIAL.
        CALL METHOD document->new_line.
        IF so_ebeln-high IS NOT INITIAL.
          CONCATENATE 'PO NO:' so_ebeln-low ' TO  ' so_ebeln-high INTO text SEPARATED BY space.
        ELSE.
          CONCATENATE 'PO NO:' so_ebeln-low INTO text SEPARATED BY space.
        ENDIF.
        CALL METHOD document->add_text
          EXPORTING
            text          = text
            sap_fontsize  = cl_dd_document=>medium
            sap_fontstyle = cl_dd_document=>strong.
      ENDIF.
      IF so_usnam[] IS NOT INITIAL.
        CALL METHOD document->new_line.
        IF so_usnam-high IS NOT INITIAL.
          CONCATENATE 'User Name:' so_usnam-low ' TO  ' so_usnam-high INTO text SEPARATED BY space.
        ELSE.
          CONCATENATE 'User Name:' so_usnam-low INTO text SEPARATED BY space.
        ENDIF.
        CALL METHOD document->add_text
          EXPORTING
            text          = text
            sap_fontsize  = cl_dd_document=>medium
            sap_fontstyle = cl_dd_document=>strong.
      ENDIF.
      CALL METHOD document->new_line.
      IF 1x3 = 'X'.
        text = 'Barcode label 1x3 maintained'.
        CALL METHOD document->add_text
          EXPORTING
            text          = text
            sap_fontsize  = cl_dd_document=>medium
            sap_fontstyle = cl_dd_document=>strong.
      ELSE.
        text = 'Bar Code label 2x4 maintained'.
        CALL METHOD document->add_text
          EXPORTING
            text          = text
            sap_fontsize  = cl_dd_document=>medium
            sap_fontstyle = cl_dd_document=>strong.
      ENDIF.
      CALL METHOD document->new_line.

  • In ALV Report output heading is printing twice.

    Hi Experts,
    Im working on ALV Reports.
    Im printing header text by using listheader and commentary write function module.
    the problem is when i sort any column in ALV ouput the heading is printing twice.
    Again if i sort the column the heading is printed is 4 times.
    so if anybody knows the solution how we can avoid repetition of heading ,
    Please reply me as soon as possible.
    regards
    Imrangs.

    Hi Noorie,
    Thanks a lot.
    Your answer is perfect.
    Bye.
    Regards,
    Imran

  • Web Analysis report is not coming with the border/logo/heading while print

    Hi All,
    I am using 9.3.1 version of hyperion planning were Web Analysis report is not coming with the border/logo/heading while printing with the option "print all object", Only the data grid is coming in the print. If I use "print screen" it is coming with border/logo/heading but it gives a screenshot of the report, that won't cater out need.
    So please suggest us with a resolution to have border, logo and heading, while using Print all object.
    Thanks with regards....
    Rao

    Hi Sagar,
    In scripts when you will see print preview the logo will be not shown up with clarity.Take the print out of the document and check whether logo is printing up with clarity.
    Thanks
    Phani

  • SSRS 2008 R2 report does not print the page header for a html content displaying on multiple pages

    Hi
    I need to display the html content from the database. The html content are quite long and can have content of 3-5 pages. Issue I  am facing is f the record has html content of 3-5 pages, then it does not print the page header (which is a separate tablix) on
    second page onwards.
    Nikesh Shah
    Nikesh Shah

    Hi Nikesh,
    According to your description, I’m not sure the meaning of Page header in your scenario. In Reporting Services, a page header that run along the top of each page, respectively. Headers can contain static text, images, lines, rectangles, borders, background
    color, background images, and expressions. But we couldn’t add tablix in the page header.
    If you are saying report header, a report header consists of the report items that are placed at the top of the report body on the report design surface. They appear only once as the first content in the report. So it cannot repeat in other pages.
    If you are saying tablix header, freezing column headers are different in table and matrix. For more details, please refer to the following thread:
    http://social.technet.microsoft.com/Forums/sharepoint/en-US/c8ddc1af-1bdf-4e72-8aab-0353c7cc848a/ssrs-report-freezing-row-and-column-while-scrolling-issue?forum=sqlreportingservices
    If there are any misunderstanding, please elaborate the issue for further investigation.
    Regards,
    Katherine Xiong
    Katherine Xiong
    TechNet Community Support

  • Officejet Pro 8500 A910 Not Printing & Heads won't clean.

    I have an HP Officejet Pro 8500 A910. It has not been used for about 2 months until yesterday, but was left powered on. The Black, Yellow and Cyan carts were getting a bit low and my wife want to print a few dozen pages of black text. I had a HP 940 Black cart to hand so I replaced it. She printed about 2 dozen Word pages in draft format which uses less ink. They printed OK, but when she went to print more, the print got fainter with each page until they were coming out of the printer totally blank then when the cyan ran out the printer stopped printing blank pages all together. I installed new HP Cyan and Yellow carts, but the printer continued to spit out blank pages. I printed a Quality Diagnostic Page and it showed one column of blocks in Test Pattern 2 missing completely and some white streaks in at least one of the colored blocks. At this point the Ink cart levels were K=90, Y=90, M=50, C=90. The Print Head Health was KY=Good, MC=Good. At this point I ran an Alignment and the report showed all colors except Cyan which was completely missing. I had remembered from a few year ago, that this is one simple way to show if color heads were not printing. I then performed 3 successive level 1, 2 and 3 cleanings, and each time the cleaning report showed less color until only faint yellow showed on the printout. Also the alignment now only shows faint traces of yellow.  I suspect the heads need to be either replaced or removed and cleaned manually. Any suggestions or advice would be greatly appreciated.  Thanks very much in advance. Peter B.

    Hey , Welcome to the HP forums! I hope you enjoy your stay here. I see that you are having some issues with printing from your Officejet 8500A. I can help with that. This document outlines how to troubleshoot print quality issues with your printer. If that fails then this document will assist you with cleaning the printhead. If after following those documents then the printer itself is going to need to be replaced. You can contact HP support by clicking on this link. On the next page scroll to the bottom and fill out the form. When that is completed you will find some information on how to contact HP directly. If this resolves your issues then please let others know by clicking on Accept as Solution below my post.
    I hope this helps and I hope you have a great day!

  • Header text not printed for scheduling agreement

    Hi All,
    I have issue with header text print out for scheduling agreement (SA).
    In SA when I am manually writing some note and then taking print out, system is giving me correct output with maual note.
    I have one standard text (ST) which I need to be printed in evry SA, so in SPRO I created new head text for vendor and in copying rule for text for SA, I created linkage of SA header text with Vendor head text.
    In vendor master, I inserted ST in newly created vendor header text.
    So now when ever I create new SA for vendor system will determin header text from vendor master.
    Now after creating SA when I check the SA, I am able to my ST in SA, but at the time of print out this ST in not printing.
    Please let me know what could be the reson.
    Regards,
    Sameer

    I dont understand about what you mean by expand.
    When you a print PO, PO text  (header or item) it will check to the configuration setting.
    The system didnt care if its adopted from vendor master or info record, or whatever you make in the copying rule.
    In your case : you create a standard text then it get copied into PO , then you set the standard text to the PO for print out, example the standard text : word is
    "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx
    xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx
    xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx"
    Then in the PO the text appear will be like below(the same, because it get copied)
    "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx
    xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx
    xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx"
    If you configure it in define text for SA, then it the print out it will also (the same)
    "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx
    xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx
    xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx"
    So what text need to expand?

Maybe you are looking for

  • Is there a way to change the LUt extension form .CUBE to .cube. on export. TX

    Is there a way to change the LUt extension form .CUBE to .cube. on export with this script in photoshop For MAC: Chris Cox wrote: The file extensions are written by the export plugin.  (which incidentally has a comment that two studios wanted all cap

  • Updating multiple PSA requests one at a time

    In a PSA we have multiple requests that aren't updated into data targets. If I update to a infocube, I think all these requests will be updated together under a single DTP request. Is there a way to update the requests in PSA one at a time? Thanks.

  • Dynamic columns in ALV report

    halo fellow SAPiens, i need to show dynamic columns for a particular material........the scenario is as follows.... 1) there r 7 fixed columns describing the material... 2)when the material returns back to the plant for some reason , i need to insert

  • Don't display empty database fields

    Hi I'm putting together a Stockist database-driven site using PHP & MySQL however some of the fields in the database are blank for some records, i.e. not all will have two lines in the address and not all will have a post code depending on the countr

  • Too much power?

    Hi (first post ) I have just got a new battery, and now a "funny" error occor. When the battery runs dry of power, the computer shuts down, insted of going to the "standby mode" (don't know the word). When I charge the battery and the computer is tur