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

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

  • Warning messages are not displayed in confirmation

    Hi,
    We are working with SRM 5.0 classic scenario. Our issue is warning messages are not displayed whenever we press the CONFIRM or DELETE button in the confirmation, however warning messages are displayed if we press CHECK button in the confirmation.
    Please suggest the solution to display the warning messages while clicking CONFIRM or DELETE button in the confirmation.
    Thank you
    Natarajan

    Hi Muthu,
    Thanks for your reply. We raised the OSS message for this issue. As per  the standard system behaviour, warning messages will not be diplayed when " DLETETE" button pressed.
    In the DELETE mode, the system will display only the first EXPRESS
    ERROR message and not WARNING messages.
    Inorder to maintain an error message as EXPRESS, the FIELD_NAME
    (i.e ls_message-field_name) has to be assigned with the value
    EXPRESS.
    For example,
    ls_message-msgty = 'E'.
    ls_message-msgid = 'ZF'.
    ls_message-msgno = '000'.
    ls_message-field_name = 'EXPRESS'
    Kindly note that in the DELETE mode, the system does not display
    EXPRESS message with msgty = 'W'.
    Only EXPRESS message with msgty = 'E' is recognised and displayed.
    The Warning messages will be displayed only during the CHECK mode.
    Thank You
    Natarajan

  • My sent messages are not displayed...what happened and how do I restore?

    My sent messages are not displayed...what happened and how do I restore?

    http://kb.mozillazine.org/Disappearing_mail

  • JSF: Error Message are not getting cleared

    Hi,
    I am facing some problem with error messages in JSF.
    Here is what I am doing
    1. User submits a form, server validates and sends back the error to the client error message added to Faces Context.
    2. User checks the messages, changes the input and submits. assuming everything is correct now.
    3. On server, it validates and writes data to response for download using the following code.
    FacesContext faces = FacesContext.getCurrentInstance();
        HttpServletResponse response = (HttpServletResponse)faces.getExternalContext().getResponse();
        DownloadResponse.sendDownload( response, is, fileName );
        faces.responseComplete();
      }4. It shows the download popup to download the file. The problem here is that error message are not getting cleared off. User can still see the error message on the screen.
    It seems I am missing something in JSF req-response life cycle. Anyone please point out the mistake.

    SudhirMongia wrote:
    4. It shows the download popup to download the file. The problem here is that error message are not getting cleared off. User can still see the error message on the screen. Wrong. The problem is that the view is not rerendered, which makes sense because you are not sending view content to the browser but your file.
    Your real question probably is: how do I cause a file download and still rerender the view afterwards to show the results? To that I myself do not have the answer unfortunately, but I have seen that question come by a few times already, so doing some searches in these forums may yield you an answer.

  • Error messages are not posted into ECH using collect method

    In asynchronous interface, Error messages are not posted into tcode:ECH_MONI_SEL using collect method.
    In the collect method, passing software component version,business process and error messages.but its not posted into ech and ppo.

    Hi,
    Have you created the FEH class for the proxy. In that, from within the PROCESS method, when there is an error you will be placing those errors into a table and this needs to be passed to the COLLECT method.
    CALL METHOD i_ref_registration->collect
       EXPORTING
         i_single_bo      = input
         i_component      = 'ZSWC'   "Software component defined while FEH customisation
         i_process        = 'ECH_BP'  "ECH Business process defined while FEH customisation
         i_error_category = lc_errcat
         i_main_message   = wa_error
         i_messages       = lt_error
         i_main_object    = wa_object.
    Here while populating the wa_object, the  objtype field should be populated with the object type defined while FEH customization.
    If all these things are done, then this should post the error.
    Regards,
    Abijith

  • 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

  • Error message area not expanded per default - but i want it expanded

    Hello,
    per default the error message area in web ui is NOT expanded. But I would like to have it expanded per default. But i cannot find the right area to change this behaviour.
    Does anyone have an idea how to change it to be expanded per default?
    Many thanks for your ideas and input.
    BR Andreas

    Thanks to your reply i found it pretty well documented in help.sap.com:
    http://help.sap.com/SCENARIOS_BUS2010/helpdata/EN/cb/659ebfc880493baad66896518a55a1/frameset.htm
    Edited by: andreas lehner on Jan 30, 2012 10:01 AM

  • R/3 Warning Messages are not displayed

    Hi experts!!!
    I have the following issue:
    Credit Limit Check works in ERP and displayes warning message during order creation. I need the same message to be displayed in B2B application.
    How can i achieve this???

    Hi Muthu,
    Thanks for your reply. We raised the OSS message for this issue. As per  the standard system behaviour, warning messages will not be diplayed when " DLETETE" button pressed.
    In the DELETE mode, the system will display only the first EXPRESS
    ERROR message and not WARNING messages.
    Inorder to maintain an error message as EXPRESS, the FIELD_NAME
    (i.e ls_message-field_name) has to be assigned with the value
    EXPRESS.
    For example,
    ls_message-msgty = 'E'.
    ls_message-msgid = 'ZF'.
    ls_message-msgno = '000'.
    ls_message-field_name = 'EXPRESS'
    Kindly note that in the DELETE mode, the system does not display
    EXPRESS message with msgty = 'W'.
    Only EXPRESS message with msgty = 'E' is recognised and displayed.
    The Warning messages will be displayed only during the CHECK mode.
    Thank You
    Natarajan

  • Messages are not displaying in  SXMB_MONI in R/3 system

    Hi,
          my scenario is  File -to Proxy (Inbound Proxy).. scenario is working fine... but those processed messages are not displyed in the SXMB_MONI screen in the R/3 System... .. but i wnat to see the messages in the R/3 system.. for this..any configuration is needed..  please suggest me..
    Regards
    Jain

    Thanks Aswin  and Praveen,
          Finally I got the messages in SXMB_MONI in R/3 system...  for that I added one more paramater additionally  along with  the parameters are suggested by  Mr.Praveen .. ..
    any ways.. these are the parameters  I added in the SXMB_ADM   for  your reference..
    category :RUNTIME parameter:Logging value :1
    category :RUNTIME parameter:Logging_sync value :1
    category :RUNTIME parameter:Trace_level value :1
    category :RUNTIME parameter:Logging_propagation value :1
    keep sharing the knowledge...
    Thanks
    Jain

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

  • 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

  • Suddenly, messages are not displaying correctly, how can I cure this?

    Messages have stopped displaying correctly, or, in some case, at all. The messages have downloaded OK. Even messages which were displaying correctly earlier, now don't. It occurred after 'finger' problems - I tried to type something into Firefox but failed to change focus from Thunderbird to Firefox first and have obviously changed some setting. What can I do to restore normal behaviour?
    I have tried uninstalling and reinstalling, and even deleting all references I can find to Thunderbird from the AppData folders in the users directory all to no avail.

    Thank you for the suggestions. They did not cure the problem, but that is because I think now that there is no problem; Thunderbird is working normally. It appears to have had a temporary glitch and has corrupted 8 or 9 messages around the one I was viewing when I hit wrong keys. The corrupted messages seem to contain the headers of dozens of other messages, some quite old. Apart from those few messages, all others in the root inbox folder and in all sub-folders seem OK.
    Thanks again for trying.

  • Error messages are being displayed when I run my report

    Hello,
    I am trying run a report which was builded using JDEV and ReportsBuilder as a Portlet....
    I did the configurations following the document:
    http://portalstudio.oracle.com/pls/ops/docs/FOLDER/COMMUNITY/pdk/articles/how.to.build.java.portlet.existing.component.html
    But it is displaying the error message:
    Mon Jun 10 14:41:22 GMT 2002
    java.lang.NullPointerException
    java.lang.NullPointerException
         at oracle.reports.rwclient.RWClient.getTrace(RWClient.java:969)
         at oracle.reports.jsp.JspTagUtil.getRWClient(JspTagUtil.java:59)
         at oracle.reports.jsp.RwTag.setPageContext(RwTag.java:54)
         at oracle.reports.jsp.ReportTag.setPageContext(ReportTag.java:85)
         at jpdk.carla._MyReport._jspService(_MyReport.java, Compiled Code)
         at oracle.jsp.runtime.HttpJsp.service(HttpJsp.java:119)
         at oracle.jsp.app.JspApplication.dispatchRequest(JspApplication.java:385)
         at oracle.jsp.JspServlet.doDispatch(JspServlet.java:259)
         at oracle.jsp.JspServlet.internalService(JspServlet.java, Compiled Code)
         at oracle.jsp.JspServlet.service(JspServlet.java:148)
         at javax.servlet.http.HttpServlet.service(HttpServlet.java:588)
         at oracle.portal.provider.v1.http.JspRenderer.renderBody(JspRenderer.java:133)
         at oracle.portal.provider.v1.RenderManager.render(RenderManager.java:164)
         at oracle.portal.provider.v1.http.ServletProviderResponse.showPortlet(ServletProviderResponse.java:510)
         at oracle.portal.provider.v1.http.HttpProvider.dispatchProviderAction(HttpProvider.java:651)
         at oracle.portal.provider.v1.http.HttpProvider.service(HttpProvider.java:383)
         at javax.servlet.http.HttpServlet.service(HttpServlet.java:588)
         at org.apache.jserv.JServConnection.processRequest(JServConnection.java:435)
         at org.apache.jserv.JServConnection.run(JServConnection.java, Compiled Code)
         at java.lang.Thread.run(Thread.java:479)
    Someone have any idea?
    Thanks...
    Carla

    Hi,
    First of all reduce code by using logical operators like OR , Further you can use DECODE .
    Check Joins and use of indexes.
    Adinath Kamode

Maybe you are looking for

  • Export Web Analysis report to Excel

    Hello I have a report in Web Analysis which I have to export to excel, anybody know how can I do this? Thanks

  • Trace file getting generated

    Hi, We have PI 7.1 installed in landscape. Some trace files getting generated at server\sapmnt\SID\DVEBMGS01\j2ee\cluster\server0\jrfc07500_06148.trc and utilizing more disk space aroung 1 GB. Could you please let me know from where trace can be disa

  • Installing Discoverer 4.1, Oracle_Home problem

    Hi all I am getting error on installation, it says it cannot install on disc_home. If I try to install it to default, i.e oracle_home, it says something like, you cannot have two product at one home. Similarly for Designer Please help me out Regards

  • Active client at risk shows wrong information

    Hello, I have 12 clients reporting that they are at risk and 8 reporting that FEP is not installed. Product status says: definitions out of date. If I look at the server they are all updated and updates get installed. I have pushed a reinstall of the

  • Laptop screen is Black! PLZ Help

    Hi All.  Happy Holidays!   I am not too computer savvy but I try!!   All of a sudden my notebook screen is blank.  My computer is charged fully.  I can turn it on and I hear it turn on and WINDOWS boot up but my screen is blank and black.  There is n