Reg. Displaying backend errors

Guys,
How to get display the backend errors of the PO in SRM directly when we click on 'Check' button and should not allow us to 'Order' the PO for error in process POs.
Would this option be possible direclty ?
We are with SRM 4.0, Extended Classic Scenario.
Please advise me.
Thanks
Naga

Hi Masa,
Thanks for reply. We are with SRM 4.0, ECS and moving to SP12 on next week.
Yes, heard that with the new releases, we can control whether the backend check is required at the time of PO changes from SRPO settings.
Wouldnt be possible to have that 'Backend Check Functionality' in ECS POs for our old releases ?
Any note exists for this ?
Please advise.
Thanks
Naga

Similar Messages

  • Backend error message when changing old PO's in upgraded system

    Hi,
    We upgraded our SRM system from 5 to 7.1
    The issue we are facing is that fir all OLD PO's in the system,which were created before the upgrade,if we change the price or delete service lines in PO,then an error message is displayed "Backend error:Purcahse ordre still contains faulty items".
    Has anybody come across this issue?
    NOTE: This happens only for old PO's in the system.

    Did you click on the error message to see the error details?
    Thanks,
    Prashanth

  • Error message displays backend server name : Reverse Proxy

    Hi Experts,
    We are using Apache 2.2.16  for reverse proxy.Below is the  scenario.
    browser -
    >Apache server -
    >SAP Web Dispatcher -
    >SAP SRM Portal---->SAP SRM ( backend )
    Now https://apache_server_host:443/irj  works fine. but whenever we select one iview , there is dump in backend system & error message at portal displays backend server.
    e.g
    Error application is coming up.
    20101012
    BASIS
    074335
    srmhost
    http://srmhost.xyz.com8000/sap/bc/webdynpro/sapsrm/wda_l_fpm_oif/
    RAISE_EXCEPTION
    Exception condition "PURCHORG_NOT_FOUND" raised.
    Now can we hide , srmhost ( backend ) or can we replace srmhost with Apache host name.
    I am trying mod_substitute but it is not doing anything .
    Best Regards,
    Tushar.

    Solved by
    AddOutputFilterByType SUBSTITUTE text/html
    Substitute "s|http://srmhost:8000|https://apache_host|ni"

  • Display of Error Messages in Sourcing

    Hi All,
    We are in SRM Server 5.5
    The requirement is have the exact error messages displayed in sourcing during PO creation process. Presently, the errror message displayed is " Some Backend Document not generated". The exact error message is getting dispalyed in Application monitor.
    Any suggestions to implement this requirement.
    There is a OSS note 945340 for SRM Server 5.0 and the code change is not present in SRM Server 5.5.
    With Regards
    Sathya

    Hi
    Which support pack are you using ?
    <b>Try these SAP OSS notes -></b>
    Note 918194 - Application monitor: Shopping carts not transferred
    <u>Related Notes</u>
    Note 892274 - Appl monitor: Shopping carts cannot be transferred
    Note 753787 - Monitor shopping cart: Shopping cart with deleted items
    Incase you are using support pack -
    SAPKIBKS09 / SAPKIBKS10, then try making the same code changes in the
    Include program - LBBP_PD_SCF39
    as suggested in SAP OSS Note 945340.
    (Note 945340 - Sourcing Cockpit: No backend error message displayed)
    <b>Other related SAP OSS Notes -></b>
    Note 885397 - Backend PO cannot be created from the Bid Invitation
    Note 728714 - Optimizing control of buttons 'Delete' and 'Cancel'
    Note 1044083  -  Redistribute workload errors no using message class
    Note 685790 - SRM30: back. PurGrp not correct if changed in SC
    Note 644963 - Regenerating BBP_DOCUMENT_TAB entries
    <u>Hope this will definitely help. Do let me know.</u>
    Regards
    - Atul

  • Display system error through a mail

    We have a  BPM scenario in which XI sends a msg to Backend system.If the
    message couldnot reach ,that displays system error at the call adapter level in SXMB_MONI.If we want this error message to be displayed in the failure mail
    to the concerned person,it has to be pushed into a message type or datatype.how
    to do that?Is there any other way... through alerts?

    Hi;
    You can use alerts to send out error mails to the recepients.
    Refer these weblogs for more details
    transaction handling in XI
    /people/michal.krawczyk2/blog/2005/03/13/alerts-with-variables-from-the-messages-payload-xi--updated
    •     Auto triggering of alerts
    transaction handling in XI
    •     SCOT
    not sending email from alert inbox
    Mudit
    Award points if it helps

  • ICI - How to display custom error messages in SAP CRM

    Hello,
    we are working on a custom Contact Center which interfaces with SAP CRM Version 7 with Enhancement Package over ICI.
    The basic call functions like accepting, hanging up, holding and retrieving are fully implemented and are working already.
    Our goal is to display error messages in the CRM so that clients know there is something wrong, for example why he can't be log in successfully (e.g. the telephony server isn't reachable).
    We already found the ICI Documentation file which provides us the CRM SOAP error codes and tried to send SOAP Fault messages, but never got
    them to screen.
    Please find an attached example screenshot what we mean exactly, reproduced by trying to make a call with CRM user while BCM CDT isn't
    running in the background.
    Regarding to this topic we've the following questions:
    - Is it possible to display custom error messages on the CRM or is this functionality limited to SAP?
    - Could you provide us some further information on how to use this feature exactly (implementation details?) and how the SOAP XML should look like to get it work?
    Thank you in advance!
    Best regards
    René Holy

    NewUser7 wrote:
    Please correct me if I am wrong
    I need to create an entity adapter and attach an error handler with the adapter? or can i handle that in the event handler itself. I coulnt find any api for handling errorsYou can do it both ways but since we are talking about event handler now, then in 9.x you need to extend com.thortech.xl.client.events.tcBaseEvent class for creating a event handler. In tcBaseEvent class there are various flavors of handleError method. So use that as per my note earlier and you should be good.
    HTH

  • Display Custom Error Message in OIM 11g

    Hi,
    I'm trying to display an error message from a validation event handler but seems that am missing something. When the "oracle.iam.platform.kernel.ValidationFailedException" is thrown from a validation handler an error message is displayed: "An error occurred". If an error code is provided (see code below) then the message looks like: "An error occurred. The corresponding error code is ERR-0001". I guess that some resource bungle with corresponding messages should be provided.
    the code used:
    package test;
    public class UserGeneralValidationHandler implements oracle.iam.platform.kernel.spi.ValidationHandler
    @Override
    public void validate(long processId, long eventId, Orchestration orchestration)
                   throws ValidationException
    String errorCode = "ERR-0001";
    String message = "Simple validation message.";
    ValidationFailedException ex = new ValidationFailedException(message);
    ex.setProcessID(processId);
    ex.setErrorCode(errorCode);
    throw ex;
    Q:
    1.What is missing for complete solution?
    2.What is the algorithm that used by OIM to find default or non default resource bundle?
    3.How to change out-of-box validation messages? For a sample "The organization ABC does not exist." message is shown if non existing organization is provided during user creation and I'd like to have a different one.
    Regards
    Serge

    rename OIMUI.jar  to OIMUI.zip
    find logging_en and loggin.properties.
    Modify the "IAM-2050512" error message with your custom message
    Find Agent and agent_en.properties.
    Find Note[ERROR_SUBMITTING_REQUEST].text.  Modify the message. Make sure the message must be the same with in logging.properties("IAM_2050512")
    Deploy
    change the  OIMUI.zip to jar
    replace the existing OIMUI.jar
    login to weblogic  and redeploy OIM (oim.ear)
    no need to restart OIM server.
    Test:
    create a request in web console again, you must see the custom message when you hit the submit button
    hope this helps.
    -rad

  • Displaying Custom Error Message in ALV

    Hello Experts,
    Usually, when an error occurs in editable ALV, the standard WD ALV functionality marks the particular error cell in red and displays the error message.
    I want the same functionality for custom error messages in event ON_DATA_CHECK. I'm able to display the message, but looking for a way to mark cells as well.
    Please help....

    Hello friend,
    I think this link will help you much more clear on the coloring of the ALV concepts.
    http://help.sap.com/saphelp_smehp1/helpdata/en/5f/ec57c72a1349c8bfdda56d976e9399/frameset.htm
    http://www.sdn.sap.com/irj/scn/go/portal/prtroot/docs/library/uuid/f0625002-596c-2b10-46af-91cb31b71393?QuickLink=index&overridelayout=true
    Thanks,
    Sri Hari

  • Display custom error message in enhancement spots

    Hi all,
    Is there someone here who've encountered having the need to display custom error message in an enhancement spot? Could you help me please.. I can't find any reference from the net.
    Thanks in advance
    Regards,
    Aris

    Hi,
    The error message can be only displayed in enhancement spots based on thr program flow.
    You have to determine where its getting called for ex: in PBO or PAI etc.....
    You have to find the right place to display the error messages . for ex: using a memory id ......

  • No display of error message log in dialog box

    Dear MM Experts,
    During enter incoming invoice (MIRO), when we click simulate after entering all necessary data, all error & warning messages are displayed in a dialog box if there is red traffic light. In our case despite red traffic light error messages are not displayed as shown in below screen shot. Only warning messages are displayed & document canu2019t be posted. Please let me know if anyone has encountered such behavior & knows the solution. We just want to see the error messages in dialog boxes so that necessary data can be entered and document can be posted.
    Additional information: 1. No GR needs to be done, 2. GR based IV is unchecked in PO, 3. No validation is active for the company code,
    Thanks & regards,
    Avinash

    Hi,
    Thanks for your response.
    Our problem is not to post a particular invoice doument, the main problem is that error log is not displayed in MIRO. For example if balance is not zero then this error should be displayed in error log dialog box, which is not happening due to which we are not able to post any invoice document as error is not known to the user. Please let me know if any suggestions.
    Additional information: We have deactivated all validations & BADis. We also tried to compare with other systems where error log is displayed properly however our ABAP consultant could not find any difference. Any Input on how to compare is also welcome.
    Thanks & best regards,
    Avinash

  • My server is displaying an error - what setting needs to be changed?

    I have the problem posted below, that apple.com acknowledges, but there is no specific information on how to fix it. My server company does not know which setting needs to be changed. Can anyone help? This happened suddenly, and I did not even change anything about my webpage.
    Some web servers may display an error on a website created in iWeb:
    "Parse error: parse error, unexpected T_STRING in [filename].html on line 1."
    The settings on some web servers may cause difficulty parsing the line in a published iWeb document that establishes XML compliance. If you get this error message on your published website, please contact the administrator of your web server.
    This issue does not occur on sites published to .Mac.

    See this thread:
    http://discussions.apple.com/thread.jspa?threadID=1374430&tstart=0

  • Huey Pro calibrator- error message  display measurement Error

    i am using this huey pro calibration.. it had been a year without problem... but now i am trying to calibrate my apple cinema display LCD 30 inch it keep saying error message- display measurement error.. and huey support never answer my e-mail. any idea? how can i fix it.. i did re install software many times but same thing happen.. so right now i can;t calibrate my monitor.. any help please

    >a nice NVidia card... Please help Adobe!
    1a - what is the model nVidia card, and what is your driver version?
    1b - for instance, I have a GTX 285 and driver 296.10
    2a - aside from the occassional Adobe employee, this is a user to user forum, not Adobe suport
    2b - how to contact Adobe...
    Adobe contact information
    http://www.adobe.com/support/contact
    In the US - Adobe General support 800-833-6687 M-F 5am-7pm Pacific
    In the US - Adobe Install Problems 800-642-3623
    In the US - Adobe Activation 866-772-3623 Open 24/7

  • Display an error message during a few seconds

    Hi!
    When submitting a form, I am displaying a error message saying that the actions performed work fine. Afterwards I would like this message to disappear after a few seconds. How can I do that ?
    in the function called by my action button that submit the form i have:
    public void saveForm() {
    // .... operations ....
    context.addMessage(null,new FacesMessage("Everything is ok"));
    }

    Hi,
    I doubt if there is anything you can do from the action method
    saveForm(), however this you can do it from the client side just
    put some seconds delay in onload method in javascript and
    redirect to some other page.
    Thanks
    Ansar

  • ADF-BC/JSF How to display acustom error message from a backing bean

    Hi all
    Can anybody provide an example of how to manipulate the list of error messages from a JSF backing bean.
    In my code I use a different navigation case and this directs the user to the page displaying the error message but I am sure that there must be a more elegant way.
    Thanks in advance
    Thanassis

    Thanks Kris
    I think you 've put me on the right track here, it's just that in my case what I really want to do is prevent my users from editing records not belonging to their own group. This is done via a selectOne table component and then the backing bean code tests if the value #{row.UserGroup} matches the #{bindings.LoggedOnUserGroup.inputValue}. If the values are equal then the beans returns the navigation case to the edit page. Otherwise it returns the navigation case for the "cannot edit" page.
    So what I am thinking is to return null and somehow raise the right kind of exception in order to display the error in the af:messages tag.
    Thanassis

  • Displaying an error message with a link to the error field

    By default, ADF validation usually displays an alert with an error message and a link to the error field.
    I have some custom validations where I finally display the error message with this:
      public static void MessageError(String messageText){
        //String messageText="No se han encontrado estos datos";
        FacesMessage fm = new FacesMessage(messageText);
         * set the type of the message.
         * Valid types: error, fatal,info,warning
        fm.setSeverity(FacesMessage.SEVERITY_ERROR);
        FacesContext context = FacesContext.getCurrentInstance();
        context.addMessage(null, fm);
    My customer is asking for displaying a link to the error field in this kind of error alerts as standard errors do.
    Is there any way to get this ?

    Can't you include this in your message?
    You may want to check Duncan's blog https://blogs.oracle.com/groundside/entry/get_more_from_your_messages whichgives more inside on what you can do
    Timo

Maybe you are looking for

  • When saving MHTML files I get the IE icon instead of Mozilla.

    When using Mozilla/Firefox, I cannot save new MHTML files with Firefox icon-the icon appears to be the same as "Text icon". Also, I cannot use the "Opens With" to change existing MHTML files from IE icons to the Firefox icon. Some FF icons are correc

  • Errors in JSP's

    I have used JDeveloper 9.0.4 and 10.1.2 for developing a Web applications and get the following error, when I compile my JSP: Error(1): java.io.UTFDataFormatException: Invalid UTF8 encoding. This is the begining of my JSP, and the errors is marked on

  • OS X Lion wont boot

    hi all I have the following problem, I want to install OS X on my macbook pro Lion (Core 2 Duo 2.16 GHz 3GB RAM) in a clean, burn the dmg on a usb, but does not load the operating system stays at the gray screen and Apple logo and no progress, it is

  • Extended Notification for UWL

    Hi, We have implemented performance management and implemented extended notification using UWL to get outlook email. Every thing is working fine the only problem is - whenever we get an email the FROM person is the person who has configured the syste

  • Question about behavior of txn_checkpoint()

    I'm just trying to determine if the behaviour I'm seeing is expected or whether I have coded something wrong. I am using version 4.7.25 in a replicated (1 master 1 slave) environment. I have a main thread that reads network requests and does db->get(