UWL Approve and Reject buttons not available in Portal 7.31?

Hi I've been doing some research and came across some interesting articles...
http://scn.sap.com/thread/1871429
http://wiki.scn.sap.com/wiki/pages/viewpage.action?pageId=221611154
I am trying to enable the Approve and Reject buttons per customer requirements but having some issues making these options available in the UWL ...
Based on the articles above...
Does the UWL not support this ?
If it does, can anyone direct me on how to enable these ?
Thanks

After doing some research, it looks like the XML needs to be modified...
Can anyone confirm that the code is still relevant in 7.31?
<Action
reference="com.sap.pct.srm.core.action.approve"/>
<Action
reference="com.sap.pct.srm.core.action.reject"/>

Similar Messages

  • Approve and reject button not appearing in the POrtal screen

    Hi All ,
    I have an issue where i create a meeting rwquets and then it goes for approval to the manager , but in this case the manager is not able to see the approve and reject button in the screen , whereas it appears in the back end , please suggest what setting are to be in place to appear those two buttons to click on .

    Hi,
    Then you will have to modify the standard UWL configuration file.
    If your task looks like a standard task (maybe you copied a standard task and modified it slightly), you have to find the ItemType corresponding to the standard task in the UWL configuration file then copy this ItemType and adjust it for you custom task. Please take a look at my last post in another thread : Re: UWL - how to approve purchase requisitions
    If your task is 100% custom then you'll have to find out what is behind the Approve and Reject buttons in the Business Workflow and modify the UWL configuration file accordingly. For instance if a function module is used to approve or reject the request you can define your approve and reject actions using the FunctionModuleActionHandler. You can find more information in the documentation : [Task Launch Customization|http://help.sap.com/saphelp_nw70/helpdata/en/36/dd4ad73c86412e81e9ce66eeb147e7/frameset.htm].
    Regards,
    Pierre

  • LR Approve and Reject buttons missing?

    Hi,
    We have recently customised standard LR workflow and we have replaced standard LR task (TS12300097, TS12300116) to custom task.  We have updated UWL configuration file to add these 2 new task.  We could successfully see the LR raised by ESS user in the MSS UWL task list but when we click on the task we could see the task details without APPROVE and REJECT buttons, these 2 buttons are missing.
    We have made necessary changes in the SWFVISU tcode and Portal UWL XML configuration.  Is there any other configuration need to be done to fix this issue(make APPROVE and REJECT button visible)?
    NOTE: If we switch it back to standard task the buttons are visible it's invisible only when it's using new task.
    Thanks
    Praveen

    Thanks Vivek.
    I have resolve this issue, I found that in the UWL xml configuration I have configured task WebDynproApplication property incorrectly, it was pointing to LeaveRequest instead of LeaveRequestApprover.  Changing this has fixed the problem.
    Thanks anyway.
    Closing this thread.
    Praveen.

  • Sending a document as an mail attachment with approve and reject button

    Hi all,
         i have an infopath form where a user fills the form and on submit the form is saving as an document in the document library,
    now my question is, how can i get this document as an mail attachment with approve and reject option.

    Hello,
    You need to hide them on form load for user. Add one more hidden control in form and keep control value blank initially. Now add rule on button submit to set the control value to some other so you can hide/show the button.
    Now add rule on approve and reject buttons that, if field1 is blank then hide this control.
    http://office.microsoft.com/en-in/infopath-help/add-formatting-rules-HA101783371.aspx
    Hemendra:Yesterday is just a memory,Tomorrow we may never see
    Please remember to mark the replies as answers if they help and unmark them if they provide no help

  • CCM 2.0 Approve and Reject buttons disabled

    Hi!!!
    We log into de CAT with the Catalog Approver User. And when we go to the Procurement Catalog, the approve and reject buttons are disabled.
    The procurement Catalog has the status To Be Approved (we defined it in the spro), so the items that I mapped from the Supplier to the Mater and to the Master to the Procurement catalog have this status.
    I loged in to the Procurement Catalog with the Catalog Manager and assigned the approver to the catalog (CCM_APROVER). And this user has the role of approver (we have double checked in the pfcg).
    Any idea why the buttons are disabled?
    THANKS IN ADVANCED!!!!

    Hi Jay, Hay Nimish,
    First of all, thanks for reply.
    I think that we have found the problem. Is in relation to the transaction SICF. But we won't be able to check it until monday.
    If the SICF solution doesn't work I will get back to you.
    Thanks once again!
    Message was edited by: Patricia Mussons

  • How to Place Approve and Reject Button in every row to approve and reject the particular order in sapui5

    Hi Experts,
       How to Place Approve and Reject Button in every row  to approve and reject the particular order in sapui5.
      Please Kindly help me.
    Thanks & Regards
    Chitti Babu

    Hi Chitti,
    You can achieve this using sap.m.CustomListItem.
    View :
    <core:View xmlns:core="sap.ui.core" xmlns:mvc="sap.ui.core.mvc"
      xmlns:l="sap.ui.layout" xmlns="sap.m" controllerName="demoallinonegrid.tablewithscroll"
      xmlns:html="http://www.w3.org/1999/xhtml">
      <Page title="Title">
      <content>
      <ScrollContainer horizontal="true" width="100%">
      <Table id="empTable">
      <headerToolbar>
      <Toolbar>
      <Label text="Employees"></Label>
      </Toolbar>
      </headerToolbar>
      <columns>
      <Column width="12em">
      <Label text="Employee Id"></Label>
      </Column>
      <Column width="12em">
      <Label text="Last Name"></Label>
      </Column>
      <Column width="12em">
      <Label text="First Name"></Label>
      </Column>
      <Column width="12em">
      <Label text="Title"></Label>
      </Column>
      <Column width="12em">
      <Label text="Approve"></Label>
      </Column>
      <Column width="12em">
      <Label text="Reject"></Label>
      </Column>
      </columns>
      </Table>
      </ScrollContainer>
      </content>
      </Page>
    </core:View>
    Controller:
    var model = new sap.ui.model.json.JSONModel();
      model.loadData("http://services.odata.org/Northwind/Northwind.svc/Employees?$format=json",null,false,'GET',false,null);
      this.getView().byId("productTable").setModel(model);
      var template = new sap.m.ColumnListItem({
      cells:[
            new sap.m.Text({text:"{EmployeeID}"}),
            new sap.m.Text({text:"{LastName}"}),
            new sap.m.Text({text:"{FirstName}"}),
            new sap.m.Text({text:"{Title}"}),
            new sap.m.Button({text:"Approve"}),
            new sap.m.Button({text:"Reject"})
      this.getView().byId("empTable").bindAggregation("items","/value",template);
    Output:
    Regards,
    KK

  • UWL Approve Reject button not visible

    Hello Experts,
    We have implemented Portal 7.0 SP 18 and configured UWL. All task items are appearing correctly.
    But approve and reject button is not visible in UWL. The same is visible in ITS screen when we click on the task.
    Kindly help.
    Regards,
    Nirmal Sivakumar G

    Hi Soral,
    All workflows from ECC is causing this problem. To be precise I have configured a webflow connector to pull the tasks from SAP Inbox. The approve/Reject button should appear in UWL ivew when we select the task item. But only forward and resubmit options are visible.
    I guess the problem is with SP 18 itself. Coz there are similar threads with the same scenario in SP 18.
    Regards,
    Nirmal Sivakumar G

  • Approve and Reject of a workflow from outlook

    Hi,
      We have a requirement in which the approval and rejection of the workflow has to be done from outlook inbox. Please let me know in what way can this be achieved.
    I have gone throuigh the SWNCONFIG documentation, However I am not sure on whether it satifies the above requirement. Kindly let me know if this is possible using SWNCONFIG.
    Regards,
              Milan Thaker

    Hi MT,
    well as our friends suggested about DUET, DUET is a separate software altogether.
    Its an Outlook synchronization with SAP, but it is limited to very few business processes.
    Now question is,
    a) what is your business process which you are looking for?
    b) Your actual requirement is to approve/reject thru Outlook, well this could be resolved in a different way, that is, say for instance your business process is for Invoice Verification, where you want user to approve or reject. In this case you can integrate Outlook with SAP for this process, where the user would get the workitem in his/her Outlook, the moment the user db-clicks on it, it would take him to SAP tcode for releasing the Invoice block. This could be done thru RSWUWFML2 for all SAP versions or thru SWNCONFIG for ECC versions.
    c) If this is not you looking for, then I doubt if such an integration is possible, because getting an Approve and Reject button in your Outlook would be difficult.
    d) Else if your organization has EP or UWL installed, then Approve/Rject buttons could be populated.
    Hope it helps.
    Aditya

  • Approve and Cancel Button

    In the HR portal,When the user requests for a booking , The Manager Can Approve or Cancel that booking based on the Requirement.But In HR portal,when the manager is logged in, when he opens the booking .it is just showing the Forward and cancel assignment Buttons.But there should be Approve and Reject buttons with the same.Can any please give me an idea about this.How can I get a solution for this.

    Try WF_NOTIFICATION API.
    http://etrm.oracle.com/pls/trm11510/etrm_pnav.show_object?c_name=WF_NOTIFICATION&c_owner=APPS&c_type=PACKAGE
    http://etrm.oracle.com/pls/et1211d9/etrm_pnav.show_object?c_name=WF_NOTIFICATION&c_owner=APPS&c_type=PACKAGE
    HOW TO PRINT ATTRIBUTE VALUES ON SUBJECT LINE [ID 351096.1]
    Is it Possible to Create on the Fly a Message Attribute for Showing it as a Document Attachement in a Notification? [ID 973710.1]
    API to reject APINV workflows when upgrading from 11.5.10.2 to R12
    Thanks,
    Hussein

  • How to hide Approve and reject radio buttons at item level.

    Hi All,
    On the HOME screen of EBP click Approval link ---> Under Appoval tab under Action Column click the magnifying glass icon ---> a table is displayed with Approve and Reject as two columns which contain radio buttons at item level .
    How can we hide these two columns and the radio buttons?
    Thanks & Regards,
    Anubhav

    Hi Daniel,
    As you said the template bbp sc ui its 120 is to be modified, i also located the code to be changed but when i comment the code for displaying the RBs , i get "Syntax Error in Tempate" dump in IE.
    <!--  manager view  -->
                          `if (gt_scr_itmovr_i-DEDUCT_IND[j].disabled)`
                              `if (gt_scr_itmovr_i-DEDUCT_IND[j] != "X")`
                                  `TD(align="center",valign="middle", class=tdcellclass)`
                                     <img src="`mimeURL(~service="bbpglobal",~language="", ~name="images/icon/checkedradio.gif")`"  border="0">
                                  `TD(align="center",valign="middle", class=tdcellclass)`
                                     <img src="`mimeURL(~service="bbpglobal",~language="", ~name="images/icon/uncheckedradio.gif")`" border="0">
                              `else`                
                                  `TD(align="center",valign="middle", class=tdcellclass)`
                                     <img src="`mimeURL(~service="bbpglobal",~language="", ~name="images/icon/uncheckedradio.gif")`" border="0">
                                  `TD(align="center",valign="middle", class=tdcellclass)`
                                     <img src="`mimeURL(~service="bbpglobal",~language="", ~name="images/icon/checkedradio.gif")`" border="0">
                              `end`
                          `else`
                              `TD(align="center",valign="middle", class=tdcellclass)`
                                 <input type="RADIO" name="gt_scr_itmovr_i-DEDUCT_IND[`j`]" value=""  `if (gt_scr_itmovr_i-DEDUCT_IND[j] != "X")` CHECKED `end;
                                 if ( group_hierarchy_position > -1 ); <!-- are we in a hierarchy group ? -->
                                   if ( group_hierarchy_position != j ); <!-- are we processing a subitem? -->
                                       `on click="jav asc ript:toggleSu bItemApprovalState(`j`)";`
                                     group_last_subitem_position = j;
                                   else; <!-- we are on the top of the group (the hierarchy position) -->
                                     if (GT_SCR_ITMOVR_I-HIER_EXPANDED[j] == "X");
                                       `on click="java scr ipt:setAppro valStateAllSubItems(true, `j`)";`
                                     end;
                                     group_last_subitem_position = j;
                                   end;
                                 end`>
                              `TD(align="center",valign="middle", class=tdcellclass)`
                                 <input type="RADIO" NAME="gt_scr_itmovr_i-DEDUCT_IND[`j`]"  value="X"  `if (gt_scr_itmovr_i-DEDUCT_IND[j] == "X")` CHECKED `end;
                                 if ( group_hierarchy_position > -1 ); <!-- are we in a hierarchy group ? -->
                                   if ( group_hierarchy_position != j ); <!-- are we processing a subitem? -->
                                     `on click="javas cript:tog gleSubItemApprovalState(`j`)";`
                                     group_last_subitem_position = j;
                                   else; <!-- we are on the top of the group (the hierarchy position) -->
                                     if (GT_SCR_ITMOVR_I-HIER_EXPANDED[j] == "X");
                                       `on cli ck="javas cript:setApprovalStateAllSubItems(false, `j`)";`
                                     end;
                                     group_last_subitem_position = j;
                                   end;
                                 end`>
                          `end;
                       end;
                   end`
    I guess the above mentioned code has to be modified but how?
    Thanks a lot,
    Anubhav

  • I am not using condition for Approval and Rejection.

    Hi Balaji,
    I am not using condition for Approval and Rejection.
    I am using Decision.
    I am not able to find the error.Rejection is going on Successfully.
    I am to rectify this error from past 4 days.
    Can you give the solution.
    Regards,
    Chow.

    Hi chow,
    What is the condition that u are using the Condition Statement.
    Please check the status returned from the Approval Process, by analyzing the Workflow Log for the particular step.
    Think there is a problem with the condition statement.
    Regards,
    Raj

  • How to Do Validations When Approval Hits Reject Button?

    The transaction has been initiated and now it routes to the next approval.  The approval opens up the work item and it brings the form with the details transaction initiated.  The approval hit "Reject" button to reject the transaction.
    Is there a way / BADI that I can put a validations so that it'll throw a message whenever user hit "Reject" button?

    Hi Shreya,
    I saw that this question has been marked answered.
    Do you mind to share the solution as I am also having the same problem here.
    What i need to do is to add validation when approvers hit on Approve button or Back to Author button.
    The validation will be checking whether comment is entered, error msg will be prompted if no comment entered.
    Please advice.
    Thanks
    Regards,
    Justin

  • HT1657 i rented a movie on my account on a friends apple TV 3 days ago, never watched it, and now I'm logged back in and it's not available to me... Don't I have 30 days to watch?

    i rented a movie on my account on a friends apple TV 3 days ago, never watched it, and now I'm logged back in on my macbook and it's not available to me... Don't I have 30 days to watch?  Is there somewhere you can find rented movies that I'm not seeing? 

    I had the same issue with my apple tv 3rd generation. I rented Sinister and selected the "rent and watch now" option. Half way through the movie I accidentally pressed the menu button. When I looked for the rented movie on my apple tv I could not find it. Not even above the movie pannel where "purchased" and "top movies" comes up on the main menu. the apple tv suggests to go to settings>downloads but I don't have that option. I did go to settings> itunes store> check rentals but that didnt work either. It took too long to even check. Thank you because this SOLUTION worked great.
    SOLUTION: How to reset apple tv 3 3rd generation to view rented movies:on the apple tv remote: press and hold "menu" to go to the main menu. Select SETTINGS> GENERAL >RESET >RESET ALL SETTINGS. After the apple tv resets, input all your information again and your rented movies should be visible when you cruise above the "movies" section. THANK YOU!!
    Apple needs to solve this issue because honestly it took me 3 hours and a half to watch a movie that only lasted 2 BECAUSE I wast trying to solve the issue, reseting and all. blahh.

  • Email Notifications through workflow for all Approved and Rejected Orders

    hi,
    i have to send Email Notifications through workflow for all Approved and Rejected Orders to the user who have submitted the order for approval.how could it be done.please send ur solutions.
    regards
    yesukannan

    Hi,
    An option would be use Oracle Alert. Create an event based alert on the table where you have order approvals or rejections. This alert will be raised after inserting or updating this table. Create an action linked to this alert, and choose message as action type.
    This setup can be done under Alert Manager Responsibility.
    Regards,
    Ketter Ohnes

  • My pc crashed and I lost all my pictures and music that was stored on the pc.  Now i have a new pc and when i connect to itunes using my password all my music and photos are not available.  they appear to be lost.

    my pc crashed and i lost all my pictures and music that was stored on the pc. now i have a new pc and when i log into itunes all my music and photos are not available.  I guess i dont understand the pupose of itunes and its worth.  I thought it backed up all my photos and music, but apparently not.  So what do I use so that when i lose data on  my pc i can retrieve it again at a later date or after a crash?/

    Your content will only be where you put it.  It has always been very basic to always maintain a backup copy of your computer.
    You can transfer itunes purchases from your iphone: File>Device>Transfer purchases.
    You can import your pics taken with the iphone as you would with any digital camera.
    You can e-mail the other pics to yourself, they will never be of the original quality.
    You can out a unique contact and calendar entry on the computer.  You should get the option to merge the data when you sync.

Maybe you are looking for

  • Itunes connects to wrong countrys store

    My Itunes will only connect to the US store, but I am a UK user (and wish to connect to the UK store). I have tried to reinstall itunes and searhed for options within the program, but have had no luck. Can anyone help?

  • Brazil vs Germany Live Streaming Fifa World Cup Semi Final 2014 Online Watch Espn

    http://www.boston.com/community/forums/sports/mixed-bag/general/brazil-vs-germany-live-streaming-fifa-world-cup-semi-final-2014-online-watch-espn/100/7232703 http://www.boston.com/community/forums/sports/mixed-bag/general/brazil-vs-germany-live-strea

  • Change the size of the screen Adobe Flash Player 11.3.31.232

    Hello! I have Adobe Flash Player 11.3.31.232 As I can change the size of video (the size of the screen, a window) during viewing of rollers or films from the Internet? And whether there is a possibility to change the size of a window of a player duri

  • After installing Nvidia Driver, console broken... help

    i am a newbie in arch linux, before i install nvidia driver, i can login to gnome and exit it with no problem, but after i use nvidia as the driver, whenever i change to console, or other tty, the screen look like broken, is there any solution for it

  • Firmware update 1.2?

    Hey guys i just got my macbook pro back from repair. i got a new logic board, the buzzing noise is completely fixed. my macbook is now completely silent. my constant wireless dropout problem's fixed too. anyways, should i update to the 1.2 firmware?