Submitting just one form region of 2 form regions on one page

Hello,
i've got 2 form regions on one page. Is it possible to submit just one of them and not the whole page?
Thank you!
Best regards,
Lena

Hi Lena,
a very important thing to understand when working with Oracle APEX is that it is a Webbrowser-Application and behaves exactly like this. APEX just generates a HTML Page and lets the Browser deal with it.
When you press a submit button the whole page (all form input elements) are sent from the browser to the server where APEX processes them.
You can't really influence this behaviour.
But you can work with REQUEST-Keywords and conditional processes, so that only those processes are executed (and therefor save data) you want to.
Btw. the REQUEST Keyword is set by the button, there it is defined which REQUEST is set when submitting the page.
brgds,
Peter
Blog: http://www.oracle-and-apex.com
ApexLib: http://apexlib.oracleapex.info
Work: http://www.click-click.at

Similar Messages

  • Submitting a Form in a Spry Tabbed Region

    I have a spry tabbed region with 6 tabs.
    I have constructed a menu which targets and opens the specific tab using the ?tab=4 type notation.  I have also created links between tabs using the same notation.  All works fine.
    I have a form in one tab which, when I submit it, I want to return to the same tab.  However when I use the notation <form action="index.php?tab=4" > the page just reloads on the first tab, stripping off the ?tab=4 part of the url. I have searched the forums but can't find any reference to how to target a specific tab when submitting a form.
    Any help much appreciated.
    Thanks
    John

    Hi
    Thanks for your patience.
    Because there are 8 tabs on this page there is a lot of code, much of it irrelevant, so I have copied below the chunks which relate to this part of the page.
    When the form is submitted the data being returned from the database is correct and is loaded into the page. It is just that the page loads the first tab and you then have to click on the 'Results' tab to see the data which has been returned.
    Ok, from the top of the page the php code which filters the recordset is as follows;
    <?php
    if (!function_exists("GetSQLValueString")) {
    function GetSQLValueString($theValue, $theType, $theDefinedValue = "", $theNotDefinedValue = "")
      if (PHP_VERSION < 6) {
        $theValue = get_magic_quotes_gpc() ? stripslashes($theValue) : $theValue;
      $theValue = function_exists("mysql_real_escape_string") ? mysql_real_escape_string($theValue) : mysql_escape_string($theValue);
      switch ($theType) {
        case "text":
          $theValue = ($theValue != "") ? "'" . $theValue . "'" : "NULL";
          break;   
        case "long":
        case "int":
          $theValue = ($theValue != "") ? intval($theValue) : "NULL";
          break;
        case "double":
          $theValue = ($theValue != "") ? doubleval($theValue) : "NULL";
          break;
        case "date":
          $theValue = ($theValue != "") ? "'" . $theValue . "'" : "NULL";
          break;
        case "defined":
          $theValue = ($theValue != "") ? $theDefinedValue : $theNotDefinedValue;
          break;
      return $theValue;
    // recordset for results
    $var1_rsCompResults = "-1";
    if (isset($_GET["event_ID"])) {
      $var1_rsCompResults = $_GET["event_ID"];
    $var2_rsCompResults = "-1";
    if (isset($_GET["age_group"])) {
      $var2_rsCompResults = $_GET["age_group"];
    $var3_rsCompResults = "-1";
    if (isset($_GET["gender"])) {
      $var3_rsCompResults = $_GET["gender"];
    mysql_select_db($database_connPublic, $connPublic);
    $query_rsCompResults = sprintf("SELECT tblResults.result_ID, DATE_FORMAT(tblEvents.event_start_date, '%%Y') AS year, tblResults.event_ID, tblEvents.event_name, tblResults.age_group, tblResults.points, tblIndividuals.forename, tblIndividuals.surname, tblIndividuals.sex FROM tblEvents INNER JOIN tblResults ON tblEvents.event_id = tblResults.event_ID INNER JOIN tblIndividuals ON tblResults.individual_ID = tblIndividuals.individual_id WHERE tblResults.event_ID = %s AND age_group = %s AND sex = %s ORDER BY tblResults.points", GetSQLValueString($var1_rsCompResults, "int"),GetSQLValueString($var2_rsCompResults, "text"),GetSQLValueString($var3_rsCompResults, "text"));
    $rsCompResults = mysql_query($query_rsCompResults, $connPublic) or die(mysql_error());
    $row_rsCompResults = mysql_fetch_assoc($rsCompResults);
    $totalRows_rsCompResults = mysql_num_rows($rsCompResults);
    ?>
    then the links to the Spry Assets and the  js which creates the datasets is as follows;
    <script src="../SpryAssets/SpryTabbedPanels.js" type="text/javascript"></script>
    <script src="../SpryAssets/SpryURLUtils.js" type="text/javascript"></script>
    <script src="../SpryAssets/SpryData.js" type="text/javascript"></script>
    <script src="../SpryAssets/SpryDataExtensions.js" type="text/javascript"></script>
    <script src="../SpryAssets/SpryHTMLDataSet.js" type="text/javascript"></script>
    <script src="../SpryAssets/SpryNestedXMLDataSet.js" type="text/javascript"></script>
    <script src="../SpryAssets/SpryXML.js" type="text/javascript"></script>
    <script src="../SpryAssets/SpryTabbedPanels.js" type="text/javascript"></script>
    <script src="../SpryAssets/SpryPagedView.js" type="text/javascript"></script>
    <script src="../SpryAssets/xpath.js" type="text/javascript"></script>
    <script type="text/javascript">
    var dsYears = new Spry.Data.XMLDataSet("competitions_year_data_xml.php", "root/row");
    var dsCompetitions = new Spry.Data.XMLDataSet("calendar_competitions_data_xml.php", "root/row[year = '{dsYears::year}']");
    var dsAgeGroups = new Spry.Data.XMLDataSet("competitions_age_group_data_xml.php", "root/row[event_ID = '{dsCompetitions::event_ID}']");
    var dsGender = new Spry.Data.XMLDataSet("competitions_sex_data_xml.php", "root/row[age_group = '{dsAgeGroups::age_group}']");
    </script>
    Then the html which creates the tabbed region is as follows;
                      <div id="TabbedPanels1" class="TabbedPanels">
                          <ul class="TabbedPanelsTabGroup">
                            <li class="TabbedPanelsTabLeft" tabindex="0">News</li>
                            <li class="TabbedPanelsTab" tabindex="1">Calendar</li>
                            <li class="TabbedPanelsTab" tabindex="2">Rules</li>
                            <li class="TabbedPanelsTab" tabindex="3">Competition Entries</li>
                            <li class="TabbedPanelsTab" tabindex="4">Results</li>
                            <li class="TabbedPanelsTab" tabindex="5">Rankings</li>
                            <li class="TabbedPanelsTab" tabindex="6">Contacts</li>
                            <li class="TabbedPanelsTabRight" tabindex="7">FAQ</li>
                          </ul>
                          <div class="TabbedPanelsContentGroup">
    Then the form which includes the four select statements is as follows;
    <div class="TabbedPanelsContent" id ="results_data">
                   <h3>Results</h3>
    <form name="selectForm" action="index.php?tab=4&" method="get">
            Year:
    <span spry:region="dsYears" id="yearSelector">
            <select spry:repeatchildren="dsYears" spry:choose="spry:choose" name="year" onchange="dsYears.setCurrentRowNumber(this.selectedIndex);">
                <option value="{year}" spry:when="{ds_CurrentRowID} == {ds_RowID}" selected="selected">{year}</option>
                <option value="{year}" spry:default="spry:default" >{year}</option>
            </select>
    </span>
            Event:
    <span spry:region="dsCompetitions" id="eventSelector">
            <select spry:repeatchildren="dsCompetitions" name="event_ID" onchange="dsCompetitions.setCurrentRowNumber(this.selectedIndex);">
                <option value="{event_ID}">{event_name}</option>
            </select>
    </span>
            Age Groups:
    <span spry:region="dsAgeGroups" id="agegroupSelector">
            <select spry:repeatchildren="dsAgeGroups" name="age_group" onchange="dsAgeGroups.setCurrentRowNumber(this.selectedIndex);">
                <option value="{age_group}">{age_group}</option>
            </select>
    </span>
            Gender:
    <span spry:region="dsGender" id="genderSelector">
            <select spry:repeatchildren="dsGender" name="gender">
                <option value="{sex}">{sex}</option>
            </select>
    </span>
    <input type="submit" value="Submit" />
    </form>
    <?php if ($totalRows_rsCompResults > 0) { // Show if recordset not empty ?>
      <div id="result_ID" name="result_ID">
        <table>
          <tr>
            <th>Athlete Name</th>
            <th>Event</th>
            <th>Score</th>
          </tr>
          <?php do { ?>
            <tr>
              <td><?php echo $row_rsCompResults['forename']; ?> <?php echo $row_rsCompResults['surname']; ?></td>
              <td><?php echo $row_rsCompResults['event_name']; ?></td>
              <td><?php echo $row_rsCompResults['points']; ?></td>
            </tr>
            <?php } while ($row_rsCompResults = mysql_fetch_assoc($rsCompResults)); ?>
        </table>
      </div>
      <?php } // Show if recordset not empty ?>
           </div> <!-- end of TabbedPanelsContent div Results -->
    Then at the end of the page is this code;
    <script type="text/javascript">
    var TabbedPanels1 = new Spry.Widget.TabbedPanels("TabbedPanels1", {defaultTab: params.tab ? params.tab : 0});
    </script>
    </body>
    </html>
    <?php
    mysql_free_result($rsCompResults);
    ?> 

  • Accessing form elements within a Spry region.

    Since nested Spry regions isn't yet support, can someone tell
    me how to access and modify form elements within a existing region?
    For example, I have a region that displays a form based on
    data I defined in a javascript array. On of the form elements is a
    select with some options. I want to added and remove options to
    this select depending on the number of objects in the data array.
    The select is not defined when I try to access it after spry
    has finished rendering the form, eg
    document.forms[0].selOrder1.options.length = 0;
    How are Spry regions attached to the browser's DOM? Does Spry
    create it's own DOM subordinate to the main DOM?
    Is it possible to make changes to a Spry region without using
    Spry?
    thx
    pwp

    Actually, there are a couple of ways to get access to the DOM
    underneath a region container. If you have a region, you can put an
    ID attribute on the region container node, or if you are using a
    region observer, the data passed into the observer has a regionNode
    property. So if you want access to the region DOM anytime the
    region is re-generated, do something like this:
    function myRegionObserver(notificationType, notifier, data)
    // We only want to do something after the region is
    re-generated,
    // for all other notifications, do nothing.
    if (notificationType != "onPostUpdate")
    return;
    // If your region container element has an ID on it, just
    use
    // getElementByID. This is useful in the case where your
    observer
    // is only ever registered with one region.
    var rgnElement1 = document.getElementById("headerRegion");
    alert(rgnElement1.innerHTML);
    // Or you can simply use the regionNode property of the data
    // that is passed in. This is useful if you've registered
    the same
    // observer on multiple regions. The regionNode property
    will
    // contain the region container node for the region that is
    currently
    // being updated.
    var rgnElement2 = data.regionNode;
    alert(rgnElement2.innerHTML);
    Spry.Data.Region.addObserver("headerRegion",
    myRegionObserver);
    <div id="headerRegion" spry:region="ds1">
    </div>
    --== Kin ==--

  • How I can go back to former version of firefox, because the new one is unacceptable bad.

    How I can go back to former version of firefox, because the new one is unacceptable bad.
    I am just a computer and internet user, if you can't imagine what that's means, then I need to use and promote other web browsers.
    I am really mad about the update, who is worthless!
    sorry !
    think about your reputation and do fast better.
    sorry for my poor English
    greetings Dirk ( Scorpio.Irondragon)

    Try to drag the current Firefox application to the trash if you can't replace it.

  • How to get the Purchase Order sample form to have 2 detail regions?

    I would like to use the "Purchase Order" sample form as the base, and add one more "detail header" and "detail" subform to it.
    So I copy and paste the "detail header" + "detail" subforms, and position them right beneath the first "detail" subform.
    It works to certain extend.  I can click the "Add Item" button(s), and it would expand the respective "detail" region.
    The problem comes when things get expanded to the 2nd page.
    Say, I first add 5 rows to the 2nd "detail" region, everything still fits in one page;
    then I keep adding rows to the 1st "detail" region, and it begins to expand to the 2nd page....
    everything in the first "detail" region can still fit in the first page,
    the rows in the 2nd "detail" region should get pushed to the 2nd page...
    but when I look at the 2nd page of the form, the "detail header" on the 2nd page is that of the "FIRST" detail header, not the 2nd detail header!!
    So, when you look at the entire form, you have
    First Detail Header
    some First Detail Rows
    2nd Detail Header
    some 2nd Detail rows
    --- end of page 1---
    --- page 2---
    First Detail Header
    some detail rows (can't tell if they belong to the first detail region or 2nd detail region)
    This obviously is not right.
    So, how do I fix it such that the Detail Header on the 2nd page is that of the 2nd Detail header???

    an update:
    I have found out that the detail rows on the 2nd page are all that of the 2nd detail region.
    so, it's like this:
    when you look at the entire form, you have
    First Detail Header
    all the First Detail Rows
    2nd Detail Header
    some 2nd Detail rows
    --- end of page 1---
    --- page 2---
    First Detail Header
    some 2nd detail rows

  • VS2013 Update 1 install failing: The form specified for the subject is not one supported or known by the specified trust provider.

    Hi
    I just tried to install VS2013 update 1 ("Run As Administrator") from the ISO image and the installation finishes with a lot of messages like these:
    "JavaScript Tooling: The form specified for the subject is not one supported or known by the specified trust provider."
    "Microsoft Visual Studio 2013 IntelliTrace core x86: The form specified for the subject is not one supported or known by the specified trust provider"
    I have 19 of these messages.
    I had a quick look at the log file and I see this block of messages repeated quite a lot (for different files, not just "PerfTools_CORE_x86.msi"):
    [8C10:9AC4][2014-01-23T07:46:04]i338: Acquiring package: PerfTools_CORE_x86.msi, payload: PerfTools_CORE_x86.msi, copy from: C:\Users\<removed>\Downloads\Microsoft\VS2013.1\packages\PerfTools_CORE\x86\PerfTools_CORE_x86.msi
    [95A4:996C][2014-01-23T07:46:04]e000: Error 0x800b0003: Failed authenticode verification of payload: C:\ProgramData\Package Cache\.unverified\PerfTools_CORE_x86.msi
    [95A4:996C][2014-01-23T07:46:04]e000: Error 0x800b0003: Failed to verify signature of payload: PerfTools_CORE_x86.msi
    [95A4:996C][2014-01-23T07:46:04]e310: Failed to verify payload: PerfTools_CORE_x86.msi at path: C:\ProgramData\Package Cache\.unverified\PerfTools_CORE_x86.msi, error: 0x800b0003. Deleting file.
    [95A4:996C][2014-01-23T07:46:04]e000: Error 0x800b0003: Failed to cache payload: PerfTools_CORE_x86.msi
    [8C10:9AC4][2014-01-23T07:46:04]i000: MUX:  Verify Failed.  Retry acquiring, Retry Count: 1 of 3
    [8C10:9AC4][2014-01-23T07:46:04]i000: MUX:  Set Result: Return Code=-2146762749 (0x800B0003), Error Message=, Result Detail=, Vital=False, Package Action=Verify, Package Id=PerfTools_CORE_x86.msi
    [8C10:9AC4][2014-01-23T07:46:04]e314: Failed to cache payload: PerfTools_CORE_x86.msi from working path: C:\Users\<removed>\AppData\Local\Temp\{2f6f0fc4-5f66-4635-a4d2-1dd8d9481c63}\PerfTools_CORE_x86.msi, error: 0x800b0003.
    [8C10:9AC4][2014-01-23T07:46:04]e349: Application requested retry of payload: PerfTools_CORE_x86.msi, encountered error: 0x800b0003. Retrying...
    [8C10:9AC4][2014-01-23T07:46:04]i338: Acquiring package: PerfTools_CORE_x86.msi, payload: PerfTools_CORE_x86.msi, copy from: C:\Users\<removed>\Downloads\Microsoft\VS2013.1\packages\PerfTools_CORE\x86\PerfTools_CORE_x86.msi
    [8C10:9AC4][2014-01-23T07:46:04]i000: MUX:  Reset Result
    [95A4:996C][2014-01-23T07:46:04]e000: Error 0x800b0003: Failed authenticode verification of payload: C:\ProgramData\Package Cache\.unverified\PerfTools_CORE_x86.msi
    [95A4:996C][2014-01-23T07:46:04]e000: Error 0x800b0003: Failed to verify signature of payload: PerfTools_CORE_x86.msi
    [95A4:996C][2014-01-23T07:46:04]e310: Failed to verify payload: PerfTools_CORE_x86.msi at path: C:\ProgramData\Package Cache\.unverified\PerfTools_CORE_x86.msi, error: 0x800b0003. Deleting file.
    [95A4:996C][2014-01-23T07:46:04]e000: Error 0x800b0003: Failed to cache payload: PerfTools_CORE_x86.msi
    [8C10:9AC4][2014-01-23T07:46:04]i000: MUX:  Verify Failed.  Retry acquiring, Retry Count: 2 of 3
    My Visual Studio still seems to load following the failed installation, but I'm not sure if anything is broken yet.
    Does anyone have any idea what the problem is?
    Thanks, Greg

    Hi Greg,
    Most of the same error as far as I see are due to corrupt installer. Please try use fciv.ext tool from this site:
    http://support.microsoft.com/kb/841290/en-us
    Then use sha-1 number to compare it with the one listed here:
    http://www.microsoft.com/en-us/download/details.aspx?id=41650
    SHA-1: 51403CAF8E5E9799ACF1F3A0DA0E46390CD2FB16
    If it is not the same, you have to redownload your ISO, it is corrupt.
    Regards,
    Barry Wang
    We are trying to better understand customer views on social support experience, so your participation in this interview project would be greatly appreciated if you have time. Thanks for helping make community forums a great place.
    Click
    HERE to participate the survey.

  • One section data of adobe form is not read by web dynpro code

    Hi,
    I am facing problem in adobe form integrated with web dynpro. Form is having Java script. There is a section in the form related to settlement rule of wbs. It can be added in the form by pressing add record button.
    When I use this form offline and press add record and one section is added. I fill the data in those two section and upload on the portal to process online data in the second section is not reaby the code whereas in the first section is present there.
    But if the same activity is performed online data is properly read by the code.
    Could you please assist if there is any issue of saving data in the form offline and how it is handled in offline form.
    Thanx..

    Hi ,
    Try this.
    I think  you have corresponding context node is in the WDP. using  'APPEND INITIAL LINE TO'  just add  some blank data to the context. .
    Inside the form, create a table  for the context node. so at  run time all the empty entry will be displayed. Make this Table as hidden.
    Create another  Table that will display all the non empty row from  the above hidden table. When ever  we add / delete rows, the corresponding entry will update the hidden table. or else you can update the  hidden table on the click event of SUBMIT .
    Hope  this will help you.
    Regards ,
    Shaira

  • Report region in a Form (page) format

    Hello,
    All the report templates I saw using a table format. Is it possible to display a Report region in a Form format – each item on a new line, and a "next" button to fetch the next record (instead of the usual report pagination)?
    Thanks for the help,
    Arie.

    Hi Vikas,
    Thanks on your reply. I saw that template but the option 'Number of rows' eluded me. Anyway, although your reply was perfect match to what I asked, its not exactly what I have in mind. Allow me to describe what I'm trying to do, and maybe you, or others, will have a better solution/idea to give me.
    I have 2 tables with similar characteristics. The original table – TableA – and a new, empty one – TableB. In one column on the page, I wish to display the records from TableA, one record at a time. In the parallel second column, I wish to have an empty form, based on TableB, that the user wick fill according to the information on the first column. The submit process should fetch a new record, from TableA, to the first column, and save the data from the second column to TableB.
    Why your first reply is not a perfect match for me? Well, I thought to incorporate several "shuttle buttons" near several of the items in the first column, that will allow the user to copy the original field data to the new item, on the second column.
    Do you think it can be done with HTML DB? Any idea will greatly appreciate.
    Many thanks,
    Arie.

  • Retrieve POST variables just like in a normal HTTP forms

    Hi All :D
    Can anyone tell me how to retrieve POST variables just like
    in a normal HTTP form?
    I have 2 flex applications. One will send the POST variables
    and I would like the other to retrieve
    these variables. How to implement this?
    Thanks :D

    "JuggerOgre" <[email protected]> wrote in
    message
    news:g92bce$kgf$[email protected]..
    > Hi All :D
    >
    > Can anyone tell me how to retrieve POST variables just
    like in a normal
    > HTTP
    > form?
    > I have 2 flex applications. One will send the POST
    variables and I would
    > like
    > the other to retrieve
    > these variables. How to implement this?
    Flex is a client side application. You could send them from
    one client and
    then request them from the other client, or you could use
    something like
    BlazeDS to "push" the information.
    HTH;
    Amy

  • Is it better to create ONE form, for 25 different forms?

    We have a Telco Application (in Forms 10g) which has about 200 Forms which are called from the main menu. Out of that 200 forms about *25* are "file upload" type forms (shown below).
    http://www.freeimagehosting.net/alg6q
    As you can see this is small form. The functionality is as follows:
    *(a.)* Select a text file (which has data in tabular format) from the client PC.
    When file is selected, it is also copied to a directory in the DB server machine. File Name will show the full path of the file in the client machine.
    *(b.)* When user presses Load button, form calls a stored packaged procedure. In that we create a EXTERNAL table mapped to the file in the db directory and read the contents to a temporary table in the DB.
    *(c.)* When user presses Process button, the temporary table is read and our Telco tables are updated using this data.
    *(d.)* You can view the error records and correct records discovered while processing, with the View File option. This will display 2 Oracle reports.
    *(e.)* You can delete the temporary table contents using the Delete Temporary option.
    This story goes like this: Our application is in Forms 10g. Now, we want to upgrade this application to 11g Forms. One problem we encountered was the FileUploader bean which we use in the above forms. This does not work in 11g. Solution was found in using WebUtil. Now, we have to modify all 25 Forms (obviously).
    Now here comes the real important part: Our Managers think that in the future also we might have to do upgrade to these 25 forms (due to future problems/upgrades with WebUtil and so on) and they want us to create ONE form for the 25 forms. So, in that ONE form,
    (a.) We have a list box at the top where uses selects which upload function he wants.
    (b.) Then, the file is selected (and transferred to the DB directory).
    (c.) Now when the users presses Load button, we have to execute the load packaged procedure for the selected load file option.
    (d.) When he presses Process button we have to run the program unit for the selected file upload function.
    (e.) When user presses the View File button, he has to show the correct records and invalid records (found after processing) in 2 reports. The reports differ from function to function.
    (f.) He can delete the records in the temporary table using Delete Temp button.
    Is this is good idea?? My initial study tells me that it is not a good idea since we have one form with too much functionality. What are pros and cons of this approach and what is the best solution??
    Edited by: user12240205 on Jun 25, 2012 1:16 AM

    So the forms are completely different, and yet you are asked to stuff them all together into one form? What sense would that make? That's like pulling forms which are using text_io together just because when text_io is changed you simply would need to edit one form. Well of course you would have to. On the other hand there is a pile of code necessary to seperate the parts you glued together in the first place plus the effort of pulling all those forms together plus the effort of adding stuff to one "part" of the form.
    Also think about version control: you'd create more frequent conflicts in putting those forms together when different developers edit different parts of the form. Conflicts causes work as developers are forced to merge more often plus developers can make errors when merging their changes. Also the log of your version control system becomes quite useless as it always will be the xyz form which is changed. If you would want to know what did change you would have to read the log messages carefully of each revission (given the fact that developers wrote them carefully) or do diffs between revisions instead of...looking at what files changed.
    And all that just because the only thing they have in common is that they are using webutil?!? Do your managers keep their Blue Socks and their Blue Cars in the same drawer because they are blue?
    If the issue here is that you need to edit many forms and this might cause errors then you should take a look at the JDAPI, because this would be the tool to do changes in forms in batch. The forms migration assistant can also be configured to change one built-in into another, and you wouldn't have to write one line of java code. But stuffing forms together because they use the same built-ins...I'd say no, but of course this is just my opinioin ;)
    btw.:
    When you say API, u mean a PLL, right???Not only, by API I meant Application programming interface; this might be a package in a library, a whole pll file, a database package, a java class, or a combination of all those.
    cheers

  • Two rows instead of one in the database when form with 2 data blocks.

    Hi All,
    I have created a form having 2 data blocks
    data block one to populate table A
    data block two to populate table B .
    now when i save the data after pressing the save option ....i find 2 records instead of one in the database table A and Table B.
    it should have been just one per table ....can some one suggest pls
    Sunny

    ok : step by step :
    do you have a trigger created named "ON-INSERT" on
    the block?Many thanks for your support....
    I do not have an ON-insert trigger.....
    I will explain my scenerio.....
    I have 2 data blocks one-below the other in the form
    accessing 2 different tables....
    now on the canvas of this form I have added a
    button....and on that button i have written a trigger
    'when-button-pressed' Trigger....
    it takes the data from the various text_items of the
    form and inserts them into their corrosponding
    tables....and I have added 'COMMIT' at the end this
    trigger
    so when I press this button ....the data 2 records
    get inserted into the 2 tables instead of one each..
    TIA
    Sunnythe above form looks something like this.....
    -------------------------------------------------------------------------------------------------------|
    |------------------------------------------------------------------------------------------------------|
    | |
    | ---data_block1------------------------------------------------------ |
    | | | |
    | | some data entry here for emp1 table | |
    | |__________________________________________ | |
    | |
    | |
    | |
    | ---data_block2------------------------------------------------------ |
    | | | |
    | | some data entry here for dept1 table | |
    | |__________________________________________ | |
    | |
    | button1 |
    |-------------------------------------------------------------------------------------------------------

  • Form refresh issue inside dynamic region

    Hi
    I have a problem with dynamic region. I have a menu on left side containing two buttons and dynamic region on right side. On clicking one of the button employee form open inside the dynamic region but I am unable to navigate between records by clicking form first , next , previous or last buttons.

    I am new learner of Jdeveloper. I run this tutorial http://baigsorcl.blogspot.com/2010/06/working-with-dynamic-regions-in-oracle.html. I am able to learn about how to dynamically bind the taskflow id. When I click the form button on left side of menu Employee Form open in right side of splitter but its navigation button are not working.

  • Form not getting displayed in sap b one

    I have created a form using screen painter.But it is not getting displayed in sap b one.When I debugged the form it doesnot show any error.

    Option Strict Off
    Option Explicit On
    Friend Class frmEmployee
        Private WithEvents SBO_Application As SAPbouiCOM.Application
        Private objForm As SAPbouiCOM.Form
        Public Sub New()
            MyBase.New()
            '// set SBO_Application with an initialized application object
            SetApplication()
            LoadFromXML("frmEmployee.xml")
            'LoadFromXML("MySimpleFormxml")
            '// Get the added form object by using the form's UID
            objForm = SBO_Application.Forms.Item("F_4")
            '// Show the loaded Form
            objForm.Visible = True
            '// Saving the Form as an XML file
            '// although it already exist as an XML file
            '// it is good for practice
            'SaveAsXML(objForm)
        End Sub
        Private Sub SetApplication()
            '// Use an SboGuiApi object to establish connection
            '// with the SAP Business One application and return an
            '// initialized appliction object
            Dim SboGuiApi As SAPbouiCOM.SboGuiApi
            Dim sConnectionString As String
            SboGuiApi = New SAPbouiCOM.SboGuiApi
            '// by following the steps specified above, the following
            '// statment should be suficient for either development or run mode
            sConnectionString = Environment.GetCommandLineArgs.GetValue(1)
            '// connect to a running SBO Application
            SboGuiApi.Connect(sConnectionString)
            '// get an initialized application object
            SBO_Application = SboGuiApi.GetApplication()
        End Sub
        Private Sub LoadFromXML(ByRef FileName As String)
            Dim oXmlDoc As Xml.XmlDocument
            oXmlDoc = New Xml.XmlDocument
            '// load the content of the XML File
            Dim sPath As String
            'sPath = IO.Directory.GetParent(Application.StartupPath).ToString
            sPath = "D:\Final\Forms"
            oXmlDoc.Load(sPath & "\" & FileName)
            '// load the form to the SBO application in one batch
            SBO_Application.LoadBatchActions(oXmlDoc.InnerXml)
        End Sub
        Private Sub SaveAsXML(ByRef Form As SAPbouiCOM.Form)
            Dim oXmlDoc As Xml.XmlDocument
            Dim sXmlString As String
            oXmlDoc = New Xml.XmlDocument
            '// get the form as an XML string
            sXmlString = Form.GetAsXML
            '// load the form's XML string to the
            '// XML document object
            oXmlDoc.LoadXml(sXmlString)
            Dim sPath As String
            'sPath = IO.Directory.GetParent(Application.StartupPath).ToString
            sPath = "D:\Final\Forms"
            '// save the XML Document
            oXmlDoc.Save((sPath & "\frmEmployee1.xml"))
        End Sub
    End Class

  • Is it too much to ask that a Mac user can just OPEN and USE a PDF form created by LiveCycle Designer PC software?!?

    My problem is just that- I have created all my forms using LiveCycle Designer because it is easier to make the forms accessible to individuals with disabilities.  Apparently it doesn't make Mac users have access to the forms.  I've received complaints from Mac users that cannot complete or submit the forms that I created.  I'm not asking how to recreate using another software, I know how to do that.  I'm asking is there a work around to allow a Mac user to open a PDF form or even XML (bedded within an HTML page) on a Mac computer WITHOUT having to use bootcamp, parallels, etc. and be able to complete the form and submit, print or email it?????  I've exhausted all my knowledge on this thus far and I'm hoping to find something that will help.  So far all forums talk about how Mac users need to have a PC side to their computer.  Isn't there another way?
    I've attached an example form that we are no longer using (though still created exactly the same as the others)
    Thanks!

    Hi, as far as I can infer, that term means it's not loading any resources until needed, opposite of this...
    -bind_at_load
                     Sets a bit in the mach header of the resulting binary which tells dyld to bind all symbols                when the binary is loaded, rather than lazily.
    https://developer.apple.com/library/mac/documentation/Darwin/Reference/ManPages/ man1/ld.1.html
    Load resources lazily.
    You should never load a resource file until it is actually needed. Prefetching resource files may seem like a way to save time, but this practice actually slows down your app right away. In addition, if you end up not using the resource, loading it wastes memory for no good purpose.
    http://developer.apple.com/library/ios/#documentation/iphone/conceptual/iphoneos programmingguide/PerformanceTuning/PerformanceTuning.html
    And, higher OS versionsare even worse with Bonjour/mDNSResponder, but might see this...
    http://support.apple.com/kb/ht3789

  • Can you have more than one submit button on a form?

    I'd like to divide a form so that there are two sections, each with their own submit buttons.  Is it possible to have more than one and if so, how do you "create" a button?

    Hi,
    You could try Redirect URL under Options tab. The way is you create two forms instead of two sections. Let's say form A and form B, then set form A's Redirect URL to form B.
    After submit form A, it will jump to form B after seconds, which you can also set in Redirect URL option.
    Let me know if this can help you.
    Thanks,
    Pengpeng

  • 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

Maybe you are looking for

  • Delay in opening and submitting a form

    We have a form which is deployed on two servers. From the test server it behaves normally and can be opened and submitted in reasonable time. But on the production server, it sometimes takes time to open the form and during submission. Delay in openi

  • Outlook for Office 365 Home will not open

    A Security screen pops up and I cannot get Outlook to open.

  • Dead Power Computing machine with files I need to access

    I have an ancient Power Computing machine that died this week after a full and fruitful life. Since I have my Mac Book Pro most of my files are on my new machine, but some old stuff I would like to recover. I am pretty sure the HD is OK, so what is t

  • URENT ITUNES QUESTION

    hi, i have itunes latest version for pc.. whenever i "add folder to libary" the music duplicates i have over 500 songs so its a pain to remove the duplicate songs. but how can i change it so that when i "add file to folder" all the new songs in that

  • In Which case Vo extension is not upgrade safe

    Hi all, In Which case Vo extension is not upgrade safe kumar