BADI ME_PROCESS_PO_CUST - DOES NOT CLEAR OUT ERROR

In ME21N I want to validate the field Commodity Code - STAWN. I have used the BADI ME_PROCESS_PO_CUST*
. Have used get_foreign_trade() in the PROCESS_ITEM method . I am able to throw an error . It is doing it but*
after throwing error then when we give a valid Commoditycode too it is still showing the error and not clearing the error  .*
As suggested by Dean Q I used   INCLUDE mm_messages_mac,
tried im_item->set_foreign_trade( ls_mepo_eipo)  still when a valid Commodity code is entered after an invalid one  it does not clear out the error. In fact on checking using break-point I found that the second time it does not enter into the method  PROCESS_ITEM.    Any help is welcome
Nivedita

Hi,
In SE18 give ME_PROCESS_PO_CUST as the enhancement spot and display. At the left side of the screen you can see the badi definition ME_PROCESS_PO_CUST. Expand the tree and double click on implementations. You can see the enhance implementations created. Double click on the enhancement implementation and in that screen there is a check box 'Implementation is active' and field 'Effect in current client'.
If you know the enhancement implementation name(not the badi implementation name), you can check it directly from se19.
Regards,
Poornima

Similar Messages

  • Window pops up stating"browser error" when trying to access documents using google doc's. Holding shift key and refresh does not clear window. What's next?

    Shut down and restarted computer, "browser error" still pops up when trying to access documents using Google doc's.
    Holding shift key and clicking refresh does not clear window.
    What else can be done to clear the window and gain access to my documents?

    Hi,
    Found a note explaining the significance of these errors.
    It says:
    "NZE-28862: SSL connection failed
    Cause: This error occurred because the peer closed the connection.
    Action: Enable Oracle Net tracing on both sides and examine the trace output. Contact Oracle Customer support with the trace output."
    For further details you may refer the Note: 244527.1 - Explanation of "SSL call to NZ function nzos_Handshake failed" error codes
    Thanks & Regards,
    Sindhiya V.

  • I get unexpectedly logged out from my mail box and and recieve the following message: "The custom error module does not recognize this error."

    I am repeatedly and unexpectedly logged-out from my mail box when working on a document. It frequently happens when I choose Send or Save, but it could happen any time. The file that I worked on disappears completely. Before, the file could be found in the draft box or some other place categorized as Auto Recovery. Now, instead, I get the following message: "The custom error module does not recognize this error." I am working at home, connected to a university server. The same problem appears with both of my computers, which are connected by a router. I have a MacBook Pro and am working with Firefox 6.0.2. I have a wireless broadband connection with Internet. AirPort is connected to Lindstrom and has IP address 192.168.0.198. Router: D-Link Model DIR-635. Modem: ZyXEL Model No. 660H D Triple Play Modem.
    Best wishes,
    Lars Lindström, Professor
    <[email protected]>

    Hi Phil,
    Generally, when a user sends an incoming request to an Exchange 2010 Client Access server using Outlook Web App and the user’s mailbox is on an Exchange 2010 mailbox in a different Active Directory site,
    Exchange 2010 determines whether the Client Access server has the
    ExternalURL property set in that Active Directory site. If it is and the cross-site silent redirection has been enabled, the user will be automatically redirected to the specified URL.
    Thus, please make sure the External URL property is set properly in your environment. And also
    disable the WindowsAuthentication for OWA VD to have a try. If the issue persists, please try the following KB to reset the Outlook Web Access-related virtual directories:
    http://support.microsoft.com/kb/941201
    Thanks,
    Winnie Liang
    TechNet Community Support
    Sorry for the late reply.  Yes, the ExternalURL is set; otherwise, it wouldn't work at all.  98% of the time everything is fine.
    My issue described a problem that appears only during session timeouts.  I've pretty much verified that this is the case; Exchange 2010 does not appropriately handle the timeouts sometimes when using cross-site redirection.

  • MQ Adapter does not clear the rejected message from the queue

    Hi All,
    I'm using a MQ Adapter to fetch the message from the queue without any Backout queue configured. However, whenever there is any bad structured message found in the queue, MQ adapter rejects the message and moves the message to the rejmsg folder but does not clear it off the queue, as a result of which it keeps retrying the same hence, filling the logs and the physical memory. Somehow we do not have any backout queue configured so I can move the message to blackout queue. I have tried configuring the jca retry properties and global jca retry as well but to no avail.
    - Is it not the default behaviour of MQ Adapter to remove the rejected message from the queue irrespective of Backout queue is configured or not? The same behaviour working well with the JMS and File Adapter though.
    - Is there any way I can make MQ Adapter delete the message from that queue once it is rejected?
    Regards,
    Neeraj Sehgal

    Hi Jayson,
    Check this URL which answers a problem with com.sap.engine.boot.loader.ResourceMultiParentClassLoader problem:
    http://209.85.175.132/search?q=cache:RnFZ9viwuKkJ:https://www.sdn.sap.com/irj/servlet/prt/portal/prtroot/pcd!3aportal_content!2fcom.sap.sdn.folder.sdn!2fcom.sap.sdn.folder.application!2fcom.sap.sdn.folder.roles!2fcom.sap.sdn.folder.navigationroles!2fcom.sap.sdn.role.anonymous!2fcom.sap.sdn.tln.workset.forums!2fforumtest!2fcom.sap.sdn.app.iview.forumthread%3FQuickLink%3Dthread%26tstart%3D45%26threadID%3D1020700+com.sap.engine.boot.loader.ResourceMultiParentClassLoader&hl=en&ct=clnk&cd=3&gl=in&client=firefox-a
    Please check that the JDK compliance level is at 5.0
    Window->Preferences->Java->Compiler->Compiler compliance level set this to 5.0
    Set the installed JRE to the one you have mentioned JDK 5.0 update 16
    Window->Preferences->Java->Installed JRE's->
    Click on the add button to select the path of your JDK.
    once completed click on the check box next to it.
    regards,
    AKD

  • Does not print the error message at my behest???

    I have a program which works but I want to give appropriate error handling to the user of application.
    So basically a simple html page asks for servername, username and password and this is passed onto this .jsp page.
    When the correct servername, username and password is entered program is okay but when for example incorrect servername is given it does not print the error message at my behest???????
    Here is a ftp page:
    <!-- processftplogin.jsp -->
    <html>
    <head>
    <title> FTP Login </title>
    </head>
    <body>
    <%@ page import= "ftp.* " %>
    <jsp:useBean class="ftp.FtpBean" id="ftpbean" scope="session" />
    <%      try
               String servername = request.getParameter("servername");
               String username   = request.getParameter("username");   
               String password   = request.getParameter("password");
               ftpbean.ftpConnect(servername, username, password);
            catch(Exception e)
               out.println("There has been an error with logging into system");
               out.println("please check Servername");
               out.println("Please check username");
               out.println("Please check password");
    %>
    <h1> You have successfully logged in. </h1>
    </body>
    </html>Why does it print:
    Error: 500
    Location: /myJSPs/jsp/grid-portal-project/processftplogin.jsp
    Internal Servlet Error:
    javax.servlet.ServletException
         at org.apache.jasper.runtime.PageContextImpl.handlePageException(PageContextImpl.java:460)
         at jsp.grid_0002dportal_0002dproject.processftplogin_2._jspService(processftplogin_2.java:120)
    instead of:
    There has been an error with logging into system
    Please check Servername
    Please check username
    Please check password

    man do one thing
    first tell me the book u are using for JSP.
    cos even i would like to purchase.
    u mailed me before
    but this time make a good description
    of your project write it in a file
    then zip it along with your project
    source(if possible)...
    then in that project report
    also give the description of using the JSP tomcat
    and all (cos i dont know for windows...or linux)
    this will be all...

  • Powermac CD does not come out

    Ever since i got this powermac, it constantly does not spit out cds when i eject. I tried Disk util, Open firmware, unix, finder, mouse at startup, and only mouse at startup works sometimes. Other times, it holds on to it continuosly.
    Please help!
    ( I don't know if this has already been answered or posted)
    it has been through a history of bad hard drive fixing itself, also.
    Powermac G5 Mac OS X (10.4.7) Weird history of Crash Repair
    Powermac G5   Mac OS X (10.4.7)   Weird history of Crash Repair

    There was a series of PowerMac's that got the wrong sized spacers for the superdrive and therefore the tray may not eject correctly due to height problems.
    Contact Apple and give them your serial number.
    If your handy you can switch out the superdrive yourself and Apple will just send you the replacement.

  • FINSTA Bankstatement does not clear Open Items

    Dear SAP guru,
    I am experiencing an issue where FINSTA bankstatement generated in IHC module does not clear Open items in reciving company code. I would like to get the system to search for the document based on the original FI document number and clear it. The situation is
    The bank statement successfully processed has an original document number and processed.
    In IMG for EBS, I configure as algorism used is 20 - Document number search and Bank Posting type 4: Clear Debit GL account
    Clearing account -  and have the posting with relevant document number matched with the bankstatement.
    It seems that the system does not find the matching at all.
    Could any of you shed some light on what I am missing???
    Kind regards
    Taro

    Creating or even using something like a data migration account is the best way.
    Are you saying that you have a GL account with say 100 line items and you want them all cleared. If that is the case you wont need a LSMW, make sure you know the amount, and then create a journal posting to your new GL account, and select all items in the GL account you want to clear.
    If there are various GL accounts, again no real problem, in F-03 which is what you would be using, you can enter more than GL account so that should not be an issue.

  • External hard drive does not come out in desktop

    greetings! whenever i plug in an external hard drive or a USB flash disk through usb, it does not come out in the desk top. before, it used to come out, now it doesn't. i am still using the exact macbook. i think i touched something in the settings. please help

    Go to finder and choose preferences under finder in the menu bar. Now check and see if under General you have the choices clicked of what you want to show on the desk top.

  • SAP PI Message Cancellation Alert - Message does not have restartable error status

    Hello SCNers
    Version: 7.1
    Scenario: File --> PI -->SOAP
    We have a situation where a PI message  in Integration Engine shows error status.We want to cancel the message in IE but are unable to do so.
    On clicking Cancel for this message in SXMB_MONI, we are receiving an alert "Message does not have restartable error status".
    In SXMSPMAST table, value for ITFACTION is DEL.
    We do not want to run report RSXMB_DEL_TO_ARCH, that would change status of all messages with DEL status to ARCH.
    Is there a way to Cancel or Change the Status of this single message?
    Regards
    Sudheer

    Hi Hareesh,
    Tried that too, but to no avail.
    Strangely, the log shows NO_ERROR_STATE for the cancelation of this message thru RSXMB_CANCEL_MESSAGES.
    But in SXMSPMAST table the status of this message is 14 (System Error - Manual Restart Possible).
    Regards
    Sudheer

  • I downloan and updated my iphone software ...i have tried to activate it back but it is not working out error message always what can i do?

    i downloan and updated my iphone software ...i have tried to activate it back but it is not working out error message always what can i do?

    this is the error message........we are sorry we can not continue with your activation please contact customer care
    another message will say actiavtion server not available;
    please what should i do?

  • Hi i am have had a lot of trouble emptying my trash. when i go to put something in there it asks from my password and the item goes off the screen, but this does not clear any space on the hard drive.

    Hi i am have had a lot of trouble emptying my trash. when i go to put something in there it asks from my password and the item goes off the screen, but this does not clear any space on the hard drive.

    1. Triple-click the line below to select it:
    ~/.Trash
    2. Right-click or control-click the highlighted line and select
    Services ▹ Show Info
    from the contextual menu. An Info dialog should open.
    3. The dialog should show "You can read and write" in the Sharing & Permissions section. If that's not what it shows, click the padlock icon in the lower right corner of the window and enter your password when prompted. Use the plus- and minus-sign buttons to give yourself Read & Write access and "everyone" No Access. Delete any other entries in the access list.
    4. In the General section, uncheck the box marked Locked if it's checked.
    5. From the action menu (gear icon) at the bottom of the dialog, select Apply to enclosed items and confirm.
    6. Close the Info window and test.

  • After hiighlighting a word and pasting it into another document, the clipboard does not clear ;when I hit enter it pastes again and again. How do I fix it?

    When I highlight a word or phrase and copy to the clipboard, then paste it in another area the clipboard does not clear the phrase. Therefore, every time as I type and hit the enter key it continues to paste the phrase all over my document. I do have the latest download of Firefox installed (16.0, win 7 and that is when this started. How do I stop this obnoxious behavior so I can type a sentence with normalcy?
    Louise

    Thank you, Iusually do that first thing with any computer problems. Old school computer fix. Hard Boot regardless! lol Thanks again.

  • Phone reset does not clear status screen

    we have a couple of applications that reset the phones. we have noticed that a reset on a 7941 does not clear the display (that is, the old message "Resetting, please wait ..." remains on the screen). The 7940s and 7960s are fine. does anyone know why this is?
    Version in use is:
    Load File TERM41.7-0-2SR1S
    App Load ID Jar41.72-1-0-1.sbn
    JVM Load ID cvm41.72-1-0-1.sbn
    OS Load ID cnu41.72-1-0-1.sbn
    Boot Load ID boot41.3-2-2-0.bin
    I also have tried SCCP41.8-2-2S
    And SCCP41.8-0-4SR3AS
    (These are the latest available on CCO)

    Marc,
    The Factory reset or Restore to Factory defaults is geared towards the "Configuration" of the DMP.  The contents within flash are not removed as you have seen.  The FAQ that you reference is a good way to remove the files if so desired.  So the DMP is working as designed.
    If this answers your question, Please take time to mark this
    discussion answered & rate the response.
    Thank You!
    T.

  • Defered COGS does not clear

    Hi Gurus,
    I am seeing sporadically DCOGS account does not clear causing balance in GL . I am looking to see problamatic transactions from GL.
    I have done sanity check from Cost Management with COGS Process , Revenue Recognition and Generate COGS Events. All looks good
    Here is the case - I have the DCOGS GL account having the balance. I can drill down but how to identify which are the transactions thats causing this balance?
    Drill down shows all the transactions but doesnt have capability to show stuck transactions. Are there any tables that helps in seeing this details?
    Any one who has more inputs on this issue , I appreciate the help.
    Thanks
    Raghavendra

    Hi Raghavendra,
    You may benefit from the following oracle support document:
    Identify the Sales Order Issue Transactions that have been finally accounted but have no Revenue Recognition Transactions i.e. COGS or DCOGS (Doc ID 1616456.1)
    However, functionally, I usually like to track deferred COGS through "COGS Revenue Matching Report" as it gives me direct information on what orders have been earned (revenue recognition) and still have DCOGS
    "This report in Cost Management responsibility"
    Hope this helps you
    Regards

  • I have a disk in my mac and came not get it out?  I use the command E key to eject but it does note come out?

    I have a disk in my mac but it does note come out useing command e to eject? how do i get it out or do I have to get it jixed?

    Force eject a stuck cd/dvd
    First try the normal methods to remove the disc. Drag its icon to the Trash can in the Dock or select 'Eject' from the File menu.
    If you are running a virtual machine, e.g. VMFusion, ensure that the CD is disconnected from the virtual machine. This will sometimes allow the CD to now show up in Mac OS X.
    Shut down the computer and start up whilst holding down the mouse button. This may take some time, but keep your finger on the mouse button right up until the disc comes out or the log-in screen has appeared.
    If you have Toast Titanium installed on your computer, choose EJECT DISC from the menubar.
    Sometimes you can successfully use the eject disc button in iTunes even if the disc is not visible to the Finder
    Open Disc utility and choose the disc you wish to eject in the left-hand pane, then click on the Eject button.
    Some Macintoshes have a paperclip hole that you can insert a straightened paperclip into, manually triggering the eject mechanism.
    Open Terminal and type "drutil tray eject" to eject the disc/tray, and "drutil tray close" to close the tray.
    If your computer has an eject button on the keyboard, restart the computer holding down the Option key. When the startup disk selection screen appears, let go of the option key and press the keyboard's eject button.
    Source: http://guides.macrumors.com/Force_Eject_a_Stuck_CD_or_DVD

Maybe you are looking for