How to connect PM order to e-mail .

HI Friends,
I want to create the e-mail/ message whenever my PM order triggers from maintenence plan.
client wants to shoot the e-mail/ mobile message 48 hurs  before due date.
Plz help
Regards
Shashikant

hi,
whenever PM order triggers we can see with T code IW39.  But I want to alert external service agency tthrough e-mail or mobil message whose service i want to avail for this maintenance order.
Regards,
Shashikant

Similar Messages

  • How to send purchase order via e-mail.

    Please could someone let me know how to send purchase order via e-mail.
    I am an BC.
    e-mailing is functionning however I am not very familiar in settings for MM

    No, you do not need to touch ME_PRINT_PO. You need to put code before and after ME_PRINT_PO in the print program.
    Step 1 - Copy the standard print program SAPFM06P to make a Z version, lets call it ZSAPFM06P
    Step 2 - Copy include FM06PE02 to make a Z version, lets call that ZFM06PE02.
    Step 3 - ZSAPFM06P change the statement "Include FM06PE02" to read "Include ZFM06PE02".
    Step 4 - In include ZFM06PE02 you will find a subroutine called "ENTRY_NEU". In this subroutine you will see it first calls ME_READ_PO_FOR_PRINTING then calls ME_PRINT_PO. Before it calls ME_PRINT_PO just put:
    l_nast-nacha = 1.
    CLEAR l_nast-dimme.
    This means that ME_PRINT_PO will not e-mail, it will create a spool request.
    Step 5 - Still in ZFM06PE02, after ME_PRINT_PO has been called, add new code. First check that ent_retco EQ 0. If it does not then exit.
    Step 6 - Get the spool ID created by ME_PRINT_PO by either moving sy-msgv1 to a variable or select from NAST.
    Step 7 - Call function CONVERT_OTFSPOOLJOB_2_PDF using the spool ID from step 6, and put the result from table PDF into an internal table you can use later. ALso store the export variable pdf_bytecount, you will need it later.
    Step 8 - Call function SX_TABLE_LINE_WIDTH_CHANGE using the table from step 7 as content_in and put the results from content_out into a new internal table.
    Step 9 - Add some text into a internal table of type solisti1, this will be the body text of the e-mail.
    Step 10 - Add whatever receivers you want into an internal table of type somlreci1. If you just want it to go to the address that the PO would have gone to anyway, select the e-mail address from ADR6 where the address number = l_doc-xekko-adrnr, that is the data from the PO.
    Step 11 - Populate an internal table of type sopcklsti1 with data relevant to your PDF table from step 8 and the text table from step 9. You will have to put the size of the PDF from step 7 (pdf_bytecount) on the PDF line and the size of the text will be the number of lines of text * 255.
    Step 12 - Add info to a structure of type sodocchgi1. You can add the e-mail title in here, field obj_descr. Also add the size of the PDF and the size of the text from step 12 into doc_size, and give the doc a name in field obj_name. This can be anything, ZPDFPO for example.
    Step 13 - Call SO_DOCUMENT_SEND_API1 using the tables from steps 8, 9, 10 and 11 and the structure from step 12. You can amend the sending e-mail also. Set commit_work to space.
    Step 14 - That is all you need, but I actually call function RSPO_R_RDELETE_SPOOLREQ to delete the spool request created in step 4, then call NAST_PROTOCOL_UPDATE to add some more messages to the processing log of the PO.
    That is all.

  • How to connect my Macbook with an ipad mini in order to have an access to the internet on my iPad?

    Dear fellows, I am having a trouble in how to connect my mac with an iPad mini in order to have an access to the internet.

    If you are attempting to share your iPad mini's cellular data connection with the MacBook, please check out the following Apple Support article for additional details on how to do so.

  • How can I change order of email accounts in Mail on Mountain Lion?

    In Mail on Mountain Lion I have only two email accounts, but the wrong one has been set as default (because it was an account I had overlooked and added later). I cannot find how to change the order of the email accounts. One possibility is to delete the non-default account and re-add it, so that it becomes the most recent and thus (presumably) the default, but this would delete all the email messages in that account, which I cannot afford.
    It's a great flaming pain to try to remember each email I write to select the second account option, and yet I can find no way to change email account order---not in Mail and not in System Preferences. Dragging them certainly does not work.
    Can Apple have really missed this? Is there any solution?

    Comfortable with terminal...know how to edit using TextEdit:
    Open up a Terminal and use the following commands to change your Mail.app preferences file to an XML format – the default format is binary, and you can't edit this.
    cd ~/Library/Preferences
    plutil -convert xml1 com.apple.mail.plist
    Then, open this file com.apple.mail.plist with a text editor of your choice, preferably one that highlights XML syntax, but you can also use TextEdit:
    open -a "TextEdit" com.apple.mail.plist
    Now, look for the key called MailAccounts. It's value is an array, with dict children. Here, you'll find all your mail accounts in the order they were created in.
    You can now manually move these dict children around. Save the XML file and reopen Mail. Now, your Mail account order will be changed.

  • How to accept purchase order in mail

    Hi Experts,
    We need to accept purchase order in mail, without login into system.
    Is there any way to do it.
    Thanks
    R.Sundaravel

    I believe this can be achieved thru workflow notifications and inbound response processing. Pl see these MOS Docs
    221268.1 - How To Make Use Of The E-Mail Function In The Purchase Order/Requisition Approval Form
    267159.1 - 11.5.x Upgrade to 11.5.9 -- Changes to Links in Requires Approval Notifications
    352594.1 - Email Approval Notifications In 11.5.10 are Different From 11.5.9 - How to force users to login to system?
    268085.1 - Configuring the Oracle Workflow 2.6/11i.OWF.H Java-based Notification Mailer with Oracle Applications 11i
    and the necessary PO and Workflow Guides at http://www.oracle.com/technology/documentation/applications.html
    HTH
    Srini

  • How can I send purchase order through SAP mail ?

    How can I send purchase order through SAP mail ? Can any one explain whts the NACE settings?

    just  do it as  <b>Anji reddy</b> said to you   ...or else  ...  in the purchase  order trascation  ...print it  ... so that  it will generate the spool request  for that  purchase  order  ....
    so the   the belwo program is for sending <b>the Spool   Request  data   as  Email  to  any Email id  ...</b>
    The code below demonstrates how to retrieve a spool request and email it as a PDF document. Please note for the below program to process a spool request the program must be executed in background otherwise no spool request will be created. Once you have had a look at this there is an modified version of the program which works in both background and foreground. Also see transaction SCOT for SAPConnect administration.
    *& Report  ZSPOOLTOPDF                                                 *
    *& Converts spool request into PDF document and emails it to           *
    *& recipicant.                                                         *
    *& Execution                                                           *
    *& This program must be run as a background job in-order for the write *
    *& commands to create a Spool request rather than be displayed on      *
    *& screen                                                              *
    REPORT  zspooltopdf.
    PARAMETER: p_email1 LIKE somlreci1-receiver
                                        DEFAULT '[email protected]',
               p_sender LIKE somlreci1-receiver
                                        DEFAULT '[email protected]',
               p_delspl  AS CHECKBOX.
    *DATA DECLARATION
    DATA: gd_recsize TYPE i.
    * Spool IDs
    TYPES: BEGIN OF t_tbtcp.
            INCLUDE STRUCTURE tbtcp.
    TYPES: END OF t_tbtcp.
    DATA: it_tbtcp TYPE STANDARD TABLE OF t_tbtcp INITIAL SIZE 0,
          wa_tbtcp TYPE t_tbtcp.
    * Job Runtime Parameters
    DATA: gd_eventid LIKE tbtcm-eventid,
          gd_eventparm LIKE tbtcm-eventparm,
          gd_external_program_active LIKE tbtcm-xpgactive,
          gd_jobcount LIKE tbtcm-jobcount,
          gd_jobname LIKE tbtcm-jobname,
          gd_stepcount LIKE tbtcm-stepcount,
          gd_error    TYPE sy-subrc,
          gd_reciever TYPE sy-subrc.
    DATA:  w_recsize TYPE i.
    DATA: gd_subject   LIKE sodocchgi1-obj_descr,
          it_mess_bod LIKE solisti1 OCCURS 0 WITH HEADER LINE,
          it_mess_att LIKE solisti1 OCCURS 0 WITH HEADER LINE,
          gd_sender_type     LIKE soextreci1-adr_typ,
          gd_attachment_desc TYPE so_obj_nam,
          gd_attachment_name TYPE so_obj_des.
    * Spool to PDF conversions
    DATA: gd_spool_nr LIKE tsp01-rqident,
          gd_destination LIKE rlgrap-filename,
          gd_bytecount LIKE tst01-dsize,
          gd_buffer TYPE string.
    * Binary store for PDF
    DATA: BEGIN OF it_pdf_output OCCURS 0.
            INCLUDE STRUCTURE tline.
    DATA: END OF it_pdf_output.
    CONSTANTS: c_dev LIKE  sy-sysid VALUE 'DEV',
               c_no(1)     TYPE c   VALUE ' ',
               c_device(4) TYPE c   VALUE 'LOCL'.
    *START-OF-SELECTION.
    START-OF-SELECTION.
    * Write statement to represent report output. Spool request is created
    * if write statement is executed in background. This could also be an
    * ALV grid which would be converted to PDF without any extra effort
      WRITE 'Hello World'.
      new-page.
      commit work.
      new-page print off.
      IF sy-batch EQ 'X'.
        PERFORM get_job_details.
        PERFORM obtain_spool_id.
    *** Alternative way could be to submit another program and store spool
    *** id into memory, will be stored in sy-spono.
    *submit ZSPOOLTOPDF2
    *        to sap-spool
    *        spool parameters   %_print
    *        archive parameters %_print
    *        without spool dynpro
    *        and return.
    * Get spool id from program called above
    *  IMPORT w_spool_nr FROM MEMORY ID 'SPOOLTOPDF'.
        PERFORM convert_spool_to_pdf.
        PERFORM process_email.
        if p_delspl EQ 'X'.
          PERFORM delete_spool.
        endif.
        IF sy-sysid = c_dev.
          wait up to 5 seconds.
          SUBMIT rsconn01 WITH mode   = 'INT'
                          WITH output = 'X'
                          AND RETURN.
        ENDIF.
      ELSE.
        SKIP.
        WRITE:/ 'Program must be executed in background in-order for spool',
                'request to be created.'.
      ENDIF.
    *       FORM obtain_spool_id                                          *
    FORM obtain_spool_id.
      CHECK NOT ( gd_jobname IS INITIAL ).
      CHECK NOT ( gd_jobcount IS INITIAL ).
      SELECT * FROM  tbtcp
                     INTO TABLE it_tbtcp
                     WHERE      jobname     = gd_jobname
                     AND        jobcount    = gd_jobcount
                     AND        stepcount   = gd_stepcount
                     AND        listident   <> '0000000000'
                     ORDER BY   jobname
                                jobcount
                                stepcount.
      READ TABLE it_tbtcp INTO wa_tbtcp INDEX 1.
      IF sy-subrc = 0.
        message s004(zdd) with gd_spool_nr.
        gd_spool_nr = wa_tbtcp-listident.
        MESSAGE s004(zdd) WITH gd_spool_nr.
      ELSE.
        MESSAGE s005(zdd).
      ENDIF.
    ENDFORM.
    *       FORM get_job_details                                          *
    FORM get_job_details.
    * Get current job details
      CALL FUNCTION 'GET_JOB_RUNTIME_INFO'
           IMPORTING
                eventid                 = gd_eventid
                eventparm               = gd_eventparm
                external_program_active = gd_external_program_active
                jobcount                = gd_jobcount
                jobname                 = gd_jobname
                stepcount               = gd_stepcount
           EXCEPTIONS
                no_runtime_info         = 1
                OTHERS                  = 2.
    ENDFORM.
    *       FORM convert_spool_to_pdf                                     *
    FORM convert_spool_to_pdf.
      CALL FUNCTION 'CONVERT_ABAPSPOOLJOB_2_PDF'
           EXPORTING
                src_spoolid              = gd_spool_nr
                no_dialog                = c_no
                dst_device               = c_device
           IMPORTING
                pdf_bytecount            = gd_bytecount
           TABLES
                pdf                      = it_pdf_output
           EXCEPTIONS
                err_no_abap_spooljob     = 1
                err_no_spooljob          = 2
                err_no_permission        = 3
                err_conv_not_possible    = 4
                err_bad_destdevice       = 5
                user_cancelled           = 6
                err_spoolerror           = 7
                err_temseerror           = 8
                err_btcjob_open_failed   = 9
                err_btcjob_submit_failed = 10
                err_btcjob_close_failed  = 11
                OTHERS                   = 12.
      CHECK sy-subrc = 0.
    * Transfer the 132-long strings to 255-long strings
      LOOP AT it_pdf_output.
        TRANSLATE it_pdf_output USING ' ~'.
        CONCATENATE gd_buffer it_pdf_output INTO gd_buffer.
      ENDLOOP.
      TRANSLATE gd_buffer USING '~ '.
      DO.
        it_mess_att = gd_buffer.
        APPEND it_mess_att.
        SHIFT gd_buffer LEFT BY 255 PLACES.
        IF gd_buffer IS INITIAL.
          EXIT.
        ENDIF.
      ENDDO.
    ENDFORM.
    *       FORM process_email                                            *
    FORM process_email.
      DESCRIBE TABLE it_mess_att LINES gd_recsize.
      CHECK gd_recsize > 0.
      PERFORM send_email USING p_email1.
    *  perform send_email using p_email2.
    ENDFORM.
    *       FORM send_email                                               *
    *  -->  p_email                                                       *
    FORM send_email USING p_email.
      CHECK NOT ( p_email IS INITIAL ).
      REFRESH it_mess_bod.
    * Default subject matter
      gd_subject         = 'Subject'.
      gd_attachment_desc = 'Attachname'.
    *  CONCATENATE 'attach_name' ' ' INTO gd_attachment_name.
      it_mess_bod        = 'Message Body text, line 1'.
      APPEND it_mess_bod.
      it_mess_bod        = 'Message Body text, line 2...'.
      APPEND it_mess_bod.
    * If no sender specified - default blank
      IF p_sender EQ space.
        gd_sender_type  = space.
      ELSE.
        gd_sender_type  = 'INT'.
      ENDIF.
    * Send file by email as .xls speadsheet
      PERFORM send_file_as_email_attachment
                                   tables it_mess_bod
                                          it_mess_att
                                    using p_email
                                          'Example .xls documnet attachment'
                                          'PDF'
                                          gd_attachment_name
                                          gd_attachment_desc
                                          p_sender
                                          gd_sender_type
                                 changing gd_error
                                          gd_reciever.
    ENDFORM.
    *       FORM delete_spool                                             *
    FORM delete_spool.
      DATA: ld_spool_nr TYPE tsp01_sp0r-rqid_char.
      ld_spool_nr = gd_spool_nr.
      CHECK p_delspl <> c_no.
      CALL FUNCTION 'RSPO_R_RDELETE_SPOOLREQ'
           EXPORTING
                spoolid = ld_spool_nr.
    ENDFORM.
    *&      Form  SEND_FILE_AS_EMAIL_ATTACHMENT
    *       Send email
    FORM send_file_as_email_attachment tables it_message
                                              it_attach
                                        using p_email
                                              p_mtitle
                                              p_format
                                              p_filename
                                              p_attdescription
                                              p_sender_address
                                              p_sender_addres_type
                                     changing p_error
                                              p_reciever.
      DATA: ld_error    TYPE sy-subrc,
            ld_reciever TYPE sy-subrc,
            ld_mtitle LIKE sodocchgi1-obj_descr,
            ld_email LIKE  somlreci1-receiver,
            ld_format TYPE  so_obj_tp ,
            ld_attdescription TYPE  so_obj_nam ,
            ld_attfilename TYPE  so_obj_des ,
            ld_sender_address LIKE  soextreci1-receiver,
            ld_sender_address_type LIKE  soextreci1-adr_typ,
            ld_receiver LIKE  sy-subrc.
    data:   t_packing_list like sopcklsti1 occurs 0 with header line,
            t_contents like solisti1 occurs 0 with header line,
            t_receivers like somlreci1 occurs 0 with header line,
            t_attachment like solisti1 occurs 0 with header line,
            t_object_header like solisti1 occurs 0 with header line,
            w_cnt type i,
            w_sent_all(1) type c,
            w_doc_data like sodocchgi1.
      ld_email   = p_email.
      ld_mtitle = p_mtitle.
      ld_format              = p_format.
      ld_attdescription      = p_attdescription.
      ld_attfilename         = p_filename.
      ld_sender_address      = p_sender_address.
      ld_sender_address_type = p_sender_addres_type.
    * Fill the document data.
      w_doc_data-doc_size = 1.
    * Populate the subject/generic message attributes
      w_doc_data-obj_langu = sy-langu.
      w_doc_data-obj_name  = 'SAPRPT'.
      w_doc_data-obj_descr = ld_mtitle .
      w_doc_data-sensitivty = 'F'.
    * Fill the document data and get size of attachment
      CLEAR w_doc_data.
      READ TABLE it_attach INDEX w_cnt.
      w_doc_data-doc_size =
         ( w_cnt - 1 ) * 255 + STRLEN( it_attach ).
      w_doc_data-obj_langu  = sy-langu.
      w_doc_data-obj_name   = 'SAPRPT'.
      w_doc_data-obj_descr  = ld_mtitle.
      w_doc_data-sensitivty = 'F'.
      CLEAR t_attachment.
      REFRESH t_attachment.
      t_attachment[] = it_attach[].
    * Describe the body of the message
      CLEAR t_packing_list.
      REFRESH t_packing_list.
      t_packing_list-transf_bin = space.
      t_packing_list-head_start = 1.
      t_packing_list-head_num = 0.
      t_packing_list-body_start = 1.
      DESCRIBE TABLE it_message LINES t_packing_list-body_num.
      t_packing_list-doc_type = 'RAW'.
      APPEND t_packing_list.
    * Create attachment notification
      t_packing_list-transf_bin = 'X'.
      t_packing_list-head_start = 1.
      t_packing_list-head_num   = 1.
      t_packing_list-body_start = 1.
      DESCRIBE TABLE t_attachment LINES t_packing_list-body_num.
      t_packing_list-doc_type   =  ld_format.
      t_packing_list-obj_descr  =  ld_attdescription.
      t_packing_list-obj_name   =  ld_attfilename.
      t_packing_list-doc_size   =  t_packing_list-body_num * 255.
      APPEND t_packing_list.
    * Add the recipients email address
      CLEAR t_receivers.
      REFRESH t_receivers.
      t_receivers-receiver = ld_email.
      t_receivers-rec_type = 'U'.
      t_receivers-com_type = 'INT'.
      t_receivers-notif_del = 'X'.
      t_receivers-notif_ndel = 'X'.
      APPEND t_receivers.
      CALL FUNCTION 'SO_DOCUMENT_SEND_API1'
           EXPORTING
                document_data              = w_doc_data
                put_in_outbox              = 'X'
                sender_address             = ld_sender_address
                sender_address_type        = ld_sender_address_type
                commit_work                = 'X'
           IMPORTING
                sent_to_all                = w_sent_all
           TABLES
                packing_list               = t_packing_list
                contents_bin               = t_attachment
                contents_txt               = it_message
                receivers                  = t_receivers
           EXCEPTIONS
                too_many_receivers         = 1
                document_not_sent          = 2
                document_type_not_exist    = 3
                operation_no_authorization = 4
                parameter_error            = 5
                x_error                    = 6
                enqueue_error              = 7
                OTHERS                     = 8.
    * Populate zerror return code
      ld_error = sy-subrc.
    * Populate zreceiver return code
      LOOP AT t_receivers.
        ld_receiver = t_receivers-retrn_code.
      ENDLOOP.
    ENDFORM.
    Girish

  • Suddenly I can,t play certain songs from my itune libary as they are connected to my old e mail address of 5 yrs ago . how do i get you to link the 2

    Suddenly  i can,t play certain songs from my libary as they are connected to an old e mail address of 5 yrs ago . How do i merge them together ?

    I had this problem yesterday (or a very similar problem). When you click on your purchased song, an old email address (Apple Account ID) pops up and asks for an old password to authorize permission. It is very stubborn and does not really co-operate when using the usual remedies (forgot password - send me an email - what is your birthday, etc). I fumbled around and eventually got it all straightened out. I can tell you what I did - I cannot tell you what exactly worked. Access your current Apple Itunes account. Deauthorize all computers (up to 4 or 5 in total, I forget...) that can play your purchased music. Update your password. Close your account and Itunes. Open Itunes and try your new password. Now try the "old" music that would not play before - your "old" email/Account ID should still pop-up asking for a password. Delete the old email/ID and put in your current one. Then use your new password to activate. This should solve the problem of old ID / old Password / no permission. My apologies for the imprecise method, again I am not sure exactly WHAT worked here - all I know is that the Itunes Help sections and tutorials were good - but of no use in this case.
    Cheers

  • How Inventory is connected to Order Management

    Hi,
    i want to know in Order to cash lifecycle, how inventory is connected to Order management?
    Thanks,
    magesh

    Order Management responsibility is Operating Unit Specific which means any OM responsibility is tied to a specific operating unit. When you define Inventory Organizations, they are assigned to a Operating Units. So thats the link between the OU and the Inv Org. Since OM responsibility is OU specific, you can say thats the link between OM responsibility and Inv Org.
    Also in Order Management, In the OM System Parameters form, you specify a value for Item Validation Organization. So thats how they are connected.
    Hope this helps.
    Thanks,
    Anil
    Blog: http://oracle.anilrpatil.com

  • How to connect my friends apple notebook through video call

    HOW TO CONNECT TO A FRIEND WHO IS USING APPLE NOTEBOOK FROM MY IMAC SUGGEST ME WAITING FOR A SOLUTION FROM APPLE TEAM SUPPORT

    Hi,
    Typing in all upper case is regarded and shouting here.
    Presumably as you have posted in the OS X 10.7.x (Lion) area you are running this version of the OS on your iMac.
    This will have iChat 6 on it.
    This can use AIM, Jabber and Yahoo IDs within the app.
    Apple IDS ending in @mac.com and iCloud issued @me.com and @icloud.com are also Valid AIM Screen Names.
    If you use Googlemail and Enable "talk" in the products there you can then use your Google Mail ID as a Jabber ID (although it has it's own Add Account option in iChat)
    Facebook has an option to Enable "Chat" which will give you a Chat ID variant on your name there and this can be used in iChat (or Messages) as a Jabber ID.
    The Yahoo Account will only do Text chats.
    It also has to be an actual ID registered at Yahoo.
    Chats are then AIM to AIM or Jabber to Jabber or Yahoo to Yahoo.
    So your Buddy will also need a suitable ID or Screen Name  for the relevant service.
    8:16 pm      Sunday; January 19, 2014
      iMac 2.5Ghz 5i 2011 (Mavericks 10.9)
     G4/1GhzDual MDD (Leopard 10.5.8)
     MacBookPro 2Gb (Snow Leopard 10.6.8)
     Mac OS X (10.6.8),
     Couple of iPhones and an iPad

  • I need to know how to connect my macbook to the tv

    I ordered the mini dvi adapter for my macbook 13in and obviously it connects to the computer but i have no idea how it connects to the tv. Where does it go? and do i need something else to help connect it to the tv? I am really confused please help.

    Yep, Apple makes adaptors to go from the mini DVI on the macbook to almost any type of input that you TV will have. First check the back of your tube to find out what kind of input it has, and order the appropriate adaptor.
    Luck
    E

  • How to connect my mac to tv

    How to connect my mac to tv

    Ponny wrote: just a regular TV with an Svideo in.
    This could be an issue with that vintage Tv.
    Svideo is more fitted for video player input.
    Go to http://eshop.macsales.com/ to see what options are available.
    If you send them an email, they will help if you don't see option.
    Prior to sending them mail, select the exact model you have from the
    list of the MacPro's and any other details.
    Is there a reason your still at 10.4.11?
    Also, Apple Tv streams to my Tv's.
    May just have to do a Craigslist search and pick up a worthy Tv with HDMI ports.

  • How to connect my HP MFP My

    How to connect my HP MFP M127?

    Hey @HHAl,
    Welcome to the HP Support Forums!
    I would like to assist you today with connecting your HP LaserJet Pro MFP M127 printer to your computer. However, in order for me to provide you with accurate troubleshooting steps today I do need to verify a few things:
    What Operating System are you trying to install your printer on?
    What's my OS?
    Are you going to be using your printer through a USB Cable or Network connection?
    Please respond to this post with the answers to my questions above. Once I find out these details I will be able to guide you towards a solution. I look forward to hearing from you!
    X-23
    I work on behalf of HP
    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!

  • How to connect my mac book pro to network printer Canon IR 2010f?

    I'm desperate to know how to connect my Mac book Pro to network printer Canon IR 2010f. This printer has an independent system, therefore, no need a PC to be on, in order to print. But this printer is a network printer. Help me please.

    The Canon UFR2 v2.20 driver for Mac OS X does not list the iR2010F as a supported model. The same is so for the Canon PS driver so I therefore believe this model is PCL5e only.
    What you should do is open Safari and type the IP address of the iR2010F. This will connect to the internal web page of the copier and from the provided pages you should be able to see what printer languages are supported.
    If it only lists PCL then you will be able to print to this copier using the Generic PCL driver included with 10.6.
    So if you open Print & Fax, click + to add and then select IP > LPD for the protocol you can then enter the IP address of the iR2010F and leave the queue name blank. For the name you can change that to iR1020F and for the Print Using, select Generic PCL Laser Printer.
    One note with regards to this driver. It is defaulted to 300dpi so you will need to open the print dialog when you do print and change the resolution to 600dpi to get better print quality.

  • How to connect my camera on mac book?

    how to connect my camera on my mac book?

    Usually an appropriate cable, and other items are
    included in the retail box a camera arrived in, so
    there should be instructions by that manufacturer
    to most suitably attach the camera to a Mac or PC.
    Usually the computer will automatically detect the
    camera when attached by USB cable; the Mac will
    offer to use iPhoto or another application, to view
    and handle image processing; or you could choose
    to select a different application, or none at all.
    For my Macs and two cameras, I do not have iPhoto
    handle the images and I choose third-party software
    because I don't make libraries of images in the Mac.
    However depending on the computer and the camera
    the Mac may already have sufficient drivers already
    installed; so a software installation from a CD from the
    camera maker may not be needed in order to use it.
    Since your question is rather wide and gives no info
    as to what you have, the replies are also generalized.
    Good luck & happy computing!

  • How to connect wi-fi connected laptop to the ethernet connected PC??

    Hi, 
    System 1 - PC, connected to the router+modem with ethernet cable, mostly has static IP
    System 2 - Laptop, connected to the router+modem with wi-fi, mostly uses DHCP 
    I want to connect these 2 systems in order to access the shared data & printer of PC in Laptop. 
    I tried to do this by doing the following on my laptop.
    start -> run -> \\<ip address of PC>
    But I got the error that "Windows cannot connect to the \\<ip address of PC>". When I diagnosed it, it showed that "Your computer appears to be correctly configured, but the device or resource (<ip address of PC>) is not
    responding".
    How to connect now two systems?

    Hi,
    Please take a try with the following steps:
    1. Restart the router;
    2. Reconfigure TCP/IP settings, Navigate to :
    Start/
    Control Panel/ View network status and tasks/
    Networking and Internet/Change adapter settings/Local
    Area Connection/Properties./Internet Protocol Version 6 (TCP/IPv6)/Properties
    set both IPv6 and IPv4 to Obtain an IP address automatically, select Obtain DNS servers address automatically, and then click
    OK. 
    3. Run the below command in command prompt with admin rights:
    ipconfig /flushdns
    ipconfig /registerdns
    ipconfig /release
    ipconfig /renew 
    Then try to connect the two machines again.
    Best regards 
    Michael Shao
    TechNet Community Support

Maybe you are looking for

  • Function module for getting unit of measurement

    Dear Friends, Please tell me what is the function module to find the Unit of measurement for the  quantity of material by passing the material no to the function module

  • Creating new column in existing pdf doc

    I am trying to add a new column with some CFif content into a pdf doc that is already created. the original pdf doc contains a table PropertyDetails_T with columns such as 1st column : 'customer name' 2nd col : 'no. of. vehicles' 3rd column : 'area o

  • LOV Problem - Top Urgent !!!!!

    A table contains of 4 composite primary fields, one of the primary field is a date field. A record group created at design time with the help of above table. This record group is used for LOV, hence in record group query, the select statement has all

  • OS X realms and internet explorer v6 and v7

    Hi, I have set up and configured a site that uses realms to secure a section of the site. I can use safari and firefox for os x to navigate to this page and get the authentication box to log in to the realm. However if i use IE 6 or 7 it just comes u

  • Getting in/outport.vi to work on winxp

    Hi, It says capability not found. Setting compatibility to win95/me, the program seems to work but i dont recieve output at the port. I did download the hwaccess and run the setup but no luck! nemore things that i can try to get inport/outport.vi to