Error-IM258-This refers to an error in central status management.

Dear All
We have used the enhancement "MCI10001" for triggering the external E mail while scheduling the maintenance plan using T code IP10.
System will fetch the E mail ID from the equipment master -partner function either Vendor or User responsible and sends the mail
But while executing IP10 system throws an error message as follows
Error Msg no: IM 258- Object does not exist (Status Management)
This refers to an error in central status management.
Kindly help on the above issue
Regards
Thyagarajan
Edited by: thyagarajan krishnamurthy on Feb 18, 2011 11:10 AM
Edited by: thyagarajan krishnamurthy on Feb 18, 2011 2:28 PM

Dear,
Please refer the OSS Note 437878 - Status data missing for PM/CS notifications .
Regards,
R.Brahmankar

Similar Messages

  • I am getting an error saying "This Shockwave movie has errors that have caused playback problems. Please contact the author of this content regarding this problem. Shockwave is unable to continue." what do I do about this?

    I don't know how to go about fixing this.

    Like the error message says, you need to contact the author so that they can reproduce, diagnose and correct the error/s. The movie in question was served by some URL so try starting there

  • I keep getting the error message "This iPod cannot be used because Apple Device Manager Service is not started." HELP!!

    Yeah, so I keep getting that error message. The thing is that the service IS running, and it's set to "automatic". I've reinstalled every shred of Apple software on my PC, I've updated my virus software, and yet it still isn't working. I'm at a dead end here, so any help would be great.

    I FIXED IT! Oh sweet Jesus Mary and Bob....
    So after much scouring of the Googles, I found that the source of the problem was a little program called FoxyProxy Video Utility. It was causing various Windows services to crash--AMDS being the most noticeable. I uninstalled that program and PRESTO, my iPod shows up on iTunes!

  • Error IM258 in General Notification Screen

    Hello SAP Gurus,
    We have developed ECM Notification by enhancing the screens in General Notification.
    In one of the screens, we have developed an option for sending a mail to XYZ based on his SAP ID.
    When we enter the SAP ID of that person and save the notification we are getting the following error:
    /*   Object does not exist (status management)*/
    Object does not exist (status management)
    Message no. IM258
    Diagnosis
    This refers to an error in central status management.    
    We are not able to make out what could be the reason behind this!
    Please let me know if you have any clue.
    Thanks in advance.
    Regards
    Prasad K

    Hi,
    The object number does not exist in table JSTO.
    This error message is returned by the STATUS_MAINTAIN function module.
    Please verify.
    Regards
    Keerthi

  • Error-IM258-Object does not exist (Status Management)

    Dear All
    We have used the enhancement "MCI10001" for triggering the external E mail while scheduling the maintenance plan using T code IP10.
    System will fetch the E mail ID from the equipment master -partner function either Vendor or User responsible and sends the mail
    But while executing IP10 system throws an error message as follows
    Error Msg no: IM 258- Object does not exist (Status Management)
    This refers to an error in central status management.
    Kindly help on the above issue
    Regards
    Thyagarajan

    l have same problem  my code  below
    help me please .
    if email is not INITIAL and ulke is not initial and sy-tcode eq 'QM01' and sy-ucomm eq 'BUCH' and I_VIQMEL-QMART = 'Q1'.
        CALL FUNCTION 'POPUP_TO_CONFIRM'
          EXPORTING
            TITLEBAR       = 'E-mail'
            TEXT_QUESTION  = 'E-mail Göndermek istiyormusunuz ?'
          IMPORTING
            ANSWER         = answer
          EXCEPTIONS
            TEXT_NOT_FOUND = 1
            OTHERS         = 2.
    if answer eq 1 and ulke = 'TR'.
    lt_mailtxt ='Değerli Müşterimiz,'.
    APPEND lt_mailtxt.clear lt_mailtxt.
    lt_mailtxt = 'Şikayetiniz sistemimize alınmıştır. Müşteri şikayeti sorumlularımız sizlerle en yakın zamanda irtibata '.
    APPEND lt_mailtxt.clear lt_mailtxt.
    lt_mailtxt = 'geçeceklerdir. Şikayetiniz için teşekkür eder, saygılarımızı sunarız.'.
    APPEND lt_mailtxt.clear lt_mailtxt.
    lt_mailtxt =''.
    APPEND lt_mailtxt.clear lt_mailtxt.
    data:  it_packing_list like sopcklsti1 occurs 0 with header line,
           it_receivers like somlreci1 occurs 0 with header line,
            gd_cnt type i,
            gd_sent_all(1) type c,
            gd_doc_data like sodocchgi1,
            gd_error type sy-subrc.
    gd_doc_data-doc_size = it_packing_list-body_num * 255.
    Populate the subject/generic message attributes.
      gd_doc_data-obj_langu = sy-langu.
      gd_doc_data-obj_name  = 'SAPRPT'.
      gd_doc_data-obj_descr = 'Naksan KGM'.
      gd_doc_data-sensitivty = 'F'.
    Describe the body of the message
      clear it_packing_list.
      refresh it_packing_list.
      it_packing_list-transf_bin = space.
      it_packing_list-head_start = 1.
      it_packing_list-head_num = 0.
      it_packing_list-body_start = 1.
      describe table lt_mailtxt lines it_packing_list-body_num.
      it_packing_list-doc_type = 'RAW'.
      append it_packing_list.
      CLEAR it_receivers.
      it_receivers-receiver =  email.
      it_receivers-rec_type = 'U'.
      it_receivers-com_type = 'INT'.
      it_receivers-notif_del = 'X'.
      it_receivers-notif_ndel = 'X'.
      append it_receivers.
      call function 'SO_DOCUMENT_SEND_API1'
           exporting
                document_data              = gd_doc_data
                put_in_outbox              = 'X'
                sender_address             = 'sinan.tataroglu@***.com'
                sender_address_type        = 'INT'
                commit_work                = 'X'
           importing
                sent_to_all                = gd_sent_all
           tables
                packing_list               = it_packing_list
                contents_txt               = lt_mailtxt[]
                receivers                  = it_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.
    IF sy-subrc EQ 0.
    COMMIT WORK.
      Push mail out from SAP outbox.
    SUBMIT rsconn01 WITH mode = 'INT' AND RETURN.
    ENDIF.
    elseif ulke ne 'TR' and answer eq 1.
    lt_mailtxt ='Dear Customer,'.
    APPEND lt_mailtxt.clear lt_mailtxt.
    lt_mailtxt = 'Your compliant has just entered to system. Customer complaint responsible will contact with you ASAP.'.
    APPEND lt_mailtxt.clear lt_mailtxt.
    lt_mailtxt = 'Thanks for your complaint.'.
    APPEND lt_mailtxt.clear lt_mailtxt.
    gd_doc_data-doc_size = it_packing_list-body_num * 255.
    Populate the subject/generic message attributes
      gd_doc_data-obj_langu = sy-langu.
      gd_doc_data-obj_name  = 'SAPRPT'.
      gd_doc_data-obj_descr = 'Naksan KGM'.
      gd_doc_data-sensitivty = 'F'.
    Describe the body of the message
      clear it_packing_list.
      refresh it_packing_list.
      it_packing_list-transf_bin = space.
      it_packing_list-head_start = 1.
      it_packing_list-head_num = 0.
      it_packing_list-body_start = 1.
      describe table lt_mailtxt lines it_packing_list-body_num.
      it_packing_list-doc_type = 'RAW'.
      append it_packing_list.
      CLEAR it_receivers.
      it_receivers-receiver =  email.
      it_receivers-rec_type = 'U'.
      it_receivers-com_type = 'INT'.
      it_receivers-notif_del = 'X'.
      it_receivers-notif_ndel = 'X'.
      append it_receivers.
      call function 'SO_DOCUMENT_SEND_API1'
           exporting
                document_data              = gd_doc_data
                put_in_outbox              = 'X'
                sender_address             = 'peykan.samli@****.com'
                sender_address_type        = 'INT'
                commit_work                = 'X'
           importing
                sent_to_all                = gd_sent_all
           tables
                packing_list               = it_packing_list
                contents_txt               = lt_mailtxt[] "it_message
                receivers                  = it_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.
    IF sy-subrc EQ 0.
      COMMIT WORK.
      Push mail out from SAP outbox.
      SUBMIT rsconn01 WITH mode = 'INT' AND RETURN.
    ENDIF.

  • Error Message : Object does not exist (status management)

    Hi Gurus,
    I am working on tcode IW52(Change Notifications). and using badi's for validations at different points.
    1. Order level,
    2. Notification,
    3. Task level validations.
    In the task level validations, I have an requirement that if certain condition is met, than user should not be able to delete the task. I have no problem doing that, I am able to restrict it.
    Now the issue is :
    Say you have 6 tasks, and condition is met for the 5th task and I try to delete it. then the error message "can not delete task" is getting triggered from the badi.
    and after this error message if you try to do any functionality on the 6th task, I am experiencing error message "Object does not exist (status management)".
    Is anyone aware of this error message, any suggestions are highly appreciated.
    Thanks in advance.
    Shrikant
    Edited by: Alvaro Tejada Galindo on Mar 17, 2008 1:56 PM

    Hi ,
    You have posted this question long back that is one and half year back nearly.
    You got an error message in IW52 stating Object does not exist ( status management ).
    Now iam also facing the same problem in iw22 transaction. Can you say me how you solved if you remember.

  • There was an error opening this document. The file is damaged and could not be repaired. Error mess

    Hello, I am hoping someone can help me. I have an invoicing program that allows me to send an invoice as a PDF to a customer in an email. It always worked fine but for some reason anyone that gets the PDF email attachment gets the message " There was an error opening this document. The file is damaged and could not be repaired". I don't know why this is suddenly happening. I downloaded the latest Adobe Reader 10.1 and that didn't help. I also downloaded the trial version of Adobe Acrobat X and that doesn't help either. I can open all PDFs on my drive but for some reason my program seems to have a problem converting or writing the invoice file to a PDF. Anybody able to help? Thank you very much!

    Hi Bill,
    Thanks for your response, I'll try and answer your questions as best a possible. I am not printing to anything, just emailing and I'm not sure what you mean by "the adobe PDF printer". I originally could not find for sure what acrobat I was using although there is a file in my C drive with acrobat 5.0. When I tried downloading an update I found for that version, it told me it couldnt download the update because the original is not there. I then downloaded the new trial version of acrobat X in the hopes that may work, but it did not change the issue. I believe my invoicing program uses some internal PDF program inbeded in the invoicing program for the emailing option it provides. I did send the email to myself and it is the same as I send to anyone else, it has that error message. The others in my office can open the invoicing program and email the PDF perfectly fine to themselves and to me, it's only when my computer tries to send the invoice through email that we have the problem. I can view the file (invoice) perfectly fine. I do not not how to check this encoding you are referring to. Do these details help you, to help me?? Thank you again for your help.

  • When trying to view the Paul McCartney live concert, I received an error that this computer does not support live streaming

    When trying to view the Paul McCartney live concert, I received an error that this computer does not support live streaming

    If you're referring to streaming via itv.com, the minimum system requirements can be found here.

  • In iCal - I keep getting the error message " This calendar was created by Mail" and it will not accept any input; why..??

    In iCal - I keep getting the error message “ This calendar was created by Mail” and it will not accept any input; why..??

    use Disk Utility and Verify Permisions then fix and Verify Disk and fix, this should fix it.

  • When I attempt to open a PDF file I saved from a website, I get the message "There was an error opening this document. The file is damaged and could not be repaired." Is there any way to correct this problem?

    When I attempt to open a PDF file I saved from a website using Safari, I get the message "There was an error opening this document. The file is damaged and could not be repaired." When I save the same PDF file using FireFox it opens up immediately. Is there any way to correct this problem with Safari?

    Back up all data.
    Triple-click the line of text below to select it, the copy the selected text to the Clipboard (command-C):
    /Library/Internet Plug-ins
    In the Finder, select
    Go ▹ Go to Folder
    from the menu bar, or press the key combination shift-command-G. Paste into the text box that opens (command-V), then press return.
    From the folder that opens, remove any items that have the letters “PDF” in the name. You may be prompted for your login password. Then quit and relaunch Safari, and test.
    The "Silverlight" web plugin distributed by Microsoft can also interfere with PDF display in Safari, so you may need to remove it as well, if it's present.
    If you still have the issue, repeat with this line:
    ~/Library/Internet Plug-ins
    If you don’t like the results of this procedure, restore the items from the backup you made before you started. Relaunch Safari again.

  • Hello all .. i have a big problem in my ipad version 5.1.1 that is when i connect the ipad with my computer the i tunes give me this message ( itunes couldnt connect to this ipad .an unknown error occurred (0xE8000012).) how i can solve this problem pleas

    hello all .. i have a big problem in my ipad version 5.1.1 that is when i connect the ipad with my computer the i tunes give me this message ( itunes couldnt connect to this ipad .an unknown error occurred (0xE8000012).) how i can solve this problem please
    and this is an pic for the problem

    There is some troubleshooting for 0xE8 error codes on this page : http://support.apple.com/kb/TS3221 - you could see if anything on that page fixes it

  • unable to log in at this time because an error has occured

    Colleague came in over weekend to use a specific PowerMac and large screen rather than her usual MacBook Pro.
    She was unable to login as 'herself' as she repeatedly got the message that she was <<unable to log in at this time because an error has occured>>.
    No 'headshaking' as if she had given the wrong password, but she couldn't log in or accesss our sharepoints.
    She tried another desktop Mac (a  macmini) and got same result...
    She could (and today still can)  happily log in to the server via her laptop...
    What gives?

    We just had a similar issue here.
    On the MacBook Pro, we needed a new user to log in. Existing MBP users were fine, new users no chance, although administrator accounts were OK. OSX 10.7.4, same issue with 10.7.5.
    Clues were found elsewhere on this site (https://discussions.apple.com/thread/4140320?start=0&tstart=0), but what we did to fix it was this:-
    Ensure the Mac will create a local folder for new user accounts (top tick-box)
    In AD, turn off the Z: drive mapping to the home folder (or whatever drive you use) for that particular user
    On the Mac, log in and let it create the local home folder
    In AD, turn the drive mapping back on and respecify the home folder path
    The account should now continue to work as it's already created the local home folder.
    Admin accounts worked because we don't map the home folder for those. Originally we were mapping using a logon script, which is why we didn't have an issue when setting up the other users initially. What probably doesn't help is that we use DFS, and the Macs don't like talking to DFS (we have to map to the \\servername\share instead of \\domainname\dfs-share for those).
    Hope this helps. Many thanks to user "Think Touch" for providing the clues.

  • When I try to log on to my ichat I get the error message "An undefined AIM socket error has occurred.". How do I resolve this?

    The error message "An undefined AIM socket error has occurred." comes up when I try and log on to ichat.

    I have the same issue. Does anybody know why this has happened

  • Error Message: This type of file is not supported, or the required codec is not installed?

    I am trying to get media from my computer, and I only receive this error message :
    This type of file is not supported, or the required codec is not installed?
    What should I do? I have a window 8 laptop. My video files are from my itouch/ipod. I am using Premiere Elements 7.
    I have used this software with success before. HELP would greatly be appreciated!

    darlingdarleen
    Did both laptop 1 and 2 have QuickTime (latest version or any version) installed on the computers with Premiere Elements 7 when you got this "this type of file......" message?
    If you go to the opened Premiere Elements 7 projects involved and look at Share/Personal Computer/QuickTime, do you find that QuickTime Presets are shown and that you find export settings choices under the Advanced Button/Video Tab and Audio Tab?
    Look at the file name of the video. Do you see any irregularies in the name of the file, dots and such?
    If you record new iPod footage, open a new Premiere Elements project, and import that iPod footage, do you still get the error message? Putting aside, iTouch, what model iPod are these videos coming from?
    Thanks.
    ATR

  • HT4108 Digital AV adapter does not support iPad 2. Error message "This accessory does not supported by iPad"

    Just bought latest digital AV adapter MD098ZM/A. Does not work with my iPad 2. Error messade" this accessory is not supported by iPad" while the package saying it supports iPad 2 and later.

    It's works with the new iPad. It said "accessory not supported". I clicked OK and now it works.

Maybe you are looking for