How to make form read read only at runtime?

Hi Experts,
I created one form in webdynpro java with Submit , Approve and reject buttons. When i click on the SUBMIT button my from subbmitted to approver to approve or reject.
now i want to make my form(Except APPROVE and REJECT button ) read only when it has submitted to approver.
Can any one please help me to solve this....
Regards,
sharada.

Hi Sharda,
                  Check the condition of the application, whether it has been submitted and then set the read only property of the button to true.
Do this, by binding a binary type attribute to the read only property and set it true / false with respect to the conditions.
Hope it helps, please revert in case of some issue.
Cheers!!!
Umang

Similar Messages

  • How to make form field read only for users with certain permissions

    We need to make two form fields read only for users with certain permissions. Kindly guide me on how to do this in Infopath. I searched and there is an option to disable to the column, but no option to select user permissions. 
    Please give your suggestion on this. 
    thanks.

    Hi,
    See the link below:
    http://info.akgroup.com/blog-0/bid/69277/InfoPath-Restrict-visibility-to-users-in-a-SharePoint-Group
    Here you can add the fomatting action on the field to disable the field if those users belong to certain Sharepoint group (does not matter the permission levels though). Hope it helps.
    Regards, Kapil ***Please mark answer as Helpful or Answered after consideration***

  • How to make form as read only when another time as  user sees it..

    Hi All,
    I have a form to raise the issue. once the issue is raised it appears in the issue raised reports( that is form on a report )
    so all can view this report and click on issue no ..the form with details appear .
    but i want to restrict it , by allowing only one up manager to view the form on a report in editable format rest all can just view it .
    how can i do this?????????
    can any one help me with this ????..
    my approach is like this ...
    a column called "checked shud be added to issue table , then its values must be set to "raised" when issue is submitted for the very first time..( so it is zero when the end user is submitting it ).
    when ( the logged in user =1 up manager or checked!="raised") then
    form fields to be displayed as edited
    else
    form fields need to be read only .
    Thanks & Regards,
    Nandini Thakur.
    Edited by: Nandini thakur on Jun 26, 2010 12:04 PM

    Nandini,
    If you edit any item, you can see a section where you can specify "Read-Only" condition. Here you can write your read-only logic using SQL OR PL/SQL or predefined conditions.
    Cheers,
    Hari

  • How to make form based authenticaiton in adf security?

    Hi all
    How to make form based authenticaiton in adf security?
    help give example video or project.
    Thanks lhagva

    Have you read the docs (http://download.oracle.com/docs/cd/E17904_01/web.1111/b31974/adding_security.htm)?
    Timo

  • How to make Form builder 10g step into libraries *.pll while remote debug

    How to make Form builder 10g step into libraries *.pll while remote debug. It attaches fine and goes through code located in form but skips pll's. In this case I am interested in debuging CUSTOM.pll. How to step into pll's and is it possible at all?

    Is the library in the same directory or within your FORMS_PATH? Note that the runtime setting in the default.env doesn't work for the builder.
    cheers

  • How to make form read only

    hello
    is it possible, and if so how, to set a form to read only. i will have 2 oracle responsibilitys. 1 group will enter the data and save it . the other will only be able to view the form as read only.
    any ideas is helpful
    thanks
    james

    This can done using SPEL , Make a VO with transient attribute with boolean Type.
    For one responsibilty set this attribute value to true where you want readOnly behaviour.
    code should be like that
    OAViewObjectImpl pVO = YourPVO();
    OAViewRowImpl pVORow = (OAViewRowImpl)pVO.first();
    If(Check for responsibilty)
    pVORow.setAttribute("IsEditMode", Boolean.TRUE);
    On page level set spel for disable/Readonly property for item for them you need show as readonly
    like
    ${oa.YourPVO.IsEditMode}
    Hope it will help you.
    Thanks

  • HOW TO MAKE FIELDS AS READ ONLY IN TABLE MAINTAINANCE

    HI ABAPers,
    HOW TO MAKE SOME FIELDS AS DISPLAY MODE.
    FOR SUPPOSE, THERE ARE 5 FIELDS in SM30.
    AMONG THEM 1 FIELD SHUD BE USED FOR EDITING AND THE OTHER 4 FIELDS SHUD ONLY BE USED FOR DISPLAY PURPOSE
    WHEN EVER I ENTER A VALUE IN THAT 1 PARTICULAR FIELD THEN THE DATA OF THE REMAINING 4 FIELDS SHUD BE DISPLAYED IN THE SAME SCREEN ITSELF.
    HOW CAN IT BE POSSIBLE...
    PLZ HELP.
    THNX IN ADV,
    SP.

    Hello SP,
    You can create a maintenance view for the table & here you can define the maintenance attribute for individual fields.
    For the fields you want to be READ-ONLY pass 'R' to those fields. (It is the 4th column from the left, the one to the immediate left of the Key column).
    Don't change the TMG function group directly. If you regenerate the TMG the changes would be overwritten !
    You can use the Event '01' to fulfill your requirement:
    *&      Form  f_event_01
    *       text
    FORM f_event_01.
      DATA: v_indx TYPE sy-index,
            v_land1 TYPE land1,
            v_name1 TYPE name1.
      FIELD-SYMBOLS: <vendor> TYPE lifnr,
                     <val> TYPE ANY.
      BREAK-POINT.
      "TOTAL contains all data which are read, changed and created in TMG
      LOOP AT total.
        IF <action> = neuer_eintrag " New Entry.
        OR <action> = aendern "Changed entry
        OR <action> = original. "Same as DB
          READ TABLE extract WITH KEY <vim_xtotal_key>.
          IF sy-subrc = 0.
            v_indx = sy-tabix.
          ELSE.
            CLEAR v_indx.
          ENDIF.
          ASSIGN COMPONENT 'LIFNR' OF STRUCTURE total TO <vendor>.
          CHECK sy-subrc = 0.
    *     select data from the LFA1 based on LIFNR
          SELECT SINGLE name1 land1 FROM lfa1
            INTO (v_name1,v_land1)
            WHERE lifnr = <vendor>.
          CHECK sy-subrc = 0.
    *     Populate the hidden fields NAME1 & LAND1
          ASSIGN COMPONENT 'NAME1' OF STRUCTURE total TO <val>.
          CHECK sy-subrc = 0.
          <val> = v_name1.
          ASSIGN COMPONENT 'LAND1' OF STRUCTURE total TO <val>.
          CHECK sy-subrc = 0.
          <val> = v_land1.
          MODIFY total.
          CHECK v_indx GT 0.
          extract = total. "Pass the changes in TOTAL to EXTRACT
          MODIFY extract INDEX v_indx.
        ENDIF.
      ENDLOOP.
      sy-subrc = 0.
    ENDFORM.                                                    "f_event_01
    BR,
    Suhas
    Edited by: Suhas Saha on Aug 16, 2010 11:58 AM

  • How to make a page read only

    Hi all,
    Can anyone please help me out on the following issue.
    How to make a total page read only, so that he/she can not make any changes. I want the total page read only.
    Do we have any functions to do that?
    I need to do through peoplecode only because i have to check a condition.
    Please help me.
    Thank you,
    Bye.

    Without customizing, this may be accomplished via Permission List Security.
    Go to PeopleTools - Security - Permission List
    Select the desired Permission List. Click on the Pages tab.
    Find the menu and click on "Edit Components" hyperlink.
    Find the Component on the List and click on the "Edit Pages" hyperlink.
    Click on the Display Only check box for each page in the component you wish Display Only.
    If that does not sufice, you may use PeopleCode to set the Field DisplayOnly property to true for those editable fields that you wish not to be.
    HTH
    Steven E. Davies

  • How to make my card reader  open in camera raw when I insert  sd card with Canon 6d images and also link to CC version Ps?

    How do I make camera raw and photoshop cc open when I insert sd card from 6d canon. this canon code was not supported in my cs5 Ps.

    I could see you wanting LR ,Bridge or some other image organizer to open.  ACR is not a start able application and Photoshop has no feature to import images from your camera's sd media to computers storage devices.  I just use Windows File explorer.  Look at your OS learn how to change you card reader's autoplay settings. On windows you will find information like this.

  • How to make iMovie to read ADVC-110???

    I'm struggling how to make iMovie to recognize my Canopus ADVC-110 so I can transfer my VHS tapes to iMovie..
    Pleease help

    Hi s
    < When I open up iMovie HD - which video format do I use? >
    • DV
    • Go down under the viewer window and You can select Camera or a pare of siccors.
    Camera should have a black triangle and let You select iSight or ADVC. If not it doesn't detect the
    ADVC
    • Most probably it is. 6-pin end is about double the size and is rectangular eccept on short end that
    are curved to prevent wrong turning
    4-pin end is smaller and has an indent on one of it's longer sides for same reason.
    If it is not dectected on either of Your Macs it indicates a problem with either the ADVC or the FW-Cable.
    • The Cable is far more often the problem. Try to borrow another one and test.
    HERE Comes my long long list. Use it with care - not all apply to Your situation.
    I would print-out and cheque off those that are usably. No guarantee at all.
    Capture/Import problems:
    a) File-Vault is on - turn it off
    b) don’t Daisy chain camcorder - external hard disk - Mac
    (except for some Canon-Cameras)
    c) Slow hard disk (fragmented: repair permissions, repair hard disk, use a faster hard disk)
    d) Something is occupying the CPU/System, like other programs, Internet etc.
    e) Bad RAM-chips
    f) drop outs on the miniDV-tape - make a camera to camera copy on a tape which You have previous recorded with a time code (dummy recording).
    g) FW-wire cable OK?
    h) Break in the time-code on the miniDV tape (make a camera to camera copy on a tape which is prerecorded with nothing/anything so that the tape has a time-code from beginning to the end)
    i) defective camera TRY IT ON ANOTHER MAC !
    j) remove bookmarks in iMovie project
    k) Do You have desktop pictures or screen-savers active? Try turning them off.
    l) Updating - OS has to be a clean install - not an update eg from X.3.x to X.4.x (no good)
      OS X.4.0-2 needs a clean install to work (I use X.3.9)
    m) Updating QT and/or other updates (to 7 needs v6 to be cleaned out first)
      QT v.7 needs a clean install to work (I use 6.5.2)
    n) Have you tried the crazy fix:
    Open GarageBand, play a few notes, close it and reopen iMovie. The camera should import fine now. (Sue/SDillini)
    o) NEW (from Sue/SDillini):
    Trash the Font Collections Folder.
    These files are found:
    /YourUserName/Library/FontCollections folder.
    Drag the folder to the trash and launch iMovie. iMovie will create a new FontCollections folder containing the files it needs when it next opens.
    p) or thrashing the com.apple.imovie.plist file (Rodney Brown2)
    q) - Other programs interfering like Flip4Mac
    r) - Third party or old plug-ins
    May be You find some help in my list:
    Mac:
    • hardware
    ◊ Slow hard disk (fragmented: repair permissions, repair hard disk, use a faster hard disk)
    ◊ I wonder how full your Mac's hard disc is. (David Babsky) A near full hard disk prevents Import/Capture.
    10% free is recommended + space for Import/Capture + work space (about 4 to
    5 times the amount needed for Capture) eg on a 200Gb hard disk You need 20Gb + (one hour tape)
    13Gb + 50Gb = about 80 to 90Gb free space.
    ◊ Disconnect all other ext devices (FW and USB) exept Camera (and keyboard + mouse) and try again
    ◊ Rebuild Desktop (Tech-tool or fingersetting during start-up) (System up to 9)
    ◊ Reset PRAM (Tech-tool or keyboard finger settings alt-cmd-P-R ??)
    ◊ Reset PMU ( Restting the PMU...is the the alt-ctrl-shift and powerbutton shortcut? ) (Sue)
    PMU: http://docs.info.apple.com/article.html?artnum=86760
    PMU/SMU are essentially the same in the PM G5.
    ◊ Reset SMU
    SMU: http://docs.info.apple.com/article.html?artnum=300341
    ◊ Bad RAM-chips
    ◊ disconnect Mac from powerline (not just switch off, really plug out) for a few minutes to reset FW ports
    • software
    ◊ File-Vault is on - turn it off
    ◊ Something is occupying the CPU/System, like other programs, Internet etc.
    ◊ Do You have desktop pictures or screen or energy-savers active? Try turning them off.
    ◊ Updating - OS has to be a clean install - not an update eg from X.3.x to X.4.x (no good) OS X.4.0-5 needs a clean install to work (I use X.3.9)
    ◊ Updating QT and/or other updates (to 7 needs v6 to be cleaned out first) QT v.7.0.0-4 needs a clean install to work (I use 6.5.2)
    ◊ Have you tried the crazy fix: Open GarageBand, play a few notes, close it and reopen iMovie. The camera should import fine now. Sue/SDillini
    ◊ Running iDVD at the same time as iMovie can cause problems: (Lennart Thelander)
    ◊ If You also have installed FinalCut Express/pro there are possibly problems with this
    ◊ Other programs that interferes like Flip4Mac
    ◊ Codecs added to QuickTime
    ◊ Old plug-ins to iMovie or third party alike
    iMovie:
    ◊ remove bookmarks in iMovie project
    ◊ Trash: com.apple.iMovie.plist and com.apple.iMovie3.plist : files (Xinram)
    Connection:
    ◊ don’t Daisy chain Camcorder <--> external hard disk <--> Mac
    ◊ FW-wire cable, is it OK?
    ◊ USB/USB2 is NO GO !
    ◊ Cheque FW connection at Camera end. OK? (Adam Smith1)
    ◊ Cheque FW connection at Mac end. OK?
    Camera:
    ◊ The Camera is set to VTR ? (not as when You ”film” record with it)
    ◊ You may be need to go to the Camera menu and select digital out.
    ◊ defective camera TRY IT ON ANOTHER MAC ! (if the A/D chip in the camera is harmed then it will say in iMovie that the camera is connected and You can forward resp. backward the tape but there will be no picture or sound just the blue screen).
    ◊ connect camera to power-line, not battery-only....(Karsten Schlüter)
    ◊ Canons don't allow daisychaining on firewire, make it "only device" on port (Karsten Schlüter)
    ◊ Cheque the menu on Your Camera so that it communicates with the FW digitally to Your Mac
    ◊ Date and Time is correct on Your Camera ?
    Tape:
    ◊ Drop outs on the miniDV-tape - make a camera to camera copy on a tape which You have previous recorded with a time code (dummy recording).
    ◊ Break in the time-code on the miniDV tape (make a camera to camera copy on a tape which is pre-recorded with nothing/anything so that the tape has a time-code from beginning to the end)
    ◊ If You recorded in LP-mode (90 min on a standard 60 min tape with 12-bit sound). Try to change in iMovie pref. to import but not as individual clips. If this doesn’t work You have to make a Camera to Camera copy with the receiving Camera set to SP-mode and 16-bit sound.
    More:
    ◊ follow advises here http://docs.info.apple.com/article.html?artnum=43000
    ◊ follow Grandmaster Dan's advice for Sony cameras here: http://www.danslagle.com/mac/iMovie/usage/5020.shtml
    NEWS: Jerry Harris writes:
    I know that in a lot of the new Sony HD cameras, iMovie requires that you turn i.Link Conv off. I would look for a similar setting for your camera. This setting has to do with shooting a movie in one format, and using the camera to import as a different format. For instance, if you shoot HD footage and have i.Link conv on - the camera will send DV to the computer etc...
    So, case in point: look for a setting on your camera that has to do with the video format and see if that helps.
    Yours Bengt

  • How to make form register in adobe edge?

    hy, how to make coding form register in adobe edge? please help me

    hy, master uboss..
    could i ask again?
    i was tried it as your suggestion but after i fill it data still cant send to database..
    could you give some suggestion longer?
    file connection.php
    <?php
    $host = "localhost";
    $user = "root";
    $password = "";
    $database = "register";
    mysql_connect($host,$user,$password) or die ("database tidak terhubung, cek koneksi");
    mysql_select_db($database);
    ?>
    file proses.php
    <?php
    include "koneksi.php";
    $password=$_POST['password'];
    $username=$_POST['username'];
    $email=$_POST['email'];
    $fullname=$_POST['fullname'];
    $query=mysql_query("insert into daftar(password, username, email, fullname)
    value('$password','$username','$email','$fullname')");
    if($query){
    echo "Data Berhasil ditambah";
    ?><a href="/bukutamu.php">  Lihat Data Masuk</a><?php
    }else{
    echo "Gagal input data";
    echo mysql_error();
    ?>
    file login.php
    <!DOCTYPE html>
    <html>
    <head>
      <meta http-equiv="Content-Type" content="text/html; charset=utf-8"/>
      <meta http-equiv="X-UA-Compatible" content="IE=Edge"/>
      <title>Senza nome</title>
    <!--Adobe Edge Runtime-->
        <meta http-equiv="X-UA-Compatible" content="IE=Edge">
        <script type="text/javascript" charset="utf-8" src="login_edgePreload.js"></script>
        <style>
            .edgeLoad-EDGE-1488021 { visibility:hidden; }
        </style>
    <!--Adobe Edge Runtime End-->
    </head>
    <form action="proses.php" method="POST">
    <body style="margin:0;padding:0;">
      <div id="Stage" class="EDGE-1488021">
      </div>
    </form>
    </body>
    </html>
    after submit
         database---->>> stil blank...

  • How to make form fields "Clickable"

    Hey Guys,
    I created a Fillable PDF Form with Form fields using ADOBE Acrobat 9.0 Pro-Ex + LiveCycle Designer for Windows XP.
    My question is when you create a form, is there a way to make form fields "clickable" instead of just auto-tab? Because if you mess up when filling out the form, you don't want to have to tab through the whole document just to get back to that spot. How can i fix that?
    My other question is, when printing the form, the form field "text boxes" always show up. Is there a way to hide the boxes and just print the form without them. (The information that was filled in will still show, just the outline of the boxes won't?)
    Thanks a bunch,
    Joseph

    Unfortunately I don't know enough about Designer to tell you what you did to make the boxes unclickable, but for me I've never had an issue doing that.
    However, I can tell you what you need to do to get rid of the boxes around each of your text fields.
    1. In design mode, select the field(s) you wish to get rid of the borders on. (If all you have are text fields, you can press Ctrl+A to select all fields. If not, you can hold down the Ctrl button while left-clicking each field to change all text fields at once.)
    2. Open the Object window (Shift+F7 toggles this on and off). Find the option for Appearance.
    3. Click the drop down menu next to Appearance and choose none.
    4. The borders will now be gone from the text fields.

  • Can 3 vertical Radio Buttons span 3 rows in a table? AND how to make form highlight when radio butto

    I am trying to add 3 grouped vertical radio buttons where one is on each line of a 3 row table. When I group the 3 buttons it squeezes them into one row, is there a way I can have them grouped and one in each.
    Also, I would like to know how to make part of the form highlight when one of the 3 buttons is selected

    Hi,
    If I am not wrong, a table cell can hold only one component or none. In order to place the radio group to different positions vertically, you can use subforms instead of table.
    Asiye

  • How to make a PDF viewable only through an URL or a link?

    Hi
    I'm a newbie to Adobe Lifecycle ES. My ultimate aim to use this suite is to make my pdf viewable only through an URL or a weblink. The system must not allow the user to view the PDF without the particular URL. Is it possible to acheive this through Adobe Lifecycle ES? Please do reply as i'm in an urgency to finish my task.
    Thakns in advance

    If you are trying to control access to the actual URL where the Rights Managed PDF you would need to set up a way to authenticate users to allow them access ot the URL.  This would be done on the web\app server, not using Rights Management ES.
    You would use Rights Management ES to apply a policy to the PDF itself.  A policy controls who can view (open) the document, and once the user authenticates to the RM server to open the document, RM controls the permissions that that user has for the document (i.e. can the PDF be printed, can content be copied etc...)  RM cannot be used to control who can download a PDF form a URL.  Policies can also control if the user must be online and connected to the RM server to open the PDF, or you can allow "Offline" access for a set period of time where the user does not need a connection to view the PDF, however the user still needs to be authenticated to view the document offline.
    Regards
    Steve

  • How to make report that contains only summaries?

    How to make a report in Designer/2000 that shows only summary fields? For example something like:
    select count(*) from emp;
    null

    How to make a report in Designer/2000 that shows only summary fields? For example something like:
    select count(*) from emp;
    null

  • How to make textfield to take only numbers, & it wont allow us to enter any other characters

    make textfield to take only numbers, & it wont allow us to enter any other characters

    Clean up the code a little (credit goes to Sakthivel
    var oInput = new sap.ui.commons.TextField();
    oInput.onAfterRendering = function() {
      if (sap.ui.commons.TextField.prototype.onAfterRendering) {
        sap.ui.commons.TextField.prototype.onAfterRendering.apply(this, arguments);
      this.$().keydown(function(event) {
        var ctrlKey = event.ctrlKey;
        var altKey = event.altKey;
        var shiftKey = event.shiftKey;
        var key = event.keyCode;
        return (
          ctrlKey ||
          altKey  ||
          ( 47 < key && key < 58 && shiftKey === false) ||
          ( 95 < key && key < 106 ) ||
          ( key === 8) || (key === 9) ||  
          ( key > 34 && key < 40) ||
          ( key === 46)
    oInput.placeAt('content');
    -D

Maybe you are looking for

  • Error  : Unicode setting doesnot match source system in BW

    Hi All, While replication data in BW  im facing the following error : unicode setting doesnot match source system. Kindly suggest. Regards, Amit Miglani.

  • Set up FileMaker DSN is Cold Fusion administrator

    I am trying to set up a dsn to filemaker pro 11 database in the cf administrator. I am at the Datasources > Other screen and there are questions there that I know I dont have answered correctly. Here is the error message I get. "No suitable driver av

  • Image not displaying help!

    Ok this is probably me being really stupid but i have a servlet which i compiled then put the class file in the correct folder (i am using tomcat ) the servlet has this: out.println(ServletUtilities.headWithTitle(title) + "<BODY BGCOLOR=\"#a00e0e\">\

  • "Lens Model" metadata field

    I have been using Aperture 2 version 2.14 for about a week. Yesterday I noticed that a master showed one lens model and a version of that master showed another. The correct data is associated with the master and is "EF24-70mm f/2.8L USM" but the vers

  • New pricing procedure for Credit memo request

    Hi All, I used pricing procedure ABC01 for sales and billing. I want to use new pricing procedure ( ABCO2) at the time of creating credit memo request, this credit memo req is with reference to Billing document. If I dont use with ref to billing docu