Error Message -MA640 we want this to be a warning message only

Dear SAP Guru,
We are using MC75 to transfer demand to MD62, however we got this error messase MA640:No data maintained for material & plant & in transfer period. we wanted this to became a warning message only. Please advise on how to do it. I would greatly appreciate your prompt reply.
Thank you so much.
JMTafalla

Hi,
Try to use T-code SE91 - Error management.
Enter the message number
But standard messages can only be converted by access key and with the help of ABAPer
Regards
Amit Parkhi

Similar Messages

  • I get this error message: only a single instance of this application can run

    When I try to open my bank statement I get this message: only a single instance of this application can run.  Just wondering what that means,  and how do I open a file with adobe reader?

    Adobe Reader | Edit | Preferences | Security (Advanced)
    That is, start Adobe Reader.
    Chose Preferences from the Edit menu
    Look at the left hand side for Security (Advanced) and click on it
    Now look for the option to turn off Protected Mode.

  • I can no longer access a password protected Numbers file with the correct password. Error message only says the file "cannot be opened."

    I'm using Numbers version 3.2.2.
    Suddenly I cannot access my password protected Numbers file with the correct password. I have the correct password written down so I know I haven't made a mistake.
    The response box that pops up says that the file cannot be opened. There are no other options for me to choose from.

    Also, I tried to open it through an older version of Numbers but it sent this error message.

  • Incorrect Number error message only started today ...

    Hi there
    Had my N900 since July and this is first time I have had major problem..
    Really weird...I text my wife everyday and have been doing so today as well..but within the last half hour, when I try to SMS her, I get an "Incorrect Number" error message
    I have tried deleteing the conversation and restrarting the phone but problem still there
    I can SMS other contacts
    I can still dial my wife's number
    But for some reason, the SMS for that number is now failing
    Any ideas??
    Thanks
    Solved!
    Go to Solution.

    Turns out three has disconnected phone by accident. So morale of the story is avoid the three network like the plague if you can! Their customer service well and truly sucks!

  • I tried to up grade to firefox 13 and beta 14 and only get error message, only going back to 10.2 works

    I had been using with problems Firefox 12. and upgraded to 13.0. Error Message is
    "Error platform version 13.0 is not compatible with minVersion> 13 message appears." (The same with beta 14)
    Neither 12, 13 or 14 will work only deleting everything and installing 10.2 lets me use Firefox. Uninstalling 12, 13 or 14 and reinstalling does not work, error is always present and firefox does not come up.

    Do a clean (re)install and delete the Firefox program folder (C:\Program Files\Mozilla Firefox\).
    Download a fresh Firefox copy and save the file to the desktop.
    *Firefox 13.0.x: http://www.mozilla.org/en-US/firefox/all.html
    Uninstall your current Firefox version, if possible.
    *Do NOT remove personal data when you uninstall your current Firefox version, because all profile folders will be removed and you will also lose your personal data like bookmarks and passwords from profiles of other Firefox versions.
    Remove the Firefox program folder before installing that newly downloaded copy of the Firefox installer.
    *It is important to delete the Firefox program folder to remove all the files and make sure that there are no problems with files that were leftover after uninstalling.
    *http://kb.mozillazine.org/Uninstalling_Firefox
    Your bookmarks and other profile data are stored elsewhere in the Firefox Profile Folder and won't be affected by a reinstall, but make sure that you do not select to remove personal data if you uninstall Firefox.
    *http://kb.mozillazine.org/Profile_folder_-_Firefox
    *http://kb.mozillazine.org/Profile_backup
    *http://kb.mozillazine.org/Standard_diagnostic_-_Firefox#Clean_reinstall

  • Can't get Adobe Flash to install; get error message "only one instance of this can run."

    I have even tried manually to install. No dice. Flash works fine in Chrome and Explorer.

    This page shows how to uninstall an installed Flash plugin.
    http://helpx.adobe.com/flash-player/kb/uninstall-flash-player-windows.html
    '''[http://helpx.adobe.com/flash-player.html Adobe Flash Player Help]'''

  • Getting error message "Only a type can be imported-" when trying to execute jsp page

    I get the error: "Only a type can be imported. com.adobe.cq.TestServiceImpl resolves to a package in adobe day cq5
    I have created one bundle and installed in felix console. The status of the bundle is also Active. And also it is available in both service and component console.
    Here is my TestServiceImpl class in com.adobe.cq bundle
    package com.adobe.cq;
    import org.apache.felix.scr.annotations.Component;
    import org.apache.felix.scr.annotations.Service;
    import org.osgi.framework.BundleContext;
    import org.osgi.service.component.ComponentContext;
    import javax.jcr.RepositoryException;
    import org.apache.felix.scr.annotations.Property;
    import org.apache.felix.scr.annotations.Properties;
    //src.component
    //declares the class component. This will provide a wrapped ManagedService component in the OSGI container.
    //src.service interface="SampleService"
    //declares the service we are offering. Actually, the interface attribute is superflous, as by default, all implemented Interfaces are used.
    @scr.component
    @scr.service interface="testService"
    @Component(immediate = true, metatype = true)
    @Service
    @Properties( {
    @Property(name = "service.description", value = "abcd"),
    @Property(name = "label", value = "myLabel") })
    public class TestServiceImpl implements TestService {
    public String sayHello() {
         return "Hello World!";
    Here is my jsp code
    <%@include file="/libs/foundation/global.jsp"%><%
    %><%@include file="/apps/mine/includes/functions.jsp"%><%
    %><%@ page import="com.adobe.cq.TestServiceImpl,
    org.apache.sling.api.SlingHttpServletRequest,
                    java.util.List"%><%
    %><%
    SlingHttpServletRequest r = (SlingHttpServletRequest)request;   
                    TestServiceImpl testService = sling.getService(TestServiceImpl.class);
                    out.println("testService:::"+testService);
    %>
    <div id="te-nav" style="display:block !important;">
    </div>
    Is it because of am using annotation in TestServiceImpl class?
    Could you please tell me how to fix it?
    Regards,
    Anderson

    Hi Pawan,
    Thanks for your information. It was problem with my pom.xml It started to work after changing my POM.xml
    I am not able to get sling service for TestServiceImpl. But I am only able to create TestService which is my interface. I need to get reference for TestServiceImpl class not for TestService interface. Please help me to make it.
    i have created TestServiceImpl and TestService class for testing whether my bubdle is crating all the folder structure or not.
    But my requirement is like assume class A has some methods like getMenuLink, setMenuLink.. And In class B i am calling some methods in class A and doing some manipulation in createLink method.
    Here class B does not have any interface. Not implementing  any interface. But I need to get class B refererence via sling.getService.
    I know that if we are using maven SCR plugin..we need to have @component, @service. And All java classes are not services. Will it work if I add activate, deactivate method in class B?
    Could you please tell me how to proceed next?
    Thanks,
    Anderson

  • Getting error message only on certain pages

    I am testing Crystal Reports 10 on a windows 2008 platform and getting the following error only on some pages. Usually on first page of a report but sometimes on a later page. When it happens on the first page, the next pages work fine if I scroll though.
    CrystalReportViewer - CrystalReportViewer1
    Error: Fail to render the page.
    I am looking at getting Crystal Reports 2008, but may not have it in time to launch.
    Does anyone know why I am getting this error?
    thanks.

    OK. I think I have found the problem, but cannot figure out how to resolve it. There is what seems to be an embedded image on the page that is returning the error. It is an OLE object. If I delete the image, the page renders fine. Yet, what is confusing to me is that if it an embedded image, it should not need a path and therefore is I see the image when opening the report through the designer, it should work through the crystalreportsviewer. Yet, when displayed through viewer, I get the error. I've looked in the crystalreportviewer directory on the old system where it works fine and cannot find anything that appears to be related to this image.
    Is there a specific directory I should be looking at? If the image is embedded, is there anything else that I need to do? When looking at the report explorer, it shows the image as Picture1. I see no path.
    Thanks.

  • Error message "the ipad 'ipads name' cannot be synched. You do not have enough access priviledges for this operation" Any one got any ideas on this one?

    This error message only come up on my ipad since the shift to ios7. It doesn't happen on my iphone 5, just my ipad. It's a 3rd generation. If I uncheck sync photo's it works fine? If check photo's it comes up with the error message. Its a real pain as I want to have access to my photo stream. Any ideas?

    iPhone - not enough access privileges: Apple Support Communities
    Also,
    Have you looked at the previous discussions listed on the right side of this page under the heading "More Like This"?

  • Why this error message with certain texts?

    Why do i get this error message only with certain texts?  I have entered only a ten digit number, have deleted conversations and resent messages and still?

    Oh, the error message is "
    error invalid number please re-send using valid 10 digit mobile number or valid short code."

  • Working on Lion, trying to share photos via email, error message: "The email server didn't recognize your username/password combination".  Regular email works fine, don't know how to fix this.

    Having trouble with sharing photos via email on my desktop Imac.  Error Message when I try to send: "The email server didn't recognize your username/password combination.  Normal email inbox/outbox works fine, error message only comes up when using "Sharing photos".
    Not sure how to fix this, please help.

    Are you trying to email directly from iPhoto? If so, check iPhoto>Preferences>Accounts tab and make sure your details are entered correctly there.

  • Display error message in batch job log

    Hello
    I have a batch job running and I have an error coming during some validation logic.
    The problem is I need to continue the batch job when this error message comes and it should not cancel the batch job as it is doing currently but display that error message in batch job log, there are more similar error messages coming in job log and job gets finished, but when my error message comes job gets cancelled.
    I cannot give it as info message as it will give wrong idea about message type.
    Is there any FM by which we can add message in job log?

    Sanjeev I have done that but problem is I do not want to give that as Information message but Error message only and continue processing.
    If you see in screenshot 3rd message is given by me as information and you can see error messages also 6th and 7th and job continued till it is finished
    Basically I want that 'I' to be displayed as 'E'.
    Display error message in batch job log 

  • Display error message in forms from function "verify_function"

    Hi,
    We have a number of users with our own created profile attached to them.
    We have enabled the 'PASSWORD_VERIFY_FUNCTION' for our own profile.
    Function "verify_function" is used to validate a user's password.
    In "verify_function" we have used "raise_application_error" message in case password validation fails.
    Example:
    raise_application_error(-20001,'Password must be minimum 8 characters in length and maximum 30 characters long');Question) "raise_application_error" displays the error message only in SQL Plus prompt. How do I display the same message from Oracle forms?.
    I have used DBMS_ERROR_TEXT & DBMS_ERROR_CODE in ON-ERROR trigger. This is not displaying the error message in forms in case validation failed in "verify_function". Oracle simply clears the username/password field with a new window. We want to display the error message that occured in "verify_function".
    Thanks

    use the following code in validating the item, e.g when-button-pressed
    begin
    verify_function;
    exception
    when others then
    message(sqlerrm);
    raise form_trigger_failure;
    end ;
    OR
    instead of writing a procedure rewrite it as a function to return 1 if password is correct or 0 if password is wrong
    Regards
    Jihad

  • Getting 'insertItemAt is not a function' Error Message

    I am using abode pro 8 and am getting a 'insertItemAt is not a function' error message using the following code. (This code below was written as an example to show the process I want - I want to clear a combo box, then add data to it.)
    The error message only appear in a one of my pdf's I currently use, otherwise it works as written. Because I want the data to appear listed from top to bottom within the combo box from 1 to 5, I insert 5 first. 5 gets inserted, but when the code tries to insert 4, it trippers the error message. Any thoughts - is there another way to insert data into a combo box?
    var i = 0;
    var ii = 5;
    var v = new Array();
    v[1] = 1;
    v[2] = 2;
    v[3] = 3;
    v[4] = 4;
    v[5] = 5;
    //Combo Box
    this.getField("Fund Company-Long-Name").clearItems();
    var a = this.getField("Fund Company-Long-Name");
    for (var i= ii;  i > 0; i--)
                 if(v[i] != undefined)
                             app.alert(i);      
                             a.insertItemAt(v[i], (i, ""));
    v[0] = " ";
    a.insertItemAt(v[0], (0, ""));
    this.getField("Fund Company-Long-Name").value = " ";  
    //================Gives this error message=============
    Acrobat Database Connectivity Built-in Functions Version 8.0
    Acrobat EScript Built-in Functions Version 8.0
    Acrobat Annotations / Collaboration Built-in Functions Version 8.0
    Acrobat Annotations / Collaboration Built-in Wizard Functions Version 8.0
    Acrobat Multimedia Version 8.0
    Acrobat SOAP 8.0
    a.insertItemAt is not a function
    4:Field:Mouse Down

    Yes, I'm actually looking at those two methods now. New questions arise.
    If my combo Box is called "Fund Company-Long-Name", how could I add a varying number of items to it, using the "setItems" command?
    I can get it to work for a defined number of items, as below. But I don't know how to insert a variable to replace ["A", "B", "C"] below.
    /=======================================
    this.getField("Fund Company-Long-Name").clearItems();
    var a = this.getField("Fund Company-Long-Name");
    a.setItems(["A", "B", "C"]);

  • Error message customization issues

    Hi ppl,
    This is with regards to the issue with customization error messages, I have already gone through the following,but haven't been able to achieve what i want:-
    "Chapter 8.2-8.3" "Business Rules in ADF Business Components".( white paper )
    ADF Faces: How suppress item validation on partial submit ( Frank's blog entry )
    So im extremely dull or have been looking at the wrong place ( or both :( )
    my jdev version :-10.1.3
    My use case is follows, extremely simple form page for creating a user log in along with other information like passwords,description etc.
    I have certain basic validations
    -should contain one numeric
    -must not be less than 8 charecters etc
    i can do the following:-
    make my own customized message bundle and successfully throw it when my custom method validator fails , i do so by using the command:-
    throw new AdminJboException (AdminMsgBundle.USER_ID_NO_SPACE,params);
    where AdminMsgBundle is my customized bundle message class and AdminJboException is a custom class that extends JBo exception ( for conveniance ).
    What i can't do is this :-
    my error logs:-
    JBO-27024: Failed to validate a row with key null of type ........
    User Id cannot contain spaces ( my validation message )
    User ID - JBO-27025: Failed to validate attribute UserId with value .....
    User ID - JBO-27014: Attribute UserId in AdminAppModule.UserViewObj is required
    At validation ( i presume at validateEntity() ), my exception gets thrown ), but before that the JBO-27024 gets thrown (because the data doesnt get validated and hence not stored and hence null), following which the required error is thrown , following which the 27025 and 27014 are thrown. Is there anyway i can suppress the JBO default error messages ONLY when i know for sure that my validation error message has been thrown. I was able to suppress the JBO-27014 exception altogether from the EntityModelImpl ( out of frustration ) , and it worked , but obviously it hampered proper functioning in other areas.
    My question is :--
    Which is the simplest cleanest way of throwing only your customized message and ignoring the default JBO ones when your exception is thrown , and letting things go normally if your customized exception is not thrown... ?
    P.S i can even override the "content" of the message being thrown from 27014 etc, but thats not what i want .
    Thanks in advance !

    See the following set of topics in the Online Help:
    Developing Business Components
    Working with View Objects, View Links, Application Modules and Clients
    Creating and MOdifying View Object, View Links and Application Modules
    Ways to Handle Errors

Maybe you are looking for

  • Why is my CPU clock only running at 2.9 GHz?

    Hi there. I own a late 2012 13inch non-retina MBP i5 2.5GHz(upgraded to 8 GB of memory at later time myself). Among other things using it for engineering simulations running on Matlab, a multiplatform math and simulation tool. Some of these simulatio

  • How to change the order of entries on the podcast or blog pages?

    Hi, I tried to move entries in the entry area on the podcast page to change the existing order but it seems they stay in the way they were created. Is there any opportunity to change the order of entries after they were created? Thank you, Vlad

  • 12" 13" or 14" notebooks that can run CS5.5 half decently?

    Hello, I am buying a new laptop with the intention of doing some HD video editing. When seated at my desk I will use an external HD monitor, but I am looking for a fairly compact laptop so I can remain portable. Are there any models that are reccomen

  • Using a power adapter head

    Hello everyone.I live in Euorpe and as you may know the power plug here is different from the USA's one.I have bought my iPhone in America and I needed to get an ac power adapter head that is removable and only attaches the charger.Does it harm the i

  • How do i get icloud backup message off of my ipad

    How do I get Icloud backup message off my ipad