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

Similar Messages

  • 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?

  • 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.

  • Why the 'decline' option not present in the lock screen for an incoming call in ios7?

    Why is there no call decline option on the lock screen for an incoming call in IOS7??

    Yeah... One workaround is double-click the lock button. But still it's stupid. The "Decline" is available only when screen in 'unlocked'. They think, you only need the to decline only when you are busy doing something on the iPhone, else need not to decline the call i.e. when your screen is locked.
    WTH, is my phone the only thing in the world, I could be busy with to decline??

  • 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.

  • Values not getting displayed in the selection screen for Hierarchies?

    Hi All,
      Our system was upgraded from BW 3.1 to 2004s. The quality system displayes values when query result is filtered for a hierarchy infoobject but the production system does not display any values and sometimes throws an error 'The operation failed because of a server error. See system logs.' There is no changes done for hierarchies in both the systems.
    Please let me know if anyone has had similar problems.
    Thanks,
    Krishna

    Hi All,
      Our system was upgraded from BW 3.1 to 2004s. The quality system displayes values when query result is filtered for a hierarchy infoobject but the production system does not display any values and sometimes throws an error 'The operation failed because of a server error. See system logs.' There is no changes done for hierarchies in both the systems.
    Please let me know if anyone has had similar problems.
    Thanks,
    Krishna

  • EDI message is not sending to the third party for one particular SA

    DearAll,
                   We have the scenario to send the schedule lines to the third party system. for one particular schedule agreement schedule lines not sending to the third party system.
    while processing the messgae it is giving the error as "Message XEDI already processed on 20110317 070042"
    What could be the reason?.. we have checked all the EDI settings maintained for this supplier. some two weeks back there is no problem now only getting this message.
    how to resolve this?..
    Thanks in Advance
    Ananth.

    Hi Hareesh,
    Thanks a lot for the help. I have tried with removing the xml namespace, still the same result. I believe, the problem is with MTs tag in response message structure, bank xml data is trying to map with the response structure in PI, but when its finding the MTs tag I believe then its not mapping, and directly its passing the response in SXMB_MONI without any mapping.
    My question is how can I define my response structure without the MTs tagm, I mean same as what I am receiving from bank.
    Also I tried with without any mapping in response structure, I mean I used only one Message type for "response from bank" to "response to ECC" , without xml namespace, in this case I am able to receive the response in ECC, but there is exception called "PARSE_APPLICATION_DATA Error during XML => ABAP
    conversion: Response Message; CX_ST_MATCH_ELEMENT in " while receiving response, and when I go and see the logs, it says "System expected element 'MT_Response_MT940_Test'" , as its try to match with the defined structure in PI.
    Please experts help me, so my question is how can I avoid the MTs tag in my response structure, I just want to define my response structure in PI same as bank is sending me the data in xml tag, without any MTs tag.
    Thanks,
    Farhan

  • I'm having problems burning discs,whether it is photos or music i keep getting error messages,i have been using the same brand for years and have faith in them and this problem has only started since I got a new hard drive installed,any thoughts ? thanks

    at the moment i have had a disc in for at least 20 mins and it's still 'finishing' sems a bit long for 17 songs . also the fan is on almost all of the time , maybe that has a bearing .. ? I'd appreciate some help here as it is getting increasingly frustrating . alao when i put in the discs that i have used they do not register on the desktop . so i have been wasting lots of discs doing this .
    Thank you all .

    What brand of media are you using?
    What error messages are you getting?
    What application/s are you using to burn?
    iDVD: Troubleshooting issues with burning discs
    http://support.apple.com/kb/HT1583
    Mac OS X: "Unknown Error -2147352480" when burning CD-R, CD-RW, or DVD-R media
    http://support.apple.com/kb/HT2718

Maybe you are looking for

  • Page Setup Changes For iCal / Epson R1800

    Hi I am trying to print from iCal - using custom A4 paper sizes so that I can hole-punch the paper in an appropriate place. My problem is that when I try to print from iCal, the Page Setup is set at 'Roll Paper'. I can't change that setting and when

  • How do i open a PDF document in forms?

    How do i open a PDF document in forms runtime? acrobat reader would already be installed on the pc's. any help would appreciated. Thanks Hussein Saiger

  • In iPhoto '11, is it safe to delete aliases in the masters folder?

    I'm running the latest update of iPhoto '11. I'm trying to do some house cleaning and I'm discovering many duplicates of photos because I used to have iphoto copy pictures into the library. So, I'm getting rid of duplicates, and I keep coming across

  • Encounteri​ng with the problem of capable video play modules

    I have owned a HP DV6 Pavilion Laptop , 4 years ago. Now i am unable to run any kind of games on my system which is bit irritating. I am a filmamking student so video editing software like Adobe Premiere Pro shows continous error during the startup p

  • From photos to whatsapp direct

    Hi there, I assume on every iphone since IOS7 when you click on photos and you select any of them, if you afterwards click on next, it appears 2 menus divided by a line. The one on top where you can click on the apps you want to use the photo/s with