Approve link not working in ESS/MSS UWL portal

Hi experts,
we are using portal 7.3 with ess/mss.
in mss when user is approving a leave request, he is not ale to proceed
after few steps as one link "pprove another request" is not working.
this i a standrd portal scren in UWL. please suggest.
Thanks a lot in advance.

Hello,
This should be possible with some UWL configuration. Please check the following forum post: http://forums.sdn.sap.com/thread.jspa?threadID=1677777
Kr,
Julien

Similar Messages

  • Buttons/Links not working in ESS standard application

    Hi Experts,
    We have implemented ESS module in the portal. Here we have created a view via delta link tracer that contains less number of overview content. In this new view we just have links for "leave", Payment and Personal information links only. This was the requirment of the client. Now a few links inside the above mentioned links are not working. For example if i click on "Leave" and then "Quota overview" there comes  a screen where an Exit button is there. This exit button is not working at all. The screen remains the same on pressing the button. Similarly inside "paymen", the link payment summary is not responding. The screen remains the same when we click on payment summary. Is it related to configuration of these buttons. We are using the standard ESS application and have not at all modified the same.
    Best Regards,
    KM

    Note that
    While creating an iView instance there are two option
    -paste
    -paste as delta link
    You should choose paste as delta link option.
    Please check the link for more information-
    http://help.sap.com/saphelp_NW04s/helpdata/en/f5/eb515d0e6a11d7b84900047
    582c9f7/frameset.htm
    'Exit' button feature comes into picture when you consider that
    application should use home page customizing feature.

  • SSO not working in ESS/MSS in ERP 2004

    I have installed the Business Packages ESS 60.2 and MSS 60.1.2 on EP6 SP9.  Another server has the Web AS ABAP 6.40 system and J2EE running the ESS and MSS Web Dynpro apps.  It all works fine without SSO.  When I change the JCO Destinations for the application data to ticket instead of username/password I get the following error on testing:
    com.sap.mw.jco.JCO$Exception: (103) RFC_ERROR_LOGON_FAILURE: The system is unable to interpret the SSO ticket received
    This error also occurs when accessing the webdynpro app directly or through the portal.  NB. The portal SSO does work in the case of calling an R/3 transaction or calling webdynpro app iview that does not in turn make an RFC call to the ABAP system.  I have followed the SAP help on "Scenario: SSO Between Portal, Web Dynpro, and ABAP Systems".
    Any ideas appreciated
    Fergus

    Hi Prakash
    This is the end of the dev_jrfc.trc from the abap/j2ee webdynpro server:
    Error file opened at 20050608 101523 British Summer Time Rel 6.40
    Error> occured  >Wed Jun 08 10:15:23,406<    >RfcGetException rc (7) message: The system is unable to interpret the SSO ticket received
    <RfcGetException
    Error> occured  >Wed Jun 08 10:17:28,544<    >RfcGetException rc (7) message: The system is unable to interpret the SSO ticket received
    <RfcGetException
    The portal dev_jrfc.trc does not report any errors.
    Other information I should have mentioned: EP uses LDAP for user directory, the ABAP system uses its own user management, the J2EE on the ABAP server uses its own user management.  The user I am testing with is the same name in all 3 systems and has full admin permissions in each.
    Thanks, Fergus

  • Appraisal template standard buttons not working via ESS/MSS

    Hi experts,
    The error which I am facing in appraisal template is as follows
    When I click on any button on appraisal template no action takes place.
    Kindly let me know how can I resolve this error.
    we are using BSP application HAP_DOCUMENT.
    according to me page fragment 'document_buttons.htm' (Method CONVERT_BUTTON_TO_UI) contains the code for button creation and button handling
    the page fragment 'document_buttons.htm' is getting triggered when page is initialized but it is not triggering when button is clicked.
    Additional info that might be useful to resolve the issue:
    1) While viewing appraisal template's web layout in t-code PHAP_CATALOG_PA.
         I am facing following script error.
         This error reappears when I click on any standard button For eg SAVE
    2)  We are currently using IE 8
    3)  We recently upgraded ECC system from ECC 6.0 to ECC 6.0 / EHP 6 (ECC 6.6)
    4) I checked SICF and corresponding services are active
    Thanks in advance

    Hi Adrian,
    Design2008 service is inactive in my system.when activated temporarily I was not able to see previous page (Blank page was displayed) in my appraisal application.
    For BSP application HAP_document, i checked SICF->default host->SAP->BC->BSP->SAP->HAP_document.This service is active.
    The image which I have attached with my question is appraisal template's web layout in t-code PHAP_CATALOG_PA.
    regards
    Ninad

  • Href link not working when accessed through wireless portal (ptg/rm)

    Hi,
    I have a simple J2EE application in which when clicking on a link, the request should forward to another jsp page. I am using Oracle 10g Application Server wireless. I am accessing the application in IE via oracle wireless portal gateway (ptg/rm).
    The code is as follows (title.jsp page)
    <%
    // setting the content type according to the browser.
    if(request.getHeader("User-Agent").indexOf("MSIE") > 0){
    response.setContentType("text/html");
    } else if(request.getHeader("User-Agent").indexOf("PTG") > 0){
    response.setContentType("application/vnd.wap.xhtml+xml; charset=UTF-8");
    response.setHeader("Cache-Control", "no-store"); // HTTP 1.1
    response.setHeader("Pragma", "no-cache"); // HTTP 1.0
    response.setHeader("Expires", "0"); // prevents caching at the proxy server.
    if("".equalsIgnoreCase(request.getParameter("ch"))){
    %>
    <jsp:forward page="hello.jsp" >
    </jsp:forward>
    <%
    %>
    <html>
    <body>
    <form name="" action="title.jsp" method="post" >
    <table>
    <tr>
    <td>
    <%
    String check = "Link";
    %>
    <href="title.jsp?ch="<%=check%>">Link
    </td>
    <tr>
    </table>
    </form>
    </body>
    </html>
    When the title.jsp page is accessed for the first time the URL is http://<server name>:<port no>/ptg/rm
    When i click on the link it shows error page (Page cann't be found" but in the deployed EAR file the "hello.jsp" was included.
    But when i click on the Link, the URL changes to
    http://<server name>:<port no>/ptg/title.jsp?ch=
    Here the rm of ptg/rm got misplaced.
    but according to my experience it should be
    http://<server name>:<port no>/ptg/rm with some postfix string.
    can any one please tell me what could be the reason?
    How can i forward the request to "hello.jsp" page?
    Thanks well in advance.
    Shrikant

    Sorry all,
    I just want to clarify one thing, that the Link's href code is
    <href="title.jsp?ch="<%=check%>"> Link
    Thanks
    Shrikant

  • ESS MSS UWL Approval Step Hanging After Clicking Approve

    Working on ESS MSS implementation using UWL to approve work items.
    Approval task (TS17900101) is sending workitem to UWL, but when I click Approve it just hanging and gives me the processing circle forever.
    Binding from the workflow looks like this:
    'X' @0E\QAssign Value@ @9T\QGets data for...@ &BACK_BUTTON_VISIBLE&
    &FORM_STANDARD& @0E\QAssign Value@ @9T\QGets data for...@ &FORM&
    'APPROVEREQUEST' @0E\QAssign Value@ @9T\QGets data for...@ &FORM_SCENARIO_STAGE&
    'X' @0E\QAssign Value@ @9T\QGets data for...@ &SAVE_DRAFT_BUTTON_VISIBLE&
    'HRASRB' @0E\QAssign Value@ @9T\QGets data for...@ &PROCESSOR_ROLE&
    &NOTIFY_VIA_MAIL& @0E\QAssign Value@ @9T\QGets data for...@ &NOTIFY_VIA_MAIL&
    &BUSINESS_STATUS& @0E\QAssign Value@ @9T\QGets data for...@ &BUSINESS_STATUS&
    'X' @0E\QAssign Value@ @9T\QGets data for...@ &FORM.SUPPRESS_SAVE&
    '00000' @0E\QAssign Value@ @9T\QGets data for...@ &FORM.FORM_SCENARIO_VERSION&
    Binding to to the workflow as follows:
    &PROCSTATE& @9S\QReceives data from...@ @0D\QAssign Value@ &PROCSTATE&
    &WORKITEM_ID& @9S\QReceives data from...@ @0D\QAssign Value@ &STEP_OBJECT.GUID&
    Program exit: CL_HRASR00_POBJ_WF_EXIT is in place.
    Can I please have assistance getting the Approval button to process the Approval?

    Resolved - There was a role issue - testing the process with another used account worked. 
    Looks like it was set up correctly.

  • Adobe Edge links not working

    Yeah I have also experienced links not working when I import my .oam file from Adobe Edge Animate also. Is there anything the Muse team is doing to fix this issue? I need a response from you guys by the end of the week. my company website is malfunctioning due to issues with your software. If there is some sort of hotfix please let us know.

    When you install the software illegally, using a volume license, there is a script you can run that will enter all of the adobe servers into your local DNS hosts file so the software can be activated. This makes accessing those domains impossible. This scenario fits the description of your issue, not suggesting anything beyond that.
    The hosts file is in /private/etc/hosts and can be accessed through the terminal:
    sudo nano /private/etc/hosts
    If you see a bunch of adobe servers in there, that is your problem.

  • Add new document link not working in upgraded sharepoint 2013?

    Hello there,
    Upgraded SharePoint team sites from 2010 to 2013. add new document link not working for shared document in upgraded sharepoint 2013?. it is specially not working on machine where Office web apps set up with this sharePoint server and it
    is working fine with environment  Office web apps not configured with Sharepoint.
    Looking resoluion /suggestion, thanks in advance.
    Regards,
    Sushil

    Hi  Sushil,
    According to your description, my understanding is that the add new document link was not working on machine where Office web apps set up with this SharePoint server after you upgraded SharePoint team sites
    from 2010 to 2013.
    For your issue, it can be caused by integrating Office Web Apps with upgraded SharePoint Site.
    Firstly please make sure claims-based authentication is used by the SharePoint web application that is used to create the new document. Only web applications that use claims-based authentication can open
    files in Office Web Apps. To determine the authentication provider for a web application, follow these steps:
    1.In SharePoint 2013 Central Administration, click Manage web applications.
    2.Select the web application that you want to check, and click Authentication Providers on the ribbon.
    The authentication provider must be displayed as Claims Based Authentication for Office Web Apps to work correctly with the web application. To resolve this issue, you can delete the web application and recreate
    it using claims-based authentication, or you can change the authentication method of the web application.
    Secondly, make sure the WOPI zones match on the SharePoint 2013 and the Office Web Apps Server farm.
    To do this, run the following command on the SharePoint Server:
    Get-SPWopiZone
    The result will be one of the following:.
    internal-https
    internal-http
    external-https
    external-http
    Next, run the following command on the SharePoint Server.
    Get-SPWOPIBinding
    In the output, look for WopiZone: zone. If the results from Get-SPWopiZone don’t match the zone that is returned by Get-SPWOPIBinding, run the Set-SPWOPIZone -Zone cmdlet on the SharePoint Server to change
    the WOPI zone to match the result from Get-SPWOPIBinding.
    If not work, you can try to disconnect SharePoint 2013 from Office Web Apps Server and re-configure Office Web Apps for SharePoint 2013.
    For more information, please refer to the article:
    http://technet.microsoft.com/en-us/library/ff431687(v=office.15).aspx
    Best Regards,
    Eric
    Eric Tao
    TechNet Community Support

  • Fresh Install HCM 9.1 but Links not working. Help please

    Dear All,
    I'm trying to make a switch from SAP to PeopleSoft. I tought it easier to install PSFT since the number of source to install is much less than SAP. However, I kept getting same error where the links not working no matter which environment I tried to install.
    I downloaded all software from eDelivery.
    HCM 9.1, PTOOLS 8.52, Oracle 11g 64 bit, Oracle Client 32 bit.
    First Try:
    Install on windows 7 64bit. Everything works fine until first login to the PSFT and all links not working.
    Suggestion from Hakan is to apply the patch and gave me a link to the old FTP site. I downloaded the 85209 patch but got password.
    Finally I managed to get a customer ID from a friend and downloaded Patch 85211 and applied. But got java error so I scrapped it.
    Anyway, Gasparotto said the environment is not certified and will not fix my problem with the patch.
    Second Try:
    Installed Virtual Box.
    Installed Windows 2008 R2 and applied the SP1.
    Installed everything all over again.
    Ensured the PTWEBSERVER password similar the username.
    Everything works fine but when login to PSFT, again..... links not working and see on the bottom left corner there are some javascript error where they cannot find certain peoplesoft objects..
    Just upgraded to IE 9 because I read somewhere IE 8 is not certified.
    Tried to login again, no error message and everything looks fine but... links not working.
    Logs also looks normal to me.
    Does anyone ever encountered similar issues before?
    Does this is a normal behaviour before tools patch 85211 being applied ?
    Thanks,
    aLuNa
    My APPSRV Log:
    PSSAMSRV.12 (0) [11/03/12 09:04:46](0) PeopleTools Release 8.52 (WinX86) starting. Tuxedo server is APPSRV(99)/100
    PSSAMSRV.12 (0) [11/03/12 09:04:46](0) Cache Directory being used: C:\APPSRV_CONFIG\appserv\HCDMO\CACHE\PSSAMSRV_100\
    PSSAMSRV.12 (0) [11/03/12 09:04:46](0) Server started
    PSRENSRV.2808 [11/03/12 09:04:49](0) PeopleTools Release 8.52 (WinX86) starting. Tuxedo server is RENGRP(92)/101
    PSRENSRV.2808 [11/03/12 09:04:49](3) Switching to new log file C:\APPSRV_CONFIG\appserv\HCDMO\LOGS\PSRENSRV_1103.LOG
    PSADMIN.2124 (0) [11/03/12 09:04:52](0) End boot attempt on domain HCDMO
    PSAPPSRV.1488 (3) [11/03/12 09:13:16 GetCertificate](3) Returning context. ID=PTWEBSERVER, Lang=ENG, UStreamId=091316_1488.3, Token=PSFT_HR/2012-11-03-02.13.17.193528/PTWEBSERVER/ENG/XxZ3vyJWXF/S1MoQtG2Wox6wGJA=
    PSAPPSRV.1488 (5) [11/03/12 09:13:21 GetCertificate](3) Returning context. ID=PTWEBSERVER, Lang=ENG, UStreamId=091321_1488.5, Token=PSFT_HR/2012-11-03-02.13.22.193632/PTWEBSERVER/ENG/pS6ec6pIAJJSYc1oOWcNYiR0UFQ=
    PSAPPSRV.1488 (7) [11/03/12 09:13:29 GetCertificate](3) Returning context. ID=PS, Lang=ENG, UStreamId=091329_1488.7, Token=PSFT_HR/2012-11-03-02.13.30.193285/PS/ENG/3GnOezS6D9PUlzwrjPwqexv4ir0=
    PSAPPSRV.1488 (34) [11/03/12 09:18:47 GetCertificate](3) Returning context. ID=PS, Lang=ENG, UStreamId=091847_1488.34, Token=PSFT_HR/2012-11-03-02.18.48.194158/PS/ENG//oJB5tvSHYNzsmZ2Gs4g2vBLUVs=

    alunwawa wrote:
    Does anyone ever encountered similar issues before? Yes, I did already see the same, that was when installed the same with 8.52.00 (without Peopletools patch) or without applying the patch project...
    Does this is a normal behaviour before tools patch 85211 being applied ?Without patch, you have the error you mentioned. How many time I told that 8.52.03 min. is required, I did not go further, but there was some bugs before which make it not working.
    I understand that's rather frustrating for people who wants to jump to Peoplesoft. I don't know SAP, but here you go, Peoplesoft is not a simple toy.
    Unfortunately, if you have no access to My Oracle Support to get the Peoplesoft patches, you have no way but work on Peoplesoft OVM (free of use), and to use them on VirtualBox, the Jim's articles are worth to follow.
    Nicolas.
    PS: @Jim, thanks for the kind words.
    My last install guide is quite old now (PT8.50/Linux), even though it did not change very much within the last tools 8.52. But seeing the number of time such questions have asked over here (PT8.52 on Windows), I'm thinking to write one more, that time on Windows.

  • Purchased Lightroom 5 and Download link not working. Please advise

    I have Purchased Lightroom 5 followed the download instructions and Download link not working.
    I get a dialog box stating that I have Explorer 4 and I need a later version.
    I am in fact running Explorer 10.
    Please advise.
    Bob Spree
    England

    Please see http://forums.adobe.com/thread/1229333 where this topic has been discussed.

  • Links not working correctly in PCUI for CRM

    Hi All,
    We are implementing mySAP CRM 4.0 through PCUI on Portal
    EP6 SP14.
    I have integrated the CRM Business Package 60.2 in Portal.
    Proper User has been created in the backend and assigned Sales Manager Role both in the portal and in the CRM backend.
    We are facing problem of links not working in the CRM Contents. When we click on the links in the CRM Portal Contents ( BSPs) we don’t get the desired application opening.
    When we click any links in the BSP's ( Activity Links in Opportunity Management BSP ) we get a blank page popped up.
    I have the screen shots with me. Any one responding can get the screen shots from me.
    Thanks in Advance
    Rohit

    Rohit,
    Have you maintained configuration in (transaction CRMC_BLUEPRINT_C --> Navigation (URL Generation) --> Assign Object Method to Role)? Be sure that the role that you are using is present and ID Page/Service field correctly points to the pcd url for your portal.
    When testing, it may be helpful to set parameter CRM_URL_BUFFER_OFF = X on the user profile (SU01) to turn off the url buffer. That way changes made above are immediate.
    Best Regards,
    Bernard

  • Web links not working in iPhone calendar notes. Used to work. Ideas?

    Web links not working in iPhone calendar notes. Used to work. Ideas?

    Basic troubleshooting from the User's Guide is reset, restart, restore (first from backup then as new).  Has any of this been tried?

  • Why Does Dynamic Link Not Work

    I purchased the CS5 Adobe Production Premium.  I have been working in Premiere and I have been learning about how to use Dynamic Link. I want to be able to alter clips in After Effects and bring them back and forth into Premiere.  When I go to File/ Adobe Dynamic Link/New After Effect Composition, I get this message:
    Adobe Dynamic Link Requires Adobe Production Premium.
    Since I own production premium, I do not know why I am getting this message.  I have reinstalled the CS5 Production Premium Software twice and it still gives me the same message.  What can I do to get Dynamic Link Working.

    Thank you for the tip.  Could you possibly tell me how to deactivate and
    then reactivate the suite.  I am using a Macbook Pro laptop running OS
    10.6.4.  I do not even know where to start.
    From:   Colin Brougham <[email protected]>
    To:     Dan Seanor <[email protected]>
    Date:   03/15/2011 09:55 AM
    Subject:        Why Does Dynamic Link Not Work
    Deactivate the software (not uninstall), and then reactivate the suite.
    This often fixes this. You can opt to leave the serial number on the
    system; no need to clear it and re-enter it.

  • Verizon Access Manager Download link not working

    Hi,
              Verizon Access Manager Download link not working, Following Links
    http://www.vzam.net/download/download.aspx?productid=872
    http://pcdn2-download.vzw.com/win/7.7/VZAM_7.7.1_2727b-AC30-Web.exe
    plz help to download verizon five spot access manager.
    thanks
    karthirocks

        Hi karthirocks! I'm sorry to see you're having any difficulties using these links. I've clicked on both, but had no problems getting pages to launch or in getting the application to download. If this is still a problem for you, please describe the issue you're experiencing. Also, please share the browser version you're using, and if you've enabled any security feature that prevents access to certain secure sites or services. Thanks!
    DionM_VZW
    Follow us on Twitter www.twitter.com/vzwsupport

  • Flash Global Security & Links Not Working?

    Hi all,
    I am absolutely near some sort of breakdown with my Flash website....I really hope someone can help!
    I am building my portfolio website; I'm using Dreamweaver CS3 (on Mac) and inserting Flash animations in the centre of a table in each Dreamweaver page. All was working fine until I built the Contact page animation on Flash last night. I linked in some external websites to my Blog, Flickr and Twitter and also need a button to launch the user's default mail client.
    When I tested the animation (CMD+ENTR) in Flash the links appeared to be working, if after a few clicks. I then inserted the Contact animation into the Contact.html page on Dreamweaver and tested it in Safari. A dialogue box came up regarding something about security settings and Flash 8 (makes no sense as I am using Flash 9); and I ended up on the Global Security Setttings panel page on the Adobe website. I selected the entire folder the website is in on my hard drive under "Trust Files in these Locations". Now the ENTIRE website's flash animations are not working. There are links to internal pages of the site (i.e. a link to the "Contact" page in the animaiton on the Home page) which are now not working either. No error messages come up when I test the movie in CS3 either. I have refreshed Safari, restarted the Mac and redone the folder on the Global Security Settings panel. Also loaded the entire website onto a PC this morning, all links not working either.
    Actionscript 3 on the Contact page looks like this:
    import flash.events.MouseEvent;
    //---Blog Button---\\
    var getBlog: URLRequest = new URLRequest("http://www.myblogsdomain.com");
    Blg_Btn.addEventListener(MouseEvent.CLICK, eClick);
    function eClick(event:MouseEvent):void{
    navigateToURL(getBlog, "_self");
    //---Twitter Button---\\
    var getTwitter: URLRequest = new URLRequest("http://www.twitter.com/mydomain");
    Twt_Btn.addEventListener(MouseEvent.CLICK, eClick1);
    function eClick1(event:MouseEvent):void{
    navigateToURL(getTwitter, "_self");
    //---Flickr Button---\\
    var getFlickr: URLRequest = new URLRequest("http://www.flickr.com/photos/mydomain");
    Flkr_Btn.addEventListener(MouseEvent.CLICK, eClick2);
    function eClick2(event:MouseEvent):void{
    navigateToURL(getFlickr, "_self");
    //---Email Button---\\
    var getMail: URLRequest = new URLRequest("mailto:[email protected]");
    Eml_Btn.addEventListener(MouseEvent.CLICK, eClick3);
    function eClick3(event:MouseEvent):void{
    navigateToURL(getMail, "_self");
    I'm not 100% sure if the e-mail AS3 I set up is correct, but as none of the links are working I can't test it. I cannot provide a link to the website as it isn't uploaded yet, and I don't really want to upload it not working properly.
    Any help at all would be gratefully received, I'm really, really on the brink of some sort of breakdown. Thanks.

    Thanks Samuel.Wong and Ned Murphy for the information.
    I'm not actually sure what happened but my website suddenly started working again today, I think possibly by selecting "Always Allow" on the Global Security Page as well as inserting every individual file as well as the folder under "Trusted Locations" has also done the trick.
    The external links appear to work when I test the movie in Flash CS3, but the same warning comes up once the movie is inserted into a Dreamweaver html page and tested in Safari. However I think when the links (all except the email ) appear to be working in Flash then it should be just fine once uploaded onto the server. Many thanks for your advice once again.
    Maxx

Maybe you are looking for