ALV print header

Hi,
I need to print the main header again when the subtotal is printed in the same page, I don´t want to force a new page, Is it possible ?
Domingos.
Eg: 
Page 1
header colum1  colum2 colum3...
         x        x     x
       subtotal  xxxxxxxxxxxxxx
header colum1  colum2 colum3...
         x        x     x
       subtotal  xxxxxxxxxxxxxx
Page 2
header colum1  colum2 colum3...
         x        x     x
       subtotal  xxxxxxxxxxxxxx
header colum1  colum2 colum3...
         x        x     x
       subtotal  xxxxxxxxxxxxxx

Domingo,
How were you able to print the ALV headers and pages. Please share your knowledge.
Thanks,
Chaitanya

Similar Messages

  • How to print header lines at the top of every page with Alv list display?

    Dear all,
    I need a requirement with printing issue. A program list should be printed with the function reuse_alv_list_display.
    The list has several pages and then can be printed but the header lines appear only first page when they printed. The other pages don't have header lines, they continue with the next record of the list remaining from previous page. I use the alv parameters as below:
      CALL FUNCTION 'REUSE_ALV_LIST_DISPLAY'
        EXPORTING
          i_callback_program       = l_repid
          i_callback_pf_status_set = 'ALV_PF_STATUS'
          is_layout                = ls_layo
          it_fieldcat              = lt_fcat
          i_default                = 'X'
          i_save                   = 'A'
          is_variant               = ls_variant
          it_events                = lt_events
        TABLES
          t_outtab                 = lt_data
        EXCEPTIONS
          program_error            = 1
          OTHERS                   = 2.
    and lt_events as below:
      ls_event-name = 'END_OF_LIST'.
      ls_event-form = 'ALV_END_OF_LIST'.
      APPEND ls_event TO lt_events.
      ls_event-name = 'END_OF_PAGE'.
      ls_event-form = 'ALV_END_OF_PAGE'.
      APPEND ls_event TO lt_events.
      ls_event-name = 'TOP_OF_LIST'.
      ls_event-form = 'ALV_TOP_OF_LIST'.
      APPEND ls_event TO lt_events.
      ls_event-name = 'TOP_OF_PAGE'.
      ls_event-form = 'ALV_TOP_OF_PAGE'.
      APPEND ls_event TO lt_events.
    So, how can I print header lines for every page?
    Best Regards,

    Hello Saba,
    Your point might be very close to solution.
    Because in the selection screen of the program there are two radio buttons, one of them visits 'REUSE_ALV_COMMENTARY_WRITE' function and the other doesn't. The one which visits has a problem with header liens in every page when printing. But I couldn't find out the solution yet.
    reuse_alv_list_display uses 4 event and of course I call subroutine. There are end_of_list, end_of_page, top_of_list and top_of_page. I use in the subroutine for top_of_page:
      CALL FUNCTION 'LVC_TRANSFER_TO_SLIS'
        EXPORTING
          it_fieldcat_lvc         = gt_fcat
        IMPORTING
          et_fieldcat_alv         = lt_fcat
        EXCEPTIONS
          it_data_missing         = 1
          it_fieldcat_lvc_missing = 2
          OTHERS                  = 3.
      CALL FUNCTION 'REUSE_ALV_LIST_WIDTH_GET'
        EXPORTING
          it_fieldcat = lt_fcat
        IMPORTING
          e_width     = l_width.
    WRITE l_reptx TO l_reptx CENTERED.
      NEW-LINE.
      WRITE: AT (l_width) l_reptx CENTERED.
      SUBTRACT 10 FROM l_width.
      WRITE: AT l_width sy-pagno RIGHT-JUSTIFIED.
        CALL FUNCTION 'REUSE_ALV_COMMENTARY_WRITE'
          EXPORTING
            it_list_commentary       = lt_header
      I_LOGO                   =
      I_END_OF_LIST_GRID       =
    Do you have other suggestions ?

  • Couldn't print header of ALV list

    Hi All,
    I couldn't print header for the alv list. Code is below.
    REPORT ztest123456 .
    TYPE-POOLS: slis.
    DATA: wa_fieldcat TYPE slis_fieldcat_alv,
          g_t_tfieldcat TYPE slis_t_fieldcat_alv,
          itab1 TYPE STANDARD TABLE OF cdhdr,
          g_t_event TYPE slis_t_event,
          wa_event TYPE slis_alv_event,
          g_pos TYPE i VALUE 1,
          head TYPE slis_t_listheader,
          wa_head TYPE slis_listheader.
    START-OF-SELECTION.
      SELECT * FROM cdhdr INTO TABLE itab1
      WHERE objectclas = 'COND_A'
        AND tcode = 'VK12'.
      SORT itab1 BY objectclas.
      wa_head-typ  = 'H'.
      wa_head-info = 'Records in cdhdr table'.
      APPEND wa_head TO head.
      PERFORM sub_fldctlg USING: 'OBJECTCLAS' 'ITAB1' 13 'Object class'.
          FORM sub_fldctlg                                              *
    FORM sub_fldctlg USING u_fname TYPE slis_fieldcat_alv-fieldname
                           u_tname TYPE slis_fieldcat_alv-tabname
                           u_outlen TYPE slis_fieldcat_alv-outputlen
                           u_seltext TYPE slis_fieldcat_alv-seltext_l.
      CLEAR wa_fieldcat.
      wa_fieldcat-col_pos = g_pos.          "Column Position
      wa_fieldcat-fieldname = u_fname.      "Field Name
      wa_fieldcat-tabname = u_tname.        "Table Name
      wa_fieldcat-outputlen = u_outlen.     "Output column Length
      wa_fieldcat-seltext_l = u_seltext.    "Column Header
      g_pos = g_pos + 1.                    "Incrementing column position
      APPEND wa_fieldcat TO g_t_tfieldcat.    "Appending field Catalog
    ENDFORM.
    *&      Form  sub_top
    FORM sub_top.
      CALL FUNCTION 'REUSE_ALV_COMMENTARY_WRITE'
           EXPORTING
                it_list_commentary = head.
    ENDFORM.                    " sub_top
    END-OF-SELECTION.
      CALL FUNCTION 'REUSE_ALV_EVENTS_GET'
           IMPORTING
                et_events = g_t_event.
      READ TABLE g_t_event INTO wa_event WITH KEY name = 'TOP_OF_PAGE'.
      IF sy-subrc EQ 0.
        wa_event-form = 'SUB_TOP'.
        MODIFY g_t_event FROM wa_event INDEX sy-tabix.
      ENDIF.
      CALL FUNCTION 'REUSE_ALV_LIST_DISPLAY'
       EXPORTING
         i_callback_program             = sy-repid
         it_fieldcat                    = g_t_tfieldcat
         it_events                      = g_t_event
        TABLES
          t_outtab                       = itab1.
    Thanks in advance.

    Hi,
    The issue is resolved. I just pass the program name (SY-REPID) through a variable to the function module that displays list/grid. I came to know that these system variable behavior is UN-predictable in SAP and hence passed program name through a global variable instead of using a system variable value.
    Thanks..

  • How to print header and footer in SET_TABLE_FOR_FIRST_DISPLAY

    Hello Experts,
             How to print header and footer while using the method SET_TABLE_FOR_FIRST_DISPLAY, any tips from the experts will be appreciated.
    Regards,
    Babu

    Hi,
    there are four events for printing: print_end_of_list, print_top_of_list, print_end_of_page and print_top_of_page. More information about implementing these events is in this bible for ALV:
    https://www.sdn.sap.com/irj/scn/go/portal/prtroot/docs/library/uuid/e8a1d690-0201-0010-b7ad-d9719a415907
    Cheers

  • Problem with alv print

    Hi,
    I am using alv grid, there is a problem with print, when i look at print preview it shows only 1 row and even the values in that row are incorrect.
    Please help me solv the problem.
    Thanks,
    Sai.

    Here is the code
    *&      Form  DISPLAY
          text
    FORM display.
      DATA : fieldcatalog TYPE slis_t_fieldcat_alv WITH HEADER LINE.
    *data : wa_fieldcat type slis_fieldcat_alv.
      DATA : t_header  TYPE slis_t_listheader,
             wa_header TYPE slis_listheader.
      DATA : cnt(3) TYPE c VALUE 0.
    cnt = cnt + 1.
      fieldcatalog-fieldname   = 'XBLNR'.
      fieldcatalog-seltext_m   = 'Invoice No'.
      fieldcatalog-col_pos     = cnt.
      fieldcatalog-outputlen   = 8.
      fieldcatalog-tabname   = 'it_final'.
      APPEND fieldcatalog TO fieldcatalog.
      CLEAR  fieldcatalog.
      cnt = cnt + 1.
      fieldcatalog-fieldname   = 'BLDAT'.
      fieldcatalog-seltext_m   = 'Invoice Date'.
      fieldcatalog-col_pos     = cnt.
      fieldcatalog-outputlen   = 9.
      fieldcatalog-tabname     = 'it_final'.
      APPEND fieldcatalog TO fieldcatalog.
      CLEAR  fieldcatalog.
    *CT3 No.
      cnt = cnt + 1.
      fieldcatalog-fieldname   = 'SGTXT'.
      fieldcatalog-seltext_m   = 'CT3 No'.
      fieldcatalog-col_pos     = cnt.
      fieldcatalog-outputlen   = 8.
      fieldcatalog-tabname   = 'it_final'.
      APPEND fieldcatalog TO fieldcatalog.
      CLEAR  fieldcatalog.
      cnt = cnt + 1.
      fieldcatalog-fieldname   = 'MBLNR'.
      fieldcatalog-seltext_m   = 'GRR No.'.
      fieldcatalog-col_pos     = cnt.
      fieldcatalog-outputlen   = 10.
      fieldcatalog-tabname     = 'it_final'.
      APPEND fieldcatalog TO fieldcatalog.
      CLEAR  fieldcatalog.
      cnt = cnt + 1.
      fieldcatalog-fieldname   = 'BUDAT'.
      fieldcatalog-seltext_m   = 'GRR DATE'.
      fieldcatalog-col_pos     = cnt.
      fieldcatalog-outputlen   = 9.
      fieldcatalog-tabname     = 'it_final'.
      APPEND fieldcatalog TO fieldcatalog.
      CLEAR  fieldcatalog.
      cnt = cnt + 1.
      fieldcatalog-fieldname   = 'NAME1'.
      fieldcatalog-seltext_m   = 'Vendor Name'.
      fieldcatalog-col_pos     = cnt.
      fieldcatalog-outputlen   = 30.
      fieldcatalog-tabname   = 'it_final'.
      APPEND fieldcatalog TO fieldcatalog.
      CLEAR  fieldcatalog.
      cnt = cnt + 1.
      fieldcatalog-fieldname   = 'MATNR'.
      fieldcatalog-seltext_m   = 'Material No'.
      fieldcatalog-col_pos     = cnt.
      fieldcatalog-outputlen   = 18.
      fieldcatalog-tabname   = 'it_final'.
      fieldcatalog-no_zero   = 'X'.
      fieldcatalog-key         = 'X'.
      APPEND fieldcatalog TO fieldcatalog.
      CLEAR  fieldcatalog.
      cnt = cnt + 1.
      fieldcatalog-fieldname   = 'MAKTX'.
      fieldcatalog-seltext_m   = 'Matdesc'.
      fieldcatalog-col_pos     =  cnt.
      fieldcatalog-outputlen   =  30.
      fieldcatalog-tabname   = 'it_final'.
      fieldcatalog-key         = 'X'.
      APPEND fieldcatalog TO fieldcatalog.
      CLEAR  fieldcatalog.
    **Excise Duty
    cnt = cnt + 1.
    fieldcatalog-fieldname   = 'EDUTY'.
    fieldcatalog-seltext_m   = 'EXCISE DUTY '.
    fieldcatalog-col_pos     = cnt.
    fieldcatalog-outputlen   = 30.
    fieldcatalog-tabname   = 'it_final'.
    fieldcatalog-do_sum    = 'X'.
    APPEND fieldcatalog TO fieldcatalog.
    CLEAR  fieldcatalog.
    *Excise Duty
      cnt = cnt + 1.
      fieldcatalog-fieldname   = 'DBDTY'.
      fieldcatalog-seltext_m   = 'DEBIT DUTY '.
      fieldcatalog-col_pos     = cnt.
      fieldcatalog-outputlen   = 12.
      fieldcatalog-tabname   = 'it_final'.
      fieldcatalog-do_sum    = 'X'.
      APPEND fieldcatalog TO fieldcatalog.
      CLEAR  fieldcatalog.
    *Excise Duty
      cnt = cnt + 1.
      fieldcatalog-fieldname   = 'CRDTY'.
      fieldcatalog-seltext_m   = 'CREDIT DUTY '.
      fieldcatalog-col_pos     = cnt.
      fieldcatalog-outputlen   = 12.
      fieldcatalog-tabname   = 'it_final'.
      fieldcatalog-do_sum    = 'X'.
      APPEND fieldcatalog TO fieldcatalog.
      CLEAR  fieldcatalog.
    *Credit Date
      cnt = cnt + 1.
      fieldcatalog-fieldname   = 'CRDAT'.
      fieldcatalog-seltext_m   = 'Cr. DATE'.
      fieldcatalog-col_pos     = cnt.
      fieldcatalog-outputlen   = 9.
      fieldcatalog-tabname     = 'it_final'.
      APPEND fieldcatalog TO fieldcatalog.
      CLEAR  fieldcatalog.
    *Closing Balance
      cnt = cnt + 1.
      fieldcatalog-fieldname   = 'CL_BALANCE'.
      fieldcatalog-seltext_m   = 'BALANCE AMT'.
      fieldcatalog-col_pos     = cnt.
      fieldcatalog-outputlen   = 15.
      fieldcatalog-tabname   = 'it_final1'.
      APPEND fieldcatalog TO fieldcatalog.
      CLEAR  fieldcatalog.
      CALL FUNCTION 'REUSE_ALV_GRID_DISPLAY'
        EXPORTING
          i_callback_program       = sy-repid
          i_callback_top_of_page   = 'TOP-OF-PAGE'
          it_fieldcat              = fieldcatalog[]
          i_save                   = 'X'
        TABLES
          t_outtab                 = it_final[]
        EXCEPTIONS
          program_error            = 1
          OTHERS                   = 2.
    ENDFORM.                    "DISPLAY
    Form  TOP-OF-PAGE                                                 *
    ALV Report Header                                                 *
    FORM top-of-page.
    *ALV Header declarations
      DATA: t_header TYPE slis_t_listheader,
            wa_header TYPE slis_listheader,
            t_line LIKE wa_header-info,
            ld_lines TYPE i,
            ld_linesc(10) TYPE c,
            v_date1(10),
            v_date2(10).
    Title
      wa_header-typ  = 'H'.
      wa_header-info = 'B-17 BOND REGISTER - INDIGENOUS RAW MATERIALS'.
      APPEND wa_header TO t_header.
      CLEAR wa_header.
    Date
      wa_header-typ  = 'S'.
      wa_header-key = ' Report generated on Date: '.
      CONCATENATE  sy-datum+6(2) '.'
                   sy-datum+4(2) '.'
                   sy-datum(4) INTO wa_header-info.   "todays date
      APPEND wa_header TO t_header.
      CLEAR: wa_header.
    opening balance
      wa_header-typ  = 'S'.
      wa_header-key = ' Opening Amount: '.
      wa_header-info = gv_op_balance.   "Opening amount
      APPEND wa_header TO t_header.
      CLEAR: wa_header.
      CALL FUNCTION 'REUSE_ALV_COMMENTARY_WRITE'
        EXPORTING
          it_list_commentary = t_header.
        i_logo             = 'ENJOYSAP_LOGO'.
    ENDFORM.                    "top-of-page

  • How can i order a new printer head for my photoshop 7250e

    How can i order a new printer head for my photoshop 7250e  Is there a number i can ring to speak to someone or email address i can use or a web page where i can order one
    or a list of agents i can use to get it from
    Finding simple information seems impossible, no where does it mention spares or replacements 
    I have tried a lot of fault finding am convinced this is the problem  

    Hello NigelH1, 
    The Print Head for the Photosmart 7250  is not available outside HP.
    Please call HP Tech Support for further assistance.
    If you are in US , the toll free # is 1-800-474-6836 .
    If you are not in US , then log on to www.hp.com , at bottom-left corner there is a world map icon, click on it and then select the region you belong to, which would then provide support options for you for that region.
    Regards,
    Jabzi
    Give Kudos to say "thanks" by clicking on the "thumps Up icon" .
    Click "Accept as Solution" if it solved your problem, so others can find it.
    Although I am an HP employee, I am speaking for myself and not for HP.

  • Traffic lights in ALV list header

    how do i display traffic lights as icons in ALV list header. for example, in the code below, i want to display a green icon at the end of closed items and a red icon at the end of the open items:
                closed : 4 [green-icon]
                open   : 2  [red-icon]
    CLEAR header_alv_wa-info.
      header_alv_wa-key  = 'closed:'.
      header_alv_wa-info = gv_closed.
      header_alv_wa-typ  = 'S'.
      APPEND header_alv_wa TO headeralv.
      CLEAR header_alv_wa-info.
      header_alv_wa-typ  = 'S'.
      header_alv_wa-key  = 'open:'.
      header_alv_wa-info = gv_open.
      APPEND header_alv_wa TO headeralv.

    Hi,
    http://www.sapfans.com/forums/viewtopic.php?t=79424
    http://www.sapfans.com/forums/viewtopic.php?t=24512
    the above links will give u the code for the same..
    Regards,
    Aparna

  • Print head alignment keeps on getting worse and worse the more I try to "fix" it

    First off, I know that this question doesn't really belong in the mbp section, but since I am printing from one, I thought this would be the closest match.
    I have an Epson NX420 printer which came with my 2011 mbp 13in for free (err... $100 off the original $95ish to be exact). It will turn 3 years old in less than a month.
    This past week, I have had troubles printing "good" images, so I did the print head alignment on Epson Printer Utility 4, following the written directions. I printed something out, and it was still disgustingly off, so I repeated the process two more times, each time printing something different. The vertical alignment is fine, but the horizontal alignment seems to get worse and worse. One thin line will be split into two in some places, and one will be dotted while the other solid, and in the case of color, the two bands are different colors. Solids come out grainy.
    I don't want to waste any more paper and expensive ink for something that is not fixing itself. Since my mbp is still under Applecare warrenty, will Apple fix or trade my current printer for another one for free, or does Apple have nothing to do with printers other than its sale? If not, are there alternative ways to fix this problem? I am sure I am choosing the box without any bands at all and if there is I choose the lightest band-in-a-box and click realignment.
    Here is the recent printout of random lines and text, after three unsuccesful trials of print head alignment.

    This is a printer issue and it's only covered under the Epson Warranty Program, which is 1 year.  AppleCare has nothing to do with that.
    You'll probably have to replace the printer if the print heads cannot be replaced.  That's the issue when you buy an inkjet that has print heads that aren't part of the ink cartriges... when they go bad, they go bad and you're hosed.  If the issue persists after a print cartridge change, then it's definitely the heads.

  • INSTALLED NEW INK CARTRIDGE and cancelled the alignment PRINT HEAD IS STUCK

    Greeting everyone
    I just put a new color 57 HP ink cartridge  into my all in one 2210 printer & somehow I cancelled the alignment as it seemed not to be doing anything....and now it will not return the printer head and will do nothing.... how will I fix this?
    this is just a printer problem as the printer was working fine before I changed the ink.  My Dell inspiron 580  wi PC is working fine and I have been printing direct from my computer to printer every day until my goof up...... intel core (TM) i5 CPU @3.20 GHz 64 bit  8.00 GB RAM
    Thank You  Mary Svinth in Waldport Oregon Coast
    [Personal Information Removed]

    Hi - A couple of things to try:
    - Unplug the power from the back of the printer.
    - Open the top cover, and slide the carriage to the center.
    - Remove the cartridge and try reinstalling.  Make sure the ink cartridge snaps in and is firmly held by the carriage.
    - Plug the power cord back into the printer and power it on.
    If that doesn't work, try repeating the steps above, but this time, remove the USB cable, which will completely isolate the printer and narrow down the issue.
    Hope that helps.
    Say Thanks by clicking the Kudos thumbs up. Please mark the post that solves your problem as an Accepted Solution so other forum users can utilize the solution.
    I am an HP employee.

  • Since upgrading to Mountain Lion 10.8.2, I can no longer print head shot photos from CONTACTS.  Please assist.

    Before upgrading to Mountain Lion, I was able to print head shots - in ALPHABETICAL order, mind you - from Contacts.  Why do we not have this feature any more?  Please bring back the way it was!  Thank you!
    Issue printing from Contacts: can't print head shots and it's no longer in alphabetical order.
    Please don't tell me I can do this from iCloud, because it only prints one contact at a time.

    Click GO from Finder and hold down the Option key. You'll see the Library folder in the list. Or you can click GO  and select Go To Folder and type ~/Library. This will open the user\Library folder.

  • How can I control automatic print head cleaning every time my Officejet Pro 8500A Premium starts up?

    In general we really like our new Officejet, but we're very frustrated by the automated start up procedure.  Every time we turn it on it does a self check and then cleans the print heads.  It's bothersome for two reasons: 1) We want to print quickly, not wait for 5 minutes.  2) We're worried that all this cleaning is using up our valuable ink.
    We recently had to replace all the color print cartridges, and I think one cause for the other's depletion was all this cleaning.
    We're using HP cartridges.
    It's possible that this printer is intended for an office environment where it just stays on 24x7.   For our occasional use, we normally turn it on when we need it and turn it off when we're done. If the power consumption is low enough (less than 5 watts) I'd consider leaving it on as a possible work-around.
    I did my best to search FAQ and postings to see whether there was already an answer to this issue - but couldn't find one.
    This question was solved.
    View Solution.

    cattyprinter wrote:
    1st installation failed --waited 3 weeks to have another go --installed on line all working --So Notation said
    scans ok  fax set up ok .On start up IT goes thru ALIGNING PRINTHEAD  --not one here print done and 3 1/2 cartridges GONE .Tooooo BEEEEE expensive to use   Where is the users manual --?None only double side page of wire connections  --a book of one page english and balance in goobly **bleep** .Never again will I spend my measely pension on a HP printer  Who is going to replace my cartridges ? Try and have a telephone query  OH NO no speak only info email that says this is generated email with no info! Talk about easy money for rubbish --tell your mates HP is a NO GOER        -:manmad:
    There should have been a manual on the included CD.  You can also download a manual from HP here. 
    If you need to Contact HP you can find phone numbers here.
    Bob Headrick,  HP Expert
    I am not an employee of HP, I am a volunteer posting here on my own time.
    If your problem is solved please click the "Accept as Solution" button ------------V
    If my answer was helpful please click the "Thumbs Up" to say "Thank You"--V

  • Printing problem - HP Officejet Pro 8500 Wireless All-in-One Printer - printer head?

    I posted this elsewhere, but I think I posted it on the wrong Forum so I am posting it here now. I hope I did not do anything to upset anyone. I am new to this area, please forgive my clumsiness.
    I have a HP Officejet Pro 8500 Wireless All-in-One Printer. I've had my printer since December 2009 and no problems. I recently bought a new laptop with Windows 7 and had to go online to find the drivers that work for my printer. Windows 7 was not compatible with this printer.
    Also recently, I am having a problem with what I think may be the black printer head, but when I run diagnostic on it everything comes back saying it is fine. However the problem still exist. When printing the black color will become faded in some areas and in some lines will not only almost totally fade out, but will almost look italic.
    Can you tell me if this is the printer head and does it need replacing or is there another problem?
    SondraS

    Are you using genuine HP cartridges and not refilled or third-party cartridges?
    Print the Print Quality Diagnostic page from the setup menu/print report/ on the printer's front panel
    Are there any quality issues with this page?
    Although I am a HP employee, I am speaking on behalf of myself and not the company.

  • Is anyone having issues with ink leaking from the printer head area? hp officejet pro 8000

    HP Officejet Pro 8000 Wireless, Windows 7 64-bit.  Printer is leaking from the printer head area.  The problem doesn't seem to be coming from the heads but maybe another connection?????

    docrobin
    I would suggest you called into HP Technical Support for repair options as you may have a hardware issue.
    Here is the link to contact options for laptops purchased in the US.
    Here is the link to contact options for laptops purchased outside the US.
    Please feel free to re-post if you have any further questions or concerns.
    Please click the "Thumbs Up" on the bottom right of this post to say thank you if you appreciate the support I provide!
    Also be sure to mark my post as “Accept as Solution" if you feel my post solved your issue, it will help others who face the same challenge find the same solution.
    Dunidar
    I work on behalf of HP
    Find out a bit more about me by checking out my profile!
    "Customers don’t expect you to be perfect. They do expect you to fix things when they go wrong." ~ Donald Porter

  • HP Officejet Pro 8500 : Use scanner without print heads/cartridges

    Hello.
    I have a HP Officejet Pro 8500 (CB023A) that I bought specifically because of the automatic duplex scanner. Buying a scanner with automatic duplex instead of this multifunction printer was out of the question because the cheapest one costed over ten times more than this multifunction printer (and they still do).
    I can no longer afford to keep buying print heads and cartridges just to use the scanner, as this multifunction uses ink for scanning!!! But that is beside the point.
    I have read in other posts about taping sensors but I was thinking about going a little further and completely remove the printing part of the multifunction. Anyone knows if I can just disconnect the printing part from the circuit board? Or will I have to fiddle with software? Maybe some hidden option in the "Mfg Commands" (accessible by pressing * and # with the printer on) or some other hidden feature?
    Considering that this multifunction takes way too long to boot because of all the print head checking/cleaning/etc, with a little luck, without the printing part the boot time will decrease to almost nothing .
    Before I start disassembling I would appreciate some advice, specially if someone else has already tried it.
    Thank you in advance.

    Hello kamath27. Thank you for your reply.
    I apologize for not replying sooner but I wanted to try and disassemble the multifunction before replying instead of just replying with an acknowledge.
    Also, sorry for such a long post but I wanted to be as detailed as possible.
    However, before describing what I did and found, I want to clarify something.
    With the multifunction in the same condition it came from the factory, if I remove one print cartridge, or one is empty, the multifunction stops on boot with a message requesting to change the cartridge before continuing and there is no way to bypass it. When this message shows, pressing any button on the multifunction or the screen yields no result (there is no OK button displayed on the multifunction screen). It was always like this and firmware updates never solved it.
    And going to the printer control panel on the connected computer says that the printer is offline even if it is connected through USB and is displayed in device manager as a connected USB device. This is the reason why I had spent so much money buying ink that I do not use. I never print anything on this multifunction. All prints that the multifunction ever performed were a dozen or so of maintenance align and test pages.
    Now for what I did. I disassembled the multifunction just enough to take out the main circuit board, the wireless board, the buzzer and the door sensors. I set up the printer half and the scanner half side-by-side with the main circuit board in the middle, reconnected everything and turned it on in order to test if anything stopped working during disassembly. Everything was OK and the multifunction worked as normal (printed a test page and scanned it to the computer).
    Next, while facing the main board the same way it would be faced while mounted in the multifunction, I started disconnecting the connectors (except the ones that belong to the scanner half) one by one from left to right in the following fashion: With the multifunction OFF, I disconnected one connector, turned the multifunction on, waited for any message or the main screen, tried to print a test page and then scan it, and finally disconnected the multifunction, reconnected the connector and moved on to the next one.
    The results were:
    - disconnected the tray feeding sensor -> Allows to boot with a paper jam message that can be bypassed with an OK on the screen. Can not print because of the alleged paper jam but can scan.
    - disconnected the pump -> Allows to boot but a message keeps popping about pump motor stalled. Can be bypassed with an OK but pops right back and all jobs get aborted. Can not print or scan.
    - disconnected the printer motor -> Oddly, no messages. Allows to boot and scan but not print. This was strange because when trying to print there is no message in the printer and the software on the PC only said the printer was busy. I would think the printer would eventually display a message saying the print carriage was jammed or something but nothing happened after 10 minutes. I might test again later as one test may be interfering with the next.
    - disconnected the print cartridge door sensor -> Stops on boot with a message to close the door. Does not allow to print or scan.
    - disconnected the print cartridges connector -> Stops on boot with message to replace cartridges. Does not allow to print or scan.
    - disconnected the print heads connector -> On boot briefly displays a screen with the image of the power button and the code "C00E0060" below. Then the screen turns white and all buttons on the multifunction start blinking. It is as described here but resetting the multifunction, reconnecting the connector and turning it on took it back to operational condition.
    - disconnected everything except for the scanner connectors and the tray and door sensors - Gives the exact same behaviour as the previous test (code "C00E0060").
    So, from the tests it seems that I can not use the scanner if anything from the printer half is disconnected. Any ideas on how to circumvent this, if possible?
    Thank you.

  • 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!

Maybe you are looking for

  • Youtube keeps crashing

    I just purchased a new Dell Inspiron One2320 today. After Installing Firefox and the latest version of flash, I went to Youtube to try it out. Right away, videos started to stall, and my computer would freeze for about 2 minutes. Soon it got so bad t

  • I want a last update of the extension developer toolbox for dreamweaver cs5.5

    I have an older version of developer toolbox that I use with dreamweaver cs3. Where to download a new version for dreamweaver cs5.5

  • Schedule Programming (Jobs)

    Hi What is Schedule Programming (Jobs?) How to set the Schedule Programming (Jobs) please give me the detailed program Thanks Mahesh

  • PARSE_APPLICATION_DATA Error during XML  error ID: CX_ST_DESERIALIZATION_ER

    Hi All,           Iam Getting the error for Parse Application Data -error ID: CX_ST_DESERIALIZATION_ERROR;  Pls check the log file.. xml version="1.0" encoding="UTF-8" standalone="yes" ?> - <!--  Call Inbound Proxy   --> - <SAP:Error xmlns:SAP="http:

  • Videos converted to iPod with itunes lack audio component

    I have a 4 GB nano and have downloaded the instruction manual. One section describes how to use iTunes convert movies to a format acceptable to the nano. When I follow this method, the converted video has no soundtrack. Has anyone else tried converti