How to create a message check boxes group dynamically in OA Framework

Hi all,
I am developing a custom OAF page. It is a master-detail page. And I am having some difficulties to build that.
Firstly, I need to create a dynamic message check boxes group. These check boxes will get the prompt from a standard database table's column. Let's say I have table X with description column and it has 7 rows. Values of description column are A,B,C, ...etc. Then my master region on the page will have 7 check boxes with the prompts of A,B, C... Check box number will depend on the row/rows that this table has.
The other requirement is to create master and detail rows that depends on the number of any checked check boxes. If 2 check boxes are checked then we need to create 2 rows of master data and detail data too.
Does any of you have any ideas or suggestions to do that?
It is urgent, any help would be appreciated.
Thanks in advance and regards
PS: Is it possible to do that? Can anyone put some light on this thread please?
Edited by: user1742330 on Aug 12, 2012 4:23 PM

Please help me out with this issue...
I am in a very urgent situation. Any idea about this thread???

Similar Messages

  • How to create a new check box using form personalization.

    Hi Frs,
    I have a requirement to create a new check box in AP form using form personalization.
    Pls help me in achieving this.
    Note: we have to use only form personalization not custom.pll.
    Thanks
    Rajesh

    Pl see ML Doc 420518.1(Limitations of Forms Personalization) for a list of things you cannot do with personalization - among them is creating new form objects such as checkboxes.
    HTH
    Srini

  • Refreshing the 'Check Box Group' UI element

    Hi ,
    The requirement is the 'Check Box Group' UI element should be refreshed automatically . I am dynamically creating the 'Check Box Group' UI element and want to refresh it once I transfer the checked values from the Check Box group.
    How this can be realized !!!
    Best Regards
    Sid

    Hi Sid,
    CheckBoxGroup UI element`s content is done by binding property <i>texts</i> with appropriate attribute in context node. So, if you change data node and node elements, this will affect UI element immediately.
    Best regards, Maksim Rashchynski.

  • About gr message check box in me21n

    Please any one can explain the purpose of the field gr message check box in the header part in the delivery invoice tab page while creating purchase order t-code me21n
    regards and thanks
    satya

    HI.
    Sathya
    We are required this same scenario
    Can u please know how to do GR message setup..
    How u did it.
    Regards
    Sk

  • How to get the "delete" check box back?

    Hi Guys,
    I just used the "Migrate to Interactive Report" feature. After doing so, the check box is gone that is used to indicate rows to delete. A copy of the region is marked as "disabled" and the check box is still there, but it's not in the newly created region. Without that check box, my page has no way to delete rows. How do I add the check box to the new Interactive Report region? I'd rather not re-create the page from scratch.
    Thanks,
    Kim
    P.S. I'm using Apex 4.1 and Oracle 11g xe - all running on Windows 7.

    How about something like this? Instead of a check box add a new column with a delete image, you can use something like delete.gif (#IMAGE_PREFIX#delete.gif). The downside is that will be deleting one at a time, but in my experience this may not be an issue.
    Add a hidden item to hold the ID of the row your want to delete. We'll call it P1_ID.
    The new column with the delete image will need to "branch" to a URL and use this code (ALL in one single line)
    apex.confirm("Are you sure you want to delete?", {
      request:"DELETE_ROW",
      set:{"P1_ID":#ID#}
      });Then add a page process that fires when the request is DELETE_ROW
    Would probably look something like this:
    delete from some_table where id = :P1_ID;
    A similar technique can be used for checkboxes, but it's a little more advanced as you need to loop through the selections.
    Oh and add the column to the IR you don't really need to select anything. Or better yet, you could re-use the ID column of the report if you have one as your delete column. The #ID# on the code above needs to be the name of your column. So if your column is EMPNO the above would be #EMPNO# instead of #ID#.
    Hope this helps.
    -Jorge

  • Setting tab order in a check box group

    I am running a 508 accessibility test on forms created in Adobe.  The issue that I am having is that when I verify the tab order, it skips the second or any other check boxes in a check box group.  Does anyone know where to set it to recognize all the boxes in a check box group?

    Paul,
    Thank you.  You were correct, it was a version issue.  When I opened the form in Reader 9 with JAWS 10, I was aable to arrow through all of the check boxes with correct identification of each field.  Thanks again for all your help.

  • Creating a persistent check box in a Content Editor Web Part

    I'm using the following HTML in a Content Editor Web Part to display a check box.  It works great, but how can I make the checkbox state persistent? (i.e, it remembers whether it is checked or not between sessions).
    HTML: <input name="Completed" type="checkbox" value="Completed"  />

    Hi
    Adoukusa ,
    For creating a persistent check box in a Content Editor Web Part, you need to use cookie to store the state of the checkbox and maintain the state by reading / writing cookies.
    Here is JavaScript cookie sample code:
    function createCookie(name,value,days) {
    if (days) {
    var date = new Date();
    date.setTime(date.getTime()+(days*24*60*60*1000));
    var expires = "; expires="+date.toGMTString();
    else var expires = "";
    document.cookie = name+"="+value+expires+"; path=/";
    function readCookie(name) {
    var nameEQ = name + "=";
    var ca = document.cookie.split(';');
    for(var i=0;i < ca.length;i++) {
    var c = ca[i];
    while (c.charAt(0)==' ') c = c.substring(1,c.length);
    if (c.indexOf(nameEQ) == 0) return c.substring(nameEQ.length,c.length);
    return null;
    function eraseCookie(name) {
    createCookie(name,"",-1);
    Reference:
    http://stackoverflow.com/questions/1154258/persistence-of-checkbox-values
    Best Regards,
    Eric
    Eric Tao
    TechNet Community Support

  • Spry Check Box Group

    I am setting up a form to use the Spry check box field and
    need to have a check box grouping to have a minimum and maximum
    number of check boxes that can be selected. How is this done. I
    have got individual spry check boxes with their own spry fields but
    can't seem to find any documentation which shows me how to set up a
    spry check box group. Could someone please tell me how to do this?
    Thanks.

    Hi,
      You can use the following code.
      String[] monthNames = new String []
       "January", "February", "March", "April",
      List Year = new ArrayList();
       for (int i =  0; i < monthNames.length; ++i)
      IPrivateWebdyn_tableView.IYearElement month = wdContext.createYearElement();
      month.setAtt1(monthNames<i>);
      Year.add(month);
      wdContext.nodeYear().bind(Year);
    Bind the Checkbox group element to the node attribute.
    Thanks,
    Madhavi A.

  • Help in Check box group

    Hi,
    I have created a check box Group
    texts = Mydata.Interest.Interests
    Mydata is  a node , Interests is of type Simple type Interests.
    It has 3 enumerations.
    But when i run, I am able to only one check box with out any text.
    Where am i wrong?

    Hi you cannot use symple type to name the check boxes.
    create a node(Say CheckBox) of cardinality 0..N
    with a context variable(Say CheckValue) of type String. Bind this attribute(CheckValue) to "texts" property of CheckBoxGroup.
    Now, to add 5 checkboxes from code, use the following code
    IPrivate<View>.ICheckBoxNode lNode=wdContext.nodeCheckBox();
    IPrivate<View>.ICheckBoxElement lEl;
    for(int i=0;i<5;i++)
    lEl=lNode.createCheckBoxElement();
    lNode.addElement(lEl);
    lEl.setCheckValue("Text"(i1));
    xxxxxxxxxxxxxxxxxxxx
    Edited by: Armin Reichert on May 21, 2008 7:58 PM

  • Check box group

    Hi experts,
    I am new to webdynpro, i want to add one more check box in a check box group,
    can anyone help me,(but default it is coming 3)
    thanks in advance

    Hi,
        if it is limiting to three what you can do is create a two views with three check boxs each and create a view conatiner element in one view and embed the second view inside the view conatiner element.
    so by doing this you can have more than three checkbox
    cheers

  • How to creat Process messages automatically through PI sheet saved?

    How to creat Process messages automatically through PI sheet to the Process message destinations.

    Hi Jessie,
    When you process instruction category PROD_3 in master recipe, the process message PI_PROD is created.
    After releasing process order, you have to create control recipe. Upon successful creation of control recipe, process instructions will get generated. Check the error log for control recipe creation for error if any. 
    Note that control recipe will be generated only with order status "Released".
    You have to sent this control recipe to process control (CO53).
    Hope it is helpful.
    Regards,
    Sachin

  • How to add a single check box and a label to a image in Muse?

    Hello!
    I need help with adding a check box with a label to the right of it. I know about the forms, and how you can add a check box there but i don't need all the other form options.

    Hi
    It is not possible to use only checkbox from a form at the moment. An alternate way could be inserting it using html, something like below
    <input type="checkbox" name="Muse" value="Muse"> A sample checkbox<br>
    I am not sure what exactly you are trying to achieve, but this will work  with Form tag only, like in the example here
    Tryit Editor v2.5
    Do let me know if you have any question.

  • How can i add the check box beside the directory?

    how can i add the check box beside the directory? anybody can help?
    tis r the panel of my program :
    // FileTreePanel.java
    // JPanel for displaying file system contents in a JTree
    // using a custom TreeModel.
    package com.deitel.advjhtp1.mvc.tree.filesystem;
    import java.io.*;
    import java.awt.*;
    import java.awt.event.*;
    import javax.swing.*;
    import javax.swing.tree.*;
    import javax.swing.event.*;
    import com.deitel.advjhtp1.mvc.tree.filesystem.FileSystemModel;
    public class FileTreePanel extends JPanel {
    private JTree fileTree;
    private FileSystemModel fileSystemModel;
    private JTextArea fileDetailsTextArea;
    public FileTreePanel( String directory )
    fileDetailsTextArea = new JTextArea();
    fileDetailsTextArea.setEditable( false );
    fileSystemModel = new FileSystemModel(
    new File( directory ) );
    fileTree = new JTree( fileSystemModel );
    fileTree.setEditable( true );
    fileTree.addTreeSelectionListener(
    new TreeSelectionListener() {
    public void valueChanged(
    TreeSelectionEvent event )
    File file = ( File )
    fileTree.getLastSelectedPathComponent();
    fileDetailsTextArea.setText(
    getFileDetails( file ) );
    JSplitPane splitPane = new JSplitPane(
    JSplitPane.HORIZONTAL_SPLIT, true,
    new JScrollPane( fileTree ),
    new JScrollPane( fileDetailsTextArea ) );
    setLayout( new BorderLayout() );
    add( splitPane, BorderLayout.NORTH );
    JCheckBox check = new JCheckBox("Check me");
    add( check, BorderLayout.SOUTH );
    public Dimension getPreferredSize()
    return new Dimension( 400, 200 );
    private String getFileDetails( File file )
    if ( file == null )
    return "";
    StringBuffer buffer = new StringBuffer();
    buffer.append( "Name: " + file.getName() + "\n" );
    buffer.append( "Path: " + file.getPath() + "\n" );
    buffer.append( "Size: " + file.length() + "\n" );
    return buffer.toString();
    public static void main( String args[] )
    if ( args.length != 1 )
    System.err.println(
    "Usage: java FileTreeFrame <path>" );
    else {
    JFrame frame = new JFrame( "JTree FileSystem Viewer" );
    FileTreePanel treePanel = new FileTreePanel( args[ 0 ] );
    frame.getContentPane().add( treePanel );
    frame.setDefaultCloseOperation( JFrame.EXIT_ON_CLOSE );
    frame.pack();
    frame.setVisible( true );
    }

    You can maybe explore button and forms feature in InDesign. It was added in CS6.

  • How to create system message in SAP EP?

    Dear All,
    How to create system message in SAP EP?
    i need to find solution for this task. Is there any way without collaboration? For example in SLD there is "System message" without additional functions. Please help.
    Portal installed on Netweaver 7.01 EHP1

    Hi Abay,
    You need to develop custom application to accomplished your requirement for system message in the potral.
    Please have a look at "Brodcast messages to logged on users in Portal:
    Brodcast messages to logged on users in Portal(Part1)
    Brodcast messages to logged on users in Portal(Part2)
    Also you can develop system message in the KM and integrate in the portal.
    Hope it will helps,
    Regards, Arun Jaiswal

  • How to create new message in wsdl

    Hi all, how to create a new message apart from the request message and response message that get created when the BPEL process is created? For example, in LoanValidator project(this is the sample project that came with 10g instatllation), the request and response messages are LoanValidatorRequestMessage,LoanValidatorResultMessage and another message is there which is InvalidApplicationExceptionLoanValidatorMessage there. how to create this message? and its corresponding operation also.Thank you.
    Regards,
    user11275112

    messages are defined in the wsdl and have part(s) that refer to the real type / element. So just go to the wsdl that is the client partnerlink's one - and add yours there. the operation (defined in the portType) contains input / output / fault children. each referring to a message defined.
    cheers clemens

Maybe you are looking for