How to change the content in request at approval stage

Dear experts,
We have a requirement like following:
Frist, User submits a new account request, the field "Position" is set to cerntain value, eg. sales support
Then, Manager should have the capbility to change the content in field "Position", such as changeing sales support to sales manager, when he approves the request.
However, it seems that only very few fields can be changed after request submition.
How could we configure AC to let the managers can change the content in request at approval stage?
Thanks a lot!

Tang,
In the stage for the Manager set the "Change Request" to 'Yes'.  This will open up a few fields for you, including user group, role validity dates, etc.  I do not believe this will open up position though.

Similar Messages

  • How to change the "content created" date/time in FCPX?

    Since I've had problems importing my whole iMovie event library into FCPX I decided to run some tests with importing individual files (part of iMovie events and originally imported from camera into iMovie). Some of them for some reason got the wrong "content created" date/time in them while in iMovie they have the right date/time set. Does anybody have an idea on how to change the "content created" timestamp?

    I had a bunch of DV files that imported stamped with the file modification date and time.  I did not find a way to change it in FCPX. With FCPX not running, I used A Better Finder Attributes to modify the creation and modification dates of the files in the event folder. FCPX reconnected to them but the event still showed the old range of dates so I created a new event and moved the clips to it. Maybe ther is a beter way but that is how I did it.

  • How to change the Content-Transfer-Encoding for the fmddataa.fmd from base

    Dear all,
       When I using this SO_DOCUMENT_REPOSITORY_MANAGERto send email,I find the fmddata.fmd  file have been changed  to binary file attachment. I don't hope so.any one have good idea to avoid this case occur?
      Can you tell me how to change the Content-Transfer-Encoding for the fmddata.fmd from base64 to quoted-printable.  The quoted-printable is the Content-Transfer-Encoding for text file with extension .txt
    Best Regards,
    Merry

    Thank you

  • On opening up toast to burn its telling me that the tv standard is set to ntsc but all of my content is in pal format. how to change the content to ntsc seeing i am using final cut 10.

    on opening up toast to burn its telling me that the tv standard is set to ntsc but all of my content is in pal format. how to change the content to ntsc seeing i am using final cut 10.

    Select the Project in the Browser.  Go to the Info section of the Inspector.  Click the Modify Settings button.  For  Video Properties, change the Format from PAL to NTSC.  Export again, you'll be fine.

  • How to change the content of GTC (terms and conditions) for Partner

    Hi all,
         We are using R/3 version of ISA B2B site. while creating order thru Shopping Basket we have requirement that We need to provide GTC (General Terms and Condions) for the Partner (View GTC link ).  Right now some default text is displayed in that window (text text text ext text text text text text like that). we need to change this.
    where i can change this text and enter our own terms and conditions.
    Please help me to resolve this,
    thanks in advance
    siva kumar

    Hi Siva,
    the GTC is shown in the JSP b2c/order/terms_and_conditions.jsp. If you have a look at the file, you will find the following code:
    <isa:translate key="b2c.order.termsAndConds.txt.dmy"/>
    The translate tag will render the language dependant text for the resource key "b2c.order.termsAndConds.txt.dmy". To change the content that is shown you can change the resource text or create your own resource key in the corresponding resource file. The resource files are located in the src-folder of the web application DC.
    Best Regards,
    Peter Kraus
    SAP Web Channel Consultant
    http://www.leonardo-it.com

  • How to change the content of the URL on the fly.

    Hi,
    I am creating a label for sold items. To create this, I've created a html template which fills the data dynamically.
    In Silverlight,
    System.Windows.Browser.HtmlPage.Window.Navigate(someUri, "_blank");
    is the way to open html files.
    My requirement is before navigating to the page, I want to replace the data in the file. and when we navigate, it should show the modified content. So that I can print the label.
    The steps are:
    Read the template file
    Replace the values (Don't save)
    Navigate to the page with modified content.
    Please advice me to get this functionality.
    Thanks,
    Tahnks & Regards Kiran Chinthakuntla

    You can save data to a cookie and navigate to a html page which reads from that cookie to display it's contents.
    http://stackoverflow.com/questions/12183572/how-to-use-javascript-to-fill-a-form-on-another-page/12183659#12183659
    http://stackoverflow.com/questions/5639346/shortest-function-for-reading-a-cookie-in-javascript
    Your process is silverlight > cookie
    Navigate to page which is served from your server.
    page reads cookie and fills itself.
    Other options.
    You can actually do xsl transforms from javascript within the page to build html.
    Or you could pass the data as query strings, but that's a bit rubbish as the user sees them.
    There was a similar question a while back you might want to search for. 
    I found a link which demonstrates live update between two web pages via cookie.
    You could change the cookie dynamically in silverlight and that is reflected in the web pages.
    I don't think that's your requirement here but....
    Hope that helps.
    Recent Technet articles: Property List Editing;
    Dynamic XAML

  • How to change the content of a cell in an ALV-List?

    Hi,
    knows anybody a way to change the cell-content in an ALV-List?
    In my case, I want to give the user the posibility to click on a pecific cell
    in the list and change in an edit-mode or similar else!?
    Thanks for your ideas!

    Get the existing field catalog using the method cl_gui_alv_grid->get_frontend_fieldcatalog. Change the edit property in the field catalog and refresh it using the method cl_gui_alv_grid->set_frontend_fieldcatalog.
    Hope this helps.
    Regards,
    Nithya

  • How to change the content dynamically by date wise

    Hi,
    In my application, i have a survey module.
    In that i have to change the question by every week, which iam getting
    from the Database.
    Iam using java,and mysql DB, framework struts.
    How can i update the question for every week ??
    What is the procedure to attain it.
    Give me suggestions and tips to startup.
    Thanks,
    Mohan

    The cron command would do that on Linux and Solaris. On Windows, use a similar command.

  • How to change the content of a text input?

    Hi!
    I would like to help me with the following
    I've create and input text, for example this:
    var one= sym.$("one")
    one.html("Enter your answer: ");
    inputOne = $('<input />').attr({'type':'text', 'value':'', 'id':'one'});
    inputOne .css ('font-size', 14);
    inputOne .css ('width', 350);
    inputOne .css ('background-color', '#0a81fb');
    inputOne .appendTo(one);
    Now the user can write anything in this input text.
    The corret word that the user has to write is "correct"
    so i use an if to validate it
    if (inputOne.val() == "correct"){
         alert ("good")
    }else {
           // HERE IS MY PROBLEM!!!   What i need to do is: if the user types a wrong answer i           //need to show him the correct answer in the input text.
    I hope you can help me.
    Thank's =)

    sym.$("NameofInputTextElement").html("What you want to change the text to");
    Have you tried this yet?
    Katherine

  • How to change the content of a frame

    Hi,
    I want to create a link that refreshes the content of a frame in my page.
    I guess that Oracle Portal does not support frames.
    That's why I wonder if I'm obliged to developp a new page each time I just want
    the content of a frame to be updated ?
    Thanks for your help,
    Best Regards,
    Jean-Christophe

    Cleartoby,
    Well, another thought that comes to mind is to define and implement a listener.
    e.g.
    public interface MyListener
        public void setText(String text);
    public class MyFrame extends JFrame implements MyListener
        private JTextArea textArea;
        public void setText(String text)
            this.textArea.setText(text);
    public class MyOtherFrame extends JFrame
        public void addMyListener(MyListener l)
            // somehow keep track of listeners
        // so some stuff and when needed call "setText()" on the listener(s)
    --- pam11

  • How to change the value of request.getParameter("submit")

    <input type="submit" name="submit" value="postLeave" />
    When I click on the submit button, control goes to a servlet file, where I can access the value of submit using request.getParameter("submit") which is the postLeave here. After accessing this value I want to change it's value or unset the "submit" in the same file.....
    Like in php we can do this easily using unset($_POST['submit']) ........ but how can I do this in java servlet....? Is there any method to do this...........? If not, then can anybody tell me the alternative solution for this.
    Deepak Jain
    [email protected]

    tschodt wrote:
    djain29 wrote:
    Is there any alternative solution?Retrieve all request parameters
    http://download.oracle.com/javaee/1.4/api/javax/servlet/ServletRequest.html#getParameterMap%28%29
    store in a new HashMap (which will be mutable)
    do all your operations on your new local copy of the request parameters.
    If you are in a filter have a look at
    http://download.oracle.com/javaee/1.4/api/javax/servlet/http/HttpServletRequestWrapper.html
    Fetching all parameters to a HashMap of course works but it might be a little over the top; fetching the one parameter that should be mutable to a local bean which you then use everywhere is another valid option, one that most web frameworks actually support by providing mapping services of request parameters to bean properties.

  • How to change the content of a object array completely???

    before, i had this
    Object[][] icon = {
    {new ImageIcon("cartoon/#@!&_  Cartman.jpg"),
             new ImageIcon("cartoon/Beefcake Eric.JPG"),
             new ImageIcon("cartoon/Cartman.JPG"),
             new ImageIcon("cartoon/Charlie Brown 1.JPG"),
             new ImageIcon("cartoon/Charlie Brown 2.JPG"),
             new ImageIcon("cartoon/Charly Brown 3.JPG"),
             new ImageIcon("cartoon/Chef.JPG"),
             new ImageIcon("cartoon/Wendy.JPG")},
              {new ImageIcon("cartoon/Woodstock.JPG"),
             new ImageIcon("cartoon/XmasPlay.JPG"),
             new ImageIcon("cartoon/Amedee.JPG"),
             new ImageIcon("cartoon/Billie.JPG"),
             new ImageIcon("cartoon/Charlot.JPG"),
             new ImageIcon("cartoon/Fanny.JPG"),
             new ImageIcon("cartoon/Father Bollie.JPG"),
             new ImageIcon("cartoon/Wendy van Wanten.JPG")},
              {new ImageIcon("cartoon/Councelor.JPG"),
             new ImageIcon("cartoon/Franklin.JPG"),
             new ImageIcon("cartoon/Ike.JPG"),
             new ImageIcon("cartoon/Jesus.JPG"),
             new ImageIcon("cartoon/Kenny.JPG"),
             new ImageIcon("cartoon/King Snoopy.JPG"),
             new ImageIcon("cartoon/Kitty Kitty.JPG"),
             new ImageIcon("cartoon/Kyle.JPG")},
              {new ImageIcon("cartoon/Kyle's Mom.JPG"),
             new ImageIcon("cartoon/Lucy.JPG"),
             new ImageIcon("cartoon/Marcie.JPG"),
             new ImageIcon("cartoon/Mr. Garrison.JPG"),
             new ImageIcon("cartoon/Mr. Hanky.JPG"),
             new ImageIcon("cartoon/Mr. Hat.JPG"),
             new ImageIcon("cartoon/Mrs. Cartman.JPG"),
             new ImageIcon("cartoon/Off. Barbrady.JPG")},
              {new ImageIcon("cartoon/Peppermint Patty.JPG"),
             new ImageIcon("cartoon/Philip Glass.JPG"),
             new ImageIcon("cartoon/Pissed Kyle.JPG"),
             new ImageIcon("cartoon/Sally.JPG"),
             new ImageIcon("cartoon/Scaredy Cow.JPG"),
             new ImageIcon("cartoon/Schroeder.JPG"),
             new ImageIcon("cartoon/Snoopy 1.JPG"),
             new ImageIcon("cartoon/Snoopy 2.JPG")},
              {new ImageIcon("cartoon/Snoopy 3.JPG"),
             new ImageIcon("cartoon/#@!&_  Cartman.jpg"),
             new ImageIcon("cartoon/#@!&_  Cartman.jpg"),
             new ImageIcon("cartoon/#@!&_  Cartman.jpg"),
             new ImageIcon("cartoon/#@!&_  Cartman.jpg"),
             new ImageIcon("cartoon/#@!&_  Cartman.jpg"),
             new ImageIcon("cartoon/#@!&_  Cartman.jpg"),
             new ImageIcon("cartoon/#@!&_  Cartman.jpg")},
              {new ImageIcon("cartoon/#@!&_  Cartman.jpg"),
             new ImageIcon("cartoon/#@!&_  Cartman.jpg"),
             new ImageIcon("cartoon/#@!&_  Cartman.jpg"),
             new ImageIcon("cartoon/#@!&_  Cartman.jpg"),
             new ImageIcon("cartoon/#@!&_  Cartman.jpg"),
             new ImageIcon("cartoon/#@!&_  Cartman.jpg"),
             new ImageIcon("cartoon/#@!&_  Cartman.jpg"),
             new ImageIcon("cartoon/#@!&_  Cartman.jpg")},
              {new ImageIcon("cartoon/#@!&_  Cartman.jpg"),
             new ImageIcon("cartoon/#@!&_  Cartman.jpg"),
             new ImageIcon("cartoon/#@!&_  Cartman.jpg"),
             new ImageIcon("cartoon/#@!&_  Cartman.jpg"),
             new ImageIcon("cartoon/#@!&_  Cartman.jpg"),
             new ImageIcon("cartoon/#@!&_  Cartman.jpg"),
             new ImageIcon("cartoon/#@!&_  Cartman.jpg"),
             new ImageIcon("cartoon/#@!&_  Cartman.jpg")},           };
    now i want to change to this:
    icon = {
    {new ImageIcon("cartoon/Wendy.JPG"),
             new ImageIcon("cartoon/Wendy.JPG"),
             new ImageIcon("cartoon/Wendy.JPG"),
             new ImageIcon("cartoon/Wendy.JPG"),
             new ImageIcon("cartoon/Wendy.JPG"),
             new ImageIcon("cartoon/Wendy.JPG"),
             new ImageIcon("cartoon/Wendy.JPG"),
             new ImageIcon("cartoon/Wendy.JPG")},
              {new ImageIcon("cartoon/Woodstock.JPG"),
             new ImageIcon("cartoon/XmasPlay.JPG"),
             new ImageIcon("cartoon/Amedee.JPG"),
             new ImageIcon("cartoon/Billie.JPG"),
             new ImageIcon("cartoon/Charlot.JPG"),
             new ImageIcon("cartoon/Fanny.JPG"),
             new ImageIcon("cartoon/Father Bollie.JPG"),
             new ImageIcon("cartoon/Wendy van Wanten.JPG")},
              {new ImageIcon("cartoon/Councelor.JPG"),
             new ImageIcon("cartoon/Franklin.JPG"),
             new ImageIcon("cartoon/Ike.JPG"),
             new ImageIcon("cartoon/Jesus.JPG"),
             new ImageIcon("cartoon/Kenny.JPG"),
             new ImageIcon("cartoon/King Snoopy.JPG"),
             new ImageIcon("cartoon/Kitty Kitty.JPG"),
             new ImageIcon("cartoon/Kyle.JPG")},
              {new ImageIcon("cartoon/Kyle's Mom.JPG"),
             new ImageIcon("cartoon/Lucy.JPG"),
             new ImageIcon("cartoon/Marcie.JPG"),
             new ImageIcon("cartoon/Mr. Garrison.JPG"),
             new ImageIcon("cartoon/Mr. Hanky.JPG"),
             new ImageIcon("cartoon/Mr. Hat.JPG"),
             new ImageIcon("cartoon/Mrs. Cartman.JPG"),
             new ImageIcon("cartoon/Off. Barbrady.JPG")},
              {new ImageIcon("cartoon/Peppermint Patty.JPG"),
             new ImageIcon("cartoon/Philip Glass.JPG"),
             new ImageIcon("cartoon/Pissed Kyle.JPG"),
             new ImageIcon("cartoon/Sally.JPG"),
             new ImageIcon("cartoon/Scaredy Cow.JPG"),
             new ImageIcon("cartoon/Schroeder.JPG"),
             new ImageIcon("cartoon/Snoopy 1.JPG"),
             new ImageIcon("cartoon/Snoopy 2.JPG")},
              {new ImageIcon("cartoon/Snoopy 3.JPG"),
             new ImageIcon("cartoon/#@!&_  Cartman.jpg"),
             new ImageIcon("cartoon/#@!&_  Cartman.jpg"),
             new ImageIcon("cartoon/#@!&_  Cartman.jpg"),
             new ImageIcon("cartoon/#@!&_  Cartman.jpg"),
             new ImageIcon("cartoon/#@!&_  Cartman.jpg"),
             new ImageIcon("cartoon/#@!&_  Cartman.jpg"),
             new ImageIcon("cartoon/#@!&_  Cartman.jpg")},
              {new ImageIcon("cartoon/#@!&_  Cartman.jpg"),
             new ImageIcon("cartoon/#@!&_  Cartman.jpg"),
             new ImageIcon("cartoon/#@!&_  Cartman.jpg"),
             new ImageIcon("cartoon/#@!&_  Cartman.jpg"),
             new ImageIcon("cartoon/#@!&_  Cartman.jpg"),
             new ImageIcon("cartoon/#@!&_  Cartman.jpg"),
             new ImageIcon("cartoon/#@!&_  Cartman.jpg"),
             new ImageIcon("cartoon/#@!&_  Cartman.jpg")},
              {new ImageIcon("cartoon/#@!&_  Cartman.jpg"),
             new ImageIcon("cartoon/#@!&_  Cartman.jpg"),
             new ImageIcon("cartoon/#@!&_  Cartman.jpg"),
             new ImageIcon("cartoon/#@!&_  Cartman.jpg"),
             new ImageIcon("cartoon/#@!&_  Cartman.jpg"),
             new ImageIcon("cartoon/#@!&_  Cartman.jpg"),
             new ImageIcon("cartoon/#@!&_  Cartman.jpg"),
             new ImageIcon("cartoon/#@!&_  Cartman.jpg")},           };*/

    Sounds... like... fun...
    So... what's your question?

  • How to change the no of members in approval status tab in charm(crmd_order)

    Hi all,
    I have an issue related to removing few people when a CR(change request )is created.Here in our case, it goes for approval for 5 peaple.I want to know where in the Charm configuration this is defined, so that I can chhange it there.I've tried searching for that in the Tcode Solar_project_admin, but could not find that out.
    Can anyone who has configured Charm, please help me in doing this.

    Hi Valentina,
    1. Transaction: BS22 (System Status maintenance).
    2. Locate the system status:  I0188  - ECUS (click Page down key to scroll the list below).
    3. Put cursor on I0188 and, menu path GOTO -> TRANSACTION CONTROL.
    4. Locate Business status PMS1 - Goods Receipts, click checkbox "Forbidden" (It might be in Warning right now?).
    5. Save and test your scenario.
    Regards, Trino

  • I have 5 html pages that share a common header, footer, and sidebar. how do i use my nav bar to change the content of the body without duplicating a lot of code?

    i have 5 html pages that share a common header, footer, and sidebar. how do i use my nav bar to change the content of the body without duplicating a lot of code? thank you!

    i inherited the website. It’s for a non-profit and is not very
    sophisticated, and neither am I in webdesign. It currently has multiple
    pages that are identical except for that body section, so whenever i change
    the navigation (in the sidebar) I have to update every html page.  I want
    to have one basic page, and just call in the different body content based
    on the link the user selects from the nav bar. How can i do that using a
    script? i am using Dreamweaver.
    ~ in love and light ~
    Jeannie
    On Sat, Feb 7, 2015 at 4:07 AM, Ben Pleysier <[email protected]>

  • How can I change the content of JTable?

    Dear friends.
    I have an JTable. I create tablemodel for it and fill out it by data.
    In application at the run time I always need to change the content of whole table. For example I have a frame with JTree and JTable. When I click on the tree node I need to retrieve the data about this node in the JTable.
    Advice me please how can I do that and give an example please.
    Thank you.

    SOL I:
    There solution can be simple if u've written a model for it.
    If u are updating the data of the table by the setValueAt() method of the tableModel, in ur calling(mutating code), then just append a sinle line at the end of the method. U just need to fire a data change event corresponding to the event that has happened.
    void setValueAt(Object aValue, int rowIndex, int columnIndex) {
    - - - - - - - ur code
    //then last line can be
    fireTableDataChanged() ;
    OR
    fireTableCellUpdated(int row, int column);
    OR
    fireTableStructureChanged() ;
    depending uopn what has happened.
    SOL II:
    U may also try calling the method fireTableDataChanged(); from the place where the table data is getting mutated.
    like:
    ((AbstractTableModel) table.getModel()).fireTableDataChanged();
    [email protected]

Maybe you are looking for

  • GarageBand 3 is missing 3 loops from earlier versions

    I did a clean install of Garageband 3 (hid my old GBand 1&2 loops folder), and then compared the two folders. There are three loops missing from GBand3 that are present in my older loop folder: Club Dance Beat 052.aif Plucky Guitar Loop 01.aif Plucky

  • Can't get rid of my high power consumption (Thinkpad X60 Tablet)

    This is really driving me nuts. On Windows 7, I can achieve a power consumption of around 11-12W (with moderate web surfing usage over WLAN and full screen brightness, just Aero turned off). On Arch, I can't get below 13W *ever* with full screen brig

  • Why imageComplete is called twice!

    I wrote the following code: public class Test{ public static void main(String[] args){ //get image Image image = Toolkit.getDefaultToolkit().createImage("javalogo.gif"); ImageConsumerImpl impl = new ImageConsumerImpl(); //get image producer ImageProd

  • Finding a Thread by number corresponding to posts in the thread

    I apologize for my lack of forum expertise and hope this is a valid question that maybe others have had. I posted a thread recently and along with the answers in the forum I also got an 2 emails with a corresponding numbers for the posts in the threa

  • Adding Comments in Workflow

    Hi Experts, I have a Requirement. There is a Scenario where I am Sending a Decision to a User for Approval/Rejection using a Workflow. This is being tested on User-Interface and not SAP-GUI. "Now the Requirement is that when that User is taking a Dec