Value of a read only check box is always null

Hi,
I have a read-only check box in my form which fetches its values using Y or N value from table. If the value fetched from the table is 'Y' then check box is checked.
But when I tried to assign the value of this check box to some other item it is always showing null. When I made the check box editable then it started showing the value.
I appreciate if some one can share their thoughts if dealt with similar kind of issue.
Thanks in advance.
-Raj.

Read-only items often have the "disabled" attribute which prevents them from being POSTed so you can't pass their values from the browser to the application. Since you get the value from the database, why not simply fetch that value again after the page is submitted using a computation to set the other item's value?
Scott

Similar Messages

  • How to disable/read-only check box in Receiavbles receipt application forms

    HI,
    1- I am trying to freeze the check box of apply in receipt application form but it  is not working properly some times its working fine and some time it is not. I am using when new record instance when I am using up arrow and down arrow key it is working fine, but if I am on first record and click the mouse on second row or third row using mouse It is not working and user can un- apply the receipt
    2- Due to 1 point I tried using disable that check box but it is show some error 'frm-41017 cannot set update allowed attribute of non-enabled item'.
    Please advice how can I achieve this.
    Requirement is if a receipt is related to some order then user should not allow to un apply this line from applications if it is manually applied to some invoice or credit memo then user can un apply this line from receivable application lines.
    Thanks & Regards

    Looks like your question is about the E-Business Suite version of Receivables.  As this forum is dedicated to the Fusion line of applications, please repost your question in the EBS forums to increase your chances of getting a helpful reply.
    thanks,
    Oliver
    Fusion Apps Developer Relations

  • Field only check box in extraction

    Hi
    what is use of field only check box in extraction
    for selection its reflect data selection tab at infopackage
    hide menas its wont reflect
    inversion menas multiple with -1
    field only is anothe one
    what is use of field only
    regards
    suneel.

    HI Suneel,
    Hide and filed only are depend on each other... For example u have done the enhancement to the data source with the Revenue field. And revenue is nothing but Price * Quantity. And price and quantity u have these fileds in data souce already but u dont want them in BW. U want them in the calculation.
    So we select Hide to not to come into BW and Field only to use them in the calculations.
    Khaja

  • Char Only check box in Transfer structure

    Hi Gurus,
    I am new learner of SAP. I would like to know what is Char Only check box in transfer structure.
    Regards,
    Arun

    Hi
    I think if u opt that option u will only have to map the characteristic infoobjects to ur data target.Transfer structure is the one which denotes the fields we select from extract structure
    For ex if we select 70 records out of 100 rec in extract structure in datasource,then those 70 records are transfer structure

  • Field only check box

    Hi Friends,
    what is the use of field only check box iam littelebit confused, could you explain me clearly.
    Thanks and Regards
    Venkat.Marneni

    Hi,
    If you do enhancement for a datasource it will be used:
    The indicator Field known only in Exit is set for the fields in an append structure, meaning that by default, these fields are not passed to the extractor in the field list and the selection table.
    So by default it won't get data, so remove the tick mark and then do the mapping in BW.
    Thanks
    Reddy

  • Can you force a value into a read-only numeric data member?

    I have code that will force a value into a numeric data member. Unfortunately the numeric data member in question is read-only. Can you force a value into a read-only numeric data member?

    Andre,
    I think you should get together with the other engineers there at NI. I spoke to one on the phone yesterday and he told me that the read-only aspect relates to writing between the database and PLC. I'm trying to write to the database and he told me that I could do it.

  • Calculate only checked boxes that are checked. Other "lines" of boxes do not have a value. HELPPPPPP

    I have say 6 possible lines. Each line will allow the user to enter employee goals. Then to the right of that, there are radio buttons that the user will check, marking the percentage that particular goal is complete. However, not every employee will have 6 goals, they may only have 3 and some may have all 6 or say, 2. What I want to do is only calculate those lines which have a goal and a percentage marked. So in the end, I want to total the checked boxes which will each have a value and then divide that by the number of goals for that particular employee.
    PLEASE, explain this to me so I can understand it. Like I said, I am extremely new to creating forms and LiveCycle. I really hope I can get the answer to this.
    Thank you in advance.

    And NOW, when I am attempting to put in my script for the radio buttons that have values, the area where it should total is NOT correct. This is my script:
    $=Page1.RadioButtonList.unlead1+xfa.resolveNode("Page1.RadioButtonList.#field[1]")+xfa.resolveNode("Page1.RadioButtonList.#field[2]")+xfa.resolveNode("Page1.RadioButtonList.#field[3]")+
    xfa.resolveNode("Page1.RadioButtonList.#field[4]")
    The area that has the total, only has the number 5 in it when I click on the first checked box. (radio button) however, the value is set at one. PLEASE help, I am about to rip my hair out.

  • How to read the check box value in alv report

    hi experts,
    i m working on one alv report where i m using the check box for field selection in alv display.
    but i don't know how to read the only selected fields.
    wa_fieldcat-fieldname = 'BOX'.
      wa_fieldcat-tabname = 'IT_HEADER'.
      wa_fieldcat-seltext_m = 'Box'.
      wa_fieldcat-checkbox = 'X'.
      wa_fieldcat-input = 'X'.
      wa_fieldcat-edit = 'X'.
      APPEND wa_fieldcat TO i_fieldcat.
      CLEAR wa_fieldcat.
      wa_fieldcat-fieldname = 'AUFNR'.
      wa_fieldcat-tabname = 'IT_HEADER'.
      wa_fieldcat-seltext_m = 'Sales Doc'.
      wa_fieldcat-hotspot = 'X'.
      APPEND wa_fieldcat TO i_fieldcat.
      CLEAR wa_fieldcat.
      CALL FUNCTION 'REUSE_ALV_GRID_DISPLAY'
       EXPORTING
         i_callback_program                = v_repid
         I_CALLBACK_PF_STATUS_SET          = 'SET_PF_STATUS'
         i_callback_user_command           = 'USER_COMMAND'
         i_callback_top_of_page            = 'TOP_OF_PAGE'
         it_fieldcat                       = i_fieldcat[]
         i_save                            = 'A'
         it_events                         = v_events
        TABLES
          t_outtab                          = it_header
    EXCEPTIONS
      PROGRAM_ERROR                     = 1
      OTHERS                            = 2
    *&      Form  USER_COMMAND
          text
         -->R_UCOMM    text
         -->,          text
         -->RS_SLEFIELDtext
    FORM user_command USING r_ucomm LIKE sy-ucomm
    rs_selfield TYPE slis_selfield.
      CASE r_ucomm.
    when '&RELEAS'.
    endcase
    endform.
    i gone through some already posted que for same problem i tried options like
    loop at it_header.
    endloop.
    but i m getting box field empty.
    is there i missed something? plz sugeest.. if u have any other solution plz post...

    Have this code in your user command fm:
    * For capturing changed data
      CALL FUNCTION 'GET_GLOBALS_FROM_SLVC_FULLSCR'
        IMPORTING
          e_grid = w_grid.
      CALL METHOD w_grid->check_changed_data
        IMPORTING
          e_valid = w_valid.
      IF w_valid = 'X'.
    loop at itab where mark = 'X'.
    endloop.
    ENDIF.
    Regards,
    Ravi

  • How to get selected row values in a table using check box

    Hi ADF Experts,
    JDEV Version 11.1.1.7.0
    My requirement is getting the selected row valuesof a af:table using a checkbox(multi select).
    Thanks,
    Animesh

    Hi,
    add a transient attribute to the POJO entity and update this through a check box. The ensure you have autosubmit=true set on the check box. In a value change listener set or remove the row's checbox attribute value
    Frank

  • Assigning a value to a Read-only Segment of DFF

    Hi Friends,
    I have a read-only segment of DFF. I want to assign a value based on the value entered in other segments to this read-only segment. There are a couple of issues I am facing. I am not able to get a handle to this read-only segment and also how can we assign the value to this segment..
    Any ideas please
    Thanks in advance

    Hi Friends,
    I have a read-only segment of DFF. I want to assign a value based on the value entered in other segments to this read-only segment. There are a couple of issues I am facing. I am not able to get a handle to this read-only segment and also how can we assign the value to this segment..
    Any ideas please
    Thanks in advance

  • Passing column values to another tab if check box selected in that row

    Hi
    I have the following requirement.
    I have a table that gets populated by a web service. Have added one more field to it which is a check box. Th requirement is that I need to pass the values of column (say id) from each row which has it's check box selected, as input parameters to a web service in another tab.
    example: table has fileds id, name, address,checkbox. If there are 5 rows and the user select 1 and 2 then I need the ids of 1 and 2 to be passed to another tab.
    Is this possible  ........
    Thanks

    Hi
    I just don't want to make multiple selection but pass the values of a column from the selected rows to another tab to be used as input parameters to a web service.
    I want to know how to pass the values(of one filed) of the selected rows across tabs/switches.
    Thanks

  • Using screen reader with check boxes.

    Hello All,
    I have a check box on a form.  Upon tabbing to the check box the custom text is read by the screen reader.  The custom text provides an explanation of the field as well as the current state (unchecked).  Is there a way to have the screen reader announce the state of the check box upon changing from unchecked to checked?
    If this required scripting or the use of alternate text, an example or explanation would be greatly appreciated.
    Thanks,
    Jelf12

    Jelf12,
    You should be careful about providing too much information in the CSRT, I usually recommend that people just rely on the caption text for checkboxes -- if the information is sufficient for sighted users, then in combination with the information provided to the assistive technology via our accessibility API in Adobe Reader the information should be sufficient for non-sighted users.
    For example, if you have a checkbox that has a caption that is "Please send me information about new offers", that would be fine for screen reader users because when they land on the checkbox they will hear "please send me information about new offers, checkbox checked" and if they uncheck it (you can assume that how to toggle a checkbox is common knowledge so don't need to convey this information) they will hear "Unchecked".  If the user tabs away and tabs back they will hear the full explanation again, except with the changed state reported.
    It is tempting to overdo it, but for most checkboxes all you need to do is make sure that the screen reader precedence is set to "Caption" and move on.
    AWK

  • Need help making digital signature field read only if required fields are null

    Using Adobe LiveCycle Designer, I have a digital signature field.  I want to prevent users from being able to digitally sign the pdf if any required fields in the pdf are null or blank.  I'm a newbie to scripting so any detailed help would be greatly appreciated.  The required fields in the pdf include radio buttons, check boxes, text field, etc.  I appreciate any help anyone can provide.
    Thanks

    Exactly how you check a field for being empty depends on what type of field it is. For text fields, you should get the field's value as a string and compare it to an empty string, something like:
    var val = getField("Text1").valueAsString;
    if (val) {
        app.alert("Field is not empty");
    If there is a default value that needs to be changed, you would compare to the default value:
    var f = getField("Text1");
    var val = f.valueAsString;
    if (val !== f.defaultValue) {
        app.alert("Field value is OK");
    For check boxes and radio buttons, you'd compare to the string "Off", which means none in the group is selected.
    For dropdowns (combo boxes) and list boxes, there is normally one value selected, so you would have to get the value and check against the default value (or something else) to see if the field is properly filled in.
    You could place the script there, but I usually use a separate button that I encourage the user to click in order to check the field. The problem with using the Will Save event is you can't prevent the save from happening.
    The script can loop through all of the fields (and test all required ones), or you could set up an array of field names to check.

  • In the download box, the check box for "always do this for this type of file" is grayed out for the type of file I want, and that application does not appear in the application menu, so how do I set it to perform this function every time?

    The file type in question is InCopy, and the download box acknowledges that program as the type to open it with, but I never want to open it; I always want to save it. This feature works fine with other file types, but not with InCopy. I download thousands of files, so automating this is very important.

    The file type in question is InCopy, and the download box acknowledges that program as the type to open it with, but I never want to open it; I always want to save it. This feature works fine with other file types, but not with InCopy. I download thousands of files, so automating this is very important.

  • Until today, on a particular site I access multiple times daily, the username was always present, until I checked box today, alway remember password. How do I get back to the username always present, without having to click the box?

    I really want the username and password info to stay in the respective boxes without having to do anything to get them there, like they have been the last three years until today. (This is on a site I access multiple times daily, and is not a site having any security issues).

    Double-click within the box, then for each incorrect user name, select it, and press "Del" key
    (Mac users will have to use "Shift+Del" instead of just "Del" key)

Maybe you are looking for

  • Proxy Runtime errors in Integration Engines at RWB

    Hi Experts, We have configured the point to point configuration scenario in our landscape. I have two ABAP systems exchanges data using PI. I have configured both the ABAP systems as Application Systems and Corresponding Integration server as my PI s

  • From mac mini 120 Go to mac mini 500 Go ?

    How can I transfer all my data from mac mini 120 Go to mac mini 500 Go ?

  • Not within range of device-HP printer

    Hello, I just purchased a HP Photosmart C4580 All-in-One Printer. I'm trying to setup the printer to read my wireless network. It reads the correct one, but when I type in the network security key (I'm assuming this is the password for my wifi networ

  • Link Between LIPS, VBFA and EKKO

    Hi All, I've a requirement where in i need to extract the data from LIPS based on EKKO. while extracting the data from LIPS i need to check VBFA and then VBFA with EKKO. please let me know is there any relationship between LIPS, VBFA and EKKO. REgard

  • 5 Minute video - But only exports :30 seconds...Help Please!

    It's my first project on Final Cut Express HD. When I export it to a Quicktime movie, it exports the complete 5 minute video. When I export it using quicktime conversion to wmv. it only captures the first 30 seconds or so of the video. Why is this ha