ESS error message

Hi,
      An Error message occurs while approving the leave request "Collision with another time entry", i know that why this message occursa but I want to change the message text. Can we change the msg text at SAP R/3 end, not on enterprise portal.
Also, please inform me the message class  .
Animesh

Hi Rajashekar,
There are two reasons as to y this error occurs:
a) If the employee has already applied for leaves which is updated in IT2001 or IT2002, and if he is trying to apply again the leaves for the same date for which the data already exists in the above infotypes, he will get this error.
b) if there is any pending request in report RPTARQDBVIEW (accessed thru SA38), then he will get this error.  Delete the pending request thru report RPTARQDBDEL.
Regards,
Ayyaps

Similar Messages

  • ESS Error message due to Leave Collision

    Dear Friends,
    We are doing new ESS MSS implementation on ECC 6.0.
    We have configured SAP R/3 to accomodate Collision of leaves in table V_T554Y (Global Time constraint raction) and we can create leave collision through PA30.
    E.g: A person who has taken Annual Leave on a particular date can take sick leave on the same day. Sick leave will overwrite/delimit the Annual leave.
    We are getting a collision error message while applying for the same leave (Sick leave in the above example) through ESS and not able to go further with the leave request. The same leave, I am able to create through PA30 in R/3.
    Please suggest a solution.
    Regards,
    Preethi

    I have same problem to you.
    If the leave request is already maintained in PA30, the collision error message will raise and the request can not save to R/3.
    Dear export, could you provide the solution about it, how can I update infotype based on request via portal approve. I know the collision message according to customizing V_554Y_B.
    The leave request can not save data if the collision type is E(-The system does not allow you to create the new record, and
    displays all collisions.), right?
    Thanks a lot,
    Anne

  • Error message in ESS

    Hi All,
    I am getting an error message displayed on the portal in ESS business package whenever I enter the working time hours (that comes under Record Working Time application in Attendance workset) in the wrong format. Can anybody suggest me where do I go and change this error message.
    Thanks,
    Tom

    tom,
    go to SPRO / Personnel Management / Employee Self Services / Service-Specific Settings / Working Time / Clock-In/Out Corrections / Processing Processes / Configure Output of Messages
    (or maintain View V_HRWEB_TRS_MESS directly in SM30)
    the SPRO Help gives you hints how to do that.
    otherwise you can maintain MODIFY_APPLICATION_MESSAGES method of the PT_GEN_REQ Business Add-In
    kr, achim

  • Display Error Message in ESS

    Dear all,
    I have a requirement in WEB DynPro, Our ESS system using WEB DynPro.
    In ESS leave system need to display error message.ie
    once leave approved, employees are not allowed to change the leave.
    Any idea to write code to display error message.
    Thanks.
    Shruthi.

    Error messages can be displayed in two ways:
    1. In the message area
    2. As a popup
    Below are the code snippets for it.
    1.
    * get message manager
      DATA lo_api_controller     TYPE REF TO if_wd_controller.
      DATA lo_message_manager    TYPE REF TO if_wd_message_manager.
      lo_api_controller ?= wd_this->wd_get_api( ).
      CALL METHOD lo_api_controller->get_message_manager
        RECEIVING
          message_manager = lo_message_manager.
        CALL METHOD lo_message_manager->report_error_message
          EXPORTING
            message_text = 'Error message'.
    2.
    "Display Popup 
      DATA:  l_popup  TYPE REF TO if_wd_window,
             l_text  TYPE string_table.
      APPEND `Error Message` TO l_text.
      l_popup = wd_comp_controller->wd_get_api( )->get_window_manager( )->create_popup_to_confirm(
        text  = l_text
        close_button = abap_false
        button_kind  = if_wd_window=>co_buttons_ok
        message_type  = if_wd_window=>co_msg_type_error
        window_title  = 'Error'
        window_position = if_wd_window=>co_center ).
      l_popup->open( ).
    Hope this helps!

  • Error Messages in ESS

    Hi ESS Gurus,
    I have a query regarding the ESS - errors not displaying.
    In detail,
    Suppose if i am trying to apply leave from R/3 and if the quota is not available our r/3 system will throw an error saying that no sufficient quota.  In the same if i am applying thru ESS it also should throw the same error that we are getting in R/3.
    How this should be done.
    Thanks
    Vijay

    Have a look at BAdI: Control Processing Processes for Time Management Web Applications in the IMG:
    Change Messages from Back-End System:
    You can use this method to change the messages from the back-end system.
    You already have the option in Customizing of formatting or suppressing messages from the back-end system for your employees. You can use this method to refine the Customizing settings or create additional provisions.
    In this method, you can process all messages that come from the back-end system. In particular, you can change the messages' text variables in addition to the Customizing options. For example, you can define your own values for the variables or assign and output variables to your own values.
    Notes
    For more information, see the Configure Output of Messages IMG activity.

  • How to display Error messages through BADI HRPAD00INFTY in ESS ?

    Hi,
    In ESS, I want to perform custom validation on IT1067 ( Health Plan ) and allow only specific combinations of health plans to be selected.   We are on ECC6.0 EhP4 .  This infotype is "NOT PERMITTED" in the new decoupled framework and hence I cannot use NEW BADI's for validation and I am stuck with Classical BADI - HRPAD00INFTY.
    In my classical badi HRPAD00INFTY, after validation, I want to display an error message if "Invalid Combination" is selected by the user.  
    I tried using the following code to display the error message :
              DATA badi_message_handler   TYPE REF TO cl_hrpa_message_list.
              DATA message_handler        TYPE REF TO if_hrpa_message_handler. 
              DATA msg                    TYPE symsg.
              DATA is_ok                  TYPE boole_d.
              CREATE OBJECT badi_message_handler.
              message_handler = badi_message_handler.
              msg-msgid = 'YHBN'.
              msg-msgty = 'E'.
              msg-msgno = '006'.
              msg-msgv1 = c_none_plans. "'Invalid Plan'(z09).
              CALL METHOD message_handler->add_message
                EXPORTING
                  message = msg
                  cause   = message_handler->unknown.
                  is_ok = space.
              badi_message_handler->add_messages( message_handler ).
              RAISE error_with_message.
    The message is displayed in ESS but after that the Java Trace Exception is displayed.   I  want to display the error message in a user friendly way and provide an option to correct the plans.
    Please let me know if anyone has done similar thing or have any suggestions.
    Thanks

    Hi,
    DATA badi_message_handler   TYPE REF TO cl_hrpa_message_list.
              DATA message_handler        TYPE REF TO if_hrpa_message_handler. 
              DATA msg                    TYPE symsg.
              DATA is_ok                  TYPE boole_d.
              CREATE OBJECT badi_message_handler.
              message_handler = badi_message_handler.
              msg-msgid = 'YHBN'.
              msg-msgty = 'E'.
              msg-msgno = '006'.
              msg-msgv1 = c_none_plans. "'Invalid Plan'(z09).
              CALL METHOD message_handler->add_message
                EXPORTING
                  message = msg
                  cause   = message_handler->unknown.
                  is_ok = space.
              badi_message_handler->add_messages( message_handler ).
         *-- Add following--
        Exit.
              RAISE error_with_message.

  • Getting error message after creating project ess~org from ESS track

    Hi All,
    Our basis team just now implemented the track for ESS and MSS.So we need to sync all application from DTR.
    We are facing problem with one Dc essOrg.I have created project essOrg from ESS track in inactive DC of development configuration.Build of DC is successful,where as in the Task tab its showing below error message:
    " Tree TreeCont [dataSource]: Context element and property are not compatible Orgchart.wdview     NWI_HR1_Dessorg~sap.com/src/packages/com/sap/xss/hr/org/chart  "
    I have done the follwing steps :
    1.I have close the project.Then remove it from client.Then close the NWDs and reopen it.Still the same error we are getting after creatig project from the track.
    2.Even we tried to repair the DC.Its asking for check out.Then after creating activity its showing an error pop up message "org.eclipse.jdt.core.JavaModelException: Classpath contains duplicate entry: D:Documents and settings/susmita.panigrahi/.dtc/2/DCs/sap.com/pcui_gp/xssfpm/_comp/gen/default/public/FloorplanManager/lib/java/sap.compcui_gpxssfpm~FloorplanManager.jar "
    3.I have open the OrgChart view of VcOrgChart Component in NWDs.I have found that the data source property of Tree node is showing red cross mark with name OrgTab(name of context node).I have tried to select another node also other than the context node OrgTab , getting message "Select an attribute of Type"
    Can any body tell me how to solve the error"Context element and property are not compatible " coming for DC ess~Org?
    Thanks
    Susmita

    If you have created other projects and they are working fine? Standard application should work without any modifications, so you may like to revert all the changes(before they cause further problem).
    Well you may like to clean up your directory , unless you have loads of application checked out.. Remove all applications from this particular Track, ensure that everytime you delete project from Studio , select to remove code from directory.
    This is likely that you are working on applications from two tracks, where version of FPM component is not the same. I always prefer to work one at a time, and i remove other track if i am done with application(This is lame way of handling it, but i prefer this.. saves loads of time to clean/repair)
    Also hope you are using compatible version of Studio.
    Rgds

  • ESS Business Package - How to change error message

    Hi,
    In ESSBusiness Package Leave Application screen, if we enter some character XXX for From and To date field and try to proceed further (preview button) It is showing a error message 'Enter the value in format 11/25/1987" that we want to change to 'Enter the value in format MM/DD/YYYY".
    Please let us know from where this standard message is coming whenever we put some character values for any date control and how to change the same to customer specific message.
    Regards
    Sudhir

    Thank you Poojith,
    This is a standard message not only coming for Calender control in ESS application but also behaviour is same for custom webdynpro applications. So this message is not part of Leave Component message pool
    Regards
    Sudhir

  • Raise Error Message in ESS for invalid Mobile number IT0105 - 9004

    Hi Experts,
    I was asked to put a small validation on mobile number being entered by user in his personal details (to check country code).
    As we are using both PA30 and ESS, I have implemented both the BADI's
    HRPAD00INFTY (for PA30) and HRPAD00INFTYDB (under enhancement spot HRPAD00INFTYBL) for ESS.
    My first one is working fine and stops user from entering wrong mobile number.
    Coming onto second one for ESS, I have written my coding in the method IF_EX_HRPAD00INFTYDB~UPDATE_DB as follows
        CASE infty.
        handle infotype 0105
          WHEN '0105'.
            CASE subty.
              WHEN '9004'.
                ASSIGN operation-old_pnnnn->* TO <old_p0105>.
                ASSIGN operation-new_pnnnn->* TO <new_p0105>.
                ASSIGN operation-new_psref->* TO <new_psref>.
                ASSIGN operation-old_psref->* TO <old_psref>.
                CASE operation-opera.
            UPDATE
                  WHEN if_hrpa_masterdata_db=>update_operation.
                    lv_prefix1 = <new_p0105>-usrid+0(4).
                    IF lv_prefix1 EQ '9715'.
                      lv_length = STRLEN( <new_p0105>-usrid ).
                      lv_length = lv_length - 4.
                      IF lv_length NE 12.
                        RAISE EXCEPTION TYPE cx_hrpa_violated_assertion.
                      ENDIF.
                    ELSE.
                        RAISE EXCEPTION TYPE cx_hrpa_violated_assertion.
                    ENDIF.
    Now though this method is getting trigged and doing the validation perfectly, it is resulting in RUNTIME ERROR due to "RAISE EXCEPTION TYPE cx_hrpa_violated_assertion" which is un-caught.
    Can any one please let me know how to send back the error message without runtime error so that user has clear knowledge of mistake that he has done.
    Appreciate any help in this regard,
    Thanks,
    Lakshmi Narayana

    Why don't you use HRPAD00INFTYUI instead?
    ~Suresh

  • RE: Error message, ESS

    A message has to be displayed for a particular action taken by the user on one of the iviews. The drill down is as follows ESS-> LWE _> Benefits-> Open Enrollment-> Choose ALIF  Plan, go to Details button, That brings up a drop down list. When the employee chooses $150000, an appropriate message has to be displayed. When the
    Detail button is pressed, the Iview "Life Additional Insurance option" is displayed. This message has to be displayed on this iview. How to accomplish this

    Hi , Welcome to the HP Forums! I understand that you are getting the error message oxc19a0020, with your HP Officejet Pro 6835. I am happy to look into this error for you!  The error message, stands for an Ink System Failure, please try the steps within this guide, HP Printers - 'Problem with Printhead,' 'Printer Failure,' 'Ink System Failure,' or a '0x...' or a 'C2...' Error Message Displays. If this guide does not resolve your issue, please contact HP, phone support for further assistance. (Once you fill out the information, you will be given a phone number.) If you live outside the US/Canada Region, please click the link below to get the support number for your region. Country-language selector. Hope this helps!  “Please click the Thumbs up icon below to thank me for responding.”

  • FORM16 in Portal ESS throws error message

    Hi All,
           While trying to click on FORM16 in Portal ESS, it throws below error.
           "No data has been found for the specified selection."
           Required permissions have been provided ADS is also configured.
           while executing  t-code :hressin_f16 it shows PDF form in R/3 for 2010 to 2011.
           At the same time in R/3 while we execute for 2009 to 2010 period it throws a message No data has been found for the specified selection.
            what i think is its picking for the year 2009 to 2010 instead  of  2010 to 2011.  so what should we do now. 
          Can any one suggest on this.
    Regards,
    kishore.
    Edited by: kishore kumar on Dec 21, 2010 8:56 AM
    Edited by: kishore kumar on Dec 21, 2010 10:05 AM

    Hi Siddharth Rajora ,
          Thanks for the reply, we have already done the process what this FORM16 Configuration states.
          Here i would like to know why that error message is showing.
    Regards,
    kishore.

  • Customised Error Message for ESS-MSS Applications

    Hello All,
    Currently, if there are any errors in the ESS/MSS transactions, we get the 503 error with lot of irrelevant data to the users. We have a basic html page which says, "There is a issue-Please contact XXXX".
    Is there a way to replace the standard error message with this html page ?
    PS: I am not talkign about the "Dispatcher Running" or "Application Stopped" messages, Please do not point me again to SAP Help website which doesn't answer my query. THIS IS ABOUT REPLACING THE STANDARD ERROR MESSAGES FOR ESS/MSS APPLICATIONS.
    Any help is much appreciated.
    We are on EP 7.01 SP3 (ESS 1.41)
    -Raj

    Hi Raj
    Let me clarify the difference between ESS and MSS errors and JAVA stack errors
    A "503 Service  not available" is not an ESS or MSS error - this is the thrown by the stack (possibly while navigating
    in ESS or MSS)
    The only information I have available in the case of java stack errors is to follow
    http://help.sap.com/saphelp_nw70/helpdata/en/9a/e74d426332bd30e10000000a155106/frameset.htm
    Whcih indicates how to customize stack errors  like 404 or 500
    Lastly you can also decide to hide the stack trace as per KBA 1596212
    To modify an ESS or MSS message this may require modification to front and back-end HCM application - usually
    ESS gets error information based on back-end errors example "fill in all required fields"
    Hope this helps

  • ESS  Bank Key Error Message

    Hello All,
    I want to customize ESS Bank application error message.Whe we don't enter input for routing number it gives the following message "Enter the bank key". I wanted to customize that error message. I could not locate it in WebDynpro  DC. Any input on this highly appreciated.
    Thanks
    VJ

    Hi,
    the error is coming from the Bapi, there will be a strandard error node in the bapi that will give the wd application to display the error, request the RFC developer to change in the back end,
    find out the node erroreturn in the model, and pass the information of RFC to the abap developer,
    otherwise, if you want to customize in WD application, you have to go to perticular method which is throughing the error and you can change there by calling ur own message from message pool.
    Cheers,
    Apparao.

  • ESS Open Enrollment Error message

    Hello experts,
    I am coming to you because I cannot figure out why we are getting this particular error message when an employee is doing open enrollment.
    When an employee goes into ESS and tries to do an open enrollment for their medical/savings/insurance plans, the following error message occurred.
    No entry for period parameter 30 / payroll year   / payroll period
    This is not happening for all of the employees within this payroll area.  Just some....but enough to make it a good portion of our employee population.
    I have looked at the period parameters/calendar and modifiers etc. to see if the period was set up and could find nothing wrong.  We do have the period set up and the calendar goes out to 2010.
    I would really appreciate help on this issue since open enrollment begins very soon for us! 
    Thanks,
    Suparna

    Hi Arun,
    Yes,I have checked those tables (thank you though) and all appropriate values seem to be there.
    This is the first time we are doing open enrollment.  We went live with SAP in Jan 2008. At that time all employees were converted in with their respective benefit plans.  We have had new hires throughout the year who have enrolled and while we had a few onesie twosie issues, nothing of this nature.
    Do you think it could be in the ESS set up somewhere?
    My problem is that it works for some people and not others.  I am looking to see what is different on an employee that works vs one that doesn't.
    Any suggestions would be most appreciated!
    Thanks,
    Suparna

  • Hide full error message / ESS

    Hello folks,
    We sometimes receive critical  error messages in ESS where the first couple of lines give a summary of the issue and then the rest (sometimes a couple of pages)is details about where exactly the error took place like com.sap.pcuigp.xssfpm.java.MessageManager etc etc. I am wondering if there is any way that these details are not shown to ordinary users, but just the summary of the error. There is a tray at the top which is expanded, if this could be collapsed it would do the trick. Are you aware of any such setting?
    We are running XSS 100, Portal and Java are in SP18, Netweaver 2004
    Many thanks
    Andreas

    Hi Ramco,
      You need to assign the Portal user to your ECC HR infotype (PA30). HR functional people know abt that.
    You can asign the user into particular personal number and Infotype(communication).
    Afterthat you will not face the critical error.
    Thanks
    Jibin.

Maybe you are looking for

  • Failed to open the connection

    We have just moved to CR2008 and have been migrating our first application to support same. We have a number of reports developed in CR10 which were designed based on stoered procedures with parameters and as a result have a number of questions. 1. W

  • Latest Front-End Support pack - Report Designer

    Hi, We are having some formating related issues in Report Designer in some of the Finance reports. I believe this is because of missing latest Support Packs or Patches front end.... for example, in report designer we unable to see the settings in the

  • Map issue using the old/default std

    Please, help with the following simple compilation // print_routines.cpp #include <map> #include <string> int main() std::map<const std::string, bool> fred; return 0; -bash-3.00$ CC print_routines.cpp "/opt/SUNWspro/prod/include/CC/Cstd/./map", line

  • Previous versions allowed me to go back mant web pages in one step. V4 only seems to allow going back one page at a time. Can I change this back to the earlier method?

    The top left of previous Firefox versions had the left arrow key to go back to the previous web page and a button that would list all the previous web pages so that I could select, say, the 5th previous page. I can't find this button on Firefox 4. Is

  • Graphics problem-- can anyone help?

    Hi.. I am working on a project and am experiencing a very strange thing. As you can see here: http://www.collinatorstudios.com/www/safearea.png I have a graphic that is a simple banner consisting of a gradient that is broken up into 2px pieces, space