How to replace Document Feeder Tray on ImageClass D480

Part of my document feeder tray on my ImageClass D480 snapped off. I need to replace it. So, I ordered the part for less than 20 from Canon. However, I noticed just now there's no simple way to unattach or reattach it. I called Canon tech support and they said they "DON'T" provide any service guide or sheets to help consumers. Rep said the sales clerk should've told me that. She didn't though. Tech support said I should bring part and printer to local service place, which I won't because it won't be free and will be outrageously priced to just attach outer part. Does anyone know how I can do this myself or where I can download service manual? It's crazy! You can buy a new one for $150. They'll charge me at least $75 to look at it. I appreciate anyone's help.
Thanks,
Steve

Hi Lori,
Thanks so much for replying.  I tried to follow your advice but I might not have followed your steps exactly?  I went to Custom Scan, clicked on Options, selected Show Scanner's Native Interface, cliked OK, and then this is a screenshot of what I'm seeing (nothing that allows me to select feeder tray).  Are you sure it can be done?  Thanks!  Andy

Similar Messages

  • What does the automatic document feeder tray do?how to use it in hp photosmart 7510

    wht is the automatic document feeder tray for? how to use it?

    The ADF is used to automatically feed a number of pages for scanning, copying or faxing.  Paper is loaded into the ADF with the printed side facing up.  When you then copy (or scan or fax) the pages will be automatically pulled into the scanner mechanism one at a time and then deposited in the output tray. 
    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

  • Hp officejet pro 8600 plus, document feed tray, I get streaks on copies.

    When I copy from the document feed tray, I get streaks down the centr of the paper, I cleaned the printheads, and cleaned the rollers, I don't get the streak down the center anymore, but I still get a line down the right side of the paper. What other steps can I take?

    Hi there, Here are the steps for your issues: 1) Close down the scanner lid2) Power down the printer3) With the scanner lid still close, power up your unit4) Feed a paper through the feeder and do a copy job5) Place the printed page on your feeder glass, check on the location of the vertical line with respect to your feeder glass. Check if there is any stain or dust on that area, and use a cloth to wipe it off. Using a torch light would help you in finding the stain/ dust.6) Perform another copy via the feeder. Let me know if this helps

  • LaserJet Pro MFP M127fw docuement feeder tray won't recognize paper in feeder tray

    I just got this printer Friday.  I have tried scanning two pages and The document feeder tray does not recognize that there is paper in the document feeder. Same  thing happens when I try copying. Thanks.

    Welcome to the HP Forums Laine2014,
    I see by your post that the ADF isn't pulling in the paper to copy or scan.
    I can help you with this issue.
    I would do a hard reset to see if that will resolve the issue.
    Leave the printer on and unplug the power cable from the printer and wall outlet for 30-60 seconds.
    Then reconnect the power cable to the printer and wall outlet rather than a surge protector.
    This ensures the printer is receiving full power and may help this situation.
    I have provided a document to go through the steps to see if it will help resolve this issue.
    'Document feeder mispick' Message Displays on the Control Panel and the ADF Does Not Pick Up Paper o...
    If you need further assistance, let me know.
    Have a nice day!
    Thank You.
    Please click “Accept as Solution ” if you feel my post solved your issue, it will help others find the solution.
    Click the “Kudos Thumbs Up" on the right to say “Thanks” for helping!
    Gemini02
    I work on behalf of HP

  • How to replace document edit-properties buttons

    We have replaced the "Edit Properties" ribbon button with the following element XML:
    <?xml version="1.0" encoding="utf-8"?>
    <Elements xmlns="http://schemas.microsoft.com/sharepoint/">
    <CustomAction
    Sequence="20"
    Location="CommandUI.Ribbon"
    RegistrationId="101"
    RegistrationType="List"
    Title="New EditProperties">
    <CommandUIExtension>
    <CommandUIDefinitions>
    <CommandUIDefinition Location="Ribbon.Documents.Manage.EditProperties">
    <Button Id="Ribbon.Documents.Manage.EditProperties.ReplacementButton"
    Command="MyNewButtonCommand"
    Image16by16="/_layouts/$Resources:core,Language;/images/formatmap16x16.png" Image16by16Top="-128" Image16by16Left="-224"
    Image32by32="/_layouts/$Resources:core,Language;/images/formatmap32x32.png" Image32by32Top="-128" Image32by32Left="-96"
    LabelText="$Resources:core,ButEditProperties;"
    ToolTipTitle="$Resources:core,ButEditProperties;"
    ToolTipDescription="$Resources:core,cui_STT_ButEditDocumentProperties;"
    TemplateAlias="o1"
    />
    </CommandUIDefinition>
    </CommandUIDefinitions>
    <CommandUIHandlers>
    <CommandUIHandler Command="MyNewButtonCommand" CommandAction= "Javascript:
    function demoCallback(dialogResult, returnValue)
    SP.UI.Notify.addNotification('Operation Successful!');
    SP.UI.ModalDialog.RefreshPage(SP.UI.DialogResult.OK);
    var ctx = SP.ClientContext.get_current();
    var items = SP.ListOperation.Selection.getSelectedItems(ctx);
    var myItems = '';
    var k;
    for (k in items)
    myItems += '|' + items[k].id;
    var options = {
    url: '/_layouts/DCMLibrarySettings/LibraryDcmSetting.aspx?List={01610989-0039-4cbe-9890-38d685af0334}',
    tite: 'Set Document Properties',
    allowMaximize: true,
    showClose: false,
    width: 800,
    height: 600,
    dialogReturnValueCallback: demoCallback };
    SP.UI.ModalDialog.showModalDialog(options);" />
    </CommandUIHandlers>
    </CommandUIExtension>
    </CustomAction>
    </Elements>
    However, we are unsure how to repeat this for the following document "Edit properties" option:
    Can anyone tell us where to find the XML definition for this please?

    Hi,
    Here is a workaround for your reference:
    We can add a new ECB Menu use the following XML definition.
    <?xml version="1.0" encoding="utf-8"?>
    <Elements xmlns="http://schemas.microsoft.com/sharepoint/">
    <CustomAction
    Id="ReplaceEditProperties"
    RegistrationType="List"
    RegistrationId="101"
    ImageUrl="/_layouts/images/edititem.gif"
    Location="EditControlBlock"
    Sequence="220"
    Title="Replace Edit Properties" >
    <UrlAction Url="javascript:alert('Test')"/>
    </CustomAction>
    </Elements>
    Then hide the old "Edit Properties" option using CSS, add the following Style into a Content Editor Web Part.
    <style>
    LI[text='Edit Properties'] {
    DISPLAY: none !important
    </style>
    More information:
    http://www.thespgeek.com/2011/01/how-to-add-custom-menu-item-in.html
    Best Regards,
    Dennis Guo
    TechNet Community Support
    Please remember to mark the replies as answers if they help, and unmark the answers if they provide no help. If you have feedback for TechNet Support, contact
    [email protected]

  • How to Replace Line feed

    Hi All,
            i want to replace a line feed which is shown as ## in debug mode with space..
    Though i have tried replacing it by giving hexadecimal value of # but still its not gettign replaced.
    So how do i replace these occurences of line feed in the string which i am using..
    Regards,
    Syed

    Hi try this way :
    data: value type string....
    data: lv_feed type c value CL_ABAP_CHAR_UTILITIES=>CR_LF.
    replace all occurrences of lv_feed in value with space.

  • How do I get MFP M476dn to scan from the document feeder from the computer?

    How do I get my HP Color LaserJet MFP M476dn to scan from the document feeder when initiated from the computer? The printer will scan from the document feeder if it is initiated from the small screen on the printer, however when I try to initiate from the computer it scans a blank page. The printer acknoledges that the document feeder is loaded.

    To get your issue more exposure I would suggest posting it in the commercial forums since this is a commercial product. You can do this at Commercial Forums.
    I hope this helps!
    R a i n b o w 7000I work on behalf of HP
    Click the “Kudos Thumbs Up" at the bottom of this post to say
    “Thanks” for helping!
    Click “Accept as Solution” if you feel my post solved your issue, it will help others find the solution!

  • How to replace a field's search help of DDIC in FPM feeder class?

    Hi All,
    I want to replace a field's search help in DDIC structure, for an example, in structure HCMT_BSP_PA_XX_R0009, the field BANKL(Bank Keys) has a search help named 'H_BANKL', I want to replace this search help with other one such as 'H_BANKEY' in the FPM feeder class CL_HRESS_PER_DETAIL, I redefined such method:
    method if_fpm_guibb_form~get_definition.
    field-symbols: <fs_field_description> like line of et_field_description.
    call method super->if_fpm_guibb_form~get_definition
    importing
    es_message = es_message
    eo_field_catalog = eo_field_catalog
    et_field_description = et_field_description
    et_action_definition = et_action_definition
    et_special_groups = et_special_groups
    ev_additional_error_info = ev_additional_error_info.
    read table et_field_description assigning <fs_field_description> with key name = 'BANKL'.
    set search help name of field 'bank key'
    if <fs_field_description> is assigned.
    <fs_field_description>-ddic_shlp_name = 'H_BANKEY'
    endif.
    endmethod.
    I test it and found the search help window was replaced indeed, but all the value of import/export parameters in the new search help was lost, it means, the value of import paramer BANKS(Bank country) and the export parameter BANKA(bank name) were lost. Only the value of BANKL itself can be returned by the new search help window. Can you give me some suggestions about how to maintain the link( value exchange) between structure HCMT_BSP_PA_XX_R0009 and dynamically defined search help 'H_BANKEY' in FPM feeder class?
    I tried to use sap memory ID but it doesn't works well.

    This question was answered at [Webdynpro Forum|how to replace a field's search help of DDIC in FPM feeder class?;:
    That is because for the import and export of DDIC Search help values to work in WDA, not in FPM layer.Feeder Class can do nothing about it.

  • How much cost for gsm iphone 5 black replacement sim card tray?

    How much cost for gsm iphone 5 black replacement  sim card tray?

    Ask Apple. We are but simple users here, and have no control over prices charged in whatever country you are in.

  • Broken document feeder on LaserJet Pro 200 Color MFP M276

    I love this LaserJet Pro 200 Color MFP M276 printer. A few weeks ago, it fell onto the floor from a low platform. The top part with the automatic document feeder became completely separated from the rest of the unit. A few small pieces of plastic that hold it upright broke off. I have saved those pieces.
    The printer still works perfectly as a printer and scanner. However, the automatic document feeder does not work at all now. I know there is some sort of wire that connects it to the main body of the printer so that it has power. But, I don't know how to re-connect that wire so that the automatic document feeder will work again.
    Please help with this. I hope the repair is simple and inexpensive. Thank you.
    Doug

    Hi @DougSF ,
    I see that a part is broken for the ADF. I can help you with this.
    Please call our technical support to inquire about a repair or a replacement printer, at 800-474-6836. If you live outside the US/Canada Region, please click the link below to get the support number for your region.
    Contact HP.
    Have a great day!
    Thank You.
    Please click “Accept as Solution ” if you feel my post solved your issue, it will help others find the solution.
    Click the “Kudos Thumbs Up" on the right to say “Thanks” for helping!
    Gemini02
    I work on behalf of HP

  • HP Officejet Pro L7780 - Document feeder not grabbing pages. The feeder is not feeding pages through

    I have an Officejet L7780 that is not feeding through the document feeder. It gets stuck with the first page, and tries to roll in the page but it gets stuck with it.  I've not been able to make it feed through, but I can grab a portion of the page that is stuck and pull out ok.  Looks like the rollers are not working well anymore.  Is this something that can be corrected/fixed/replaced?
    This question was solved.
    View Solution.

    Hello,
    Make sure you are using supported media (weight/type).  If you use your ADF frequently, you may have some buildup on the pickup rollers.  I've included a link below that describes how to clean those and how to check to ensure that there are no paper pieces stuck under the ADF hood that would prevent them from pulling correctly.  Good Luck!
    http://h10025.www1.hp.com/ewfrf/wc/document?docname=c02019585&cc=us&lc=en&dlc=en&product=2512010&tmp...
    I worked for HP but my posts and replies are my own....Thank you!
    *Say thanks by clicking the *Kudos!* which is on the left*
    *Make it easier for other people to find solutions, by marking my answer with (Accept as Solution) if it solves your issue.*

  • Photosmart 7510 Automatic Document Feeder. will it copy a doublesided odd size?

    I have a Photosmart 7510 .  I have never used the Automatic Document Feeder and could not find anywhere online how to use it.  I want to know if I can put in a 5 1/2 x 5 1/2 picture from a funeral and have it copy both sides so it will look like a card.. all on one like the original.
    This question was solved.
    View Solution.

    specifications
    Hi grammafaith,
    For copying the size that you want through the ADF is not support. According to the specifications the largest photo tray size is 5x7, and using the main ADF would cause a paper jam.
    I have included the document here for 'Copying a Multipage Original'. I have tried steps on the 7510 that I do have and was able to successfully copy on both sided.
    I have also included those steps here for you.
    1) Place the item on the scanner glass
    2) Press the Copy button
    3) Press the Settings button in the bottom left
    4) Make sure that 2 sided copy is turned ON
    5) Press Start
    6) Follow the on screen instructions of loading the second page/ or flip the paper over and continue
    Please let me know if this has successfully worked for you, thank you.
    I worked on behalf of HP

  • Manual feed tray 1 on printer HP 4015TN does not print unless I hit the OK button.

    I have an HP 4015 Tn which was working fine up until 3-4 weeks ago. The problem is when I send a document to the manual-feed tray one, it flashes the "Attention" red indicator and I have to hit OK button on the printer for the document to print.My printer is setup for envelope, letterhead in tray 1, letter plain in tray 2 and legal in tray 3.My PC is a 64 bit running Windows 7 with the latest updates.Any suggestions in how to correct this problem will be greatly appreciated.Thank you

    Hello l_j,  Welcome to the HP Forums.  I see that you're having an issue with blank pages when attempting to print with black ink. Please click on the following link that deals with Printer Prints a Blank Page or Does Not Print Black or Color Ink for the HP Photosmart 5520 and Deskjet Ink Advantage 5520 e-All-in-One Printer Series. If the troubleshooting does not help resolve your issue, I would then suggest contacting HP's Technical Support to see about further options for you. , : click here.  Thanks for your time. Cheers, 

  • Scanning multiple pages into one document with an automatic document feeder

    when using automatic document feeder to scan in multiple pages - using the Image Capture app, this process does not work for more than 2 pages. However works perfectly in PC environment.
    Using a MacBook Pro with 10.8.4 and a Lexmark Interpret 405S All In One Scanner.
    Is there any other all in one device that can perform this function in a Mac environment?
    Please advise.

    Hi @FentyFly ,
    I see by your post that you would like to know how to scan multiple pages into one file. I would like to help you out today.
    From the HP Scan Software, click on the link for Advanced Settings, then uncheck Create a separate file for each scanned page.
    Here is a URL for how to scan and change the settings. Just select your operating system.
    Scan.
    What operating system are you using? How to Find the Windows Edition and Version on Your Computer.
    If you need further assistance, just let me know.
    Have a great day!
    Thank You.
    Please click “Accept as Solution ” if you feel my post solved your issue, it will help others find the solution.
    Click the “Kudos Thumbs Up" on the right to say “Thanks” for helping!
    Gemini02
    I work on behalf of HP

  • Scanner and Software for Lion with document feeder to Scan thousands of photos

    I have an older HP PhotoSmart Print 7280 that can scan photos.  On the PC HP had software that would allow you to scan through the document feeder and batch correct/crop the photos before creating files.  This printer/scanner doesn't have HP software for Lion.  I am looking for a Scanner or Software solution that will allow me to scan through the feeder and to crop in batches.  I have used Image Capture on the Mac to scan.  It work great to crop and edit photos if you put them them on the flatbed.  You can load 3 photos and it will allow you to crop them and to make them individual files.  However if you use the "feeder" setting it treats what you are scanning as a document and you don't have the ability to edit/crop before accepting the files.  So what you get are images that have a lot of white space around them.
    I am looking for a solution that would allow me to do this in a quicker manner than 3 photos at a time on the flatbed.  I Don't rule out buying a new all in one printer to do this.  I also looked into other scanning software like VueScan, but it doesn't appear to have a batch edit/crop mode after running through the feeder.
    Any advice on how to attack this would be great.
    Thanks

    tk3900 wrote:
    what you get are images that have a lot of white space around them.
    That should be easy to fix with something like SintraWorks PDF Nomand or PDF Clerk Pro.

Maybe you are looking for

  • Is there a way to link two apple accounts so they can share stuff in their itunes?

    Stuff meaning music, apps because me and my mom started our accounts and started buying stuff with our own apple accounts. ( I have an ipod and she has an ipad) so we would like to buy some music for us to share. However she is paying with her accoun

  • ".alias" file in LV 8.2 DSC - What is in there and why does it change?

    Why does the alias file get updated every time I open and close the associated project WITHOUT SAVING ANYTHING ? Repeat: I did not save anything. What is being saved if I did not change anything? Ben Ben Rayner I am currently active on.. MainStream P

  • How to edit Table RSR_PREC_TIMEOUT

    Hello guys, we are using broadcaster and want to set a timeout for workbook calculation. To do this SAP recommends to enter workbook ID and the Timeout time in minutes into table RSR_PREC_TIMEOUT. In se16 i can do this to enter a value. But in Accept

  • Filter in Attribute List

    Hi all, I have a requirement regarding Filters in Attribute Lists. We want to provide an Attribute List in english. But Data Sources and marketing attributes are only displayed in German. Even if the Filter is a Standard SAP-Field like City or Countr

  • Google Calendar tasks aren't displaying correctly

    When I display the Google Calendar the task box to the right of the display shows the task details vertically - one letter on each line. The calendar displays correctly on other browsers.