Error Message is not displayed by the API Move Order

Hi All,
Iam using the API "inv_move_order_pub.process_move_order" to create the move orders.
For few records the API is returning the return_status as "E" however the msg_count is returned as "0"
and there is no msg_data returned by the API for the records which are error out.
Kindly help me regarding this.
Regards
Tanisha
Edited by: Tanisha on Feb 2, 2011 2:34 AM

Can you please mention the type of move orders you are trying to create?
For the error records did you verify the validity of item, sub-inventories, locator_id etc?

Similar Messages

  • Error Message is not displayed on the pop screen for chain end chain

    Hi,
    I have called a screen in one of the standard program using enhancmenets,
    and i had put validations using chain and end chain, but the error message is not displayed immediately on the screen
    but it is displaying as log , i want the error should come on the same screen and it should not allow till the correct values are entered , how to handle it
    regards
    afzal

    Hi,
    have you tried option "LIKE" with instruction MESSAGE.
    Example:MESSAGE ID '38' TYPE 'S' NUMBER 000 DISPLAY LIKE 'E' WITH 'My Message'.
    And instead of using a MESSAGE instruction, why to not use a popup ?
    Like using one of these function modules (for instance):
    TMS_BCU_POPUP_TO_CONFIRM
    POPUP_TO_CONFIRM_STEP
    POPUP_TO_DECIDE
    FC_POPUP_ERR_WARN_MESSAGE
    etc...
    If that does not work, perhaps it's your ehancement which is not the good one or perhaps you have use a second one.
    Regards
    Mickael

  • LSO_CHECK_BOOKING custom error messages are not displayed

    Hi,
    Good day! I am currently experiencing some problems displaying custom error messages from BADI LSO_CHECK_BOOKING. I have implemented this Badi and is appending error messages in CT_MESSAGE_TAB however when the message is displayed in portal, the custom message is not displayed. Instead, SAP displays a predefined error "Error When Creating Prebooking with the data entered..."
    Is there a way for me to display my custom error message instead of the predefined SAP message?
    Thanks a lot.
    Cheers,
    James

    Hi James,
    You have not mentioned, which portal you are using. Please see below, that there are differences in the learning and the admin portal:
    Learning Portal:
    The framework of the existing design of the Learning Portal does not
    allow customer specific error messages to be displayed in the portal.
    Only a generic message will be displayed when prebooking in the learning
    portal if the BADI LSO_CHECK_BOOKING returns an error. The design of the
    application does not expect to raise an exception from the BADI. If the
    BADI processing is assumed to be unsuccessful, the messages filled by
    the BADI will be ignored and a general error message will be displayed
    in the portal.
    So this is basically a design limitation.
    Administrator Portal:
    Have you tried e.g. the following notes?
    SAP Note 1806593 Admin Portal: Message is not displayed while prebooking
    SAP Note 1575238 LSO: BADI LSO_CHECK_BOOKING does not show warning messages
    Regards,
    Agnes

  • My LR 4 suddenly no longer recognized my memory cards. I am using the same cards and cameras but consisitently get the error message:"files not imported because the files could not be read. they are jpg and nef files...I am stuck without my workhorse! Any

    My LR 4 suddenly no longer recognized my memory cards. I am using the same cards and cameras but consisitently get the error message:"files not imported because the files could not be read. they are jpg and nef files...I am stuck without my workhorse! Any advice is helpful. This has never happened in 6 years

    answered in your other thread LR 4 suddenly no longer recognizes files.

  • Sender JMS Adapter error: The JMS provider gave the error message as Not permitted, and the error code is null

    I am trying to connect tibcoems with PI using a Sender jms adapter.After successfully installing the drivers , the sender adapter goes into error.
    "The JMS Provider gave the error message as Not permitted, and the error code is null"
    The Transport protocol is 'Access JMS Provider with JNDI' and i have been given the required parameters from the tibco guys.
    Your input are highly appreciated.
    Shyam

    Hi AQmit,
    Thanks for the reply.
    Please find the screenshots of what i am trying to do.
    Also, Can u direct me how to check the right logs?

  • Error message is not displayed

    Hi all,
    I am working on Tomcat server and JSP. i have created a web page using JSP and html. when i click on submit button, it should display the next page. if any error is there, it should display the error on the webpage. But, it is not displaying any error message.
    It just says :
    The page cannot be displayed
    There is a problem with the page you are trying to reach and it cannot be displayed.
    Please try the following:
    Open the localhost:8080 home page, and then look for links to the information you want.
    Click the Refresh button, or try again later.
    Click Search to look for information on the Internet.
    You can also see a list of related sites.
    HTTP 500 - Internal server error
    Internet Explorer
    i tried using one undeclared variable and try to navigate to next page, even then there was no error message like "variable not found".......it just gives the error message as above............
    I am not able to makeout where i am going wrong, what is the problem.....
    I am finding it very difficult to debug.
    please help !!
    regards
    ashvini

    .....what is jsp url ?
    orginal post of yours...
    when i click on submit button........
    which means that in your first page, you have a form with an action attribute that points to a jsp - that's what i meant by submit jsp url.
    and where can i find <tomcat_root>/log file ???Go to your TOMCAT installation directory, there would be a logs folder under that which in turn would contain your log files.
    ram.

  • Validation error message is not displayed for an attribute as an Input List Of Value

    Hi everyone,
    I use jdev 11.1.1.7.0
    In my application I've created an Entity Obj and a View Obj base Employees table.
    for the JobId attribute I've taken actions as listed below:
    1. in Employees EO I've created a validation for this attribute and in some cases an error message returns (the error message is "the salary is not high"):
         * Validation method for JobId.
        public boolean validateJobId(String jobid) {
            if (...) {
                return false;
            if (...) {
                return false;
            if (...) {
                return false;
            return true;
    2. in Employees VO  I've created a LOV for this attribute (the view accessor is JobsViewObj ) and I display the attribute as an Input Text with List Of Values.
    in jspx page I drag& drop this attribute as below:
              <af:inputListOfValues id="jobIdId"
                                    popupTitle="Search and Select: #{bindings.JobId.hints.label}"
                                    value="#{bindings.JobId.inputValue}"
                                    label="#{bindings.JobId.hints.label}"
                                    model="#{bindings.JobId.listOfValuesModel}"
                                    required="#{bindings.JobId.hints.mandatory}"
                                    columns="#{bindings.JobId.hints.displayWidth}"
                                    shortDesc="#{bindings.JobId.hints.tooltip}"
                                    autoSubmit="true">
                <f:validator binding="#{bindings.JobId.validator}"/>
              </af:inputListOfValues>
    I open the Popup and I select a row from the Popup list and then I click Ok. After that if the validation method(validateJobId) returns false, the error message("the salary is not high") must be show to the user. but the error message doesn't display. I don't understand why this happens.
    Can anybody guide me about this problem?
    Regards
    Habib

    yes, you're right, I've tested it in 12.1.3 and error message was displayed.
    it seems it's a bug(bad bug ) in both 11.1.1.7 and 12.1.2. and now what can I do? is there any way to display the the error message?
    Regards
    Habib

  • My messages are not displaying, in the body of the message?

    When going to mail I see messages but the body of the message does not display.

    Try closing the Mail app completely and see if they show when you re-open the app : from the home screen (i.e. not with the Mail app 'open' on-screen) double-click the home button to bring up the taskbar, then press and hold any of the apps on the taskbar for a couple of seconds or so until they start shaking, then press the '-' in the top left of the Mail app to close it, and touch any part of the screen above the taskbar so as to stop the shaking and close the taskbar.
    If that doesn't work then also do a reset : press and hold both the sleep and home buttons for about 10 to 15 seconds (ignore the red slider), after which the Apple logo should appear - you won't lose any content, it's the iPad equivalent of a reboot.

  • Error message does not lead to the custom tab me51n

    Hi Experts,
    When I try to to create a PR in me51n and check, a popup with error messges appear when we pick one of the entry and select edit button that leads to the field of that concerned tab.I have a custom tab and cutom field the issue is error message is displayed to fill the custom field but when I check mark that error and select edit that does not take me to the custom tab where custom field exists please suggest I have tried lot of user exits but no use.
    appreciate your help......

    We added some error message checking using Function exit EXIT_SAPLMEREQ_005. How we can bring the screen to Customer Data Tab when there are any errors under the tab. And as long as the error is not fixed, the screen will stay on the tab?
    To eloborate my question - in ME51n/Me52n, the system gives a messages window/subscreen with errors or warnings upon clicking the check button or upon save. On the messages window/subscreen, we can select a particular message and edit will take action to the corresponding tab with the cursor on the field with the issue. I understand this is standard functionality.
    However I'm looking for a way to make this work for a mandatory field on the customer data tab i.e., when I select the error message pertaining to this mandatory field and choose edit, control should jump to the customer data tab with the cursor on the mandatory field.

  • Error message information not displaying.

    Hi Experts,
          when we click on error message (red icon) information will be displayed related to the error. but one of my user is getting blank page but when i tried with his id message is coming normally can u please suggest where the problem is ?
    Thanks in advance......

    Dear Satish,
    Is it Custom message or SAP Standard message? What's the message number?
    If it's a custom message through any enhancement, check with ABAPer whether there be any authorizations maintained.
    Umakanth R

  • Error Message -- could not back-up the iPhone

    I have had my iPhone over two years, with no problems. The last 3 times I have synced it to my iMac, I get an error message at the end saying: "iTunes could not back up the iPhone "iPhone" because the backup session failed"
    However, it appears that everything is syncing properly, including apps I have downloaded, photos I have added, and movies from my camera. Any thoughts?

    Unfortunately, "because and error occured" doesn't give you much to go on.  Some general things I would try if you haven't already:
    Use Disk Utility on your mac to repair disk permissions, then reboot and try backing up again.
    Use Finder to go to ~/Library/Application Support/MobileSync/, then control-click on the Backup folder and select Get Info, then check Sharing & Permissions at the bottom and make sure your username has read & write priviledges
    Try closing all apps, then reset your phone: double-tap the home button, tap and hold the apps at the bottom until they wiggle, tap the minus sign on all apps to close them.  Then reset your phone: hold the on/off and home buttons until you see the Apple logo (ignore the off slider that appears first), and release
    Try a different usb to dock connector cable; ensure that your case isn't interfering with a good connection to the dock connector at the bottom of your phone; clean the dock connector at the bottom of your phone (e.g., with a dry toothbrush); troubleshoot your usb connection (http://support.apple.com/kb/TS1286)
    I know this looks like a laundry list, but unfortunately it's hard to isolate the problem without a clear error message.  If the problem persists, you might try posting in the iMac or iTunes forums for other ideas.

  • I have an ipad1 that I cannot upgrade to ios5. I have attempted to both cable and wireless download the software. Each time after completing the download the error message could not complete because the connection timed out" appears. What to do now?

    Can anyone suggest what else I can try?

    Make sure your computer and ipad aren't set to go to sleep.  If either goes to sleep, the upgrade won't work.

  • Audio Books and the error message " class not registere

    I trying to download an library audio book to my player. I get the error message "class not registered" and the transfer sto
    ps.
    I have downloaded and intall the new firmware May 24, 2006 and the files that I'm trying to transfer is just a protected wma file. Any thoughts ?

    Hello again,
    Thank you very much, both of you for your attention to my problem. It seems that I made a mistake in choosing the correct license type. First I chose the system ID " N4S - SAP NetWeaver 2004s (DB2) " but actually what I had to choose was " NPL - SAP NetWeaver 7.02 (MaxDB) ". So I found the following thread which showed me how to unistall the wrong license by truncating the content of the table SAPLIKEY.
    Logon not possible (error in license check) for users other then SAP*
    Then I downloaded the correct license, and everything worked pretty well.
    Once again, thank you very much both of you for your help.
    Kind Regards,
    Dariyoosh

  • Stop Transaction Error Message Doesn't Display

    Hi,
    I am using a custom message, like "Results Not Yet Confirmed", in the Stop Transaction action. But this error message is not displaying when I run the JavaScript code. I used the expression "document.<AppletName>.getValue(1,1)".
    Any clues?
    Regards,
    Chanti.

    Hi Chanti,
    What display type are you using?  An iGrid?  If so, try
    document.appletName.getErrorMessage()
    Otherwise, please provide more details - the display type and which MII version you are using.
    Kind Regards,
    Diana Hoppe

  • Some Text Messages do not display when using large font on iphone

    When using increased font size (accessability function) on iphone some text messages will not display. The iphone just seems to lock up. If normal font size is used text massage displays with out any issue. When font size is increased, text message will not display again.

    Hi Peter
    Actually, Captivate does have an essentially unlimited number
    of undo levels. But that number may appear to be different. The
    number of levels starts when you begin editing the project. If you
    close and re-open a project, that starts the undo process over.
    I've tested and I gave up after about 280 or so undos.
    Where Captivate doesn't allow an undo, it normally warns you
    with a rather catastrophic looking dialog.
    Cheers... Rick

Maybe you are looking for