Tables Form element

Hi Experts,
Is it possible to create Table using Table Form element - in which I need a repeating text row for every line items (row).
I can create the same using a repeatable subform - therefore want to know whether the same is possible in Tables Form element using Table assistant.
Regards,
Rohit

I have found an acceptable workaround, where I don't have to update the HTML form.
Basically, don't use the $_POST superglobal. Instead, access the raw post data with file_get_contents("php://input"); and parse the name/value pairs in a couple steps with explode().
This way our HTML form which has a couple submit buttons can submit the form to both the PL/SQL action procedure and a PHP script without getting too ugly.
If you're coding an HTML form which only submits to a PHP script, best to live the constraint that PHP wants multiple value inputs to be named like a PHP array.

Similar Messages

  • Transfer elements between 2 base table forms.

    Environment
    OS: WinXP
    Oracle 10g (9.0.4.0.0) Developer suite
    Scenario:
    2 base table forms
    Form1 is based on table1 and has 10 elements
    Form1 has a button which when triggered, causes 5 of the 10 elements to be inserted in table2
    Form2 is based on table2 and has 10 elements 5 of which are obtained from Form1
    When I do a query-execute in Form2 to pull all the records, only records that were entered through Form2 show up. The transferred elements (record) from Form1 are not pulled up.
    When I do a query->enter and search for records in Form2 that were transferred from Form1, I receive a FMR-40301 Query caused no records to be retrieved. Re-enter.
    However the records transferred from Form1 are pulled up if I run a sql in the Database.
    Please advice.
    Here is the code that is triggered when button is pressed in Form1 to transfer elements to form2.
    DECLARE
         raiDate               RAI_PROPOSAL.STAMP1%TYPE;
         raiTime RAI_PROPOSAL.STAMP2%TYPE;
         sPropNo               RAI_PROPOSAL.PROP_NO%TYPE;
         selRec               RAI_PROPOSAL%ROWTYPE;
         CURSOR getProp(propNo IN RAI_PROPOSAL.PROP_NO%TYPE) IS
              SELECT      *
              FROM          RAI_PROPOSAL
              WHERE          RAI_PROPOSAL.PROP_NO = propNo;
    BEGIN
         sPropNo := :RAI_PROPOSAL.PROP_NO;
         /* Open cursor and fetch selected row */
         IF( NOT (getProp%ISOPEN) )THEN
              OPEN getProp(sPropNo);
         END IF;
         FETCH getProp INTO selRec;
         CLOSE getProp;
         /* Get date and time of transfer */
         raiDate := sysdate();
         raiTime := TO_CHAR(sysdate(), 'hh24:mi:ss');
    /* list all elements being transferred - all have values so NOT NULL fields are taken care of*/
    MESSAGE(selRec.cdfa_no || ', ' || selRec.con_sub || ', ' || selRec.cs_amt || ', ' || selRec.cs_source || ', ' || selRec.dept_prdir || ', ' || selRec.dept_proj2 || ', ' || selRec.dept_proj3 || ', ' ||
    selRec.human_subj || ', ' || selRec.initials || ', ' || selRec.prime_agre || ', ' || selRec.prodir_fn || ', ' || selRec.prodir_ln || ', ' || selRec.prodir2fn || ', ' || selRec.prodir2ln || ', ' || selRec.prodir3fn || ', ' || selRec.prodir3ln || ', ' ||      selRec.proj_type || ', ' ||     selRec.prop_date || ', ' || selRec.prop_no || ', ' ||
    selRec.prop_title || ', ' || selRec.propr_info || ', ' || selRec.school || ', ' || selRec.sol_no || ', ' || selRec.spon_typ || ', ' || selRec.sponsor || ', ' || raiDate || ', ' || raiTime || ', ' || selRec.vert_anm);
         /* Insert selected proposal into award table */     
         INSERT INTO
         RAI_AWARD(CDFA_NO, CON_SUB, CS_AMT, CS_SOURCE,
                   DEPT_PRDIR, DEPT_PROJ2, DEPT_PROJ3,
                   HUMAN_SUBJ, INITIALS, PRIME_AGRE, PRODIR_FN, PRODIR_LN,
                   PRODIR2FN, PRODIR2LN, PRODIR3FN, PRODIR3LN, PROJ_TYPE,
                   PROP_DATE, PROP_NO, PROP_TITLE, PROPR_INFO, SCHOOL,
                   SOL_NO, SPON_TYP, SPONSOR, STAMP1, STAMP2, VERT_ANM)
         VALUES(selRec.cdfa_no, selRec.con_sub, selRec.cs_amt, selRec.cs_source,
              selRec.dept_prdir, selRec.dept_proj2, selRec.dept_proj3,
              selRec.human_subj, selRec.initials, selRec.prime_agre, selRec.prodir_fn,
    selRec.prodir_ln, selRec.prodir2fn, selRec.prodir2ln, selRec.prodir3fn, selRec.prodir3ln, selRec.proj_type, selRec.prop_date, selRec.prop_no, selRec.prop_title, selRec.propr_info, selRec.school, selRec.sol_no, selRec.spon_typ, selRec.sponsor, raiDate, raiTime, selRec.vert_anm);
         MESSAGE ('INSERTED');
         /* Commit the data inserted */
         FORMS_DDL('COMMIT');
    END;

    Hi,
    Do you have radio buttons, a check box or a list item on your form?
    I have seen this before. If the value queried from the database does not match the allowable values, the record is "silently rejected" and is not queried into the form. You say your records are in the database if you query table2 via SQL, but Forms is rejecting the records.
    Look up the Forms Help for the topics "Creating a Record Group", or "Mapping of Other Values", or Search for the word "silently". It will say something like:
    "Leave the Mapping of Other Values property blank to indicate that other values are not allowed for this item. Any queried record that contains a value that does not match one of the values associated with an element in the List is silently rejected. Any attempt to assign an other value is disallowed."
    HTH.

  • Passing Session Values to the Tabular Form Element of a Report Column

    Hello,
    I'm running application express version 2.0 with a 10.2.0.2.0 database on a 32 bit windows box. I'm trying to figure out sneaky a way to pass the &APP_PAGE_ID., #APP_PAGE_ID# or V('APP_PAGE_ID'); as an element attribute of a Report Tabular Form Element set to display as a Select List (named LOV).
    It seems that whatever option I choose, the Element Attributes field will only render the literal value of what I have entered. This is part of the solution but I would like to find a way to pass the current page id.
    What I'm trying to do is utilize the ONCHANGE attribute to redirect to a report page in my application when the value from a Select List (named LOV) is selected.
    I could work around this by creating my own table output with PL/SQL and HTP.P commands but would really be interested in finding out if I can use the reporting structures which are already available through Application Express.
    Any ideas?
    Thanks.
    Justin.

    Thanks for the response Earl. To clarify this is what I've done and what I hope to achieve:
    I currently have a LOV for my application that identifies a number of database report types: DB Options, DB Parameters, DB Version, and so on.
    I have an application express report being generated for the databases I'm monitoring and it displays as follows:
    - HOST -- DBTYPE -------- DBNAME - DBREPORTS
    =====================================
    - SVR 1 - Oracle 9.2.0.1 - DEV -------- [LOV HERE]
    - SVR 2 - Oracle 9.2.0.7 - TST --------- [LOV HERE]
    I am displaying the LOV on my report the the options under the reports attribute tab in my application builder. I insert my LOV select list by editing the DBREPORTS column and set the "Display As:" option under Tabular Form Element to "Select List (named LOV)"; I have also added my LOV to the "Named LOV" option under List of Values.
    So far this achieves everything I would expect and works quite well (a select list with my report types appears in my monitor report for each DB that is returned).
    What I'm interested in doing now is opening a DBREPORT for a given database by simply choosing the report type from my LOV. I can set the "Element Attributes" option under Tabular Form Element to execute a javascript call for any valid event (in my case I'm using ONCHANGE).
    My only issue is that I cannot find a way to pass any session values from my page to my Element Attribute. If, in the Element Attributes field I enter:
    onchange="alert(this.value);" //my dialogue box will display the value of my current selection when I choose a report type.
    What I'd love to be able to do is something like:
    onchange="alert('&APP_PAGE_ID.');" //so my current page id is written to the element.
    Unfortunately, only my literal text seems to be rendered. Rather than having my dialogue come back with my page number, say 75, I receive the literal value &APP_PAGE_ID.
    Notwithstanding any quote issues, I've tried to dump a test html attribute to my source html by entering any of the following in the Element Attributes field:
    test=&APP_PAGE_ID.
    test=#APP_PAGE_ID#
    and as a shot in the dark knowing that I'm not using PL/SQL:
    test=V('APP_PAGE_ID');
    In every case when I view source I see the literal value of what was entered in the Element Attributes field (ie "test=&APP_PAGE_ID." instead of "test=75").
    What makes things a little more frustrating is that I can drop &APP_PAGE_ID. into the Column Heading field (ex My Heading &APP_PAGE_ID.), it renders as I would expect; "My Heading 75". If we could find a solution to this, I could see a number of slick uses for this type of functionality.
    Hope this helps,
    Thanks.
    Justin.

  • Display read only field in table / form from another vo

    i came across couple of scenarios where i had to bring a field in a table / from from other vo than on which most fields in table / form were based. in all cases i had to display the field from another vo as read only and there was only one record in other vo which was related to previous vo in table / form. for this i created a view accessor and created a soc with model driven lov. the problem with this is that first element alwasy shows blank in soc. how can i display the filled soc with first element populated and read only in this scenario. i tried alternatively with groovy expressions but other people in team said it is not good practice to use groovy expressions to fill fields in one VO from other VO. how can i acheive this requirement with soc component / lov / view accessors. is there any other alternative as well. jdev 11 1 1 5

    1) in the attribute of the VO select the 'List of values' node and edit the list attribute you see there; in the dialog select the UI Hints tad and make sure the checkmark for the 'Include "no Selection Item' is off.
    2) you can base a VO on to EO which are then joined via one or more attributes (association)
    Timo

  • Javascript function is not working for jsp:include.. form elements

    HI,
    I have two jsp's and i will include one jsp in the another jsp, when i do this
    i am not able to access child form elements value using javascript. the javascript
    function is defined in the main jsp. but i could able to get the main form elements
    through javascript
    here is the code.
    main.jsp
    <!--Generated by WebLogic Workshop-->
    <%@ page language="java" contentType="text/html;charset=UTF-8"%>
    <%@ taglib uri="netui-tags-databinding.tld" prefix="netui-data"%>
    <%@ taglib uri="netui-tags-html.tld" prefix="netui"%>
    <%@ taglib uri="netui-tags-template.tld" prefix="netui-template"%>
    <netui:html>
    <head>
    <title>
    Web Application Page
    </title>
    <script language="JavaScript">
    function isValidAge() {
    alert ("hage " +document[getNetuiTagName("MyForm")][getNetuiTagName("age")].value)
    alert ("swage " +document[getNetuiTagName("MyForm")][getNetuiTagName("swage")].value)
    alert ("wage "+document[getNetuiTagName("MyForm")][getNetuiTagName("wage")].value)
    </script>
    </head>
    <body>
    <p>
    <netui:form action="myaction" tagId="MyForm">
    <netui:textBox tagId="age" dataSource="{actionForm.age}"/>
    <netui:textBox tagId="swage" dataSource="{actionForm.swage}"/>
    here i am adding
    <jsp:include page="NewPage.jsp" />
    <netui:button onClick="isValidAge();" />
    </netui:form>
    </p>
    </body>
    </netui:html>
    child.jsp :
    <!--Generated by WebLogic Workshop-->
    <%@ taglib uri="netui-tags-html.tld" prefix="netui"%>
    <table class="tablebody">
    <tr class="tablebody">
    <td> wife age
    <netui:textBox tagId="wage" dataSource="{actionForm.wage}"/>
    </td>
    </tr>
    </table>
    can you tell me is this is bug in hte weblogic portal SP1.
    I am using weblogic portal SP1.
    thanks in advance
    shashi

    in this part:
    if(document.LForm.uname.value==null || document.LForm.upassword.value==null)should be:
    if(document.LForm.uname.value=="" || document.LForm.upassword.value=="")or
    if(document.LForm.uname.value.length==0 || document.LForm.upassword.value.length==0)

  • Automatic population table form

    I have table form. I need to automatic populate certain fields of this table form with values based on selections made by users in their select lists. As in this example http://htmldb.oracle.com/pls/otn/f?p=31517:106:3816553832235531:::::
    Suppose, 1 row has 10 columns - 5 select lists and 5 text fields (these text fields get values based on values of select lists).
    Does this mean, that for table form (20 rows) I must create 100 application items for storing temporary values of select lists?

    Denes Kubicek wrote:
    You will need only one application item ;)
    Denes Kubicek
    Ok. I have the following Application Process On Demand for one element of table form (f16_0001 - row 1 column 16):
    DECLARE
    v_stoim_mdf   NUMBER(15,2);
    CURSOR cur_c
    IS
    SELECT STOIM
    FROM TIP_MDF_STOIM
    WHERE KOD_TIP_MS = TO_NUMBER (v ('TEMPORARY_STOIM_MDF'));
    BEGIN
    FOR c IN cur_c
    LOOP
    v_stoim_mdf := c.STOIM;
    END LOOP;
    OWA_UTIL.mime_header ('text/xml', FALSE);
    HTP.p ('Cache-Control: no-cache');
    HTP.p ('Pragma: no-cache');
    OWA_UTIL.http_header_close;
    HTP.prn ('<body>');
    HTP.prn ('<desc>this xml genericly sets multiple items</desc>');
    HTP.prn ('<item id="f16_0001">'  || v_stoim_mdf  || '</item>');
    HTP.prn ('</body>');
    EXCEPTION
    WHEN OTHERS
    THEN
    OWA_UTIL.mime_header ('text/xml', FALSE);
    HTP.p ('Cache-Control: no-cache');
    HTP.p ('Pragma: no-cache');
    OWA_UTIL.http_header_close;
    HTP.prn ('<body>');
    HTP.prn ('<desc>this xml genericly sets multiple items</desc>');
    HTP.prn ('<item id="f16_0001">' || SQLERRM || '</item>');
    HTP.prn ('</body>');
    END;
    The following JavaScript for update TEMPORARY_STOIM_MDF:
    +<script language="JavaScript" type="text/javascript">+
    +<!--+
    +function pull_value_mdf(pValue){+
    var get = new htmldb_Get(null,html_GetElement('pFlowId').value,
    +'APPLICATION_PROCESS=Set_stoim_mdf',0);+
    +if(pValue){+
    get.add('TEMPORARY_STOIM_MDF',pValue)
    +}else{+
    get.add('TEMPORARY_STOIM_MDF','null')
    +}+
    gReturn = get.get('XML');
    +if(gReturn){+
    var l_Count = gReturn.getElementsByTagName("item").length;
    for(var i = 0;i<l_Count;i+){+
    +var l_Opt_Xml = gReturn.getElementsByTagName("item");+
    var l_ID = l_Opt_Xml.getAttribute('id');
    var l_El = html_GetElement(l_ID);
    +if(l_Opt_Xml.firstChild){+
    var l_Value = l_Opt_Xml.firstChild.nodeValue;
    +}else{+
    var l_Value = '';
    +}+
    +if(l_El){+
    +if(l_El.tagName == 'INPUT'){+
    l_El.value = l_Value;
    +}else if(l_El.tagName == 'SPAN' &&+
    +l_El.className == 'grabber'){+
    l_El.parentNode.innerHTML = l_Value;
    l_El.parentNode.id = l_ID;
    +}else{+
    l_El.innerHTML = l_Value;
    +}+
    +}+
    +}+
    +}+
    get = null;
    +}+
    +//-->+
    +</script>+
    I don't know what the code need for any other rows. How update the other rows?

  • Help with the insert table/form tool in BIP 10.1.3.2.1

    Hi, I'm trying to use the insert table/form tool in BIP, and running into some issues that I don't understand. First off, my data coming in looks like this (left column of tool):
    Rowset
    --- Row
    ------ Customer ID
    ------ Customer Name
    ------ Customer City
    ------ Product
    ------ Amount Sold
    I would like the output to do the following:
    a) have one page per customer. Customer should be determined by customer ID, and has attributes of customer ID, customer Name, Customer City
    b) Show a table of all products and the total Amount Sold by product for that customer
    c) Give a "grand total" for the customer
    Can someone help with the steps needed to do this? I've tried several variations of the following without much luck:
    1) Added Rowset and all children to the "Template" pane
    2) Clicked on the "Row" group, and set Grouping = Customer ID, with a break of "New page per Element"
    3) Clicked on the newly created (from step 2) Cust ID group, and set it to group by Product
    4) Moved "amount sold" to be at same level as Product
    5) Moved all of the customer attributes (name, address, etc.) to be at same level as Cust ID
    6) On the Cust ID level, set the style to table
    7) on row and rowset levels, set style to free form
    This seems to be VERY close, except that it isn't creating a total amount for the sum of all products purchased by a customer. What do I need to do inside the tool to get a total per customer to show up?
    Thanks in advance!
    Scott
    p.s. the final hierarchy in the template window looks like this:
    Rowset (style = freeform, no grouping/sort by/breaks)
    --- Row (style = freeform, group by customer ID, break new page per element)
    ------ Customer ID (style = table, group by product, no breaks)
    --------- Product (nothing special)
    --------- Amount Sold (calc for grouping = SUM)
    ------ Customer Name (nothing special)
    ------ Customer City (nothing special)
    Thanks very much for the help!
    Scott

    To anyone else who sees this post, the answer is to do the following. Insert the Amount Sold field using the "Insert Field" tool, and set the function to sum, with the grouping checkbox turned on.
    Thanks,
    Scott

  • Fetching timestamp to datepicker form element

    With the page creation wizard i create a "Form on a Table" or "Form on a Table with Report" and i have problems with timestamp columns of the table: no form element gets created for them. I add manually a Date Picker element, and it works fine for writing on DB (both editing a row or creating a new one); but it doesn't work for fetching, the Date Picker is initially blank when i edit an existing row.
    The Source of the element is defined as:
    Source Used = Always
    Source Type = DB column
    Maintain session state = per session
    Source value or expression = (name of column)
    Post Calculation Computation = blank
    Format Mask = same as Date Picker, also tried blank
    Thanks for any help

    Hello,
    >> The Automatic DML process doesn't work anyway for reading timestamps, so it's not a problem.
    Let’s use the proper terms, so we will not get confused. Automatic Row Processing or Automatic DML refers to after submit processes, while Automated Row Fetch (ARF) refers to the pre-rendering phase. As far as I understand, your problem is with the ARF process, which can’t fetch timestamp. From your first post it seems that the Automatic DML process do write your timestamp into the database table. However, this will only work for items with source type of “Database column”.
    >> I already tried Post Calculation Computation too, but even if the computation generates no error, the element is not changed.
    Did you change the “Source Used” of the item to “Only …”
    >> I think it is always overridden by NLS_DATE_FORMAT, i haven't tried changing it cause i don't have an admin password right now.
    At least for the later versions this is not true. The “Post Calculation Computation” has the final saying about the content (and format) of the field, provided that the “Source Used” of the item is set to “Only …” .
    >> Are you sure Automatic DML process is fully supported for timestamps?
    Yes, I’m pretty sure. As I said, timestamp support was introduced in version 2.2, so it’s not surprising that it’s not being mentioned in the what’s new of version 3.1. Anyway, don’t take my word for it. You can test it yourself on apex.oracle.com (which runs 3.1.2).
    Regards,
    Arie.

  • How to replace table cell elements position

    Hello Experts,
    I have a requirement where i have to replace the table cell elements at runtime.
    lets say for example i have a node structure  like this:
    Root Node
        table Node data
            cell 1 (Name)
            cell 2 (Description)
    Now once the table rendered on Adobe form let say it has 2 rows
    1st row : Test name1   |    Test description1
    2nd row: Test name2   |     Test description2
    now for display i have to show on form like this:
    1st row : Test name1            |     Test name2
    2nd row: Test description1   |     Test description2
    Constraint is i  cant change table node structure ,Now i was thinking if i could replace row 2 cell 1 ui element with row 1 cell 2 ui element at runtime in table without changing the mapped values.
    Please let me know how i can achieve this or if is there any alternative way to do this.
    Any inputs and help are most welcome.
    Thanks,
    Siddharth

    Hi Siddharth,
    You can achieve you requirement by creating table using subforms instead of using normal Table UI element.
    Create the Table structure this way.
    Table(Subform)     
    Row(Subform)
    Name (TextField)
    Description(TextField)
    Put the name and description field in single column. Bind the table subform with node Data and set  the property like this :
    Content : Flowed
    Flow Direction : Western Text
    also check the "Repeat the subform for Each Data item" property.
    Set the property of the Subform Row like this:
    Content : Flowed
    Flow Direction : top To bottom
    Bind the Name & Description text field with  the proper context.
    Thanks & regards
    Ravindra Singh

  • How can i get or set a non-database form element???

    i was using p_session.get_value_as_... and p_session.set_value for form elements that are database fields, but when i tried to do so with non-database elements the same way it doesn't work!!!!

    Rasha,
    The non-table field do not have corresponding attributes in the session storage, so you cannot reference them from PLSQL handlers, only table based field can be referenced. You can only use Javascript to reference those.
    Thanks,
    Dmitry

  • Column value substitution in tabular form element attributes

    We started to discuss this at Re: Tabular form with Ajax
    I also mentioned this at Re: how to make only some rows editable in html db.
    but thought that this deserves its own thread.
    In Doug's sample Sudoku application in that thread, he uses #COLUMN# substitution in the Form Element Attributes and it works fine, but in my example page at http://htmldb.oracle.com/pls/otn/f?p=24317:219 I used the same technique and no matter what I do, the #COLUMN# substitution is not expanded by the Apex engine.
    This is driving me nuts, any ideas why it works in one application but not in another?
    Thanks

    Hm, you might be right.
    I copied your row template and modified it at http://htmldb.oracle.com/pls/otn/f?p=24317:219
    The styling looks terrible, not sure why, the template is simply
    <tr>
    <td class="t10data">#EMPNO_DISPLAY#</td>
    <td class="t10data">#ENAME#</td>
    <td class="t10data">#JOB#</td>
    <td class="t10data">#MGR#</td>
    <td class="t10data">#HIREDATE#</td>
    <td class="t10data">#SAL#</td>
    <td class="t10data">#COMM#</td>
    <td class="t10data">#DEPTNO#</td>
    </tr>I had a lot of trouble getting this to work because the wizard generated tabular form appends 2 hidden fields containing the PK and the row-checksum to the last (editable?) field on each row. If the last editable field has #COL# substitution, it expands the substitution and forgets to close the INPUT tag thus causing malformed HTML (I think this is a bug in the rendering engine).
    The readonly condition is sal>1000 which now works. The SAL>1000 fields are now readonly.
    But now the update process is broken. If I enter a number in the first blank SAL field (empno=3641) and click Submit, I get no errors but the change is not saved. Wonder why.
    Hopefully, Scott (Spadafore) will take mercy on our amateurish experiments and give us some definitive answers soon!
    Thanks.

  • Form element id changed after upgrading from APEX 3.2.1 to 4.0.2

    Hi,
    We are in the process of testing an upgrade of our APEX 3.2.1 app to 4.0.2. The production database was exported, imported as a new database, and then upgraded to 4.0.2. I've noticed that on pages where we have coded our own PL/SQL process in place of the built-in MRU, the form element id (referenced using g_fxx) has changed. For example, in our existing production system, the id for the first row of data is f06_0001, but when we look at the same page in APEX 4.0 environment, the element id has changed to f08_0001. Is this a known issue when performing an upgrade? Has anyone else experienced this?

    Hi,
    I have seen this problem.
    I assume that Apex 4 do not give fxx name to items anymore in order where columns are in query.
    This is one of reasons why we have not been yet able to upgrade.
    And it seems this same problem exists in Apex 4.1 on apex.oracle.com
    Regards,
    Jari

  • How to track changes made in a jsf form element.

    I am in a page and editing some form elements. I click on some other link which will take me to another page. Before moving to another page I want to check if there are some unsaved data in the page. If some form elements are edited, I want to throw a confirmation alert, if the user wants to move to the other page without saving the edited data.
    This can be accomplished by having a hidden flag which will keep a track. On change of any element, a javascript function will be called to set the hidden flag. So before going to any page we can check the flag and throw an alert.
    But this process will be needing much coding effort. Is there a way in JSF to track the change in a form by backing bean or some other process?

    JSF offers a serverside ValueChangeEvent for that. Every UIInput component supports a 'valueChangeListener' attribute (and a f:valueChangeListener facet) which can point to a method in the backing bean which takes a ValueChangeEvent parameter. This will only be invoked if the new value differs from the old value. This costs one trip to the server though.
    E.g.<h:inputText value="#{myBean.value}" valueChangeEvent="#{myBean.valueChanged}" />MyBeanpublic void valueChanged(ValueChangeEvent event) {
        Object oldValue = event.getOldValue();
        Object newValue = event.getNewValue();
        // Do your thing.
    }ValueChangeEvents are invoked in the 3rd phase of the JSF lifecycle, after validation/conversion and before update model values. Also see http://balusc.blogspot.com/2006/09/debug-jsf-lifecycle.html

  • Copying table rows from one table to another table form

    Hi
    I have a problem about Copying table rows from one table to another table form.On jsf pages if you enter command button go anather jsf page and it copy one row to another table row. But when i execute this process for table FORM it doesn't copy I wrote a code under "createRowFromResultSet - overridden for custom java data source support." Code block is:
    ViewRowImpl value = super.createRowFromResultSet(qc, resultSet);
    try{
    AdfFacesContext fct = AdfFacesContext.getCurrentInstance();
    Number abc = (Number)fct.getProcessScope().get("___");
    value.setAttribute("___",abc);
    }catch(Exception ex){System.out.println(ex);  }
    return value;

    Table may be copied with the
    expdp and impdp utilities.
    http://www.oracle.com/technology/products/database/utilities/index.html

  • Web Dynpro Table UI Element - Force Footer visible to false

    Hi Guys,
    Is there any way to force the footer visible property to false, despite the total number of visible row and total number of data available?  The reason I want to do this is because I want to create my own paginator (by page, not by row in standard SAP).
    Also, I was looking at this help page:
    http://help.sap.com/saphelp_nw04s/helpdata/en/23/5e9041d3c72e7be10000000a1550b0/frameset.htm
    However, I found out that many of the Table UI Element properties described here is not available in NWDS 2004s (I am using SPS 09 and also tried on SPS 14).  Anyone knows why ?
    Is there any other way to change the pagination from Row to Page ?
    Thanks,
    Johannes

    Hi,
    Well i understood your problem, but it cant addressed with the existing functionality.
    You need to do it by yourself. First you need to make the visibility of the footer to NONE. Then add UI elements like label for displaying page numbers, inputField and buttons with text "<"(previous) and ">" (next) as text just like a normal footer.
    Now on action of these buttons you have to manipulate the things. Suppose you have 5 rows as 1 page. So if the visibleRowCount property of your table gives you 5 then you can display the label as page1. Dont forget to map an integer attribute to your visibleRowCount so that it will be easier to manipulate. On click of next set the label as Page2 and set firstVisibleRow property of your table to 6 ie to display the next set of 5 records in the next page. now your visibleRowCount will be 10 ie you can check for multiples of 5.
    Is this the thing you want? Just give a try.
    thanks & regards,
    Manoj

Maybe you are looking for

  • Is is possible to display quantity field in FBU3?

    Hi, Is it possible to display the quantity field in FBU3? We have activated the quantity field for FBL3N but not able to find the configuration to do it for FBU3. Please guide.

  • How to set limited access for web.

    I currently have a 10.5 server hosting 5 different websites, and now one site wants to convert to a "login in required" to access the website, is there a quick way for me to configure this through the site itself with a list of users Open Directory a

  • OCP Exam

    Hi everyone, I want to write OCP exam and was looking forward to get details , if anyone can share. (Set of exams, Books to study etc) Any information will be appreciated. Thanks. Aarti

  • Please Help!! frustrating Hello World!

    hi guys, i was trying the famous Hello world example in rmi. i have followed all the steps , i had this error: Hello Server failed: java.rmi.ServerException: RemoteException occurred in server thread; nested exception is: java.rmi.UnmarshalException:

  • Lost connection to Bluetooth keyboard

    2 weeks old Intel mini. Logitech diNovo Edge Bluetooth keyboard paired just fine with the mini. Have not used the system for a few days. Mini goes to sleep when not in use. Today, the connection to the keyboard was lost. Trying to open Bluetooth pref