How to make message IW 703 as error in T-Code: IW31.

Hi All,
In SAP R/3 PM, during the Work Oder creation in T-Code: IW31, we are getting the Message "IW 703 - Work Centre -- Locked in Plant -- " as WARNING. This happens whenever we use a locked Work Centre. But further it allows us to create the order.
Our scenario is to make this message as ERROR. That it should NOT allow to create a work order with a locked work center.
This has already been maintained as "E" in "configure messages" in IMG for IW 703.
Thanks.

Hi,
Thanks for the response.
We tried the suggestion given by you, but it's not working. We are still able create a work order using a locked work center.
The program is hard coded as below:
"MESSAGE W703 WITH P_VAPLZ P_VAWRK"
Please advise how to change this message from warning to an error one so that it prevents creation of work order with a locked work center.
Thanks,
Muneer.

Similar Messages

  • How to make all fields mandatory in sales order T- code VA01 initial screen

    Dear all,
    how to make all fields mandatory in sales order T- code VA01 initial screen itself
    The fields are
    Sales Organization
    Distribution Channel
    Division
    Sales Office
    Sales Group
    Regards,
    Amar Reddy

    Hi,
    You can use Transaction Variant to achieve this functionality.Please go through the following link which helps you in creating the same.
    [Link|http://wiki.sdn.sap.com/wiki/display/Snippets/TransactionVariant-AStepbyStepGuidefor+Creation]
    Regards,
    Phani Prasad

  • Make message as FB876 as Error message

    Hi,
    While uploading the MT940 bank file statement in FF.5 ,  where the end balance does not match the begin balance + items the system gives the message;
    "Extract ABCD: sum of line items does not match closing balance".
    this message is because of, when the balances in all line 60F not match with the last bankstatement.
    And this is Information message, and the Problem is that either the green tick or the cross on the top of screenshot will not stop the execution of the upload of the bankstatement.
    So we are trying to make this information as Error message,
    Kindly let me know if anyone worked on this kind of issue, and kindly share how did you fixed the issue;
    Thanks,
    Shwetha

    Hi,
    Go to transaction OBMSG-select the area FB - messgaes - find out the message 876 and in the standard field make the entry "E".
    This would make the message 'error.' instead of warning
    Anil

  • How to make Messages appear on a specific View?

    Hi,
    we are bulding a webdynpro application which uses several views in different components. We are using the IWDMessageManager to display messages. The strange thing is, that the messages do not always appear in the view You would expect. For example if a message is raised in the component-controller of component A, the message might appear in a View of component B, or even does not appear at all.
    I guess that the messages tend to show up in a view which has been loaded first, but I can not reproduce this clearly.
    How may I control on which view a message appears?
    Thanks in advance and regards
    Jan Hempel

    Hi,
    The messages are always displayed in the Message Area that is loaded first in a perspective(Combination of DC's views). This is an extract from Message Area documentation.
    <-----
    If there are several suitable instances, the oldest one (with respect to creation time) is used. Note that it's the application developer's responsibility not to place a MessageArea in a view in such a way that MessageArea is not permanently visible, except if the visibility (or enabled) property of the MessageArea is set accordingly. Also beware that the tooltip property might have no effect.
    >
    Check this link too !
    Re: Error getting messeges in Webdynpro
    Regards
    Bharathwaj

  • How to resolve Message "Incorrect translation in error saving docuemnt message"?

    As of 29/Jan/2014, I only get this message from Adobe Reader of iPad (Japanese environment)
    Regardless of my subscription, I cannot convert anything to PDF.
    How to resolve or get money back?

    Hi
    Could you please try the following steps to confirm that your subscription went through?
      1.  On a computer, browse to files.acrobat.com and log in with your Adobe id.
      2.  Upload some files to your account.
      3.  Now on your iPad, launch Adobe Reader and tap on Acrobat.com. You should see the uploaded documents there.
      4.  Open any document and try and convert it to another format/pdf.
    Do the documents convert successfully? Now try to do the same conversion of any document under your Documents list. What happens? Do you see the same error?
    Thanks
    Shradha

  • How to make message bundle in russian language

    I have a struts application and a messages.properties for it
    All russian letters are presented as '?'
    how to fix this problem ?

    You write in Russian, use the native2ascii tool to generate Unicode escapes and you make sure you have the correct headers to define the page as using Russian or UTF-8 encodings, whichever is appropriate.

  • How to make xml validation with automatic error fixed

    Hi', i have some string which i want to validate it:
    String word = "<style>body {background-color:transparent}";     
    byte[] bytes = word.getBytes();
    InputStream inputStream = new ByteArrayInputStream(bytes);
    DocumentBuilderFactory docBuilderFactory = DocumentBuilderFactory.newInstance();
    docBuilderFactory.setValidating(true);                    
    DocumentBuilder docBuilder = docBuilderFactory.newDocumentBuilder();
    DOcument doc = docBuilder.parse(inputStream);This code will produce some exception like this:
    Warning: validation was turned on but an org.xml.sax.ErrorHandler was not set, which is probably not what is desired.  Parser will use a default ErrorHandler to print the first 10  errors.  Please call the setErrorHandler method to fix this.
    Error: URI = "null", Line = "1", : Document root element "style", must match DOCTYPE root "null".
    Error: URI = "null", Line = "1", : Document is invalid: no grammar found.
    org.xml.sax.SAXParseException: XML document structures must start and end within the same entity.Is there anyway to make this validation not only show the errors but automatic fix it?
    Thanks a lot...

    I mean there is no general method which is capable of correcting all possible errors found by schema validation.
    For example if the validation says it expected to find an <organization> element or a <company> element but it found a <banana> element, there is no way to determine what repair is necessary.
    Anyway the requirement is fighting against the way things work in the real world. The purpose of validation is just to find out whether a document matches a schema. If it doesn't, then too bad. Send it back to be fixed or replaced. If you are having a problem because you repeatedly get documents which don't quite match your schema, then you need to train the users to produce valid documents or to give them tools which help them do that.

  • How to make message transfer to a topic from a business service synchrouns?

    hi,
    I am posting a message to a JMS queue using a business service (say A) and then I am fetching that message from that queue and using a proxy service (B) and a business service (C) for transferring that message to a topic, now I want that my business service A gets the same message that it initially posted as a response back from the topic to make the whole message transfer synchronous, but the problem is that as I select topic on my JMS transport configuration page of business service the text box where I need to specify the URI for the topic gets blocked,hence I am unable to get a response from the topic, can anybody help me out with this as I really want to make this synchronous.
    Edited by: user12826319 on Jul 21, 2010 4:36 AM

    yes u got it correct...v require a synchronous message transfer to happen i believe d alternative can be that i send the message to topic directly using a business service and expect a response from the topic itself in the form of the message i initially posted, that thing I would manage but the real problem is to get a response to the business service when i use topic, because as i select topic on JMS transport configuration page of business service the end point URI textbox gets blocked...

  • How to make messages vibrate?

    My new 8x does not vibrate when I get messages or phone calls even though it is on the "vibrate" setting. I tried restarting it but that still didn't work. Any suggestions? Thanks.

        Congratulations on your new phone, RLP8x!
    Let's make sure we don't get those loud texts and calls when the device should be on vibrate.
    First, let's soft reset the phone http://bit.ly/VEilBC and then try it once again http://bit.ly/UJlKeG. What happens?
    Tamara H.
    Follow us on Twitter @VZWSupport

  • How to make reference feild (XBLNR) mandatory in MIRO transaction code.

    Dear Team,
    please let me know how can we make this XBLNR (reference) feild in MIRO as a mandatory. i didn't find any feild selection for invoice verification in SPRO - LIV.
    your kind cooperation is needed.
    Vijay

    Hi Vijay,
    Go to the transaction OMR4,select the topone document type and select the document type
    RE for Gross Invoice or any required document type then click on details in the bottom you can see the refference field ,select and save .
    Regards,
    Cherry KLN

  • How does System Exec VI identify Standard Error within cmd code?

    I am using the System Exec VI to control a USB to serial adaptor program header, I have sucessfully written a .BAT file to call the CMD commands (the .exe I am running uses "-option" commands and the help file reccomends to do so) and it functions perfectly. My only issue is identifing errors. The "Standard Error Out" on the System Exec VI never outputs anything. Yes the wait until completion is TRUE and my standard output functions fine. I am curious as to how the System Exec VI  identifies errors from the command prompt and  why my errors are not showing up. I am currently using multiple match pattern string functions to identify the possible errors from my standar output for the time being but I would like to simplfy my code a bit and clean it up if at all possible. Not to mention there are most likely several other errors that could occur that I may have not identified. Some examples of stanadrd output errors i can get include include:
    {C:\Documents and Settings\owner\Desktop\RACK LINK>C:\DCRABBIT_10.66\Utilities\clRFU.exe "" -s "0":115200 -v -vp+ -usb+
    .bin not found
    C:\Documents and Settings\owner\Desktop\RACK LINK>pause
    Press any key to continue . . . }
    or
    {C:\Documents and Settings\owner\Desktop\RACK LINK>C:\DCRABBIT_10.66\Utilities\clRFU.exe "C:\Documents and Settings\owner\Desktop\RACK LINK\Calibration_v030.bin" -s "4":115200 -v -vp+ -usb+
    Rabbit Field Utility v4.62
    Installing Calibration v0.3.0
    Sending Coldloader
    Error: No Rabbit Processor Detected.
    C:\Documents and Settings\owner\Desktop\RACK LINK>pause
    Press any key to continue . . . }

    I think you should use error handling in batch programming, see this link http://www.robvanderwoude.com/errorlevel.php
    CLA 2014
    CCVID 2014

  • How to make a listbox selected item highlight color from code the same as if user click on item?

    Hi all,
    I have a listbox that gets filled with data when my program starts. I save the last selectedItem value so I set it when the program start again. But the color that the selected item has is not the same as if the user click on it (pictures below).
    The color when I set the selectedIndex=someItem is black on light grey (background)
    The color when the user clicks on the item is white on blue (background)
    Any way to make them both white on blue (background)?
    Thanks
    This is the user clicking on it:
    This is the code:

    I think the difference is focus.  When you use the mouse to select it also sets focus to the listbox so you would have to set focus to the listbox when you set the selected item.  How are you setting your selected item?  I think that by
    using a property to hold the selected item rather than setting the index that might also fix the problem.
    Lloyd Sheen

  • How to make a SQL database connection with a java code in netbeans?

    can somebody helpthrough an example

    raghu0007 wrote:
    can somebody helpthrough an exampleNetbeans is just an IDE.
    Anyway the JDBC tutorial may be found here http://java.sun.com/docs/books/tutorial/jdbc/index.html
    If you have a specific question please ask it.

  • How to make a Struts message null after used in JSP?

    Hi,
    In the context of Struts/JSP,
    An action class might write error messages by
    ActionError msg = new ActionError("msg.request.something");
    ActionErrors msgs = new ActionErrors();
    msgs.add(ActionErrors.GLOBAL_ERROR,msg);
    saveErrors(request,msgs);
    This message will produce a popup modal window by the following JSP code:
    <logic:messagesPresent>
    <html:messages id="error">
    <!--<li class="infomsg"><bean:write name="error"/></li> -->
    <script>javascript:alert('<%=error%>')</script>
    </html:messages>
    </logic:messagesPresent>
    The problem is that this JSP page is shared by serveral actions: when another action invoke this page again, the previous error message will take effect again.
    So my question is how to make message null after used once by its author.
    Thx.
    PY

    msgs = null;

  • Very URGENT -- How to make keyboard print

    This is very urgent. How to make the keyboard print?

    Here is the code. It is supposed to make the keyboard type something.
    This is URGENT.
    public class KeyBoarder
         private int keyPressed;
         public KeyBoarder()
              System.out.println("Welcome to keyboard");
         private void print()
              System.out.println("Keyboarder has printed");
         public static void main(String args[])
              KeyBoarder board = new KeyBoarder();
              board.print();

Maybe you are looking for

  • My FinalCut Wish List

    My Valentine's gift to Apple's FCP feedback site was the following Wish List (which I figured I'd also post here just for the heck of it). Some of these feature requests may only apply to my particular -- some might say peculiar -- workflow, but I su

  • When running my code i get this message"applet notinited"

    if someone could tell what to do i would be very thankful.every comment is important cause i'm new to java. it compiles perfect. here is my code import java.applet.*; import java.awt.*; import javax.swing.*; import java.awt.event.*; public class boar

  • Mobile content creation in After Effects

    Hi Recently Adobe Device Central was integrated with After Effects to create content for mobile devices. Now that the tool has been eliminated in CS6, what is the new work-around? Is there a new tool or an integrated output module to assist? Thanks i

  • Change the Mail-Session's type in glassfish to type javax.mail.Session

    hi all guys! com.sun.enterprise.deployment.MailConfiguration is the default type of Mail_Session in the glassfish, but I want the javax.mail.Session to construct a MimeMessage! How can I do? All comments will be appriciate!

  • Calculate number of Days through PCR in Time Management

    Dear All, The following is the scanerio, if an employee joins on any day other than 01.01.yyyy, then the number of days from this day to 31.12.yyyy should be calculated, how can this scanerio be handled through PCR. Thanks in advance Raghu Edited by: