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

Similar Messages

  • 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

  • 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

  • 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

  • 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

  • Unable to view the details data  in "Employee Self-Service 4.0" of HRMS

    Unable to view the detail data in "Summary of Absences" when click the "Leave of Absence " button in "Employee Self-Service 4.0",
    the whole login path is : "Employee Self-Service 4.0" ===> "Leave of Absence "
    It shoud be seen the "Summary of Absences " ,bacause there are data in the datebase ,but when I click in it shows "No data exists."

    Dear user11977612 :
    Thank you for your answer, I have been check the profile :HR: Self Service HR Licensed, It had set YES. Thank you! But it still no records
    Dear Naveen:
    The page can open with IE7 and it just can not be shown the detail records (llike in "Absence Type" the detail ===>Advance Leave ) in the IE page.
    Regards,
    Edited by: user11975899 on 2009/10/13 下午 7:17

  • 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

  • Portal Employee Self Services OverView Page

    Hi All,
              Iam having Four work items in my Employe Self Services OverView Page 1)personal information
    2)employee search  3)Benfits and payments  4)Working Time . Now I have added one more work item Travel Management i have done all necessary configuration settings in R/3
    spro>employee self services->home page for self services->areas->Difine ares to area grop pages->Assign Areas to Area Group Pages (Add and Change Entries)->here i have given 5 position
    but there is no change in Frontend portal employee services overview page
    Can anybody help me in solve out this.
    Thanks in advance,
    Kishore
    Edited by: kishore shikore on Nov 29, 2008 6:13 AM

    hi, hav u created webdynpro iView..
    Suppose you want a new area which has two servicex.. create WD iView which would point to your application.
    Define  Applicationparameter  in iView defining menuarea, menugroup, menuheader, which you will be defining in SPRO.
    Now create weddynpro proxy page and the add above iView to your page.
    Now create iView for service i.e your webdynpro appliaction.
    Now add above iView to new proxy page. Thus now we have to proxy page.
    Create workset and add this two page to workset.
    Add this workset to ESS role.
    note down PCD location of above two pages.Now all necessary configuation from portal side is completed
    Now u would need to do your SPRO setting.. Go to resource node and create resouce. and give  PCD location in URL of PCD Page. Similarly you would need to do this for other page also ...in resouce node.
    Now we have defined resouce...now we would define the area...give your area name..and give resouce name.
    Now define subarea.. and add subarea to areas..from assing sub-area to area node.
    Now create a service..from define service node..give resouce name in link resouce text box..
    Now assign service to subarea..
    Now to make it available on overview page....you need to add Group page to Group Area page, to make it visible on ESS Overview Page.
    IMG-> Cross Application Components -> Homepage Framework->Areas -> Assign Areas to Area Group
    Pages -> Assign Areas to Area Group Pages (Add and change Entries).
    Click on u2018New Entriesu2019.
    Now you can save..it..
    Regards
    Jigar oza

  • Integrating Manager Self-Services(MSS), Employee Self-Services(ESS) in EP60

    Hi,
    I would like to integrate Manager Self-Services(MSS) and Employee Self-Services(ESS) into my Enterprise Portal EP6.0 SP2.
    I have downloaded the business packages for the same and looking for a good document which can guide me to implement the integration.
    Any quick response would be highly appreciated.

    Hi,
    the "connection" between iView and R3 System is done via the system definition. The ESS - iViews use a System alias SAP_R3_Human_Resources (and the other names I mentioned above).
    If you have assigned this ESS role to a user the iView connects to the R3 system defined in the alias. If you chose single sign on the user id from the portal should be the same as in the R3. If it is different the easiest way would be to use usermapping.
    The best way would be to assign this ESS role to your user and watch what is happening.
    Regards,
    Holger.

Maybe you are looking for

  • Problem with Union and Currval/NextVal

    Hello, I think I may have found a bug with 8.1.5 but I am not sure. Here is the SQL I am trying to execute: insert into LFI_TEST_OWNER.CURRVAL_TEST_tb SELECT lfi_seq_num_sg.currval FROM DUAL UNION ALL SELECT lfi_seq_num_sg.currval FROM DUAL When I ex

  • A Bug in layer effects?

    Hi, Hopefully the animated gif is self explanatory. (edit: looks like animated GIFs don't work so have included each frame as a separate image). I have used a layer effect to draw a stroke inside the border of an image and all I would like to do is t

  • Problem with Variable screen in WAD

    Hi , I have a problem with variable screen in WAD , in the varable seen it is displaying only Key , it is not giving any description , but in BEX is is displaying both Key and Description , can any only have an idea why is this happening . this is oc

  • Travling tips with a G4

    We're going to Las Vegas during spring break. My daughter will be bringing her Mac Book Pro and I'll be bringing a G4 iBook. Any tips on going through security like while they ask us to turn it on? I've heard warnings about making sure that we make s

  • Procedure with IN as 'TYPE'

    Hi All, I'm in Oracle 10gR2. I have the following procedure spec as    PROCEDURE SEND_MAIL_CLOB (       p_recipient_list   IN            ty_mail_recipient_tab,       p_subject          IN            VARCHAR2,       p_body             IN OUT NOCOPY CL