After ODTUG and OOW I will also present about the Integration of Oracle Forms and APEX at the next UKOUG event, from Nov 30 to Dec 2 in Birmingham. Unlike OOW, where my session is planned at the very beginning of the event, the UKOUG organization committee kindly planned my session in the very middle of the conference: on Tuesday from 12:05 - 12:50. So for all Europeans who couldn't make it to ODTUG or OOW and are interested in this kind of integration...you know where to go!
If you created your own "updatable reports" or your custom version of tabular forms in Oracle Application Express, you'll end up with a query that looks similar to this one: then you disable the " Escape special characters " property and the result is an updatable multirecord form. That was easy, right? But now we need to process the changes in the Ename column when the form is submitted, but only if the checkbox is checked. All the columns are submitted as separated arrays, named apex_application.g_f0x - where the "x" is the value of the "p_idx" parameter you specified in the apex_item calls. So we have apex_application.g_f01, g_f02 and g_f03. But then you discover APEX has the oddity that the "checkbox" array only contains values for the checked rows. Thus if you just check "Jones", the length of g_f02 is 1 and it contains only the empno of Jones - while the other two arrays will contain all (14) rows. So for ...
Comments