Disable the 'Approve' button on the TRIP Tcode

Hi ,
      I need to Disable  the 'Approve' button on the TRIP Tcode ( Travel management)  security setting.  User does not want TRIP tocde to be able to approve their own trip expenses. The approval button should be enabled in PR05 but not in TRIP.
So can someone suggest me, Can we achieve this through object restriction? Or else Do we need to change the codeing with the help of ABAPer .
Thanks & Regards
Umashankar
SAP Security

Eliminate the Option from the TCode screen by using Transaction Variant and then create a Variant Transaction for that. Assign this new custom TCode to the Users.
To know more on this process, please check the following thread just discussed:
Variant using SHD0
Regards,
Dipanjan
Edited by: Dipanjan Sanpui on Jul 7, 2009 6:59 PM

Similar Messages

  • Cup Approval process requires multiple hits of the APPROVE button

    Hello GRC CUP folks,
    We have an approval process wherein a given request can require 4 levels of approvals to be provisioned.  When a manager logs in to CUP, and tries to approve a request, she hits the APPROVE button, then the yellow status bar appears, showing the approval status so far for this request.  And she has to hit the APPROVE button again.  Then the yellow status for this current stage turns green and the workflow proceeds to the next stage.  It is getting back to me that the managers are having trouble understanding and remembering that they have to hit the APPROVE button more than once (even though we added text to that effect in the approval email).
    Is there some way to get the approval to process to the next stage with only one push of the APPROVE button?  
    Thanks for your ideas.
    Yvonne

    Hi Yvonne,
       Please go to config -> workflow -> stage -> go to change mode for Manager stage.
    Make sure that, 'Display Review Screen', 'Comments Mandatory' and 'Confirm Approval' are set to 'NO'. This will make sure that as soon as Manager hits Approve button, the request would be approved.
    Regards,
    Alpesh

  • Hide the Approve button in TRIP transaction

    Please,
    I read that I if I want to hide the 'Approve' button automatically I must pass proper values in Auth Object F_TRAVL and P_TRAVL.
    Do you know, specifically, which authorization field and value I must have in P_TRAVL?
    I thank you in advance,
    Cláudia.
    Edited by: User BasisMasterUser on Mar 30, 2011 7:56 PM
    Edited by: User BasisMasterUser on Mar 30, 2011 7:57 PM

    Hi and thanks for the answer.
    We use the transaction PRAP for approval all the travel, so we need to prevent a simple user can approve the trip in the TRIP transaction. As I could not find an authorization object that correspond to the button of approval, we thought better to hide it.
    Unfortunately I did not see in the TRVPA feature anything that influences me in the way of approval, except that the WRP is equal to 3 which sets the approval status only for travel completed.
    Am I mistaken?
    I thank you again,
    Cláudia.
    Edited by: User BasisMasterUser on Mar 31, 2011 3:35 PM

  • Disable the approve button when ever nonapprover login

    Hi Friends,
    i want to disable the approve button , when ever non approvers login into that requisitions page. please let me know, how to do. only approvers will have to see that approve button. can we achieve through OAF personalizations or Extensions.
    Thanks
    vamshi.

    Hi,
    You can extend the Controller of that page and in extended controller on page load
    Capture the Requistion details and valid approvers from a Prepared Statement.
    Then match the Approvers with the Login user name (pageContext.getUserName())
    If the user name is not there in the valid approvers then set the disabled property of button to true,
    bean.setDiasbled(true);
    Thanks,
    Gaurav

  • Deactivate 'APPROVE'   button  in the ALV  in RCATS_APPROVE_ACTIVITIES.

    Hi all,
    I am trying to deactivate 'APPROVE'   button  in the ALV output of the program RCATS_APPROVE_ACTIVITIES.
    Any ideas???
    Thanx in advance!!!!

    Hello Grigoria
    The following steps are necessary to implement your requirement:
    (1) Create BAdI implementation for BAdI CATS_REPORTING (i.e. class implementing interface IF_EX_CATS_REPORTING => e.g. ZCL_IM_CATS_REPORTING).
    (2) Add a public method HANDLE_TOOLBAR (to your BAdI implementing class) as event handler for event TOOLBAR of CL_GUI_ALV_GRID
    (3) Set method HANDLE_TOOLBAR as event handler for the CATS displaying grid instance:
    METHOD if_ex_cats_reporting~before_display_appr.
      SET HANDLER: handle_toolbar FOR im_alv_grid.
    ENDMETHOD.
    (4) Inactive the APPROVE toolbar button within the event handler method:
    METHOD handle_toolbar.
    * define local data
      DATA: ls_button   TYPE stb_button.
      LOOP AT e_object->mt_toolbar INTO ls_button.
        CASE ls_button-function.
          WHEN cl_grid_approval_actexp=>co_ok_approve.
            ls_button-disabled = 'X'.
          WHEN OTHERS.
            CONTINUE.
        ENDCASE.
        MODIFY e_object->mt_toolbar FROM ls_button INDEX syst-tabix.
      ENDLOOP.
    ENDMETHOD.
    Regards
      Uwe

  • Is it possible to disable the "reopen" button in the expense report?

    Hi,
    Is it possible to disable the "reopen" button in the expense report?  If it is possible, how can we disable it?  Thanks in advance for any insights anyone can provide.
    Thanks,
    Andrew

    Hi Manasa,
    My client's finance team have strict requirements around reopening of expense report.  Ideally, they want the button removed after expense has been approved.  Or have a way to add permission around this button and limit it to auditors and approvers.  Any insights/recommendation would be greatly appreciated.
    Thanks,
    Andrew

  • How can I disable the previous button in the first page and the next button in the last page?

    Hi all,
    I have created a new skin for a webhelp by modifying the layout and the buttons. However, I am not able to find a way where in we can
    disable the previous button ini the first page of the webhelp and hte the next page in the last page of the webhelp. If both the next and previous button is visibile in the first and last page, it is sort of misguiding the user.
    I am using Robohelp 9.
    Please advice.
    Thanks,
    Parag

    I think you are mixing Previous and Next in a browse sequence and the Previous and Next that you get in the browser itself.
    In a browse sequence, they are automatically disabled at the start and finish. When in the first topic in the sequence only Next will be enabled, when in the last topic only previous will be enabled.
    Previous and Next in the browser are working on the topics your user has viewed which is not the same thing.
    See www.grainge.org for RoboHelp and Authoring tips
    @petergrainge

  • How to disable the cancel button in the ProgressMonitor

    hi,
    I need to know, is there any way to disable/remove the (cancel)button in the ProgressMonitor?
    One more problem is,
    Once i click the cancel button, isCanceled() return true, how to make it false again so that the process continue....
    It is very urgently.....
    please help me out.
    Thanks in advance.
    Regards,
    Deepa Raghuraman

    I don't think that's a good solution, because Cancel button itself is not disabled, so user is tempted to click it and nothing happens.
    A better but dangerous solution is this:
    progressMonitor = new ProgressMonitor(ProgressMonitorDemo.this,
                                         "Running a Long Task",
                                         "", 0, 100);
    progressMonitor.setMillisToDecideToPopup(0);
    progressMonitor.setMillisToPopup(0);
    progressMonitor.setProgress(0);
    JDialog dialog = (JDialog)progressMonitor.getAccessibleContext().getAccessibleParent();
    JOptionPane pane = (JOptionPane)dialog.getContentPane().getComponent(0);
    pane.setOptions(new Object[]{});Refer to the same question here [http://stackoverflow.com/questions/512151/how-do-i-disable-the-cancel-button-when-using-javax-swing-progressmonitor] .

  • In STS,is the "Approved" button only belongs to authorization "R_STS_SUP"?

    Hi all,
         I find that user have the authorization of "R_STS_SUP" can see the "Approved" button in STS running,without "R_STS_SUP" ,users can only have these:
    ·         From “new” to “in process”
    ·         From “in process” to “for approval”
    ·         From “for approval” to “in process”.
    is that true? how can I let the users without "R_STS_SUP" can have "Approved" button?
        thank you!

    Hi Stephen,
         thank you,I checked my user's authorization,he has R_STS_PT and Activity = 16. assume I have  USER_A,USER_B ,I assiged USER_A to Headquarter,USER_B to HR dept. in STS running, USER_B can not see "Approved" button, but USER_A can see the lower level USER_B's "Approved" button, but in USER_A's own level ,USER_A can not see his "Approved" button.
        how can user have "Approved" button in this own level and don't have the authorization "R_STS_SUP"?
       thank you very much.

  • Disabling the Open button in the JFileChooser dialog

    Hi,
    I would like to enable/disable the Open button in the JFileChooser dialog, after the dialog is shown.
    I looked at the Java APIs but I could not find a method that gives me the access to this button.
    Could anyone let me know how to either retrieve the Open button from the JFileChooser or enable/disable it through Java APIs?
    Thanks in advance,
    Paul Rodziewicz

    As I'm editing with multiclips in my sequence, if I select "open" from the middle pulldown menu in the canvas or viewer, it will open the multiclip in the viewer and play it in sync with my timeline playhead (like the gang feature). I.E. so I can hit play in my timeline, watch the multiclip in the viewer real time, and make edits (to the clip in the timeline) as I watch. My issue is that the syncing of the viewer playhead and the timeline playhead often break when deleting clips and I constantly have to reselect the "open" button, and it would be way nicer if there was a shortcut key instead of having to mouse it. It only takes a second to use your mouse and select "open" but when you have to do it constantly, it makes you wish for a quick key.
    img src="http://a960.ac-images.myspacecdn.com/images01/47/l_b06e2e3aee5446928b2daca d1d04520f.jpg" align=left width=600 height=463 alt="pic1">pic1
    img src="http://a672.ac-images.myspacecdn.com/images01/60/l_979388c01dd9880126c0fbd 8f5ab49f7.jpg" align=left width=600 height=485 alt="pic2">pic2

  • Can I disable the Emergency button on the Password prompt?

    I'd like to know if it's possible to lose the "Emergency" button or disable it on my password prompt screen. See, I've called 911 two times now in my pocket. The second time, I got a call back from a 911 operator about abuse of the Emergency system. Is there a way to disable it? I will just do a standard lock with the * and unlock "mute" but, I really prefer my phone to be locked w/password.
    Anyone?

    Sorry, you cannot disable this feature. 
    If you have OS 5.0 you can lock with a password, then also do a keypad lock on top of that.
    1. Please thank those who help you by clicking the "Like" button at the bottom of the post that helped you.
    2. If your issue has been solved, please resolve it by marking the post "Solution?" which solved it for you!

  • After hitting the Approve button (Standard PO) it doesn't send an email

    Hi All,
    After the Standard Purchase order is created and i hit the Approve button it takes me to a screen where i have an option to print/fax/Email the Purchase order.
    Now when i check the email checkbox and enter the email address.I am not able to get the email. Is there any setup i am missing? as the Order is getting approved but i am still not getting the email.Please let me know as to how i can fix this.
    Thanks

    Did you configure the workflow mailer and btw check wf_notifications table too. I think you should ask this question in PO forums not in BIP
    Thanks.

  • How to disable the minimize button on the JFrame?

    Does anyone know how to disable the "Minimize" button on the JFrame (Window)?

    Why bother using a JFrame at all? Just extend JDialog, and there won't be a minimize button to worry about at all. The only drawback is that a JDialog doesn't put an icon in the taskbar, so you have to move/close other windows until you can see the JDialog window on the desktop.
    The windowMinimized stuff doesn't let you stop what the window is doing -- you just get an event telling you what happened.

  • When Click on the Approve Button, workflow take to "page Cannot be Find"

    Hi all ,
    Please need your urgent help. I have an unique issue here as follows ..
    I have a OA Page where Page have a Apprvoal ( Workflow ) button, manager Clicking on the Approval Button which throws the erro r" Page Can not be found".
    Anybody faced this sort of issue and if you know the knwo the solution please help me in resolving the issue.
    Thanks and regards
    Raghu

    Hi Anil ,
    I am regular visitor to Forum and I thought I will get some clue or atleast some replies on the above thread.
    Please help me in resovling the issue.
    Here is the details of the issue that I am facing in in our application.
    1. I have a Approval Notification on a Page.
    2. After clicking the approve button , the control should take me to a Appoval Comments PAge.
    3. But after clicking the approval button I am getting ' Page Cannot be found error".
    4. I have four botton on this page ( like Redirect, Retunr,cancel ) even after clicking any of these also theos th same error.
    Haan ..... We are facing this issue in Prodution and Staging but the Developemnt instance its works fine.
    awaiting for your reply.
    Raghu

  • Can I disable the LINK button at the top of the toolbar.

    I don't know how many times I've accidentally clicked the link button when I went to select the pointer tool and been taken away from indesign and into my browser. Frustrating and adding up to lots of loss of productivity.
    Is there a way this button can be disabled? The wide button above the select and direct select tools at the very top of the tools palette that when clicked links to: http://www.adobe.com/products/indesign/ --- anyway to disable this?
    Thanks

    >I don't know how many times I've accidentally clicked the link button when I went to select the pointer tool.
    I would suggest use a more accurate curser moving device than you have now. I use a Wacom and have never accidently hit the link.

Maybe you are looking for