Material on Employee Self Service

Hi Everyone !!!!
Does anybody have any material or e-book on Employee Self service, please share.
I want to running from the front end as well as the configuration from the back end.
Thanks---
Debashish

http://www.sap-press.de/download/dateien/2512/sappress_configurung_and_customizing_employee_manager.pdf
http://www.sdn.sap.com/irj/scn/go/portal/prtroot/docs/library/uuid/108c31e7-b6a7-2d10-3692-c1a9f7a5c4dc?QuickLink=index&overridelayout=true
https://wiki.sdn.sap.com/wiki/pages/viewpage.action?pageId=104006108
check this wiki as listed above too.

Similar Messages

  • Material On ESS (Employee Self Service) Technical

    Hai All,
        If any one have the Material On ESS (Employee Self Service) for ABAPERS.Please share it.
    Thanks in advance.
    regards
    kiran

    Kiran,
    Normally every customer has acces to it with their S number. If you don't have an S number, this the procedure taken from the help on service.sap.com.
    The following data is needed to request a new user ID.
    Note:
    Please write down all your data, as you have to enter it several times and your entries always have to agree.
    If you want to delete all your entries to date, click Reset.
    Customer/partner number or installation number:
    You will find the installation number of your SAP System under:
    System -> Status... -> SAP System Data. Hint:
    You only have to enter one of the numbers.
    Form of address, first name, last name
    When you log on to the SAP Service Marketplace, you can change this data in MyProfile.
    E-mail address
    You need an e-mail address that is registered at your company.
    The system checks whether your e-mail address has been assigned to the entered customer/partner number.
    Once you have that data:
    Step 1 - Registering with the SAP Service Marketplace
    Enter your customer/partner number or installation number.
    Choose a form of address and enter your first and last name.
    Enter the e-mail address registered with your company.
    Once your entries are complete, click Send.
    The User Request Successful screen appears:
    You receive a registration password:
    Write it down. You will need the registration password for the next step.
    Within one day, you receive an e-mail with the URL link for your access data.
    ... Read Step 2
    Hint:
    If the User request failed or incomplete screen appears, your entries were incorrect.
    ... Read User request failed or incomplete
    Top of Page
    Step 2 - Request Access Data
    Enter the URL link from the e-mail in your browser's address field and press Return.
    The Here is your user ID and password screen appears.
    Enter the following data, and make sure that it agrees with the data you entered in Step 1 - Registering with the SAP Service Marketplace:
    Customer/partner number or installation number
    First name and last name
    E-mail address
    Enter the required registration password.
    When you entries are complete, click Send.
    The User data registration was successful screen appears:
    You receive your user ID and password.
    ... Read Step 3
    Hint:
    If the User ID generation failed screen appears, your entries were incorrect.
    ... Read User ID generation failed
    Top of Page
    Step 3 - Log On to the SAP Service Marketplace
    Write down your user ID and password.
    Hint:
    You can change the password in MyProfile as soon as you log on to the SAP Service Marketplace.
    To reach the home page of the SAP Service Marketplace, enter the following URL in your browser: http://service.sap.com.
    Click Logon to SAP Service Marketplace and enter your user ID and your password.
    Click OK.
    You are now logged on to the SAP Service Marketplace.
    Eddy

  • Enhancement of Employee Self-Service Shop by an own Catalogue (ABAP)

    Hello SRM-Development-Experts
    I enhanced the /SAPSRM/WDC_DODC_SC_GAF_C-WD-Component of Employee Self-Service Shop with an own ActionLink to an own WD-Component.
    Details
    The own WD-Component uses the interfaces /SAPSRM/WDI_L_FPC_GENERAL, /SAPSRM/WDI_L_FPC_POPUP and /IF_FPM_UI_BUILDING_BLOCK.
    So the call from the V_DODC_SC_GAF_FSCA view is like this:
    method ONACTIONZ_ENH_MATCAT .
    DATA: lv_ref_cmp_usage  TYPE REF TO if_wd_component_usage,
          lr_general_controller TYPE REF TO /sapsrm/iwci_wdi_l_fpc_general,
          lv_task_container  TYPE REF TO /sapsrm/if_cll_task_container,
          lr_node  TYPE REF TO if_wd_context_node,
          lr_mo_bom_sc  TYPE REF TO /sapsrm/cl_ch_wd_bom_sc,
          lr_pdo  TYPE REF TO /sapsrm/cl_pdo_bo_sc_adv,
          lt_usages TYPE /sapsrm/t_ch_wd_usages,
          lr_api  TYPE REF TO if_wd_controller,
          lr_comp  TYPE REF TO if_wd_component,
          lr_win_manager  TYPE REF TO if_wd_window_manager,
          lr_win  TYPE REF TO if_wd_window.
    " component usage for our component.
         lv_ref_cmp_usage = wd_this->wd_cpuse_z_myself( ).
    " Initialization step starts.
        IF lv_ref_cmp_usage->has_active_component( ) IS INITIAL.
    " Component creation.
         lv_ref_cmp_usage->create_component( ).
         lr_mo_bom_sc ?= wd_this->mo_bom_sc.
         lr_pdo  ?= lr_mo_bom_sc->/sapsrm/if_cll_xo_mapper~get_pdo( ).
         APPEND lv_ref_cmp_usage TO lt_usages.
         wd_this->mo_component_manager->init_component_usages( it_usages = lt_usages ).
         " Second step: SRM-specific Initialisation of wd-component
         lr_general_controller ?= wd_this->wd_cpifc_z_myself( ).
         lr_general_controller->l_fpc_general__init( io_task_container = wd_this->mo_task_container
                                                   io_bo_mapper       = wd_this->mo_bom_sc ).
      endif.
      lr_api = wd_comp_controller->wd_get_api( ).
      lr_comp = lr_api->get_component( ).
      lr_win_manager = lr_comp->get_window_manager( ).
      lr_win = lr_win_manager->create_window_for_cmp_usage(
          interface_view_name  = 'Z_W_MYSELF'
          component_usage_name = 'Z_MYSELF'
          title = 'Material-Katalaog'
          close_in_any_case = abap_false ).
      lr_win->open( ).
    endmethod.
    To add products I (mis)used the /SAPSRM/IF_CLL_DODM_SC_I_IGOSV-Interface and copy pasted the content of /SAPSRM/WDC_DODC_SC_I_IGS into my WD-Comp:
    METHOD onactionadd_to_basket .
      DATA: lo_api_component  TYPE REF TO if_wd_view_controller,
            lo_w_component  TYPE REF TO if_wd_component,
            lo_window  TYPE REF TO if_wd_window,
            lo_window_ctrl  TYPE REF TO if_wd_window_controller,
            lr_current_controller TYPE REF TO if_wd_controller,
            lr_message_manager   TYPE REF TO if_wd_message_manager,
            lr_internal_goods TYPE REF TO if_wd_context_node,
            lv_close_window TYPE abap_bool,
            lo_idr  TYPE REF TO if_fpm_idr,
            lo_fpm  TYPE REF TO if_fpm,
            lo_cnr_gaf  TYPE REF TO if_fpm_cnr_gaf,
            lo_pdo_node TYPE REF TO if_wd_context_node,
            lo_pdo TYPE REF TO /sapsrm/cl_pdo_bo_sc_adv,
            ls_item TYPE bbp_pds_sc_item_icu,
    TRY.
          lr_internal_goods = wd_context->get_child_node( name = wd_this->wdctx_internal_goods ).
          lr_internal_goods->bind_structure( new_item = ls_item ).
         " mo_bom_sc is initialized in method L_FPC_GENERAL__INIT
          wd_comp_controller->mo_bom_sc->/sapsrm/if_cll_mapper~is_ui_changed_by_client( ).
          wd_this->mo_dodm_sc_i_igosv->add_internal_goods( IMPORTING ev_close_window = lv_close_window ).
          wd_comp_controller->mo_bom_sc->/sapsrm/if_cll_mapper~is_ui_changed_by_client( ).
          IF lv_close_window EQ abap_true.
    " Close window
            lo_api_component = wd_this->wd_get_api( ).
            lo_window_ctrl = lo_api_component->get_embedding_window_ctlr( ).
            IF wd_comp_controller->mv_popup_active EQ abap_true.
              FIELD-SYMBOLS: <ls_mapper> TYPE /sapsrm/s_cll_mapper.
              wd_comp_controller->mo_message_handler->deactivate_popup( EXPORTING iv_view_name_of_popup = 'V_ADD_TO_BASKET' ).
              LOOP AT wd_comp_controller->mt_mapper ASSIGNING <ls_mapper> .
                wd_comp_controller->mo_bom_sc->/sapsrm/if_cll_bo_mapper~deregister_mapper( io_mapper = <ls_mapper>-mapper ).
              ENDLOOP.
              CLEAR: wd_comp_controller->mt_mapper.
            ENDIF.
    " special message stack handling
            wd_comp_controller->mv_popup_active = abap_false.
            lo_window = lo_window_ctrl->get_window( ).
            lo_window->close( ).
          ENDIF.
        CATCH cx_root INTO lr_root.
      ENDTRY.
    ENDMETHOD.
    So, the after closing my own WD-Component the products have been added to the basket & the basket can be properly saved.
    But pushing the Next-Step-Button or Previous-Step-Button provided by the GAF framework makes the shopping basket "empty" and the Previous/Next navigation doesn't react anymore.
    What is the correct approach? Documentation?
    Thanks in advance.

    Dear Poster,
    As no response has been provided to the thread in some time I must assume the issue is resolved, if the question is still valid please create a new thread rephrasing the query and providing as much data as possible to promote response from the community.
    Best Regards,
    SDN SRM Moderation Team

  • Employee Self Service in SAP Enterpise Portal

    Hi all, I would like to ask you a question. It's about process of implementation ESS in SAP EP. We installed SAP EP and SAP ECC 6.0 as well. I am rookie in this field. What do we need to implement ESS in our portal? Which steps do we need to follow? Is it enough to implement CA-ESS in our ERP system and configure SLD directory? Thank you!
    Peter

    Hi,
    You can refer SAP material HR290 System Configuration for ESS
    also hr250..for functional
    WIKI :-
    https://www.sdn.sap.com/irj/scn/wiki?path=/display/erphcm/employeeSelfService
    ESS
    https://www.sdn.sap.com/irj/sdn/go/portal/prtroot/docs/library/uuid/21eb036a-0a01-0010-25a3-b2224432640a
    buisness package :- ESS
    http://help.sap.com/saphelp_erp2005vp/helpdata/en/5b/76a6d7fd3a4e91bfb422405bf3e04d/frameset.htm
    1.2 :- http://help.sap.com/erp2005_ehp_02/helpdata/en/f6/263359f8c14ef98384ae7a2becd156/frameset.htm
    Configuring ESS :-
    http://help.sap.com/saphelp_erp2005vp/helpdata/en/6a/5bc8a009d54fcaa8e06c826a57253b/frameset.htm
    Configuration of ESS
    http://help.sap.com/erp2005_ehp_03/helpdata/EN/38/e8584c2a664547b60442646bee23b6/content.htm
    HR infotype :-
    ttp://help.sap.com/erp2005_ehp_01/helpdata/en/9a/524035634df01ee10000009b38f889/content.htm
    http://help.sap.com/printdocu/core/print46b/en/data/en/pdf/HRINF.pdf
    Configuring the Business Package for Employee Self-Service (ESS) u2013 mySAP ERP 2004
    https://www.sdn.sap.com/irj/scn/go/portal/prtroot/docs/library/uuid/21eb036a-0a01-0010-25a3-b2224432640a
    How to Map the Relationship Between SAP Enterprise Portal and Homepage Framework for Employee Self Service (ESS)
    https://www.sdn.sap.com/irj/scn/go/portal/prtroot/docs/library/uuid/b0e3a488-cdc2-2b10-209b-e01a0ed934b4
    ESS: How to Add Custom Area Page to Overview page.
    https://www.sdn.sap.com/irj/scn/go/portal/prtroot/docs/library/uuid/c0235c40-6351-2a10-a3a3-eb666dfdb407
    How to Create Custom Overview page in ESS
    https://www.sdn.sap.com/irj/scn/go/portal/prtroot/docs/library/uuid/10ddda33-277b-2a10-5294-9913ee5d698f
    Configuration of ESS u2013 Travel Management (FI-TV)
    https://www.sdn.sap.com/irj/scn/go/portal/prtroot/docs/library/uuid/d0ca7949-af7b-2b10-db80-ed8ca509f573
    How to Import ESS/MSS Configuration in NWDI
    https://www.sdn.sap.com/irj/scn/go/portal/prtroot/docs/library/uuid/208974c1-b4c2-2b10-cbb4-eac704d7b707
    How to Customize ESS Screens and Make Changes in Standard Screen through NWDI
    https://www.sdn.sap.com/irj/scn/go/portal/prtroot/docs/library/uuid/900e6b9d-3acf-2b10-a2a5-d7b53fcda150
    deploying and downloadinh BP
    https://www.sdn.sap.com/irj/scn/wiki?path=/pages/viewpage.action%3fpageid=31476
    Rewards Point for Helpful answer
    Regards,
    Jigar Oza

  • SSO to SAP EP6 (for Employee Self Service) using WebSEAL

    Hi SDN friends,
    We are about to embark on a SSO implementation using IBM WebSEAL for SAP EP6 ESS (Employee Self Service) connecting through to an SAP R/3 4.7 server.  Since the ESS solution for 4.7 still uses ITS services, this means that we have ITS iViews in the EP6 portal.
    We have managed to look through the whitepaper 'IBM Tivoli Access Manager - Single Sign On for SAP NetWeaver - September 2005' described at https://www.sdn.sap.com/irj/sdn/developerareas/ibm
    We have the following queries, if anybody has a simple answer to these:
    -  Is it absolutely necessary to configure an SNC connection between ITS/EP6 and R/3 server to achieve SSO for the portal?
    -  Given that SAP EP6 references ITS IAC iviews, is it necessary for us to configure both ITS and EP6 for SSO, or can we simply configure EP6 for SSO?  If so, is it also necessary to configure both for SSL?
    -  Otherwise, how easy is it to set up SSO in this scenario without SSL (for demo purposes)?
    Any thoughts would be greatly appreciated.
    Cheers
    John Moy

    Hello John,
    regarding your questions:
    ad 1) no. SNC is only mandatory if you use X.509-based SSO to R/3. You can also use SAP logon ticket-based SSO from EP to R/3 or usermapping that do both not require SNC.
    ad 2) yes, you have to configure both EP and ITS at WebSeal.
    ad 3) you can always omit SSL. However for production use, it is recommended.
    Regards
    Michael

  • In Every Page of Employee Self Service it is displaying this Error.

    Hi All Experts,
    In Employee Self Service i am Getting this Error,overview page is also not displayed.
    The initial exception that caused the request to fail, was:
       com.sap.tc.webdynpro.services.exceptions.WDRuntimeException: ComponentUsage(FPMConfigurationUsage): Active component must exist when getting interface controller. (Hint: Have you forgotten to create it with createComponent()? Should the lifecycle control of the component usage be "createOnDemand"?
        at com.sap.tc.webdynpro.progmodel.components.ComponentUsage.ensureActiveComponent(ComponentUsage.java:773)
        at com.sap.tc.webdynpro.progmodel.components.ComponentUsage.getInterfaceControllerInternal(ComponentUsage.java:348)
        at com.sap.tc.webdynpro.progmodel.components.ComponentUsage.getInterfaceController(ComponentUsage.java:335)
        at com.sap.pcuigp.xssfpm.wd.wdp.InternalFPMComponent.wdGetFPMConfigurationUsageInterface(InternalFPMComponent.java:245)
        at com.sap.pcuigp.xssfpm.wd.FPMComponent$FPM.changeToExceptionPerspective(FPMComponent.java:862)
        ... 60 more
    See full exception chain for details.
    System Environment
    Client
    Web Dynpro Client Type HTML Client
    User agent Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322; .NET CLR 2.0.50727)
    Version null
    DOM version null
    Client Type msie7
    Client Type Profile ie6
    ActiveX enabled
    Cookies enabled
    Frames enabled
    Java Applets enabled
    JavaScript enabled
    Tables enabled
    VB Script enabled
    Server
    Web Dynpro Runtime Vendor: SAP, build ID: 7.0015.20080131100237.0000 (release=645_VAL_REL, buildtime=2008-02-15:22:35:17[UTC], changelist=475271, host=pwdfm101), build date: Tue Jul 08 13:48:16 GMT+05:30 2008
    J2EE Engine 7.00 patchlevel 110760.44
    Java VM Java HotSpot(TM) Server VM, version:1.4.2_13-b06, vendor: Sun Microsystems Inc.
    Operating system Windows 2003, version: 5.2, architecture: x86
    Session & Other
    Session Locale en_US
    Time of Failure Thu Jul 31 10:12:26 GMT+05:30 2008 (Java Time: 1217479346562)
    Web Dynpro Code Generation Infos
    sap.com/pb
    SapDictionaryGenerationCore 7.0014.20061002105236.0000 (release=645_VAL_REL, buildtime=2007-11-17:11:46:55[UTC], changelist=419377, host=PWDFM101.wdf.sap.corp)
    SapDictionaryGenerationTemplates 7.0014.20061002105236.0000 (release=645_VAL_REL, buildtime=2007-11-17:11:47:02[UTC], changelist=419377, host=PWDFM101.wdf.sap.corp)
    SapGenerationFrameworkCore 7.0014.20060719095755.0000 (release=645_VAL_REL, buildtime=2007-11-17:11:35:31[UTC], changelist=411255, host=PWDFM101.wdf.sap.corp)
    SapIdeWebDynproCheckLayer 7.0014.20061002110128.0000 (release=645_VAL_REL, buildtime=2007-11-17:11:52:27[UTC], changelist=419396, host=PWDFM101.wdf.sap.corp)
    SapMetamodelCommon 7.0014.20061002105432.0000 (release=645_VAL_REL, buildtime=2007-11-17:11:36:15[UTC], changelist=419384, host=PWDFM101.wdf.sap.corp)
    SapMetamodelCore 7.0014.20061002105432.0000 (release=645_VAL_REL, buildtime=2007-11-17:11:36:09[UTC], changelist=419384, host=PWDFM101.wdf.sap.corp)
    SapMetamodelDictionary 7.0014.20060719095619.0000 (release=645_VAL_REL, buildtime=2007-11-17:11:44:27[UTC], changelist=411251, host=PWDFM101.wdf.sap.corp)
    SapMetamodelWebDynpro 7.0014.20070703112649.0000 (release=645_VAL_REL, buildtime=2007-11-17:11:49:22[UTC], changelist=454024, host=PWDFM101.wdf.sap.corp)
    SapWebDynproGenerationCTemplates 7.0014.20071029095230.0000 (release=645_VAL_REL, buildtime=2007-11-17:12:01:49[UTC], changelist=466194, host=pwdfm101)
    SapWebDynproGenerationCore 7.0014.20061002110128.0000 (release=645_VAL_REL, buildtime=2007-11-17:11:52:33[UTC], changelist=419396, host=PWDFM101.wdf.sap.corp)
    SapWebDynproGenerationTemplates 7.0014.20071029095230.0000 (release=645_VAL_REL, buildtime=2007-11-17:12:01:49[UTC], changelist=466194, host=pwdfm101)
    sap.com/tcwddispwda
    No information available null
    sap.com/pb_api
    SapDictionaryGenerationCore 7.0014.20061002105236.0000 (release=645_VAL_REL, buildtime=2007-11-17:11:46:55[UTC], changelist=419377, host=PWDFM101.wdf.sap.corp)
    SapDictionaryGenerationTemplates 7.0014.20061002105236.0000 (release=645_VAL_REL, buildtime=2007-11-17:11:47:02[UTC], changelist=419377, host=PWDFM101.wdf.sap.corp)
    SapGenerationFrameworkCore 7.0014.20060719095755.0000 (release=645_VAL_REL, buildtime=2007-11-17:11:35:31[UTC], changelist=411255, host=PWDFM101.wdf.sap.corp)
    SapIdeWebDynproCheckLayer 7.0014.20061002110128.0000 (release=645_VAL_REL, buildtime=2007-11-17:11:52:27[UTC], changelist=419396, host=PWDFM101.wdf.sap.corp)
    SapMetamodelCommon 7.0014.20061002105432.0000 (release=645_VAL_REL, buildtime=2007-11-17:11:36:15[UTC], changelist=419384, host=PWDFM101.wdf.sap.corp)
    SapMetamodelCore 7.0014.20061002105432.0000 (release=645_VAL_REL, buildtime=2007-11-17:11:36:09[UTC], changelist=419384, host=PWDFM101.wdf.sap.corp)
    SapMetamodelDictionary 7.0014.20060719095619.0000 (release=645_VAL_REL, buildtime=2007-11-17:11:44:27[UTC], changelist=411251, host=PWDFM101.wdf.sap.corp)
    SapMetamodelWebDynpro 7.0014.20070703112649.0000 (release=645_VAL_REL, buildtime=2007-11-17:11:49:22[UTC], changelist=454024, host=PWDFM101.wdf.sap.corp)
    SapWebDynproGenerationCTemplates 7.0014.20071029095230.0000 (release=645_VAL_REL, buildtime=2007-11-17:12:01:49[UTC], changelist=466194, host=pwdfm101)
    SapWebDynproGenerationCore 7.0014.20061002110128.0000 (release=645_VAL_REL, buildtime=2007-11-17:11:52:33[UTC], changelist=419396, host=PWDFM101.wdf.sap.corp)
    SapWebDynproGenerationTemplates 7.0014.20071029095230.0000 (release=645_VAL_REL, buildtime=2007-11-17:12:01:49[UTC], changelist=466194, host=pwdfm101)
    sap.com/tcwdcorecomp
    No information available null
    Detailed Error Information
    Detailed Exception Chain
    com.sap.tc.webdynpro.services.exceptions.WDRuntimeException: ComponentUsage(FPMConfigurationUsage): Active component must exist when getting interface controller. (Hint: Have you forgotten to create it with createComponent()? Should the lifecycle control of the component usage be "createOnDemand"?
         at com.sap.tc.webdynpro.progmodel.components.ComponentUsage.ensureActiveComponent(ComponentUsage.java:773)
         at com.sap.tc.webdynpro.progmodel.components.ComponentUsage.getInterfaceControllerInternal(ComponentUsage.java:348)
         at com.sap.tc.webdynpro.progmodel.components.ComponentUsage.getInterfaceController(ComponentUsage.java:335)
         at com.sap.pcuigp.xssfpm.wd.wdp.InternalFPMComponent.wdGetFPMConfigurationUsageInterface(InternalFPMComponent.java:245)
         at com.sap.pcuigp.xssfpm.wd.FPMComponent$FPM.changeToExceptionPerspective(FPMComponent.java:862)
         at com.sap.pcuigp.xssfpm.java.MessageManager.handleException(MessageManager.java:259)
         at com.sap.pcuigp.xssfpm.java.MessageManager.raiseException(MessageManager.java:104)
         at com.sap.pcuigp.xssfpm.wd.BackendConnections.connectModelInternal(BackendConnections.java:323)
         at com.sap.pcuigp.xssfpm.wd.BackendConnections.initBackend(BackendConnections.java:256)
         at com.sap.pcuigp.xssfpm.wd.BackendConnections.connectModel(BackendConnections.java:154)
         at com.sap.pcuigp.xssfpm.wd.wdp.InternalBackendConnections.connectModel(InternalBackendConnections.java:237)
         at com.sap.pcuigp.xssfpm.wd.FPMComponent$FPM.connectModel(FPMComponent.java:842)
         at com.sap.pcuigp.xssfpm.wd.FPMComponent$FPMProxy.connectModel(FPMComponent.java:1072)
         at com.sap.pcuigp.xssfpm.wd.BackendConnections.init(BackendConnections.java:141)
         at com.sap.pcuigp.xssfpm.wd.wdp.InternalBackendConnections.init(InternalBackendConnections.java:233)
         at com.sap.pcuigp.xssfpm.wd.FPMComponent.wdDoInit(FPMComponent.java:182)
         at com.sap.pcuigp.xssfpm.wd.wdp.InternalFPMComponent.wdDoInit(InternalFPMComponent.java:110)
         at com.sap.tc.webdynpro.progmodel.generation.DelegatingComponent.doInit(DelegatingComponent.java:108)
         at com.sap.tc.webdynpro.progmodel.controller.Controller.initController(Controller.java:215)
         at com.sap.tc.webdynpro.progmodel.controller.Controller.init(Controller.java:200)
         at com.sap.tc.webdynpro.clientserver.cal.ClientComponent.init(ClientComponent.java:430)
         at com.sap.tc.webdynpro.clientserver.cal.ClientApplication.init(ClientApplication.java:362)
         at com.sap.tc.webdynpro.clientserver.session.ApplicationSession.initApplication(ApplicationSession.java:756)
         at com.sap.tc.webdynpro.clientserver.session.ApplicationSession.doProcessing(ApplicationSession.java:291)
         at com.sap.tc.webdynpro.clientserver.session.ClientSession.doApplicationProcessingPortal(ClientSession.java:733)
         at com.sap.tc.webdynpro.clientserver.session.ClientSession.doApplicationProcessing(ClientSession.java:668)
         at com.sap.tc.webdynpro.clientserver.session.ClientSession.doProcessing(ClientSession.java:250)
         at com.sap.tc.webdynpro.clientserver.session.RequestManager.doProcessing(RequestManager.java:149)
         at com.sap.tc.webdynpro.clientserver.session.core.ApplicationHandle.doProcessing(ApplicationHandle.java:73)
         at com.sap.tc.webdynpro.portal.pb.impl.AbstractApplicationProxy.sendDataAndProcessActionInternal(AbstractApplicationProxy.java:860)
         at com.sap.tc.webdynpro.portal.pb.impl.AbstractApplicationProxy.create(AbstractApplicationProxy.java:220)
         at com.sap.portal.pb.PageBuilder.updateApplications(PageBuilder.java:1288)
         at com.sap.portal.pb.PageBuilder.createPage(PageBuilder.java:355)
         at com.sap.portal.pb.PageBuilder.init(PageBuilder.java:548)
         at com.sap.portal.pb.PageBuilder.wdDoInit(PageBuilder.java:192)
         at com.sap.portal.pb.wdp.InternalPageBuilder.wdDoInit(InternalPageBuilder.java:150)
         at com.sap.tc.webdynpro.progmodel.generation.DelegatingComponent.doInit(DelegatingComponent.java:108)
         at com.sap.tc.webdynpro.progmodel.controller.Controller.initController(Controller.java:215)
         at com.sap.tc.webdynpro.progmodel.controller.Controller.init(Controller.java:200)
         at com.sap.tc.webdynpro.clientserver.cal.ClientComponent.init(ClientComponent.java:430)
         at com.sap.tc.webdynpro.clientserver.cal.ClientApplication.init(ClientApplication.java:362)
         at com.sap.tc.webdynpro.clientserver.session.ApplicationSession.initApplication(ApplicationSession.java:756)
         at com.sap.tc.webdynpro.clientserver.session.ApplicationSession.doProcessing(ApplicationSession.java:291)
         at com.sap.tc.webdynpro.clientserver.session.ClientSession.doApplicationProcessingStandalone(ClientSession.java:713)
         at com.sap.tc.webdynpro.clientserver.session.ClientSession.doApplicationProcessing(ClientSession.java:666)
         at com.sap.tc.webdynpro.clientserver.session.ClientSession.doProcessing(ClientSession.java:250)
         at com.sap.tc.webdynpro.clientserver.session.RequestManager.doProcessing(RequestManager.java:149)
         at com.sap.tc.webdynpro.serverimpl.defaultimpl.DispatcherServlet.doContent(DispatcherServlet.java:62)
         at com.sap.tc.webdynpro.serverimpl.defaultimpl.DispatcherServlet.doPost(DispatcherServlet.java:53)
         at javax.servlet.http.HttpServlet.service(HttpServlet.java:760)
         at javax.servlet.http.HttpServlet.service(HttpServlet.java:853)
         at com.sap.engine.services.servlets_jsp.server.HttpHandlerImpl.runServlet(HttpHandlerImpl.java:401)
         at com.sap.engine.services.servlets_jsp.server.HttpHandlerImpl.handleRequest(HttpHandlerImpl.java:266)
         at com.sap.engine.services.httpserver.server.RequestAnalizer.startServlet(RequestAnalizer.java:386)
         at com.sap.engine.services.httpserver.server.RequestAnalizer.startServlet(RequestAnalizer.java:364)
         at com.sap.engine.services.httpserver.server.RequestAnalizer.invokeWebContainer(RequestAnalizer.java:1039)
         at com.sap.engine.services.httpserver.server.RequestAnalizer.handle(RequestAnalizer.java:265)
         at com.sap.engine.services.httpserver.server.Client.handle(Client.java:95)
         at com.sap.engine.services.httpserver.server.Processor.request(Processor.java:175)
         at com.sap.engine.core.service630.context.cluster.session.ApplicationSessionMessageListener.process(ApplicationSessionMessageListener.java:33)
         at com.sap.engine.core.cluster.impl6.session.MessageRunner.run(MessageRunner.java:41)
         at com.sap.engine.core.thread.impl3.ActionObject.run(ActionObject.java:37)
         at java.security.AccessController.doPrivileged(Native Method)
         at com.sap.engine.core.thread.impl3.SingleThread.execute(SingleThread.java:102)
         at com.sap.engine.core.thread.impl3.SingleThread.run(SingleThread.java:172)

    what user name did you use in JCo??? and the user you made can you give me some insight steps on it...
    i mean the user is refernce user, dialuge user or what user.....
    My basis team is using their own user name in JCO, bcoz of which only data relating to their user name is showing in ESS / MSS for all employees of PORTAL
    also please let me know which profile you used for the user of JCO.
    Regards

  • Main Address in HRMS not showing in Employee Self Service

    Hi
    The Main Address (primary address) that has been captured in core HR is not pulling through to the employees personal information screen in Employee Self Service. Any ideas as to what the problem could be?
    Thanks in advance

    According to MetaLink note 278417.1 the cause is that the Addresses were not properly loaded, probably missing out the "Country" field. Addresses without Country field will not show up in SSHR.
    "Fix
    In the PER_ADDRESSES table if 2 records are compared, i.e one entered for a new address and one for the record loaded thru APIs, then it will be seen that the Country is missing in the record that came thru API.
    Customers will need to correct their data in order for the Addresses to appear in SSHR.
    Customers can write an update script to update the Country (We do not support this) or update the Country field using the APIs or reload their addresses using API's."

  • ESS: Employee Self Services,  Hrxssce_Service_Appl_Path does not exist

    Hi,
    I am having real problems implementing the employee self services in a Portal environment. It is located on a NW 7.0 JavaAddin with SP 15.
    I followed the configuration guides on help.sap.com and rechecked all settings. I could also find some threads here in SDN-community but nothing helped so far.
    My components in the server are SAP_ESS 600 SP13 and BP_ERP5ESS 1.0 SP13 . The different xss components are of version 600.
    The error I get is always after a click on a specific function:
    com.sap.dictionary.runtime.DdException: Type com.sap.pcuigp.xssutils.pernr.model.grpinfo.types.Hrxssce_Service_Appl_Path does not exist
    The default trace of the server node shows this error message:
    sap.com/ess~cod/ChangeOwnDataApplication#com.sap.tc.webdynpro.services.exceptions.TypeNotFoundException: type com.sap.pcuigp.xssutils.pernr.model.grpinfo.types.Hrxssce_Service_Appl_Path could not be loaded: com.sap.dictionary.runtime.DdException: Type com.sap.pcuigp.xssutils.pernr.model.grpinfo.types.Hrxssce_Service_Appl_Path does not exist
    The only thing that I can imagine is that I used a wrong version. Is there a source where I can read about the correct releases for the correct SP-Stacks?
    Does anyone have other Ideas or hints?
    Thanks in advance,
    André

    Hi Guys
    As per note 1303362 check
    http://wiki.sdn.sap.com/wiki/display/ERPHCM/HOWTOGETRIDOFSPSTACKMISMATCHISSUES
    To ensure you are using corresponding versions and SP levels
    I can't see any problem with SAP_ESS 600 SP13 and BP_ERP5ESS 1.0 SP13  - however are these installed on the same Portal ?
    are you also using SAP_HR and EA_HR version 600 in the ECC system (as recommended) - did you implement Netweaver EHP1 in ECC or Portal (not recommended for ERP 6.0)
    A common reason for this issue is XSS versions are not corresponding version to SAP_HR and EA_HR - this includes component PCUI_GP which should be at version 600 for SAP_ESS 600 useage
    Best wishes
    Stuart

  • Termination Date in Employee Self Service

    Dear All,
    In Employee Self Service Termination Date is defaulting as System Date when employee is initiating the termination. So employee is not able to edit the Date.
    After approval it is storing directly in to the form.
    In this case employee is not able to set the termination date i.e actual termination date.
    How to make it as editable.
    Regards,
    Jithin

    Hi,
    Sorry for the delay.
    I am using the function 'HR_TERMINATION_MGR_SS' for the manager self-service and there is a choice to pick the termination date.
    and i am using the 'HR_TERMINATION_SS' and it has the sysdate by default.
    could you please give me the function name exactly of the one you are using.
    the version we have is 12.0.4
    Thanks a lot

  • Team Explorer don't work with Employee Self Service

    Hi,
    We're testing the <b>Team Explorer</b> iview on our EP 6.  After long tests, we had success in show all data that <b>TeamViewer</b> has. Now, we are facing another error (or maybe not). The Team Explorer iView doesn't work with ESS iView. When I pick somebody on the <b>TeamExplorer</b>, the ESS iView has no reaction. And here is my question. Somebody knows if the <b>Team Explorer</b> iView was made to interact with <b>Employee Self Service</b> iView? Like the TeamViewer it's able to with "<b>ESS in MSS</b>" functionality.    Waiting for news.
    <i>Best Regards,</i><b>Daniel Kiel</b>

    Hi Daniel,
    the Team Explorer doesn't work with ESS-iViews, cause these iViews don't react of the raised events. The other way around, you can use MSS-iViews in ESS. Just hide the Team Explorer.
    Sebastian

  • Enable the Shop on Behalf functionality for Employee Self Service Role (Requisitioner) in SRM 7 EHP 3

    Dear All,
    We are in SRM 7.0 EHP 3 and we are planning to add the shop on behalf functionality for our requisitioner (Employee Self Service Role). As per the standard, we are aware that it can be implemented in SC professional.
    Is there a way to add the SOB functionality in SC Wizard as well. We have tried the below suggestion.
    Enhance the BBP_SC_MODIFY_UI BADI. But it hasn't helped us where the link is not at all appearing. Could you please advise if there is any enhancement needs to be done in Web Dynpro level or the changes need to be done in BADI and also in Web Dynpro level.
    Thanks in advance for your help.
    Best Regards,
    Bharathi

    You observation is correct and it is the standard design of such portal roles as SRM Administrator, SRM Strategic Purchaser, or SRM Operational Purchaser to not have "personalization", but only Employee Self Service role.

  • Business Package for Employee Self-Service 1.2

    Hi,
    I have seen that there exists a documentation about Business Package for Employee Self-Service 1.2
    <a href="http://help.sap.com/erp2005_ehp_02/helpdata/de/46/51f92594b85e40e10000000a11466f/frameset.htm">http://help.sap.com/erp2005_ehp_02/helpdata/de/46/51f92594b85e40e10000000a11466f/frameset.htm</a>
    Does anybody know whether I can download this version? I do only find the version 1.0, which we have already installed.
    Best regards,
    Marcus

    I guess it relates to components EA-APPL and EA-HR enhancement pack 2 which you should be able to get on service.sap.com
    Regards
    Jayesh

  • Employee Self Service in EP 6.0 and SAP R3 HR 4.6C

    Hi, Can anyone tell me how can I configure Enterprise Portals 6.0 to the see some services of the employee self service?
    I have done the following:
    1. Download the business package 5.0-4.
    2. Import the business package.
    3. Create a role
    4. add the employee self service workset to the role.
    Now when I go to the page in the iviews there are errors.
    I have not configured the backend systems, Where can I do that?
    Is there something more to do?
    Is the business Package 50.4 the properly package or there is another one more new?
    Any comments, suggestions, links or documentation is welcomed.
    Thanks in advance.
    Best Regards.
    MANUEL

    Manuel,
    You can follow the Configuring ESS in SAP Enterprise Potal 6.0, which shows screenshots of 4.6c. You can find it at;
    Configuring ESS in SAP Enterprise Portal 6.0
    You might also want to read the following links;
    Going Live with ESS
    http://help.sap.com/saphelp_47x200/helpdata/en/54/b1da361ea93f0ae10000009b38f839/frameset.htm
    Regards,
    James

  • Best Practice Employee Self-service based on ECC 6.0

    Hello,
    Where do I find info about best-practice installation for Employee Self-service based on ECC 6.0?
    I only seem to find info about older versions that are not valid anymore.
    Regards,
    Fredrik

    Fredrik,
    Please check this
    http://help.sap.com/saphelp_erp2005/helpdata/en/f6/263359f8c14ef98384ae7a2becd156/frameset.htm
    https://www.sdn.sap.com/irj/sdn/go/portal/prtroot/docs/webcontent/uuid/a0b47200-9c6d-2910-afa6-810c12eb7eb3
    Hope this helps.
    Have a great weekend
    Cheers,
    Sandeep Tudumu

  • Business Package for Employee Self-Service 4.6C - 4.7 - F4 key doesn't work

    Hello All,
    We have installed Business Package for Employee Self-Service 4.6C - 4.7 in our Portal version EP 6.0 SPS09 .We r accessing ESS into portal through ITS .I hav not installed any support packages for this Business Package.Our backend is R/3 system.We are a problem in accessing ESS iviews in Portal like F4 key doesnot work and no F4 help pop up appears.Are there any support packages also available for a Business Package.If yes where to find it and how to install it,can someone tell me wt might be the cause of this Error? and how to resolve it? My Email Id is [email protected] .
    Regards,
    saumya

    Hi Rudhras
    I don't uderstand why u use MYSAP ERP ESS support package since u using SAP R3 4.7 as backend.
    I think it's diffrent from SAP R3 4.7 ESS coz it's used webdynpro
    so download the Business Package for Employee Self-Service 4.6C - 4.7 50.4 version
    regards,
    kaushal

Maybe you are looking for

  • Button Text options

    Okay I have been working on C3 for 2 months. Subscribed to Lynda.com...ran tutorials checked every help link. The Fireworks Help function stinks. Editing button symbols, here's what you get when you querie button text. "Fireworks button symbols are a

  • VPN Client and DNS settings

    Hello, here are few posts (quite some time ago) telling the same trouble: The VPN Client does *NOT* restore the original DNS settings. Upon BM3.8.2 Massimo told, that this is a bug in that version of the VPN client. I face this issue with 3.8.16 and

  • Change of Condition Value in PO after MIGO

    Hi Gurus! I want to change the condition value after migo. I have a scenario in which we have lots of purchase orders which are received. Unfortunately user has mentioned a wrong value in the tax. We want to change the value of tax in the purchase or

  • What are the fundamental procurement workflows and tasks?

    A discussion has begun in the Knowledge Management branch of SAP about the [Help documentation for SAP Sourcing|http://help.sap.com/saphelp_sourcing_wave7_p/helpdata/en/39/8ee60a3d74482e9e0111c46dc1e23d/frameset.htm]. Many feel that Help could better

  • Interesting battery improvement discovery

    After the v102 update last week, my phone was getting low usage and standby time. It was like 5 hours usage with 35 hours standby and only about 30% battery left; no wifi, no BT, no email auto-check except Yahoo push, auto bright on. I found a handfu