Radio Button problem (not yet solved !!! --- Top Urgent )

In Forms 5.0,I have created a entry screen which consists a
radiogroup with 2 radio buttons. In new-form-instance trigger, I
have written: execute_query ;: last_record;
It shows me the last record but it shows my radio group with no
button selected.: If I go back to the previous record, it shows
me the record
with : one of the radio button selected.
My question is why it does not show radio button selected when my
when-new-form-instance trigger fires ?
Please note : Property palette of Radio Group & Radio buttons
have been correctly assigned .
null

Shamsad Khan (guest) wrote:
: In Forms 5.0,I have created a entry screen which consists a
: radiogroup with 2 radio buttons. In new-form-instance trigger,
I
: have written: execute_query ;: last_record;
: It shows me the last record but it shows my radio group with no
: button selected.: If I go back to the previous record, it shows
: me the record
: with : one of the radio button selected.
: My question is why it does not show radio button selected when
my
: when-new-form-instance trigger fires ?
: Please note : Property palette of Radio Group & Radio buttons
: have been correctly assigned .
Shamsad Khan,
In Forms5.0, try setting Mapping of other values properties.
regards.
null

Similar Messages

  • "Did not respond" (similar threads have not yet solved)

    Please help.
    Background: new mac user who bought powerbook g4 to keep in touch with family overseas on iChat. continually receiving 'did not respond' message whether initiator or receiver of video chat invitation (text chat is OK). I've read several threads on the subject and reconfiguration attempts to date have not yet solved the problem.
    Current setup:
    Westell 6100 modem with DSL connection >>
    Linksys RT31P2 voip router >>
    Linksys WRT54GX4 wireless router
    --Ports open on both devices per thread and portforward.com suggestions: 5060, 5190, 5220, 5222, 5297, 5298, 5353, 5678, 16384-16403
    --mac firewall off
    --tc/ip airport connection using DHCP
    Other solutions attempted:
    re-order of routers, modem>>wireless router >> voip router = no success
    Thank you kindly in advance for any advice.
    --Betsey
    powerbook g4   Mac OS X (10.4.5)  

    Hi betseygkeely,
    Welcome To The Apple Discussion Pages.
    If you are using a VoIP service reorder the devices.
    Modem <-> Linksys WRT44GX4 <-> Computers and Linksys RT31P2 on different ports from the Links WRT
    Make sure the Westell is not doing DHCP.
    Get the Linksys WRT45GX4 to do any DHCP if anything does.
    Set the UPnP in the Linksys WRT45GX4 in the Adminsration tab.
    9:39 PM Sunday; February 26, 2006

  • Exporting build - destination devices radio buttons are not there

    I created an ios project using flash builder 4.5. but when i go to export a final build the target device radio buttons are not there on the interface. it has to be an installation issue but i've uninstalled and reinstalled multiple times with no success. has anyone else had this issue?
    thanks

    here is a screen shot

  • Can't See Shared Music (Not radio button problem!)

    I haven't been able to see Shared Music on my college network since I reinstalled Windows XP (around iTunes 4.8). I don't know what settings have changed.
    I now have the latest iTunes, the radio buttons are on. I heard about opening up a port, and bonjour service. I'm not sure how to execute those solutions.
    Thanks for your time,
    Connie

    Although that was a very helpful hint that I can in fact play Mac's iTune Music on iPad without syncing, it's not solving my primary issues, which are:
    1. I bought some music via iTunes on iPad and I can't get them to Mac, because that Shared label is not present in my Mac iTunes
    2. I want some of my Mac iTunes music to sync to iPad anyway, because I want to play it also when not being on home share network.
    3. When I synced iPad, many apps have been removed from it and are not there anymore, but appear in Mac's iTunes in that Apps section under iPhone, iPod touch and iPad Apps, but are not below in iPad Apps - I don't know how to get them back to iPad and how to prevent this to happen again
    These are maybe trivial questions, but I wasn't able to find answers and don't have so much time to search more.
    Thanks.

  • Radio button variable not being emailed through php file.

    Dear Forum,
    I have a contact form in a AS 2.0 file that sends the form data just fine to my email. But it doesn't send the radio button selection variable.
    I am definately doing something wrong here.  Either with the setup of the radio buttons in flash, or with the php file.
    I was wondering if someone can tell me the error in my ways.
    I have included a screenshot of flash page, download link with all files, and the php code below.
    Any advice or help would be greatly appreciated.
    Thanks
    Jeff
    Boise, ID
    email: aaajeff<at>hotmail.com
    http://www.thevodkarevolution.com/email.zip
    http://www.thevodkarevolution.com/flashscreenshot.jpg
    Email.php file:
    <?php
    $sendTo = "[email protected]";
    $subject = "revolution - message";
    $headers = "From: " . $_POST["firstName"] ." ". $_POST["lastname"] . "<" .
    $_POST["email"] .">\r\n";
    $headers .= "Reply-To: " . $_POST["email"] . "\r\n";
    $headers .= "Return-path: " . $_POST["email"];
    $body = $_POST["name"] ." ". $_POST["email"] ." ". $_POST["message"] ." ".
    $_POST["industry"];
    mail($sendTo, $subject, $body, $headers);
    ?>

    I solve that problem, you also have to add the property
    radioButton1.setOnClick("common_timeoutSubmitForm(this.form, 'rbID');");
    and with this method will call the othe method :D
    Hope this is not too latte. :D

  • Selection screen radio buttons problem

    How enable and disable the radio button in selection screen?

    Hi Ram,
    Try using the below code it may useful for solving your problem .
    SELECTION-SCREEN BEGIN OF BLOCK b1 WITH FRAME TITLE text-014.
    SELECT-OPTIONS kunnr FOR komg-kunnr.
    SELECT-OPTIONS waerk  FOR komg-waerk MODIF ID def .
    SELECT-OPTIONS pltyp FOR komg-pltyp MODIF ID abc.
    SELECT-OPTIONS matnr FOR komg-matnr MODIF ID abc.
    SELECT-OPTIONS vkorg FOR a007-vkorg MODIF ID jkl.
    SELECT-OPTIONS vtweg FOR a007-vtweg MODIF ID jkl.
    SELECT-OPTIONS spart FOR a007-spart MODIF ID jkl.
    PARAMETERS datum LIKE rv12l-datint DEFAULT sy-datum.
    SELECTION-SCREEN END OF BLOCK b1.
    SELECTION-SCREEN SKIP 1.
    SELECTION-SCREEN BEGIN OF BLOCK b2 WITH FRAME TITLE text-015.
    SELECTION-SCREEN BEGIN OF LINE.
    PARAMETERS:r3 RADIOBUTTON GROUP g1 DEFAULT 'X' USER-COMMAND ucom.
    SELECTION-SCREEN COMMENT 10(20) text-018.
    SELECTION-SCREEN END OF LINE.
    SELECTION-SCREEN BEGIN OF LINE.
    PARAMETERS:r1 RADIOBUTTON GROUP g1.
    SELECTION-SCREEN COMMENT 10(20) text-016.
    SELECTION-SCREEN END OF LINE.
    SELECTION-SCREEN BEGIN OF LINE.
    PARAMETERS:r2 RADIOBUTTON GROUP g1.
    SELECTION-SCREEN COMMENT 10(20) text-017.
    SELECTION-SCREEN END OF LINE.
    SELECTION-SCREEN BEGIN OF LINE.
    PARAMETERS:r4 RADIOBUTTON GROUP g1.
    SELECTION-SCREEN COMMENT 10(20) text-022.
    SELECTION-SCREEN END OF LINE.
    SELECTION-SCREEN END OF BLOCK b2.
    AT SELECTION-SCREEN OUTPUT.
      LOOP AT SCREEN.
        IF r1 EQ 'X'.
          IF screen-group1 = c_jkl.
            screen-input = 0.
            screen-invisible = 1.
          ENDIF.
        ENDIF.
        IF r2 EQ 'X'.
          IF screen-group1 = c_def OR screen-group1 = c_jkl.
            screen-input = 0.
            screen-invisible = 1.
          ENDIF.
        ENDIF.
        IF r3 EQ 'X'.
          IF screen-group1 = c_abc OR screen-group1 = c_def.
            screen-input = 0.
            screen-invisible = 1.
          ENDIF.
        ENDIF.
        IF screen-group1 = c_ghi.
          screen-input = 0.
        ENDIF.
        MODIFY SCREEN.
      ENDLOOP.
    Regards,
    Jana

  • Radio Button Problem

    I have placed a radio button according to http://thepeninsulasedge.com/frank_nimphius/2007/11/07/adf-faces-radiogroup-is-table-column/ .It works when I use it independently.But I have a readonly table of the Employee table on click of this I have a panel Accordin inside which I have places ADF Form the value gets populted when I have a textbox But when I replace this with the radio button according to the link the value does not get set.What may be the problem.

    Hello,
    the value of a radio group is indicated in the RADIO_GOUP item (wich properties are defined like DATATYPE, LENGTH and INITIAL VALUE).
    When you click on an option button, it is the radio group that store the value.
    Francois

  • Radio button problem in jdeveloper.

    Hello all..
    I am new to Jdeveloper and infact to CSS and stuffs. In a fix now regarding <tr:selectOneRadio> styling.
    For brevity..
    <tr:selectOneRadio styleClass="radioClass" contentStyle="font:25px bold;">
    the above is the code i have,
    but the problem is the radio button font is not changing even after giving separate style class.
    Can anyone give a solution, might be a simple one, but it ll be wonders lot for me!! [:)]
    First post in the forum, hope to get a sol..
    Appreciate ur help.. Thank you.

    Hi brano... thanks for quick response...
    The issue still exists here..
    Actually this perticular line contentStyle="font:25px bold;* inside <tr:selectiononeradio> seem not to render any effect for me.
    <tr:panelFormLayout styleClass="id">
    <p>
    <tr:outputLabel inlineStyle="position:relative; font:35px bold;"
    value="Claim number:"/>
    <tr:inputText contentStyle="height:45px; font-size:35px;"
    columns="25"></tr:inputText>
    </p>
    <p>
    <tr:outputLabel inlineStyle=" font:35px bold; position:relative;"
    value="Claim on my policy:"/>
    <span style="font:20px bold;">
    <tr:selectOneRadio layout="horizontal" contentStyle="font:25px bold;"
    id="radioYN">
    <tr:selectItem label="Yes" id="Y"
    value="Yes"/>
    &amp;&amp;nbsp;&amp;&amp;nbsp;
    <tr:selectItem label="No" id="N" value="No"/>
    </tr:selectOneRadio>
    </span>
    </p>
    <p>
    <tr:commandButton inlineStyle="width:300px; font-size:30px;"
    text="continue"/>
    </p>
    <p></p>
    </tr:panelFormLayout>
    check out the code for ref..
    Thank you...

  • Slidelet Stick Radio button does not appear

    Hi There,
    I am using two slidelets and I would like to use the "Stick" option/radio button.  However, it is not in the properties for the slidelet.  It is just not there at all as an option.  Has anyone else had this problem?

    Hi again
    When you insert a Rollover Slidelet, you are actually inserting two different areas. One is the area you mouse over. The other is the area that appears when you mouse over. You are showing the dialog for the area that appears. The dialog for the area you mouse over is what you want. When you edit the properties for the rollover area, the dialog is labeled "Rollover Slidelet" and not "Slidelet". Once you look at the properties for this dialog you should see the option you want.
    Cheers... Rick
    Helpful and Handy Links
    Captivate Wish Form/Bug Reporting Form
    Adobe Certified Captivate Training
    SorcerStone Blog
    Captivate eBooks

  • While opening a screen none of the radio button should not selected

    Hi,
    i have three radio button on the screens.By default the first radio button is getting selected for each and every time when ever i'm opening the screen.i dont want the default select should happen and even i dont want any of the radio button should be selected.
    how i can acheive through dialog programming.
    kind regards,
    Poornima.

    Hi,
    You can have radio buttons with any one field selected from a group .
    ex:
    selection-screen begin of block b2 with frame title text-042.
    parameters:r_detail    radiobutton  group g2 user-command cmd default
    'X',
           r_sumry   radiobutton  group g2,
           r_totals    radiobutton group g2.
    selection-screen end of block b2.
    or
    selection-screen begin of block b2 with frame title text-042.
    parameters:r_detail    radiobutton  group g2 user-command cmd,
           r_sumry   radiobutton  group g2 default 'X',
          r_totals    radiobutton group g2.
    selection-screen end of block b2.
    or
    selection-screen begin of block b2 with frame title text-042.
    parameters:r_detail    radiobutton  group g2 user-command cmd,
           r_sumry   radiobutton  group g2 ,
          r_totals    radiobutton group g2 default 'X'.
    selection-screen end of block b2.
    Else you can opt for checkbox and have all of them not checked.
    Regards,
    Dep

  • Radio Buttons problem

    Hi i ahve developed a GUI with 2 toggle buttons options[0] and options[1],I have also created an "OK" Button.the programming is working fine ,but i now want to implement the action performed method.The user must select which option he/she wants and then click the ok button.I am not sure how to do this in the action performed method.the first button,cancels the ticking of any radio button (clears the readio buttons)and the second bottun exits
    here is my code so far
    import javax.swing.*;
    import java.awt.event.*;
    import java.awt.*;
    public class LogOut extends JFrame implements ActionListener{
    JRadioButton[] options = new JRadioButton[2];
    public LogOut(){
    super("Log Out?");
    setBounds(225,125,140,190);
    setDefaultCloseOperation(JFrame.Exit_ON_Close);
    options[0] = new JRadioButton("Log Out");
    options[0].addActionListener(this);
    options[1] = new JRadionButton("Cancel");
    options[1].addActionListener(this);
    JPanel pane = new JPanel();
    ButtonGroup group = new ButtonGroup();
    for(int i = 0; i < options.length; i++){
    group.add[options[i]);
    pane.add(teams);
    setContentPane;
    show();
    public static main void(String[] arguments){
    LogOut lo = new LogOut();
    public void actionPerformed(ActionEvent evt){
    Object source = evt.getSource()

    I understood it as you select a check box, and then when you click the button, it should do something based on what you have selected.
    So if you continue with the code I posted,
    public void actionPerformed(ActionEvent e) {
      // the button has been clicked:
      for (int x = 0; x < options.length; x++) {
        if (options[x].isSelected()) {
          // radio button at index 'x' has been selected.
          switch (x) {
            case 0: {
              options[x].setSelected(false); // the only radio button checked..
              break;
            case 1: {
              System.exit(0);
              break;
            default: {
              System.out.println("Not defined"); // will only occur if you add more radio buttons later.
          return;
      System.out.println("No radio buttons have been selected");
    }Or is what you really want, an action to start at the moment that you select/unselect a radio button without pressing the OK button?

  • Radio button problem in webdynpro abap

    Hi Guys,
    In the selection screen i have 2 radio buttons PO and RP.
    user is allowed to select either of the one so i have created 1 radio button group.
    scenario 1:
    when user clicks on radio button 1 and then click the submit button.
    now he wants to change his selection so he again enter and click the radio button 2 and click on subnit button.
    if he goes again he can see the radio button 2 selected.so it is working fine.
    Scenario 2:
    when user clicks on radio button 2 and then click the submit button.
    now he wants to change his selection so he again enter and click the radio button 1 and click on subnit button.
    if he goes again he can see the radio button 2 selected.so it is not working fine.
    The coding is as follows:
    on action submit i have writtent the following code
    IF ls_iohncust_values-repplanonly IS NOT INITIAL.
                 IF ls_iohncust_values-repplanonly EQ 'PO'.
                   ls_profgen_custval-cust_attr      = 'REPONLY'.
                   ls_profgen_custval-cust_value     = 'X'.
                 ELSEIF ls_iohncust_values-repplanonly EQ 'RP'.
                   ls_profgen_custval-cust_attr      = 'REPPLAN'.
                   ls_profgen_custval-cust_value     = 'X'.
                 ENDIF.
               ENDIF.
    Kindly let me know why scenario 2 is not working.

    Hi Vijay,
    IF ls_iohncust_values-repplanonly IS NOT INITIAL.
                 IF ls_iohncust_values-repplanonly EQ 'PO'.
                   ls_profgen_custval-cust_attr      = 'REPONLY'.
                   ls_profgen_custval-cust_value     = 'X'.
                 ELSEIF ls_iohncust_values-repplanonly EQ 'RP'.
                   ls_profgen_custval-cust_attr      = 'REPPLAN'.
                   ls_profgen_custval-cust_value     = 'X'.
                 ENDIF.
        ENDIF.
    As I can see there is no such issue in selecting data in secord scenario. It might be the case that it's not getting cleared so you can just clear your node ls_iohncust_values-repplanonly after your endif on submit action.

  • Radio Button Problem in Webdynpro For Java

    Hi to all,
                   I am new to Webdynpro. I want to create four Radio buttons which will fetch the data from the RFC. I have created a Context value node called options and created four value attribute under that options node.
    The Problem is if i use the Radio button group by index i could map only one attribute at the "texts" field of Radio button group. how do i map the other values.
    or Is there any other way of using Radio button for such of requirements.
    Please if any one bring me the Solution to this issue it would be more help ful to me.
    Thanks in advance...
    Regards,
    Malar.

    Hi Thenmalar,
    If you want to have four radiobutton then you need to have only one value attribute within the node.
    Assume you want to have 4 radio buttons named one, two, three and four
    1. Create a value node called Radio and create a value attribute within this node called Value
    2. Bind this attribute to the radiobutton group.
    3. Define the values of these radiobuttongroup at runtime(in WDDoInit() method of the view)
    IPrivate<viewname>.IRadioElement ele = wdContext.nodeRadio().createRadioElement();
    ele.setValue("one");
    wdContext.nodeRadio().addElement(ele);
    IPrivate<viewname>.IRadioElement ele1 = wdContext.nodeRadio().createRadioElement();
    ele1.setValue("two");
    wdContext.nodeRadio().addElement(ele1);
    IPrivate<viewname>.IRadioElement ele2 = wdContext.nodeRadio().createRadioElement();
    ele2.setValue("three");
    wdContext.nodeRadio().addElement(ele2);
    IPrivate<viewname>.IRadioElement ele3 = wdContext.nodeRadio().createRadioElement();
    ele3.setValue("four");
    wdContext.nodeRadio().addElement(ele3);
    You will get the values one, two, three and four at runtime.
    Regards,
    Murtuza

  • Analyzer 5 - How to select children in radio button but not parent?

    In Analyzer 5.03, I would like to have a radio button selection box of the children of a parent. Since the option to select a subset is not available for selection controls, I am using "Also select children" which displays the parent upon page load, but then removes it when I refresh the page.What is this strange behavior all about and how can I just select the children?Any help is greatly appreciated. Thank you.-Scott

    radio.setLayout("pageDirection");Also see:
    HtmlSelectOneRadio API doc: http://java.sun.com/javaee/5/docs/api/javax/faces/component/html/HtmlSelectOneRadio.html
    h:selectOneRadio TLD doc: http://java.sun.com/javaee/javaserverfaces/1.2/docs/tlddocs/h/selectOneRadio.html

  • Installed JDeveloper 9i - RUP 6 on Windows 7 - Radio buttons do not appear

    a) I have installed JDeveloper 9i/RUP 6 on Windows 7 (64 bit)
    b) Database connection, application connection is fine.
    c) I am able to run some of the sample projects, able to connect Oracle applications etc..
    d) In JDeveloper settings window, radio buttons, check boxes etc do not appear/show-up
    For example JDeveloper --> Tools --> Preferences --> Embeded OC4J window
    None of the radio buttons appear.
    Would appreciate, if you can help.
    Thank you,

    Would you be able to share what you did to get JDeveveloper 9i to run on Win 7 64-bit? If so, what's a good way to get in touch maybe offline?
    When you say 9i, does that mean JDeveloper 9.0.3 ? that's the version I want to run.
    Thanks,
    Skip

Maybe you are looking for

  • Oracle 8.1.5 for linux, install help.

    Does anyone have a successful installation of Oracle 8.1.5 running on Red Hat 6.0? I have tried to install it but, I can't get the installer to run. I get java errors when I run, runInstaller. I have installed jre1.1.6. Any help would be appreciated.

  • Tip: Convenient external drive unit + more

    I did a search and didn't see this idea listed. With the introduction of the Mac Mini some time ago, a number of small expansion devices have shown up on the market to enhance it. The reason I bring this up, is that these devices not only work with t

  • Signal Algorithm help

    I have two signals.   Signal 1: 0-5V trigger signal.  During the time duration of interest, the trigger will go high 4 times for 1ms each.  In my software, I need to find the last trigger, which I can do easily. Signal 2: From about 0 to 30ms, the si

  • Opening new browser window from backing bean

    Is it possible to open new window from backing bean? Regards, Simy

  • Remove last char of string

    Hi Guys How can I remove the last char of a String ?