Standard ESS iViews for ECM module

Hi,
Regarding the compensation management module, there are several standard ESS iViews delivered by SAP:
For instance the "<i>Displaying a Total Compensation Statement</i>" in Business Package for Employee Self-Service (mySAP ERP 2004).
As we are setting up Enterprise Compensation Management, I would like to know whether these iViews will also be delivered for ECM. I have checked all Business Package documentation but did not find any standard ESS iViews for ECM.
For MSS, I have found the MSS_60_1_EN.pdf documentation which contains a lot of MSS ECM information. No ESS info unfortunately.
Thanks in advance.
MvdM

The TCS iView is only part of ESS BP and basically uses the ess/rem DC to generate the report framework that shows the output as Adobe PDF. The TCS itself is implemented in the backend with the form builder (/hrforms) - same approach as salary statement. Employees can view their salary statemetn or TCS. In ECM you have managers working with employee data and normally you don't want to display managers this type of information of their employees - but that depends off cause on your requirements. It is not too difficult to build a custom TCS service for managers and integrate it with ECM.

Similar Messages

  • How can i replace the standard ESS iview with my own iview

    I want to replace standard ESS addr iview with my own WD developed by ABAP
    I added the iview(my WDA) into standard ESS addr page.
    (pcd:portal_content/com.sap.pct/every_user/com.sap.pct.erp.ess.bp_folder/com.sap.pct.erp.ess.pages/com.sap.pct.erp.ess.personal_information/com.sap.pct.erp.ess.cn/com.sap.pct.erp.ess.addr/com.sap.pct.erp.ess.addr)
    And make it visible.
    But I got this error in ESS PA addr :
    WebDynpro Exception: Application PER_ADDRESS_CN Does Not Exist
    Here is the error code :
    Error code&#65306;ICF-IE-http-c:100-u:AC_WANGFZ-l:1-s:CE1-i:SAPCE101_CE1_01-w:0-d:20070514-t:172301-v:RABAX_STATE-e:UNCAUGHT_EXCEPTION
    So , how can i replace the standard ESS iview with my own iview?
    Thanks

    Can you see any Javascript EPCF code in the old iView  ?  You are surely just going to have to find it  (if our hunch is correct) and analyse it and copy it into your new iView so that it functions in some way that at least does not error

  • Not able to get ESS iviews for 80 and 80C

    Dear All,
    We have implemented ESS MSS BP (ERP 2005 EHP3) and have standard iviews working on the portal.
    But when i preview the iview for section 80 and 80 C, i get the following error.
    " com.sapportals.portal.prt.runtime.PortalRuntimeException: Failed in WD JNDI lookup. javax.naming.NameNotFoundException: No child found in WebDynproContext with name essinsec80 "
    Also, am not able to find the application in the Webdynpro Administrator.
    Can somebody throw their experiences regarding why this is occuring and how this can be resolved.
    Thanks
    Regards
    Piyush Bhurangi

    Hi Piyush,
    ESS MSS BP (ERP 2005 EHP3)
    as you said earlier that you have applied EHP3 .
    But the pacth you have applied is EHP4 and not EHP3
    BP_ERP5ESS 1.41 SP3 (1000.1.41.3.0.20090430054002)
    And this is a cause of the problem which you are facing .
    You are applying the BP which is relase EHP4 and you SAP_ESS is on relase 600 as well as your backend patch is also not equivalent for BP -ESS EHP4.
    So the solution is ;-
    If you have to use BP-ESS with EHP4 , then you have to upgrade you backend SAP_HR with EHP4 and SAP_ESS patch with 603.
    Thanks
    Anil

  • Standard MDM iView for Creation of Record

    Hi All,
    We have requirement to create a record in MDM through Portal.
    Are there any standard iViews available in Portal content of MDM, which can create or update a record in MDM repository?
    In the Portal content we have found following two SCA
    BPMDMAPPLI04_0.SCA
    BPMDMTECHN04_0.SCA
    We have deployed them on the portal server, we are able to see search and itemdetail iViews for standard repository.
    But we are not able to see iViews for creation of record.
    In one of the document it has been given that SP 04 extended (imporved) functionality offers Data Entry and Maintenance (CURD operations) can also be performed.
    But availability of the iViews not mentioned anywhere.
    Anyone has already implemented such kind of functionality or scenario?
    Thanks and regards,
    Shruti.

    Hi Mandar,
    I have followed the same PDF also.
    But I am not able to find out the SCA's which are mentioned in the above document for GP and CAF.
    I tried searching on service market place also.
    In portal Contenet of SP 04 i have found only two SCA's
    BPMDMAPPLI04_0.SCA
    BPMDMTECHN04_0.SCA
    I am not able to find following SCA files.
    H2G_GuidedProcedures.sda
    H2G_SourceCode.zip
    Can tell me how do i get those SCA's?
    Thanks in Advance
    Shruti.
    Edited by: Shruti Shah on Mar 12, 2008 6:19 AM

  • Copy standard iviews for customization

    Hi Experts,
        How to copy the standard ess iview to a custom namespace.
    1. Can i copy paste the com.sap.pct.ess.employee and use the change ID option to change the namespace. will this maintain the delta link to sap std. iviews.
    2. should i copy any other folders for ess
    thanks,

    Hi Bala,
    Should i copy the required iviews,worksets,roles and paste as deltalink in the new folder. Will this change the iview namespace to that of the copied folder or should i use change id on each iview as well.
    Can we copy and paste all the iviews,pages,worksets and roles and paste them as deltalink in the custom folder in one go.

  • Data in table control not seen for the Standard Transaction Iview

    Hi
    I am creating one Standard Transaction Iview for CATS .
    While doing print preview in IE 6 , I am not able to see data in Table control(Data Entry Area ).
    Can you please provide me the solution for how I can see the data in Table Control
    Regards
    Ruturaj

    Hi David,
    I too struggled a lot to find the solution ....atlast got it....It possible by exporting and importing the table control values to Database Index.
    1. AT SELECTION SCREEN OUTPUT event  triggers when you SAVE and GET the variant.
    2. So write the logic in AT SELECTION-SCREEN OUTPUT event.
    CONSTANTS: c_vari TYPE char30 VALUE
                             '(SAPLSVAR)RSVAR-VARIANT'.
      FIELD-SYMBOLS: <lfs_vari> TYPE ANY.
      ASSIGN: (c_vari) TO <lfs_vari>.
      IF sy-subrc = 0.
        IF <lfs_vari> IS NOT INITIAL.
          IF ok_code = 'SPOS'.
            EXPORT gt_chars[] TO DATABASE vari(tc) ID <lfs_vari>.
          ELSEIF ok_code = space.
            IMPORT gt_chars[] FROM DATABASE vari(tc) ID <lfs_vari>.
          ENDIF.
        ENDIF.
      ENDIF.
    In the above logic if OK_CODE is 'SPOS', that is for saving the variant with the name <lfs_vari>.
    Similarly if the OK_CODE is other than, 'GET'....that is for retrieving the variant. But in case of getting the variant OK_CODE is not filled with 'GET', but variant will be filled. We should take variant filling as base and do as done above.
    It worked for me.....

  • Are there any standard iview for FAQ??

    Dear Sir,
    Our server is EP6 SP14, I need to do FAQ
    Are there any standard KM iview for FAQ??
    Please advise.
    Thank you and best regards,
    Vimol

    Hi Vimol,
    You don't have any iview specificaly design for FAQs, but you have a FAQ sample in the XML Forms. It's based on KM, XML and XSLT and acts as a web content manager.
    To learn how to use XML forms go to the <a href="http://service.sap.com/~form/sapnet?_SHORTKEY=00200797470000073623">How To guides page</a>, under the KM folder.
    cheers,
    Marcelo

  • Can i add a "print" link in standard KM iViews??

    Hi All,
    I have done some Portal development.
    I am new to KM.
      I have some doubts:
    1.       I want to develop custom News Component, Discussion Group & Discussions etc.. What perspective I should use? I mean, is it PDK? Or is there something else?
    2.       In a standard KM iView (for ex: in a news iView), can I add a link called print (say) to print the whole content in the iView? Or should I have to make a custom development for that.
                Please tell me what I should refer to. Any classes like IRoom, IDisscussionGroup etc..????
    Plz help me.
    <b>Regards,
    Sai Krishna.</b>

    Any ideas/solutions? Please do share.
    Sai.

  • Exit button on ESS iViews

    Hi,
    We have ESS deployed on EP7.0, so we are using the WebDynpro version of ESS. Now we want to redirect the navigation to our own customized iView when click "Exit" button on any of the ESS iView, for example , address iView. I guess this should be controlled in the pcui_gp xssutil component, am I right? Can anyone give me some hints on where I can make this modification? Thanks a lot

    Hi Chris,
      thanks for your reply.
      If you mean to hide the button using the iView/WD Personalisation by rightclick on the iView in PCD and then Review, well yes i know this and i have tried this already before and we were able to hide some not required input fields in the Webdynpro, but we were not able to find and to hide the "EXIT" Button using the personalisation..!!?? you know why?
    Why to hide the Exit button, i will tell you why, in the iView for maintainig the ESS Personal Information -> e.g. Adresse --> Edit Adresse View (Roadmap view No. 2) --> when User click on the Exit Button --> This will open new browser Window with ESS... ---> This second Browser Window (Pop up) would confuse the User, since he already have an opened window, so the Customer mean why open new window, since the user can simply click the Button Back and so his data are also saved..
    How can we manage to control the behaviour of the Button, so the iView is closed safety without that new Pop-up windows are opened...
    Many Thanks,
    Nazih

  • Standard ESS components missing!!!

    Hi Experts,
    I am working on ESS components in WD ABAP. But there is a problem the standard ESS componets for travel and expense which strats with prefix  FITE are missing in Sandbox system and production system. But these components are available in development system. What could be the reason for it and the preffered solution in this case. Please help.
    Regards,
    Vaibhav Tiwari.

    Hi,
    Make sure the FITE* and FITV* services are activated in transaction "SICF" under the path:  default_host --> sap --> bc --> webdynpro --> sap.
    Let me know if that helps.

  • 'Access is denied' error in ESS iViews & Page not displayed' thru. internet

    Hi,
      We are implementing <b>ESS(Webdynpro)/MSS(Java)</b>.
      We are in EP6 SP13.
      We want to put our portal on internet through SSL.
    I have installed SAP Webdispatcher and configured it to support SSL. SAP webdispatcher is installed on a DMZ machine(hostname: SAPROUTER).
    <i>webdispatcher ports:</i>
    http port: 80
    https port: 8443
    1) When i try to access the portal from the DMZ machine (where the webdispatcher is installed) using <b>https://saprouter.domainname.net:8443/irj/portal</b>, i am able to see all the iViews.. but, i am getting '<b>access is denied</b>' error(in the status bar) when i try to click on any link in ESS iViews (for ex: working time, Employee search).. when i try to double click i am getting javascript:void(0)
    2) When i try to access the portal through internet(<b>https://<ipaddress>:8443/irj/portal</b>), I get the logon page and after logging in... i am not able to see the ESS and Transaction iViews .. getting 'Page cannot be displayed' error.
    When i am able to see the iViews in the DMZ machine.. why are they not being displayed when i access through internet??
    Can any1 help me in this regard?? What am i missing ??
    Awaiting your reply.
    Regards,
    SK.

    It’s a hot topic I think,
    Where facing the exact same problems.
    When we logon ‘LOCAL’ to the Portal the iview works. (Not true the internet / DMZ)
    But when we logon true the webdispatcher we get the Portal Layout, so the dispatcher works.
    But the WEBdynpro Iview gives the error -> ‘Page not displayed'
    And when we edit the file “hosts” on the pc of the client browser and fill in the hostname of the SAP Portal the Iview works…..???
    There are no ports closed on the firewall, everything is allowed.
    Can anyone tell me of it’s necessary to edit the Web Dynpro Runtime Environment. Here are some settings for the WEBdispatcher but I can’t get it working.
    -     sap.webdispatcher.host           = Defines the host of a used Web Dispatcher
    -     sap.webdispatcher.port            = Defines the port of a used Web Dispatcher
    -     sap.webdispatcher.protocol      = Defines the protocol of a used Web Dispatcher
    See the link -> http://help.sap.com/saphelp_nw04s/helpdata/en/43/8a1a8ece230c8ce10000000a11466f/frameset.htm
    When I activate the trace on the webdispatcher
    (D:webdispsapwebdisp.exe pf=D:webdispsapwebdisp.pfl -t 2)
    In the Tracefile I can see that the webdispatcher resolves the SAP portal system. That’s was aleady confirmed by seeing the portal framework from the client. I think that the WEBdynpro’s have to be remote activated, or some addition settings in the webdispatcher.
    If somebody get an idée I really would like to know it.
    Best regards,
    Edwin

  • Standard BI Queries for SAP HR ECM module

    Hello Gurus,
    Can anyone list me the standard BI Queries for SAP HR ECM module?  (Enterprise Compensation Module) for ECC 6.0
    Any concerns greatly appreciated and rewarded..
    Thanks,
    Soniya Singh

    http://help.sap.com/saphelp_nw70/helpdata/en/3e/0895ec8866f44cac9f1825370c88d2/frameset.htm

  • How to allow modification of Country key in standard ESS "Adress" Iview ?

    Dear all,
    In the standard ESS Personal Information Iview and especially "Adress" Iview, the COUNTRY drop down list can't be modified, modification is deactivated, Country drop down list isn't accessible. But I need to let people select their country when they indicate a new adress (emergency, foreign adress, secondary adress...).
    In SPRO>ESS>Personal data/information -->I use country 06, infotype 0006, application case 1 permanent residence.
    I tried the CTRL+right click method but I can't activate the country "modification" (no button to solve my issue).
    I looked at the below thread but I do want to know if there's really no standard way to allow people to modify that usual field?
    http://wiki.sdn.sap.com/wiki/pages/viewpage.action?spaceKey=profile&title=ESSPersonalInformationUIenhancementwithoutmodification&decorator=printable
    Many thanks by advance for your advices!
    BR
    Blandine Landais

    Many thanks for your answer!
    I've tested it on another system (EHP3 this time) and you need, indeed, to activate business functions (new releases of EHP) in the customizing to allow editing of other country forms. The address iview is a new one too, so no way on an ECC6.0. We tried to search a solution within the abap way but it would generate such a big specific development that I'm not sure we will implement it..
    Thanks again for your helpful answer.
    BR

  • Training and event iviews for  ESS  .

    Hi all,
    We are using
    1). sap portal 7.0 sp 9 and
    2). Using back end ECC 6.0
    3). And using Ess business package
    Business Package for Employee Self-Service (mySAP ERP) release 1.0
    The business package doesnot contain any training and events module iviews.
    We want to use training and event management iviews on the portal(which will be accessed through internet also).
    How  to display  training and event management iviews ?
    Do we require to develope  web dynpro application for  training and event iviews?
    Can we use  transaction iview for pv8i  & pv7i  directly  ?  
    Please guide me..
    Rajendra.

    Hi Sunil,
    Connection to backend  with portal is working fine. Ess business package is working fine .  I tried iac iview for pz43  (which is alrready therein sicf  node) working fine.Transaction iviews (for webgui)  are also working fine.
    in se 80 i tried tesing the  iac component   pv7i (which is already there )
    it is giving following error
    Service cannot be reached
    What has happened?
    URL http://hcmides.lntinfotech.com:8000/sap/bc/gui/sap/its/pv7i/ call was terminated because the corresponding service is not available.
    Note
    The termination occurred in system CEC with error code 404 and for the reason Not found.
    The selected virtual host was 0 .
    What can I do?
    Please select a valid URL.
    If you do not yet have a user ID, contact your system administrator.
    ErrorCode:ICF-NF-http-c:000-u:SAPSYS-l:E-i:HCMIDES_CEC_00-v:0-s:404-r:Notfound
    HTTP 404 - Not found
    Your SAP Internet Communication Framework Team
    i also created iac component and tried to test it is giving the same error.
    waiting for your reply.
    Rajendra.

  • Standard ESS and MSS Iviews that comes with business package

    Hi all,
    What are standard ESS and MSS Iviews that come along with business pacakage?
    Does leave, appraisal and benefits come under standard?
    Pls help.
    Thanks
    Dhiya.J

    Hi Dhiya,
    Yes, they all come standard.
    Please go through the following links for full details on the applications delivered.
    (Might vary depending on the versions you would like to use)
    ESS - http://help.sap.com/erp2005_ehp_04/helpdata/EN/5b/76a6d7fd3a4e91bfb422405bf3e04d/frameset.htm
    MSS - http://help.sap.com/erp2005_ehp_04/helpdata/EN/29/d7844205625551e10000000a1550b0/frameset.htm
    Thanks,
    Shanti

Maybe you are looking for

  • WD 1TB External Hard Drive not working

    I first purchased this product from Best Buy in July. It worked fine on my PC. I get on to the iMac in August (6 months ago from yesterday, happy anniversary), and it takes FOREVER! I reformatted it to Mac OS Extended. I repaired the disk permissions

  • How does one prevent unathorized iPhone or iPad data sync

    It has come to my attention that syncing an iPad or iPhone is relatively easy. So, here is my question, let's say my iPhone or iPad was stolen or maybe "barrowed" by someone and that person decides to sync the data from the iPhone or iPad to there Ma

  • I cannot remove my master password - the remove button is gray

    I enabled the Firefox master password but FF kept asking for it every 20 seconds while I was using gmail, so I wanted to disable and remove the master password. When I uncheck the master password box, a popup screen asks for the master password but e

  • Alt Err

    My application on oracle runtime 6i, when I press only "Alt" key, (on a form without menu), the application automaticly exit. Below is the content of dump file [11/19/01 17:55:59 SE Asia Standard Time]::Client Status [ConnId=0, PID=-485205]      >> E

  • Italy Country Billing Number Range

    Dear Experts, We are currently working for Italian Client and in billing system to determine the number ranges in billing based on the financial year.  This requirement is legal as per client. Example 01 2007  000000001     to 999999999 02 2008  0000