Bid inviatation not sent to vendor.

Hello,
when i sent a bid invitation to vendor ( BP maintatined ), it is not visible in his inbox.Can you please help me to fix this problem.
regards,
Vivek

Hi,
You need to maintain SAP_EC_BBP_BIDDER role to the bidder and he can see the bid in
"Process bid" with the appropriate status to act upon when he logs into the system using his userid.
Best regards,
Sridhar

Similar Messages

  • How to retrieve Bid Invitation for a specific Vendor

    Dear Experts,
    I want to analyze the bid inviation send to particular Vendor. As to see is there any bid invitation created for him or not.
    Kindly advice .
    Many thanks.

    Hi Yang,
    Am working in SRM 5.0 Extended Classic Scenario. From the requestor point of view could you please give me the navigation to retrieve Bid Invitation send to a Vendor of our choice .
    your help is highly appeciated.
    Many Thanks

  • Z report for materials that are lying as rejected material - sent to vendor

    Dear All,
    i have to create a report where my client is suppose to generate a report of :
    scenario:  all materials that are rejected in quality inspection is to be sent back  to vendor. now what happens is sometimes 50 materials are rejected in one month and 100 in second month. so total 150 materials should be sent but due to human error 75 materials are not sent. So a complete report of the same of which material were sent and which not .
    pl discuss....

    Dear Ritesh,
    lets simplify,  just my client want to see a report of list of materioals that have been rejected and not sent to vendor. I real time scenarios materials get rejected in Q- inspection. Now the rejected materials are sent back to the vendor. What happens is due to human error they kept lying in the plant premises for quite a long time that were supposed to be sent back. So ex:  x kg of materials were rejected in the month of june.That means X kg has to ben sent back to the vendor to be rectified. Now if y kg was sent where x>y , that means x-y should be lying in the plant that is not sent . A report for the same.
    pl discuss

  • Bid invitation not available to bidder.

    Hello all,
    I have created Bid invitation w.r.t. SC in sourcing cockpit, But when the bid is published to bidder ( Business partner & role maintained for the same) is not getting transfered to bidder.
    No could you please explain the cause and the possible trouble shooting for this problem. Also explain where i can monitor these transactions?
    thanx
    vivek.
    SRM 4.0 Classic with ECC6 backend.

    Hi Claudia,
              I have created the contact person for bidder through the web only. There shouldnt be any problem in creating BP or contact person as the bid invitation was sent to bidder sucessfully, even i could create contract in backend after the bids receieved from the same bidder.only some times this error is flashed. ( all atributes, master data used is one and the same).
    Now could u please tell me how exactly the bid invitaion is sent to bidder. any FM, prog??? which i should check out??
    About creating bidder, I have created the bidder after replicating that vendor from backend. Then for the bidder i have created employee as a contact person through web ( Manage business partner) with bidder role assigned.
    thanx please.
    Regards,
    Vivek

  • How to get a error message when sms is not sent to a mobile no.

    Scenario: once po is finally released sms is sent to the respective vendor.This has been done. But, Now the client want to see the error details(i.e, the mobile no. to whom sms i s sent) if the sms is not sent to any mobile no. and also wants a z program through which they can schedule the background job of resending the sms to those no. who have not received.
    As i tried a lot with this but unable to go ahead, so plz help me <removed by moderator>
    TABLES:LFA1.
    DATA : WA_FINAL  LIKE ZME_EKKO_RLS ,
          IT_FINAL  TYPE STANDARD TABLE OF ZME_EKKO_RLS.
    DATA GV_MSG TYPE STRING.
    DATA GV(16) TYPE C.
    DATA  : GV_RETURN  TYPE STRING.
    DATA: HTTP_CLIENT TYPE REF TO IF_HTTP_CLIENT .
    DATA: WF_STRING TYPE STRING ,
    RESULT TYPE STRING ,
    R_STR TYPE STRING .
    DATA: RESULT_TAB TYPE TABLE OF STRING.
    *BREAK-POINT.
    IF SY-TCODE = 'ME29N'.
      IF  SY-UCOMM = 'MESAVE' AND I_EKKO-PROCSTAT = '05'.
        SELECT * FROM ZME_EKKO_RLS INTO TABLE IT_FINAL
           WHERE  EBELN = I_EKKO-EBELN .
        IF NOT  IT_FINAL[] IS INITIAL .
          LOOP AT IT_FINAL INTO WA_FINAL .
            IF WA_FINAL-SSTAT = '02' .
              CONTINUE.
            ELSEIF  WA_FINAL-SSTAT = '01' .
              SELECT SINGLE * FROM LFA1 WHERE LIFNR = WA_FINAL-LIFNR.
              IF SY-SUBRC = 0.
                GV = LFA1-TELF1.
              ENDIF.
              CLEAR GV_MSG.
              CONCATENATE 'Dear Sir/Madam, PO No:' WA_FINAL-EBELN ' Dtd:' I_EKKO-BEDAT ' with reference to vendor no:' WA_FINAL-LIFNR 'has been released on you''.' 'Detail hardcopy will be sent to you soon' INTO GV_MSG.
              CLEAR WF_STRING.
              CONCATENATE
              'http://182.18.143.30/sendsms.php?username=edhik&password=194385&'
              'sender=TSIL&mobile='
              GV
              '&type=1&message='
              GV_MSG
              INTO
               WF_STRING.
              CALL METHOD CL_HTTP_CLIENT=>CREATE_BY_URL
                EXPORTING
                  URL                = WF_STRING
                IMPORTING
                  CLIENT             = HTTP_CLIENT
                EXCEPTIONS
                  ARGUMENT_NOT_FOUND = 1
                  PLUGIN_NOT_ACTIVE  = 2
                  INTERNAL_ERROR     = 3
                  OTHERS             = 4.
              CALL METHOD HTTP_CLIENT->SEND
                EXCEPTIONS
                  HTTP_COMMUNICATION_FAILURE = 1
                  HTTP_INVALID_STATE         = 2.
              CALL METHOD HTTP_CLIENT->RECEIVE
                EXCEPTIONS
                  HTTP_COMMUNICATION_FAILURE = 1
                  HTTP_INVALID_STATE         = 2
                  HTTP_PROCESSING_FAILED     = 3.
    *if sy-subrc = 0.
    *call method http_client->get_last_error
    *importing
    *code =
    *message = gv_errortext.
    *endif.
              CLEAR RESULT .
              RESULT = HTTP_CLIENT->RESPONSE->GET_CDATA( ).
              REFRESH RESULT_TAB .
              SPLIT RESULT AT CL_ABAP_CHAR_UTILITIES=>CR_LF INTO TABLE RESULT_TAB .
              REFRESH RESULT_TAB .
              SPLIT RESULT AT CL_ABAP_CHAR_UTILITIES=>CR_LF INTO TABLE RESULT_TAB .
              LOOP AT RESULT_TAB INTO R_STR.
                CONCATENATE R_STR SPACE(1) INTO GV_RETURN.
               write:/ r_str.
              ENDLOOP .
              IF  NOT GV_RETURN IS INITIAL .
                UPDATE  ZME_EKKO_RLS
                       SET: SMSTX = GV_MSG ,
                             sstat = '01'
                   WHERE EBELN = WA_FINAL-EBELN .
                IF SY-SUBRC = 0 .
                  COMMIT WORK .
                ENDIF.
              ENDIF .
            ENDIF .
          ENDLOOP.
        ENDIF .
      ENDIF.
    ENDIF .
    Edited by: Vinod Kumar on Aug 1, 2011 2:58 PM

    Hi 
    when you call the webservce to send the sms using the method if it is successful it will return as success and if any issue it will raise the error which you have to handle, but it will not give you confirmation wether sms is sent ,
    regards
    m.a

  • Mm: debit note , send to vendor for compensation of money

    dear mm-gurus,
    i m facing a problem.
    i m not aware about the process of debit note that is sent to vendor for compensation of money
    for the quantity of rejected material on quality basis and line rejection basis.
    please help me out,
    useful reply will be awarded..
    please give me the detailed procedure for this.
    thanks:
    piyush singh

    Hi Piyush,
    1.Created the PO say for 10 qty.
    2.Done  the GR  say for 5 qty.
    3.Do the Invoice for 10 qty.
    4.Now qualityDept has rejected 5 qty & want  to send to the respective vendor.
    5.Now you can create the Credit Memo for  5 qty and send to the vendor.(not Debit Memo).
    Further you can refer
    http://help.sap.com/saphelp_46c/helpdata/en/a8/b99f58452b11d189430000e829fbbd/frameset.htm
    I hope u understand the process..!
    Rahim

  • Using INVOIC01, IDOC posts invoices against POs that weren't sent to vendor

    Does anyone have any suggestions on how to prevent the IDOC INVOIC01 invoices from posting against POs that were not originally sent to the vendor??  (BSART = INVO)
    For example, vendor (1521) sends an electronic invoice file processed as an IDOC.  Vendor 1521 includes an invoice against a PO that was sent to vendor 7549.  Since the PO exists, the IDOC posts against it.  I want to make this a hard error (a 51 status).
    Please help,
    Cindy

    Hi Cindy,
    If you are using a standard process code for this interface, you will not have this sort of problem as the combination of Vendor and PO number are validated before that is posted. If you are using a custom stuff then you need to check the table EKKO by passing the vendor number and PO number as input to that, if that combination exists go ahead otherwise throw the idoc into 51 status.
    Thanks,
    Mahesh.

  • CO54: Message is not sent to any destination: Commit Work is getting failed

    Hello,
    While processing the Messages from XFP to SAP Update is getting terminated due to the use of Commit Work. SAP Note 147467 - Update termination when sending process messages has been referred which is for 4.6C, but we are in ECC6.0.
    While processing the message in second iteration Commit Work triggres and Update happens in the data base.
    Following Issue is only concerned with Nested HUs
    T-Code used CO54
    Following are the analysis:
    it looks like u201CCreate and Post a Physical Inventory Docu201D is failing in the initial processing because the inventory doc is created when the Transfer Order to the PSA (or the TO from the PSA) is not yet completed (quant is still locked somehow).
    CO54, process message category=ZHU_CONS: HU to be consumed is a nested pallet (unpacking/ repacking and TOs to/from) and qty to consume is greater that HU qty in SAP (creation of a physical inventory doc is required).
    1. The error occurs while clearing the inventory posting for the physical inventory document.
    2. The surprising factor is the u201CProcess Messageu201D is not processed correctly for the first time.
    3. Indeed it is successfully processed without any error if you do process it second time.
    Error Log from C054 T-Code.
    02.08.2010                                         Dynamic List Display                                                1
    Type
    Message text
    LTxt
    Message category: ZHU_CONS ---    Process message: 100000000000000621   "Send to All Destinations" Is Active
    Message to be sent to destination:
    ZHGI ZPP_0285_XFP_GOODSISSUE Individual Processing Is Active
    => Message will be sent to destination (check log for destination)
    Message category: ZHU_CONS ---    Process message: 100000000000000621   "Send to All Destinations" Is Active
    Message destination ZPP_0285_XFP_GOODSISSUE triggered COMMIT WORK
    Input parameters OK, passed to source field structure
    Step 0: Now checking if scenario with HU
    Step 2: Scenario with HU, Now checking if HU nested
    Step 3: HU nested, checking if HU in repack area
    Step 4: HU not in repack area, moving it to repack area
    HU moved to repack area, TO number 0000000873
    Step 5: Depacking nested HU...
    Nested HU depacked, HU pallet n°: 00176127111000461994
    Steps 6-7: Moving back HUs to supply storage type / bin...
    HU 00376127111000462001 moved back to original area with TO number 0000000875
    Steps 6-7: Moving back HUs to supply storage type / bin...
    No need to move back HU 00176127111000461994 (not in table LEIN)
    Step 8: Checking if HU fully used and quantity matches HU system quantity
    HU not fully used but picked quantity > HU quantity: inventory necessary
    Step 9: Inventory needed, creating physical inventory document...
    Physical inventory document 0000000126 created
    Step 10: Adding weighted quantity on inventory document...
    Weighted quantity entered in document 0000000126
    Step 11: Posting rectification in inventory document 0000000126...
    Physical inventory document 0000000126 rectified
    Error: rectification for doc 0000000126 not updated in DB!
    => Destination ZHGI ZPP_0285_XFP_GOODSISSUE can currently not process the message
    => Message is not sent to any destination
    The errors in SM13 for this contain the program SAPLZPP_0285_HUINV_ENH (creating/changing the HUM physical inventory doc). WM Function module L_LK01_VERARBEITEN is also involved.
    From SM13, it displays the following piece of code in include LL03TF2M (read the LEIN table=Storage Units table):
    WHEN CON_LK01_NACH.
           IF (LEIN-LGTYP = LK01-NLTYP AND         
                 LEIN-LGPLA = LK01-NLPLA) OR
                  NOT P_LEDUM IS INITIAL.
           ELSE.
    Das ist der Fall einer TA-Quittierung wo Von-Hu = Nach-HU ist und sofort die WA-Buchung erfolgt. Dann steht die HU noch auf dem Von-Platz, daher darf hier kein Fehler kommen, sondern es wird ein. Flag gesetzt, daß verhindert daß die LE fortgeschrieben wird.
             FLG_NO_LE_UPDATE = CON_X.
            MESSAGE A558 WITH P_LENUM.
           ENDIF.
    Translation in English of the German text via Google:
    "This is the case where confirmation of a TO source-HU = destination-HU, and now the WA (Good Issue?)- made book. Then, the HU is still on the From-space may therefore come here not a mistake, but it sets a flag that prevents that the LE is updated."
    Thanks and Regards,
    Prabhjot Singh
    Edited by: Prabhjot  Singh on Aug 2, 2010 4:39 PM

    Hope you have carried out following things in Production ( Please refer to SAP help before actually doing it in production).
    1. Transport the predefined characteristics from the SAP reference client (000) to your logon client.
    2. Adopt Predefined Message Categories - In this step, you copy the process message categories supplied by SAP from internal tables as Customizing settings in your plants.

  • Mail not sent from iphone mail app

    I tried to send a mail through the mail app through my gmail account. Was shocked that the mail was not sent nor I can find it in any of "sent" or "draft" boxes. And the very disappointing thing about this problem is that there was no errors, and I just knew about 12 hours later from the expected recipient that he did not receive my mail.
    #SHOCKING
    I hate iOS 7, thus I mat start to hate iPhone and Apple.

    Has the Mobile Me account been set up on your iPhone as POP rather than IMAP? If it has been set up as POP then any message sent will not be mirrored. Your Mobile Me account should also be configured as IMAP on all your devices in order to see those messages in your Sent Items folder.
    The idea of IMAP is to be device independent such that whatever you do is mirrored on all your devices as they each synchronize with Mobile Me. I suppose you could view the Mobile Me "cloud" as being the main repository. If you delete a message from your Inbox via your iPhone, the next time you connect your Mac that message will not appear in the associated Inbox in Mail.
    Does that make sense?
    Chris

  • Email gets queued, but not sent until I login to my account on the server.

    This is very strange. Let me explain.
    1. Snow Leopard Server 10.6.2 running on an iMac.
    2. I have the Mail Service running on the server. I can receive emails without problems.
    3. Using my Snow Leopard Server email account, I attempt to send an email to another account (e.g. a mac.com email account).
    4a. If I am actively logged into my Snow Leopard Server account *on the iMac* (e.g. via VNC, as long as my desktop is active), the email will arrive successfully. Here are the mail.log messages:
    postfix/smtpd\[69030]: connect from \[External Host Address]
    postfix/smtpd\[69030]: 942814AD55B: client=\[External Host Address], sasl_method=CRAM-MD5, sasl_username=MyUserName
    postfix/cleanup\[69037]: 942814AD55B: message-id=<[email protected]e. com>
    postfix/qmgr\[65313]: 942814AD55B: from=<[email protected]>, size=604, nrcpt=1 (queue active)
    postfix/smtpd\[69040]: connect from localhost\[127.0.0.1]
    postfix/smtpd\[69040]: C611B4AD568: client=localhost\[127.0.0.1]
    postfix/cleanup\[69037]: C611B4AD568: message-id=<[email protected]e. com>
    postfix/smtpd\[69040]: disconnect from localhost\[127.0.0.1]
    postfix/qmgr\[65313]: C611B4AD568: from=<[email protected]>, size=1043, nrcpt=1 (queue active)
    postfix/smtp\[69038]: 942814AD55B: to=<[email protected]>, relay=127.0.0.1\[127.0.0.1]:10024, delay=0.25, delays=0.1/0.01/0/0.14, dsn=2.0.0, status=sent (250 2.0.0 Ok: queued as C611B4AD568)
    postfix/qmgr\[65313]: 942814AD55B: removed
    postfix/smtp\[69042]: C611B4AD568: to=<[email protected]>, relay=smtp-mx005.mac.com\[17.148.17.5]:25, delay=0.48, delays=0/0.1/0.14/0.23, dsn=2.5.0, status=sent (250 2.5.0 Ok, envelope id [email protected])
    postfix/qmgr\[65313]: C611B4AD568: removed
    4b. If, however, my Snow Leopard Server account is either logged out, or even just "fast user switched" to the Login Window, the email gets queued, but not sent to the external email address. I get the following four messages in the mail.log file:
    postfix/smtpd\[69030]: connect from \[External Host Address]
    postfix/smtpd\[69030]: B5F574AD582: client=\[External Host Address], sasl_method=CRAM-MD5, sasl_username=MyUserName
    postfix/cleanup\[69037]: B5F574AD582: message-id=<[email protected]e. com>
    postfix/qmgr\[65313]: B5F574AD582: from=<[email protected]>, size=604, nrcpt=1 (queue active)
    4c. The instant I login to my machine at home (e.g. via VNC), the email finishes processing. The below messages are logged, and my external email account receives the email:
    postfix/smtpd\[69160]: connect from localhost\[127.0.0.1]
    postfix/smtpd\[69160]: 20B244AD5B0: client=localhost\[127.0.0.1]
    postfix/cleanup\[69037]: 20B244AD5B0: message-id=<[email protected]e. com>
    postfix/smtpd\[69160]: disconnect from localhost\[127.0.0.1]
    postfix/qmgr\[65313]: 20B244AD5B0: from=<[email protected]>, size=1043, nrcpt=1 (queue active)
    postfix/smtp\[69038]: B5F574AD582: to=<[email protected]>, relay=127.0.0.1\[127.0.0.1]:10024, delay=74, delays=0.1/0/0/73, dsn=2.0.0, status=sent (250 2.0.0 Ok: queued as 20B244AD5B0)
    postfix/qmgr\[65313]: B5F574AD582: removed
    postfix/smtp\[69163]: 20B244AD5B0: to=<[email protected]>, relay=smtp-mx006.mac.com\[17.148.17.6]:25, delay=0.49, delays=0.09/0.01/0.15/0.25, dsn=2.5.0, status=sent (250 2.5.0 Ok, envelope id [email protected])
    postfix/qmgr\[65313]: 20B244AD5B0: removed
    I'm very much at a loss here. It's as if the act of logging out (or fast user switching to the Login Window) suspends some process that is required for my email to process. But .... why?
    Any ideas? Any additional information I can provide to help figure this out? Fwiw, I used to run Tiger Server (never tried Leopard Server) and never had this problem.
    Rob

    Looks to me like the anti-virus scanner, amavis. The clue is the line:
    postfix/smtp[69038]: 942814AD55B: to=<[email protected]>, relay=127.0.0.1\[127.0.0.1\]:10024, delay=0.25, delays=0.1/0.01/0/0.14, dsn=2.0.0, status=sent (250 2.0.0 Ok: queued as C611B4AD568)
    where the 10024 is the default port that Amavis runs on. Postfix is configured to pass mail through this port, and queues the mail until Amavis is available.
    My guess, therefore, is that Amavis is set to run under your account rather than under the system, which is why it only runs when you're logged in. Off hand I have no idea how you managed this and that makes it hard to work out how to fix it. I'd start by looking for org.amavis.amavisd.plist in /System/Library/LaunchDaemons, /Library/LaunchDaemons and ~/Library/LaunchDaemons (it should be in the former, but if its in the latter that could explain it.

  • Part1 is not generating for Vendor Subsequent delivey

    Hi ASAP
    I hope you must be doing great; steps are as follow which Iu2019m following for vendor return and subsequent delivery for Raw / Capital goods.
    1. PO -> MIGO (101) -> Excise capture & Posting using J1IEX -> MIRO.
    For excise, part1 & 2 to relevant register posting has taken placed.
    Now quality dept. has rejected the goods, for which vendor delivery should take place.
    2. For Vendor return Delivery
    MIGO 122 w.r.t GR of 101-> Excise capture & Posting using J1IS&V.
    For Excise, Part1 is getting created using J1IS, J1IV is creating Part 2, in Acct. doc. RG23C BED/ECS/HEC is being Credit and "PLA On Hold" is being Debited for BED/ECS/HEC amount.
    3. For Vendor subsequent delivery, I have done the excise config. for Movt. 123 .
    MIGO 123 w.r.t. GR of 122. 
    While doing GR for 123, system is not generating Excise screen.
    Any way, After GR of 123, I have Capture Excise Invoice after inputting all relevant data, but while Posting, System is generating message that Part1 is does not exist for vendor excise invoice.
    Now I think requirement is visible for your understanding to suggest me some valuable idea.
    If possible can plz drop a test mail to hksiva.manoj at gmail dot com for further clarification?
    Thanks & Regards
    Manoj K Singh

    Hi Rajaram,
    Thanks for your ealiest reply, yes i have done the config. which you suggested,
    Even after this " Specify which mvt type involves excise invoices",  assignment system is not generating Excise screen for Movt. 123 w. r. t. 122.
    Manoj K Singh

  • Part1 is not Generating for Vendor Subsequent Delivery

    Hi ASAP
    I hope you must be doing great; steps are as follow which Iu2019m following for vendor return and subsequent delivery for Raw / Capital goods.
    1. PO -> MIGO (101) -> Excise capture & Posting using J1IEX -> MIRO.
    For excise, part1 & 2 to relevant register posting has taken placed.
    Now quality dept. has rejected the goods, for which vendor delivery should take place.
    2. For Vendor return Delivery
    MIGO 122 w.r.t GR of 101-> Excise capture & Posting using J1IS&V.
    For Excise, Part1 is getting created using J1IS, J1IV is creating Part 2, in Acct. doc. RG23C BED/ECS/HEC is being Credit and "PLA On Hold" is being Debited for BED/ECS/HEC amount.
    3. For Vendor subsequent delivery, I have done the excise config. for Movt. 123 .
    MIGO 123 w.r.t. GR of 122. 
    While doing GR for 123, system is not generating Excise screen.
    Any way, After GR of 123, I have Capture Excise Invoice after inputting all relevant data, but while Posting, System is generating message that Part1 is does not exist for vendor excise invoice.
    Now I think requirement is visible for your understanding to suggest me some valuable idea.
    If possible can plz drop a test mail to hksiva.manoj at gmail dot com for further clarification?
    Thanks & Regards
    Manoj K Singh

    Hi Rajaram,
    Thanks for your ealiest reply, yes i have done the config. which you suggested,
    Even after this " Specify which mvt type involves excise invoices",  assignment system is not generating Excise screen for Movt. 123 w. r. t. 122.
    Manoj K Singh

  • Excise Details are not maintanied for Vendor 0000000957.

    Hi,
      As per our regular process  we are capturing inovie with J1IEX  and doing GR in MB01   now i have captured  invoice in J1IEX  and while making GR with MIGO i am getting error
    Excise Details are not maintanied for Vendor 0000000957. ,  but when i am making GR with MB01 i am not getting any error.
    also what configuration required to capture excise invoice and make Gr in MIGO,  as capture excise invoice menu is not coming in MIGO  in MIGO Exicse tab i can only see  only  refer excise invoice  ,  only part1 , no exicse registration.
    regards,
    zafar

    Hi,
    Do proper setings in Logistics - General -Tax on Goods Movements -India -Basic Settings -Maintain Excise Groups  - select your excise group and check settings in MIGO Settings such as EI Capture, Post EI in MIGO, Duty different at GR.
    Also ensure that you have maintained excise details for Vendor and Material in J1ID.
    Regards,
    Vikas

  • I updated to iOS 8 on iPhone 5s and now iMessage will not verify my email. It has said "Verifyng" since yesterday, but has not sent a verification email. I checked my iCloud settings for that email address and it shows "pending".

        I updated to iOS 8 on iPhone 5s and now iMessage will not verify my email address to use to send/ receive messages. It has said "Verifyng" beside it in settings since yesterday, but has not sent a verification email. I have also tried Adding it as a new email address several times, but get the same outcome.  I can still send/ receive texts from my phone number, just not from the email address.
         In my iCloud settings under Contact Information for that email address and it shows "pending".  When I select "Resend Verification Email" I get "Cannot Connect to iCloud".

    Hello, Dorian071.  
    Thank you for visiting Apple Support Communities. 
    Here is the best article to reference when experiencing issues with iMessage activation issues.
    iOS: Troubleshooting FaceTime and iMessage activation
    http://support.apple.com/kb/ts4268
    Cheers,
    Jason H.

  • I have an Ipad 2 and are having problems sending out emails in one of my email address. I always get a message reading the email was not sent because the server does not allow relaying. This is an email account POP3. I have no such problem with gmail.

    I have an Ipad 2 and are having problems sending out emails in one of my email address. This is a POP3 email Account? I always get a message reading that the email was not sent because the server does not allow relaying. I have no such problem with gmail. What could be the problem and how do I resolve this. Is it about settings?
    Richard.

    Welcome to the Apple community.
    If you are unable to remember your password, security questions, don’t have access to your rescue address or are unable to reset your password for whatever reason, your only option is to contact Apple ID Support, upon speaking to an operator you should explain that your problem is related to your Apple ID, this way you will not be charged for assistance, even if you don’t have an AppleCare plan.
    The operator will take you through some steps you may have already tried, however they need to be sure they have exhausted all usual approaches before trying to reset your account, so you should try to be helpful and show patience with the procedure.
    The operator will need to verify they are speaking to the account holder and may ask you some questions that only the account holder could know, and you will need to answer them if the process is to proceed.
    Once the operator has verified your identity they will send a message through to your device which contains an alpha numeric code, which you will need to read back to them.
    Once this has been completed they will send an email to your iCloud email address after a period of 24 hours, so you should check that mail is enabled in your devices iCloud settings.
    Upon receipt of the email, use the reset link provided to reset your password, after which you should be able to make the adjustments to iCloud that you wish to do.

Maybe you are looking for