Multi forms in one page

Hi ,
I'm developing on apex 4.0.
I would like to display 2 forms on a same page but when i submit my first from, i have error because of duplicate column..
I think the second form is also submited.
How to make independant the 2 forms?
Thanks in advance
Best regards, Damien

Hi user11969500,
If you are using same item names in the multiple forms in a page you will definitely get the error.
Create forms in separate pages you can display those forms in a page using iframe or frames concept
Thanks and Regards
Maheswara

Similar Messages

  • How to print form in one page

    Hi, guys,
    Current we print script form with system automatic new page, but sometime it'll cover two pages and a lot of blank left on the first page. So user ask to print in one page. So how can i do it? is there any place we can configure the line item per page?
    Our system is Ecc 6.0. The form is used for payment advice which has been copied from sap standard form.
    Thanks in advance,
    Alex

    Are the same line items printed on first page when line items printed on second page?
    Just check it the height of the main window, in ur first page. If see if u can increase ur size of the main window so that u can add more line items.
    Do one more thing Give all ur line item fields in Main window in
    PROTECT and ENDPROTECT commands.
    ex:
    /:   PROTECT
    P1 &ITAB-MATNR&
    /:   ENDPROTECT
    If it is a SMARTFORM,
    Create a STYLE in Tcode:- SMARTFORMS,
    In that create a Paragraph Node, Select the Check box of Page Protected.
    Use that created STYLE ,
    Under the Line Items of ur Main Window> Table Node, In Output Options, Select the created STYLE.
    Now check for the TEXT entry for the Field and in that select the Paragraph format from the drop down list.
    Edited by: Bala Krishna on Aug 20, 2008 7:46 AM

  • Need to restrict the form into one page with out second page in SAP Script

    Hello Friends,
    I have a query in SAP script form, I had created one form for confirmation request for FI, i had copied the standard form F130_CONFIRM_01 and made the changes as per the requirements and checked in f.17 which was perfect. I had removed all the lines except wherever the changes i had made in the form.
    Here iam getting one problem, when iam printing the confirmation request it should give me in one page but here iam getting two pages of which one page iam getting the complete information and the second page iam getting the empty page.
    It should not give the second page. i also checked by giving the condition if &page& eq 1  but no difference iam getting two pages.
    Pl. let me know how to solve this problem since this is very very emergency issue.

    Hi Mark,
                  If i am not wrong is this Tcode for customer/vendor balance confirmation? In the standard script that u mentioned, the first page id the letter, and the second page contains the balance sheet.You would not be able to restrict the blank pages from coming, coz there are in all three scripts configured for the TCode F.17, so the blank pages are bound to come, even if the conditions for pages are maintained. I have faced similar problems in my development too....
    Thanks & Regards
    Nayan
    SAP Consulatant.
    Reward with points if useful

  • Working With 2 Forms On One Page

    Currently, I have a situation where I need to have 2 forms on
    the same page.
    - the main form - and secondary form
    - the secondary form is a small search box - whose mysql
    query result fills a separate table on the page. From there, the
    user can click on one of the table results - and it will be added
    to the main form in the proper field.
    Everything works fine, unless the user has filled out the
    MAIN form ( without saving first ) - and then chooses to update the
    form from the secondary table. when this happens the form will be
    filled out however the user's updates are lost ( unless he saves
    first.)
    Q: Is there a way that I can make sure that the MAIN form is
    updated (action sent) prior to the secondary form action? Like with
    these 2 forms - I would like to have a button that can control BOTH
    forms ('action' send #1 then 'action' send #2) with one button
    press....
    BTW: most likely I could create something with PHP session
    variables ... but I was hoping there was some cool trick for and
    doing the 'action' update for 2 forms with one button...

    any help would be appreciated.....

  • Multiple Forms on One page

    Hi,
    I am trying to create multiple forms based on different tables on ONE page. But some how I get errors in the Automatic process (fetch,insert, and update) which gets created when you create a form.
    The tables i am using have some common colomn_name but i when creating form i am not including those columns.
    For eg. all my table have create_by,update_by column but i am not add these columns in the form as they are updated by the DB trigger.
    Vikas

    Vikas,
    create one form using wizard and the others manually.
    Denes Kubicek
    http://deneskubicek.blogspot.com/
    http://www.opal-consulting.de/training
    http://apex.oracle.com/pls/otn/f?p=31517:1
    -------------------------------------------------------------------

  • Update multi tables in one page

    I need to create a page that allow users to update ( no insert, no delete) 2 tables 1 view.
    home page users enter a record_no, then I pass the rec_no to p2 which has 3 regions. Each region points to one table\view respectively. All tables\view are linked by a same rec_no. Each region has a form on table with buttons: cancel,save.
    This works fine with only one region but When I start putting 2nd region,
    following issues arise
    1. data only display on most recently added region( form), it won't display on both regions
    2. when I click apply changes (save) on region 1, it erros on both regions that have not null columns. I think this is because it can't tell the difference on the button that I press.
    Is it possible to achieve this goal: update multiple tables in one page ? What is the best way to do it ?
    I don't want to use form with a report because it has extra page to go through.Ultimate goal is to make all regions Hide and show, so data won't clog whole screen if user has no need to see all at once. Is creating a view of these 3 tables\view the way to go ?
    Can you help ? My brain is fried now.
    Thanks.
    Tai

    Hello Tai,
    I understand your frustration. Sometimes, something that should seem easy turns out to be so difficult. In this case, what you can do is this:
    1. Get rid of the buttons in the second and third region. You can drive your updates all from only one set of buttons.
    2. Set a condition on your update button that it only do the update if all three regions data have been filled in - that is - the fields you need are NOT NULL.
    Sometimes, I have actually created a separate region called "Buttons" and that is all that resides there. When I have multiple regions on a screen that need input, I won't do any of the updates until all areas have been populated.
    As for hiding/displaying the various regions based on your user's need to see them, you can also set conditional display on the region so the user won't see them if they don't need to.. And/or use the hide/show region template.
    I hope this helps,
    Don.
    You can reward this reply by marking it as either Helpful or Correct :)

  • 2 forms in one page and same backing bean

    Hi,
    Can I use the same backing bean to handle 2 forms in the same page?
    I have something like
    <h:form id="form1">
    <h:commandButton action="#{myBackingBean.doForm1}" />
    </h:form>
    <h:form id="form2">
    <h:commandButton action="#{myBackingBean.doForm2}" />
    </h:form>
    When I click the first button, "doForm1()" is invoked. But when I click the second button, "doForm2()" is not invoked!!!
    What do I do wrong here?
    Thanks!
    Qingtian

    Hi user11969500,
    If you are using same item names in the multiple forms in a page you will definitely get the error.
    Create forms in separate pages you can display those forms in a page using iframe or frames concept
    Thanks and Regards
    Maheswara

  • Two Editable Forms on One Page, Issues / Problems Applying Data

    Greeting Everyone!
    I have a problem and I need assistance in getting this issue resolved (advice).
    I have a page with two editable regions, each editable region references a different table. The two tables are related by a common key value. The first issue is that I am able to successfully load the data from the second region, but the data from the first region is not loaded into it's particular form region. Additionally, I have two sets of buttons, one set per region, and two sets of fetch processes and two sets of automatic row processing dml routines.
    Can two forms coexist on the same form or would it be more appropriate to try and make my changes with a view?
    Thanks,
    Charles

    I agree that when you have pages that are more complicated than 1 form etc you should look at writing the code to populate and process the data yourself. I would ditch the automatic row processing and fetch routines and write your own. More work, but gives more control.
    Something like:
    begin
    if :P1_AID is not null then
    select [your table columns] into :P1_AITEM1, :P1_AITEM2
    from [your table]
    where id = :P1_AID;
    else
    :P1_ATEM1 := null;
    :P1_ATEM2 := null;
    -- same for 2nd form
    end if;
    end;
    Conditionally display the insert/update/delete buttons and you're set.
    Then just add the appropriate handlers on submit, conditionally running them based on button or request. Either build your insert statement in the after submit processing or call pl/sql.
    I tend to use pl/sql packages to handle table API's.

  • ORA-00957: duplicate column name for multi-form page

    I have read numerous threads on this but I think I am missing something. I have two forms on one page, each based on a separate table. They each have one column in common which is why I believe I am getting this error. However, I do not understand why since each form has its own Automatic Row Processing, it is tripping over the column name. I have changed the name of the page item to be different, but I still get this error. TIA.

    Hi,
    Technically you can not use two forms in one page. Both table have the same column name which confuses the DML process. Try change the column name in one table and see if it works.
    Cheers,
    Tajuddin

  • Multiple Forms w/ One Submit Button

    Hello,
    I'm trying to create something for a little league team. I
    have a MySQL database with 2 columns, i.e. Name/Age.
    I currently have 9 forms on one page, with one submit button.
    Name - (Text Field)
    Age - (Text Field)
    Name - (Text Field)
    Age - (Text Field)
    etc.
    I only want one submit button to submit all the forms into
    the name/age columns of my database instead of having to include a
    different button next to each form. But, so far, when I try,
    instead of inserting all 9 forms with the one submit button, only
    the first form gets inserted into the name/age columns of my
    database. I'd greatly appreciate any help. I have no idea what to
    do.

    quote:
    Originally posted by:
    bregent
    That will never work. Use 1 form and then either write a
    script
    Thanks for the help bregent. You mean like a PHP script or
    something?
    quote:
    Originally posted by:
    bregent
    use a stored procedure to loop through the fields and insert
    them into the db.
    I know wayyyy to little about web design to understand what
    that means.
    Thanks,
    Jennifer

  • MULTI ITEM ENTRY AT A TIME IN TABULAR FORM SUBMIT ONE TIME

    MULTI ITEM ENTRY AT A TIME IN TABULAR FORM SUBMIT ONE TIME

    No, it wasn't addressed to you but rather the OP - sorry for the confusion.
    I try where possible to point out that without asking a sensible and clear question, posters are unlikely to get sensible and clear answers. A lot of time is wasted on this forum trying to get people to ask questions properly.
    Cheers
    Ben

  • How do I make the form/pdf fit to one page?

    I designed my first form today and it's two pages long.  How do I get it all to fit on one page?  It will be saved as a pdf.

    While designing the form it will help to be in Page View.  This gives a very close approximation to how your fields will appear in the resulting pdf.  In the Design tab use menu View-> Page View.  All page breaks will now appear as dotted lines.  To aid in fitting more fields you can place forms side by side or reduce the font size.  Eliminating the Header also helps.
    Jeff Canepa
    Software Quality Engineer
    Adobe Systems, Inc.
    [email protected]

  • Displaying one page at a time in a form

    I have a bunch of different single-page forms for people to fill out but they only will be filling out one of them at a time. I want to create one pdf document that contains all the different forms available (about 50 different pages) but only displays one of them at a time. I was wondering if there was a way to have someone chose what form they wanted to fill out when they opened the pdf and then only allow them to view that one page. Any thoughts on how to do this would be a great help!

    Thanks for the help so far. I think the solution that I am going to try to go with is creating a file that has all the forms in it and setting it so that all the visibility is off for all layers and fields when it opens. A pop up comes up and prompts the user to chose several options which are necessary to determine the form they should fill out. Then I will extract that page from the main document into a new pdf and turn on the visibility of that page. I've read conflicting things online about extracting a page to create a new pdf. If I don't specify a path to save the new pdf to will it just allow the user to save it on their own or will this solution not work?

  • How to use more than one page to design a form-like report???

    Hi
    I am designing a form-like report. and widening the repeating frame to contain all the page or the window like this page:
    Image: !http://up1.m5zn.com/photo/2008/12/21/07/e728mos12.jpg/jpg!
    Now there is no space at the window to complete designing the report!
    How to make the repeating frame to contain more than one page or one window to complete designing the report?

    change Vertical Panels per Page to 2 (or more as needed) for the Main Section of Layout Model.

  • Form validation working on one page, but not the other....

    Hope someone can help with this.
    I have a page below with a load of contact forms which all work fine :
    http://www.goodsafariguide.com/judges/judges.php
    I've trued to recreate (admittedly mostly by saving as....) the same functionality here :
    http://www.goodsafariguide.com/awardssite/judges/
    They do work when fulled in correctly, but there's a glitch with the validation.
    Basically when you fill in a form incorrectly, the page reloads, with the form's accordion closed. When you open it up, its showing the ugly looking error at the top of the form.
    Any ideas what's causing it to act like this, as opposed to the way it works in the first link?
    Thanks.

    Iain71 wrote:
    I've trued to recreate (admittedly mostly by saving as....) the same functionality here :
    http://www.goodsafariguide.com/awardssite/judges/
    They do work when fulled in correctly, but there's a glitch with the validation.
    When looking at the source code I note that - unlike the first page - this one doesn´t contain any references to the ADDT form validation libraries ("../includes/tng/scripts/FormValidation.js" and "../includes/tng/scripts/FormValidation.js.php"), meaning that the validation can´t work.
    Cheers,
    Günter

Maybe you are looking for

  • How do I update my iPhone 3G firmware but not to the latest version?

    How do I update my iPhone 3G firmware but not to the latest version? I currently am running 3.1 but would like to update it to the 4.1 version (not the latest 4.3 version). How do I do this? I have already gone online and downloaded the 4.1 firmware

  • How do I get my photo albums on to a different pc?

    I am travelling and currently about 10,000 miles away from my trusty laptop. My problem is that I would like to get my precious photos off my Ipad and on to a computer that I am borrowing so that I can back them up and manage them on my external HD I

  • Why does font looks pixelated when exporting motion template to FCP?

    I created a motion template for some text animations and I also tried with just a motion file and when I added either one to FCP it just looks like crap (pixelated edges, really really bad edges) I noticed this happens if you don't have a drop shadow

  • Messaging Express Issues / Solutions

    We are having loads of problems with users with various types of ad blockers and popup blockers, much like this: http://swforum.sun.com/jive/thread.jspa?forumID=15&threadID=21746 Due to the nature of the various combinations of browsers/patches/ad bl

  • Change default location in Dashboard

    My dashboard is showing Movies in another City. Where do I change this, so it will read from my city? Also, does that apply to weather? Thanx,