Why i get this dump monitor contract distribution

Hello All,
Alert ID (AID) invalid (function 'BAPI_SYSTEM_ALERT_GETDETAILS'
when i go monitor contract distribution i get above dump.after SP15 srm 550
why?
any one faced?
any help is greatly appreciated
i have this problem in gui too.bbp_ctr_mon
br
Muhtu

seems to be some basis task let me try in netweaver forum

Similar Messages

  • HT4463 When clicking 'buy' for Mountain Lion in the App store I get the message "product distribution file could not be verified, it may be damaged or was not signed' Anybody know why I get this message. Thanks

    When clicking 'buy' for Mountain Lion in the App store I get the message "product distribution file could not be verified, it may be damaged or was not signed' Anybody know why I get this message. Thanks

    Make sure your Mac qualifies for Mountain Lion  >  Upgrade your Mac to OS X Mountain Lion.
    If you have anti virus software installed, disable that before downloading apps.
    Turn off the Firewall in System Preferences > Security (or Security & Privacy) > Firewall
    Try deleting the cache, cookies, and preference files (plist) associated with the App Store.
    Quit the App Store if it's open.
    Open the Finder. From the Finder menu bar click Go > Go to Folder
    Type this exactly as you see it here:
    ~/Library/Caches/com.apple.appstore/Cache.db
    Click Go
    Move the Cache.db file to the Trash.
    Now here:
    ~/Library/Preferences
    Click Go
    Move these files from the Preferences folder to the Trash.
    com.apple.appstore.plist
    com.apple.storeagent.pllist
    Now here:
    ~/Library/Cookies
    Click Go
    Move the com.apple.appstore.plist file from the Cookies folder to the Trash.
    Empty the Trash, try the App Store.

  • Hi, i get the error -49 when trying to Export a Movie edited in iMovie and recorded with Elgato Video Capture anyone know why i get this Error and can help me?

    Hi, i get the error -49 when trying to Export a Movie edited in iMovie and recorded with Elgato Video Capture anyone know why i get this Error and can help me?

    Read this
    http://support.apple.com/kb/ts1583

  • When trying to download Mountain Lion after click on buy I get this message: The product distribution file could not be verified. It may be damaged or was not signed.

    when trying to download Mountain Lion after click on buy I get this message: The product distribution file could not be verified. It may be damaged or was not signed.

    The Apple Support Communities are an international user to user technical support forum. As a man from Mexico my first language is Spanish. I do not speak English, however I do write in English with the aid of the Mac OS X spelling and grammar checks. I also live in a culture perhaps very very different from your own. When offering advice in the ASC, my comments are not meant to be anything more than helpful and certainly not to be taken as insults.
    Always search the forum before posting. This is asked at least three times just below your post.
    https://discussions.apple.com/thread/3604789?tstart=0
    https://discussions.apple.com/thread/4153268?tstart=0

  • I'm trying to redeem my itunes gift card and i get the message "session timed out".  does anyone know why i'm not able to redeem my card and why i get this message?

    i'm trying to redeem my itunes gift card and i get the message "session timed out."  does anyone know why i'm not able to redeem my card and why i get this message in stead?

    I've been having the same issues too, and thought it was just my outdated computer or account?!
    Every time I try to purchase a song, "session has timed out" shows up after I click "agree" to the terms!? I seem to be in the exact same scenario as 'SportsBarn' above:  Itunes support have replied repeatedly with the same "solutions" but nothing has helped or even been applicable.  I have an older laptop, 2005 Powerbook running OS X 10.4 Tiger so it's not compatible with the latest iTunes 10.5.2 which requires minimum OS X 10.5. I've been using the balance already in my iTunes account (from redeemed giftcards over the past few years) with no problem, until recently (my last successful purchase was October 2011). I wonder if it's the older OS or just a redemption glitch even with newer computers?

  • I am trying to buy Mountain Lion but I am getting this message: The product distribution file could not be verified. It may be damaged or was not signed.

    I just tried to buy Mountain Lion but I am getting this message, yes, even after I reboot: The product distribution file could not be verified. It may be damaged or was not signed.
    I don't understand what this means? Is my MacBookPro too old to work with Mountain Lion?

    The Apple Support Communities are an international user to user technical support forum. As a man from Mexico my first language is Spanish. I do not speak English, however I do write in English with the aid of the Mac OS X spelling and grammar checks. I also live in a culture perhaps very very different from your own. When offering advice in the ASC, my comments are not meant to be anything more than helpful and certainly not to be taken as insults.
    Always search the forum before posting. This is asked at least three times just below your post.
    https://discussions.apple.com/thread/3604789?tstart=0
    https://discussions.apple.com/thread/4153268?tstart=0

  • Why am getting this ME083 error in BATCH JOB, where as ONLINE not getting?

    Hi Experts,
    Am creating Purchse Requisation by using BAPI ---> BAPI_PR_CREATE.
    If I run ONLINE, Purchse Requisations are creating in EBAN table, with out any erorr messages, fine.
    If the same prog. is scheduled as BATCH JOB in production, the Purchse Requisations are creating, fine, but, there is a ERROR MESSAGE in JOB LOG, saying that " ENTER PLANT " of M essage ID& # is  "ME 083 "
    So, let me know that,
    1 - Why am not getting this error message, If I run it ONLINE?
    2 - Even though there r error message in JOB LOG (as I mentione din the above), Why the Purc. requisations are creating?
    3 - How to track that, from Where this error is coming in BATCH JOB, How to debug the BATCH JOB, after its scheduling?
    4 - How to fix it?

    It is not uncommon for informational/warning messages to appear when a BAPI is run in batch.
    Such messages do not prevent the completion of a job, but may provide information about the status of processing.
    When you run the job online the message may just flash briefly on the bottom of the screen, and you might not even notice it.
    I get similar messages when I run other BAPIs, where the message is logged but the process continues to run.
    To address the question of the message itself, if you look at the code underlying the BAPI, for example, include L2105I01, which contains the methods, you can see the place where the message is issued.
    The message is issued if field PR_TYPE in the header structure is initial.
    This is fairly easy to find just by examining the source behind the BAPI and the methods that it uses.
    You can navigate to include L2105I01 just by clicking on Method process in BAPI_PR_CREATE, just as you can with any other navigable object in ABAP.
    You should see this in BAPI_PR_CREATE around line 108.
    CALL METHOD l_ref_bapi->process( ).
    Double click on process.
    Method renumbering is then called by Method process if the actyp = hin (a constant meaning add/create which is set in BAPI_PR_CREATE), and if ITEM_INTVL (Item number interval) is not initial.
    Double click on Method renumbering.
    Method renumbering then checks if field PR_TYPE is initial, and if it is, then the message 083 that you are getting will be issued.  You will also see that the message is issued as a warning only, which is why the document is still created.
    You can drill down through the code by double clicking, as usual with navigation.
    I found this initially by clicking method set_header, which brought up the include with the method code.  I then searched for 083, which is the message id.  I then backtracked to find out what the path to Method renumbering was.
    Always do a little digging in the source, the message has to come from somewhere.  If the first search does not get a hit, try the next one until you exhaust the possibilities.  I chose set_header, since it appeared to be specific to the function of the BAPI, and something like that will usually be the best place to start.  In this case, it took me right to it.
    Brian

  • Why i get this error

    When I Run my applet in the local computer It works fine but when I upload the applet in remote server and run the applet I get this error in Java console and the applet is not displayed...Will any one help me to solve the problem
    Thank u
    Vijay
    IOException Loading Archive: http://digitaltantra.com/chart/ClientTrial.jar
    java.io.EOFException: Unexpected end of ZLIB input stream
         at java/util/zip/InflaterInputStream.fill
         at java/util/zip/InflaterInputStream.read
         at java/util/zip/ZipInputStream.read
         at java/io/BufferedInputStream.fill
         at java/io/BufferedInputStream.read
         at com/ms/vm/loader/JarArchiveSet.loadNextJar
         at com/ms/vm/loader/JarArchiveSet.getResourceBits
         at com/ms/vm/loader/JarArchiveSet.getClassData
         at com/ms/vm/loader/ResourceLoader.getClassData
         at com/ms/vm/loader/URLClassLoader.findClass
         at com/ms/vm/loader/URLClassLoader.loadClass
         at com/ms/vm/loader/URLClassLoader.loadClass
         at com/ms/applet/AppletPanel.securedClassLoad
         at com/ms/applet/AppletPanel.processSentEvent
         at com/ms/applet/AppletPanel.processSentEvent
         at com/ms/applet/AppletPanel.run
         at java/lang/Thread.run
    java.lang.ClassNotFoundException: Display
         at com/ms/vm/loader/URLClassLoader.loadClass
         at com/ms/vm/loader/URLClassLoader.loadClass
         at com/ms/applet/AppletPanel.securedClassLoad
         at com/ms/applet/AppletPanel.processSentEvent
         at com/ms/applet/AppletPanel.processSentEvent
         at com/ms/applet/AppletPanel.run
         at java/lang/Thread.run

    I think ur java runtime is buggy. why dont u load the latest JRE from sun or the MVM from MS.

  • "Undefined sym: _main"  Why I get this error?

    "Undefined sym: _main" I get this error at runtime in Flash
    CS4, any idea why?
    Im trying to run an OpenGL sample..

    Up.
    I'm having the same problem. I've tried compiling the code with a custom Makefile or with Flash Builder, but he doesn't see my main function.
    He doesn't even enter this function on run, it's an immediate "Undefined sym: _main". The decoration must be wrong somewhere, but when we look into the library.swf found in the resulting swc, we can find a _main in the middle of the hexa soup.
    The call to gcc for the swf:
    gcc   ./opengles/testApp.o  ./opengles/src/Config.o [more .o ...]  -swc -o "test.swc"
    The code of my main function:
    int main()
    unsigned int i;
    fprintf(stderr,"kikoo");
    AS3_Val swcEntries[] =
    AS3_Function(NULL, swcInit)
    ,AS3_Function(NULL, swcFrame)
    // construct an object that holds refereces to the functions
    AS3_Val result = AS3_Object(
    "swcInit:AS3ValType,swcFrame:AS3ValType"
    ,swcEntries[0]
    ,swcEntries[1]
    for(i = 0; i < sizeof(swcEntries)/sizeof(swcEntries[0]); i++)
    AS3_Release(swcEntries[i]);
    // notify that we initialized -- THIS DOES NOT RETURN!
    AS3_LibInit(result);
    return 0; //never used
    Can't give you the line to create the swf as it is hidden somewhere in Flash Builder which doesn't write in the console, for some reason.

  • Why iam getting this error in while scheduling?

    Hi,
    Experts,
    I am doing plat file data into Bi system scnario i am getting data into PSA but while scheduling i am getting this error which i have mention below:
    MATE_NAME : Data record 2 ('Maj '): Version 'Nokia88 ' is not valid     RSDMD     194
    MATE_ID : Data record 2 ('Maj '): Version 'Maj ' is not valid     RSDMD     194     
    MATE_NAME and MATE_ID are info objects of charecter infocatalog.
    pass with good solution.
    Thank u,
    Shabeer ahmed.

    HI,
    here are some of flatfile errors:
    1.check whether in flat file ur using Uppercase or Lowercase letters.
      u sholud use all uppercase letter, or if u want to use lowercase also then while defining info object for that char u should select the check box "lower case".
    2. check your attribute length settings and type..may be the chanracter values  are not as per the definition of ur infoobject
    3. Check whether ur using any spaces or special characters that BI cannot display...if you check in RSA3 for the record in the source system do you also see the space or some other character?
    hope this leps u,
    Thanks
    Sai Chand

  • I dont understand why i get this error when trying to type "else"

    Hello Everybody,
    Im new to java and am writing a simple program which gets a input number between 0 and 100 and is to print A for (grade>=90), B for (90>grade>=80) and so on, when grades < 60 get F.
    i use a series of if/else, but when i get to the FINAL else it gets an error (red wavy line under the last else). this ruins the program bcoz now a grade 61 will output "D" AND "F".
    can anyone explaing why this error msg? and how can i fix it?
    this is the code:
    public class Assignment02Q04 {
         public static void main (String[] args){
              int grade = (Integer.parseInt(args[0]));
              if (grade >= 90){
                   System.out.println("A");}
                        else {if (grade >= 80){
                        System.out.println("B");}
                             else {if (grade >= 70){
                             System.out.println("C");}
                             else {if (grade >=60);{
                                  System.out.println("D");}
                             else System.out.print("F");
         }

    Please ignore the rude bits... this is a pro-forma post most often trotted out to suspected trolls... i.e. It's NOT directed at you personally.
    h1. The Ubiquitous Newbie Tips
    * DON'T SHOUT!!!
    * Homework dumps will be flamed mercilessly.
    * Have a quick scan through the [Forum FAQ's|http://wikis.sun.com/display/SunForums/Forums.sun.com+FAQ].
    h5. Ask a good question
    * Don't forget to actually ask a question. No, The subject line doesn't count.
    * Ask once
        - Don't Crosspost!
        - Two people answering one question independantly is a waste of there time.
    * Don't even talk to me until you've:
        (a) [googled it|http://www.google.com.au/] and
        (b) looked it up in [Sun's Java Tutorials|http://java.sun.com/docs/books/tutorial/] and
        (c) read the relevant section of the [API Docs|http://java.sun.com/javase/6/docs/api/index-files/index-1.html] and maybe even
        (d) referred to the JLS (for "advanced" questions).
    * [Good questions|http://www.catb.org/~esr/faqs/smart-questions.html#intro] get better Answers. It's a fact. Trust me on this one.
        - Lots of regulars on these forums simply don't read badly written questions. It's just too frustrating.
          - FFS spare us the SMS and L33t speak! Pull your pants up, and get a hair cut!
        - Often you discover your own mistake whilst forming a "Good question".
        - Many of the regulars on these forums will bend over backwards to help with a "Good question",
          especially to a nuggetty problem, because they're interested in the answer.
    * Improve your chances of getting laid tonight by writing an SSCCE
        - For you normal people, That's a: Short Self-Contained Compilable Example.
        - Short is sweet: No-one wants to wade through 5000 lines to find your syntax errors!
        - Often you discover your own mistake whilst writing an SSCCE.
        - Solving your own problem yields a sense of accomplishment ;-)
    h5. Formatting Matters
    * Post your code between a pair of &#123;code} tags
        - That is: &#123;code} ... your code goes here ... &#123;code}
        - This makes your code easier to read by preserving whitespace and highlighting java syntax.
        - Copy&paste your source code directly from your editor. The forum editor basically sucks.
        - The forums tabwidth is 8, as per [the java coding conventions|http://java.sun.com/docs/codeconv/].
          - Indents will go jagged if your tabwidth!=8 and you've mixed tabs and spaces.
          - Lines longer than 80 characters should be wrapped.
          - Proper indentation illustrates program logic.
    * Post your error messages between a pair of &#123;code} tags:
        - That is: &#123;code} ... errors here ... &#123;code}
        - To make it easier for us to find, Mark the erroneous line(s) in your source-code. For example:
            System.out.println("Your momma!); // <<<< ERROR 1
        - Note that error messages are rendered basically useless if the code has been
          modified AT ALL since the error message was produced.
        - Here's [How to read a stacktrace|http://www.0xcafefeed.com/2004/06/of-thread-dumps-and-stack-traces/].
    * The forum editor has a "Preview" pane. Use it.
        - If you're new around here you'll probably find the "Rich Text" view is easier to use.
        - WARNING: Swapping from "Plain Text" view to "Rich Text" scrambles the markup!
        - To see how a posted "special effect" is done, click reply then click the quote button.
    If you (the newbie) have covered these bases *you deserve, and can therefore expect, GOOD answers!*
    h1. The pledge!
    We the New To Java regulars do hereby pledge to refrain from flaming anybody, no matter how gumbyish the question, if the OP has demonstrably tried to cover these bases. The rest are fair game.
    Edited by: corlettk on 17/03/2009 23:25 ~~ Doh!

  • Does anyone know why i get this error message when installing CS5.1? "your security preferences allow installation of only apps from the mac apple story and identified developers.

    I was given this link to re download my programs. https://helpx.adobe.com/creative-suite/kb/cs5-5-product-downloads.html
    anyone know why i am not getting them to download?

    One way to bypass the Gatekeeper is to right or ctrl click on the Installer and choose Open from the Context menu.
    Then it will give you that option to run the installer app.

  • Can anyone tell me why im getting this error while doing expdp?

    Hi,
    My question is
    I have a script scheduled in cronjob which is having stmts for taking export backup for many schemas.
    Before doing that it will remove all the dmp files in the directory to create new dmp files everyday.
    But yesterday, it took backup for only one schema, it failed for remaining schemas.
    So currently one dmp file is there in dmp destination.
    and previous day log files are there in log destinaton.
    So, after checking this i have taken logical backup for a single schema in background.
    then i checked in another terminal whether any backup is going on or not.
    It was showing nothing even though i have given the backup manually.
    So, i tried to take the backup again normally (not in background)
    then it was giving the following errors.
    ORA-31634: job already exists
    ORA-31664: unable to construct unique job name when defaulted
    Can any one tell why this happens?
    Thanks in advance.

    Error:     ORA-31664 (ORA-31664)
    Text:     unable to construct unique job name when defaulted
    Cause:     The job name was defaulted, and the name creation algorithm was
         unable to find a unique job name for this schema where the table
         name (for the master table) didn't already exist.
    Action:     Specify a job name to use or delete some of the existing tables
         causing the name conflicts.

  • Why i get this "Unresponsive script" message

    Another problem with the Firefox browser which shows the following message. " A script on this page may be busy, or it may have stopped responding. You can stop the script now, or you can continue to see if the script will complete.
    The following message, causing Firefox to be stuck and freezes, as is evident in the tab bar of Firefox.
    And I try to close some of the tab bar but is still unable to respond which means that I have to wait to be able to browse again.

    This sort of message can have many causes, and is often due to a problem site or problem add-on.
    * do you only get the message on specific sites, or when doing certain tasks ?
    *What is the actual message, is it the same each time ?
    * to see if the problem relates to additional software try Firefox in safe mode
    ** see [[Troubleshoot Firefox issues using Safe Mode]] <br/> on XP use Help -> restart with add-ons disabled <br/> do not make changes in the first window with check box options, just click on continue.
    * see also [[warning unresponsive script]]

  • Why I get this exception in an applet?

    I run the JMF Diagnostics Applet in my IE5.0,
    while in the applet area,there's only the message:
    Exception:java.security.AccessControlException:access denied(java.net.SocketPermission samples resolve).
    The target of this applet is just using the method "Class.forName()" to find whether JMF has been installed in the visitors machine.
    How could I resolve this problem?
    thx

    Frequently Asked Questions - Java Security
    http://java.sun.com/sfaq/
    Most Applets are prevented from accessing the underlying computer. If you are learning Java, build regular applications to avoid many of the security issues of Applets.
    In general, applets are prevented from reading and writing files on the client file system, and from making network connections except to the originating host.
    In addition, applets are prevented from starting other programs on the client. Applets are also not allowed to load libraries, or to define native method calls. If an applet could define native method calls, that would give the applet direct access to the underlying computer.

Maybe you are looking for

  • Audio-Recording does not work in Quicktime

    Hello, I've got a new MacBook with Mac OS X 10.4.10 and Quicktime 7.2 Pro and I try to record audio with QT. In the Quicktime settings I tried to change the Input Source, but instead of "Built-In Microphone" or "Line-In" there are two entries called

  • Command-line SSL test in WLS6.1

    With Weblogic 6.0, I used to be able to test if SSL was working on the command-line by using this command: java –Dssl.debug weblogic.Admin -username name -password pw -url https://localhost:7002 PING This used to work fine. But now with WLS 6.1, the

  • Rounding while goods receipt against outbound delivery

    Hi Experts, I have an issue regarding alternative unit of measure. Material with base unit of measure FT,ordered unit is Meters since the alternate unit of measure has conversion factor getting decimal places while goods receipt against outbound dele

  • How to get result of Select from stored function.

    I need to get result of select from a stored function. In the end of my stored function I makes final select (four columns). How it can be retrived from function?

  • WebLogic 5.1 + Cocoon

    Hi all, I am posting the steps involved in integrating Cocoon 1.7.4 with Weblogic 5.1 -- in the hope that it will be useful for some of the XML gang. I received some good help from Philip Aston, Jim Typrowitz, James Scott et al. from the Cocoon maili