Deactivate Change Button in PR05

Dear Friends,
In PR05 Travel Expense Manager Screen there is a CHANGE button. I want to deactivate or disable it. I do not mind if it is there but users can not use it.
I have created one new role & assigned only PR05 Transaction code to newly created role. In P_ORIGIN object authorization I have maintained is R.But users are still able to use change functionality.
Please advice How I can deactivate CHANGE button.
Regards
Santosh

Hi Santosh,
If you want to deactivate the Change button in txn PR05.I'm not sure whether it can be de-activated through manipulation of values in the auth. obj or not.But if that is not possible then you can do this by creating a custom t-code with variant of the txn PR05 in SHD0 and remove the change button from there.You will need to seek ABAP'ers help to achieve this as this does not fall into the arena of SAP Security consultant.
You can then assign the custom t-code to the users through your roles..
Thanks,
Saby..

Similar Messages

  • Change button missing in the created SC

    Hi Gurus
    User 1 has shopped for user 2, who is having the approval limit and created the Shopping Cart. The SC is in the status of Awaiting approval.The user 1 is trying to change the data in the created SC, but he is not getting the "Change" button.
    Also the user 2 is trying to Change the data in the SC before approving the SC, he is also unable to find the "Change" Button.
    The user 1 is having the Security parameter BBP_WFL_SECURITY value as Low and the user 2 is having the Security parameter BBP_WFL_SECURITY value as High.
    FYI, if the approver rejected the SC, then also the creator is not getting the Change button. And if the SC contains any error to convert to the follow-on documents, then user 1 & 2 are able to get the Change Button.
    please advice.
    Thanks
    Sada

    Hi Sada,
    You can check if badi BBP_WFL_SECUR_BADI is active. After a support package, this badi became active by default. If you do not have your own logic within this badi you can deactivate it.
    The sample SAP code always return "0", which does not allow the user to change the document.
    Kind regards,
    Ricardo

  • Deactivate phone buttons in IC_agent

    Hi,
    How I can deactivate phone buttons in business role IC_agent?
    I can not find necessary entries in function profile WBAR.
    Denis.

    Hongyan,
    Yes, I use profile: ICCMP_BP_SEARCH/BuPaSearchB2B
    Button 'Reset' is accessible only then I start to search business partners.
    I dont see button 'reset' after I finded or after I confirmed business partner.
    I see these buttons (initial state):
    Search account, Reset, Clear, New.
    After confirmation or after then I find partner (before confirm) I see these button:
    Confirm, Save (dark), Cancel (Dark), Related, Edit, Clear
    I can not see button Reset!
    Why?
    Denis.

  • How can I disable display/Change Button on transaction code VL03N

    Dear Guru,
      I found problem about transaction code vl03n because I define authorize for a user that can only display delivery document by transaction code VL03N. But this transaction have display/change button that when user click this button they can change delivery document. Please help me how can I solve this problem?
    Best regard,
    wipaporn

    Wipaporn,
    This should be done authorizations only. Although the button is displayed, is the user able to change and save the Delivery document?
    Regards,
    Ravi

  • How to change button colors in a loop?

    I am working on a task that should imitate an elevator. I have two vertical
    rows of round buttons "Up" and "Down" When a circle is selected randomly by
    the program, the circle becomes yellow and the elevator moves to that
    button.
    Here is what I did:
    1. created a class Circle where I save buttons' parameters
    2. saved Circle objects in an array
    3. drew the buttons depending on their parameters
    4. generated a random number, matched it with an array index and assigned
    the object color to yellow.
    Everything is fine except that I can't figure out how to change colors of my
    buttons in a loop.
    import javax.swing.*;
    import java.awt.*;
    import java.util.*;
    public class Elevator3 extends JPanel
    private int n = 40;
    private int width = 200;
    private int floors = 10;
    private int interval = 1000;
    private boolean selected = false;
    private Circle[] buttons = new Circle[2*(floors-1)];
    public Elevator3()
    build();
    JFrame frame = new JFrame("Elevator3");
    setBackground(Color.WHITE);
    setFont(new Font("SansSerif", Font.PLAIN, Math.round(n/3)));
    frame.getContentPane().add(this);
    frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
    frame.setSize(width, n*(floors+2) );
    frame.setVisible(true);
    public void build()
    Random r = new Random();
    int buttonPick;
    int timeUntilNextButton = r.nextInt(interval);
    for (int k =0; ; k++)
    if (timeUntilNextButton-- ==0)
    buttonPick = r.nextInt(2*(floors-1));
    //populate my buttons array here - how??
    timeUntilNextButton = r.nextInt(interval);
    //adding "Down" buttons
    for (int i=1, count=0; i < floors; i++, count++)
    if (count == buttonPick)
    selected = true;
    else
    selected = false;
    buttons[count]= new Circle(n*2, n*i, selected, Math.round(n/2));
    //build an array of "Up" circles
    for (int i=2, count=floors-1; i < floors+1; i++, count++)
    if (count == buttonPick)
    selected = true;
    else
    selected = false;
    buttons[count]= new Circle(n, n*i, selected, Math.round(n/2));
    public static void main(String[] args)
    new Elevator3();
    protected void paintComponent(Graphics g)
    super.paintComponent(g);
    //draw buttons
    for (int i=0; i < buttons.length; i++)
    g.setColor(buttons.getColor());
    g.fillOval(buttons[i].getX(), buttons[i].getY(), buttons[i].getWidth(), buttons[i].getWidth());
    class Circle
    private int x;
    private int y;
    private Color c;
    private boolean pressed;
    private int width;
    public Circle(int xCoordinate, int yCoordinate, boolean selected, int diameter)
    x = xCoordinate;
    y = yCoordinate;
    pressed = selected;
    width = diameter;
    if (pressed)
    c = Color.YELLOW;
    else
    c = Color.LIGHT_GRAY;
    public Color getColor()
    return c;
    public int getX()
    return x;
    public int getY()
    return y;
    public int getWidth()
    return width;

    hi,
    am sorry, i couldn't make out what exactly the problem, but as ur subject line says...
    may be the code give below will help you to change button colors in a loop..
              for(int i = 0; i < button.length; i++){
                   int color1 = (int)(250*Math.random());
                   int color2 = (int)(250*Math.random());
                   int color3 = (int)(250*Math.random());
                   Color c = new Color(color1,color2,color3);
                   button[i] = new JButton("button name");
                   button.addActionListener(this);
                   //to check the r, g, b combination.
                   //System.out.println(c);
                   button[i].setBackground(c);
                   button[i].setForeground(Color.white);
    //adding into the panel
                   panel.add(button[i]);
    hope this would help you.

  • I got a Macbook Air. My system language is russian but the login password is english. I pu the laptop into sleep mode, then wanted to log in again, but the language seems to have switched to russian, there's no language change button! How do I log in now?

    I got a Macbook Air. My system language is russian but the login password is english. I put the laptop into sleep mode, then wanted to log in again, but the language seems to have switched to russian, there's no language change button! How do I log in now?

    Severia,
    I tried your solution, but it did not work with my laptop. After I restart the laptop, the language does not change and I cannot type the password in English language. Do you have any other suggestion?
    Thank you.

  • Change Button Name in JOptionPane.showMessageDialog

    Hello,
    I've written the following code that invokes a JOPtionPane messageDialog, when the delete button is hit in the following frame and the selectedItem in the JComboBox is Default.
    I want to change the JOPtionPane button name from OK to Close. Is there a way to do this with error message dialoges, as their is with confirmDialoges?
    Please help out.
    import java.awt.Dimension;
    import java.awt.FlowLayout;
    import java.awt.event.ActionEvent;
    import java.awt.event.ActionListener;
    import javax.swing.JButton;
    import javax.swing.JComboBox;
    import javax.swing.JFrame;
    import javax.swing.JOptionPane;
    import javax.swing.JPanel;
    public class MyJOptionPaneTest {
         public MyJOptionPaneTest()
              JFrame frame = new JFrame("My Frame");
              JPanel panel = new JPanel(new FlowLayout(FlowLayout.LEFT,5,0));
              final JComboBox myComboBox = new JComboBox();
              myComboBox.setPreferredSize(new Dimension(100,20));
              myComboBox.getModel().setSelectedItem("Default");
              myComboBox.addItem("Default");
              myComboBox.addItem("Other");
              JButton deleteButton = new JButton("Delete");
              deleteButton.addActionListener(new ActionListener()
                   public void actionPerformed(ActionEvent e)
                        if(myComboBox.getSelectedItem().equals("Default"))
                             JOptionPane.showMessageDialog(null, "Default cannot be deleted", "Error", JOptionPane.ERROR_MESSAGE);
              panel.add(myComboBox);
              panel.add(deleteButton);
              frame.getContentPane().add(panel);
              frame.setSize(200,100);
              frame.setResizable(false);
              frame.setVisible(true);
         public static void main(String [] args)
              MyJOptionPaneTest test = new MyJOptionPaneTest();
    }

    Hi,
    yes, I've looked at the tutorials. But there is no way to change button title for JOptionPane.showMessageDialog. Only JOptionPane.showOptionsDialog provides you w/ that feature, becuz it provides the parameter in the method.
    I was wondering if there was another way to do this for showMessageDialog.

  • " change" button not visible in check status ?

    HI,
    We are under upgrade of SRM 4.0 to SRM 5.0 . In SRM 4.0 "change" button
    is visible in check status even if shopping cart is under approval
    state.
    But in SRM 5.0 "change" button is not visible in check status if
    Shopping cart is under approval state.
    Please let me know if any one face this issue.

    Hi,
    Goto SU01 and fill in the user ID for which the button is greyed.
    Navigate to role tab
    Double click on the role so that the system opens transaction PFCG
    Select the "personnalization" tab where you will find the WFL security... (don't remember exactly the name as i do not have any system right now)
    This WF security has 4 level.
    By default it is set to none
    Select level 4 for maximum authorization.
    Save, log-off from ITS access et relogon.
    Then the button won't be greyed anymore
    Kind regards,
    Yann

  • "change" button is not visible in check status ?

    HI,
    We are under upgrade of SRM 4.0 to SRM 5.0 . In SRM 4.0 "change" button
    is visible in check status even if shopping cart is under approval
    state.
    But in SRM 5.0 "change" button is not visible in check status if
    Shopping cart is under approval state.
    for this i have raised OSS message. SAP replied that "please increase the security level of the buyer from 1 (= no changes
    allowed) to at least 2 (=low)."
    please let me know where exactly i can change this settings?
    Thanks
    Venkatesh P

    Hi Venkatesh,
    Steps :
    1) Go to SU01 of the buyer
    2) Go to Personalization tab
    3) Double click on Personalization object key 'BBP_WFL_SECURITY'
    You will get a pop up for 'Authorization level for Authorization'
    4) Here change the securtiy level from 1(=no changes allowed) to at least 2(=low)
    <b>Reward points for helpful answers</b>.
    Regards,
    Andy

  • Apply changes button not working as expected

    Hi
    I have a page, this page has some fields and a drop-down list where it has a projectname as the values and when I change a value in the drop-down list and click on "Apply Changes" button it does update the table and the changes can be viewed on the page ............. but when I have created a copy of this same page and changed the select statement of the drop-down list and in order to change the year from the drop-down list and click on apply changes then it does not update the table or changes are not reflected on the page.... am I doing soemthing wrong somewhere , but not sure where !
    Can anyone know what could be the reason ....?
    thanks

    Hi Nancy,
    That could be the case, but I tried it multiple times during the day and it was not working. I think I would have notice it if I "missclicked" it like 10 times in a row. I normally use this option more than once a day and it works. But If it happen again, I'll pay attention to that.
    Thanks!

  • Change button disabled in ESS add/remove dependents

    We are on version 4.7D and have noticed that ESS transaction PZ12 does not consistently allow changes to existing records. I can change a spouse, but I cannot change a child or an emergency contact via ESS.  I get the same results when accessing through R/3, but there are no messages as to what the problem is.  I have tried removing the dependents from all benefits plans, then trying to change the data in PZ12, but that does not work. I have checked for any authorization errors, and none exist. Does anyone have any ideas as to how to correct this and enable the change button in all cases?
    The dependent type 2 is set up with time constraint 3. I have checked table T591A_ESSEX and can see that the subtype is allowed to be maintained via ESS.
    Thanks in advance.

    OK. There are two ways to do this:
    1. Create a button facet in the Add remove component
    2. Modify the theme.
    For the first way here is a sampe:
    1. drag a add removelist onto the designer
    2. Edit the jsp to look like this:
                            <ui:addRemove availableItemsLabel="Available:" binding="#{Page1.addRemoveList1}" id="addRemoveList1"
                                items="#{Page1.addRemoveList1DefaultOptions.options}" moveButtons="true" selectAll="true"
                                selected="#{Page1.addRemoveList1DefaultOptions.selectedValue}" selectedItemsLabel="Selected:" style="left: 24px; top: 24px; position: absolute">
                                <f:facet name="addButton">
                                    <ui:button id="addRemoveList1_addButton" onClick="AddRemove_form1_addRemoveList1.add()" text="Lark Add"/>
                                </f:facet>
                            </ui:addRemove>3. deploy/run
    4. select an item and press the Lark Add button. The internal javascript gets called to add the item.
    The second way requires that you modify the themes. You can view these posts for information on modifying themes:
    http://blogs.sun.com/roller/page/gjmurphy?entry=quick_guide_editing_themes_for
    The default button lables are:
    AddRemove.add=Add
    AddRemove.remove=Remove
    Hope it helps,
    Lark

  • Want to change button background using UIManager for WindowsLookAndFeel

    Hi first i used ocean look and feel in my application. i used UIManager to change to color of the button. so all the buttons colors are change. fine
    But if i change the look and feel to windows look and feel it shows the windows look only. i sant to change the color to white. how?

    de to set the look and feel:
    UIManager.setLookAndFeel("com.sun.java.swing.plaf.windows.WindowsLookAndFeel");code to change button property
    UIManager.get("Panel.background");
    UIManager.put("Button.background", Color.WHITE);
    UIManager.put("Button.border", javax.swing.BorderFactory.createLineBorder(Color.black));
    UIManager.put("Button.opaque", true);change button properties are not affecting the jbutton. if i create.
    But if i remove the setLookAndFeel line properties are applying. why? remedy? is changing the ButtonUI is only option?

  • Accept Changes button visible in Approval link but not in Check Status

    Dear Experts,
    We are on SRM 4.0 .
    After a SC is rejected partially the requester can see the SC under Check Status link with the status In Your Inbox
    When the user clicks on the Detail icon, there is only CHANGE button but when the user clicks on Approval Link
    he can see Description as 'Your Shopping Cart xxxxxxxxx was change/rejected in part.Please Check' and when he click on the Detail icon there are two buttons at botton Accept Changes  and  Change  .
    Why is the Accept Changes button not there in detail display of SC under check status link?
    Thanks,
    Anubhav

    Hello,
    This is the standard behaviour of SRM4.0. 
    When a SC has been partially rejected the the SC goes to the requestor approval inbox. Requestor can either accept the change or he/she can change the SC and order again.
    If requestor accept the change that means requestor has been accept the rejection, so requestor will not be able to create the PO for that line item. He/she needs to change the SC depending on the approval note and order again.
    Check status transation is used for check the status of the shopping carts. Due to that reason the Accept change button is not exist there.
    Regards,
    Anindya

  • Change Button Not Active even after Delivery Completion Indicator is Remove

    Hi ,
    In SRM 5.0 ,Change Button Not Active even after Delivery Completion Indicator is Removed for Completed PO to cancel the GR or make changes.
    Thanks & Regards,

    Hi,
    Please check these notes.
    Note 1267916 - PO item flags do not stay checked
    Note 1174982 - Return/deletion of confirmation does not update the PO flag
    Thanks
    Zameer

  • On firefox clickable buttons are not clickable for me eg the + to open new tab ,the sign in . register and other applications buttons on this page wont click yet the 2 blue change buttons are fine

    Question
    on firefox clickable buttons are not clickable for me eg the + to open new tab ,the sign in . register and other applications buttons on this page wont click yet the 2 blue change buttons are fine

    Top of Firefox window non-responsive, toolbars non responsive -- also see [http://kb.mozillazine.org/Problematic_extensions Problematic extensions]
    *caused by Yahoo Toolbar -- https://support.mozilla.com/questions/890908
    *caused by Babylon Toolbar -- https://support.mozilla.com/questions/890670

Maybe you are looking for