Multiple Forms need to be generated

Hi Friends,
I have a requirement to issue the Smartfrom for each material in the delivery(I will display some characterstics of each material as a form). This would be called from VL02N through configuration. I have written a driver program and i am calling Smartform's function module as many times as many Number of materials i have inside the loop. But i am not getting all smartforms. I am only getting First material smartform.
Please suggest me proper method.
Thanks,
Sekhar.J

Instead of putting a loop on function module....you can put all your contents in
the main window and loop it...moreover you can also check the condition...
On change of material number try to put a page break......
You will have to check the number of lines in your internal tables that you are using in the smartforms. see this code i have written using program lines.
flag = 'N'.
DESCRIBE TABLE it_final LINES count.
n = n + 1.
IF n = count.
flag = 'Y'.
ENDIF.
and then for the page break you must hae use 'COMMAND' . in the condition tab for command give condition :
Flag = 'N'.
Try this , this will solve your problem and let me know about it.
Edited by: Sudhanshu Jain on Dec 26, 2007 1:00 PM

Similar Messages

  • Generate and Print Preview Multiple Forms in a Single PDF

    There have been other questions similar to this but none directly address my problem.  We have the need to generate multple forms in a .pdf using Adobe interactive forms.  We can generate the multiple forms, but the user has to click on each form to view.  They want to have the forms in a single document that they can scroll through before printing.  We can do this in SmartForms but need to do it in Adobe.  Does anyone know how to generate multiple forms, either multiple copies of the same form or various forms, from an ABAP program into a single pdf that can be print previewed, in scrollable form, by the user?

    I can describe it one more time, I think:))
    You have multiple options, but only one "reasonable" within SAP.
    You can call an external application (through command line etc.) to concatenate forms for you.
    You can use iText as mentioned in the thread, and write yourself a "tool" which will concatenate the forms for you.
    Both these "options" would not be acceptable for my clients, I name them to help you get the whole picture.
    Then there is the third option: use a form for a single instance (template/ form A) and create a new form (form B), where you will use the A template:
    - you need to: create a new interface where everything from the old interface is a row of the table (example: you have a form to print out the personal card of the employee, so in a new form you will need to use a table, where a row is an employee)
    - you need to create a new form layout based on the new interface:
    in this new layout you will paste the whole layout of the old form (A/ single instance) and wrap it into a subform. The added subform will work as a table (you will bind that to the table from interface) and everything from the old template within this new subform will work as a "row" (something what you can repeat for each data item).
    Does that sound reasonable?
    Cheers Otto

  • RetrorespectiveActivation of Multiple Form 16 in mid- of the financial year

    Hi All,
    We have mainatined TAN as per the company Code in feature 40ECC. Now we want to have multiple Form 16 if there is change in company Code of an employee for the financial year 2009.
    We have not activated Multiple Form 16 Switch so far. Now in the last month of financial Year 2009 that in March'2010 (period 12/2009) we want to activate Multiple Form 16 switch from 01.04.2009. After activation Multiple form 16 Switch, we are planning to trigger retro for all employees from 01.04.2009.
    But we are not very much sure what will be the impact of activating Multiple Form 16 switch now in the last period of the financial year.
    Required your valuable inputs on this.
    Thanks,
    Ravinder

    Hi,
    Check whether multiple Form 16 switch is active or not.
    In case this is active, then the Form 16 will be generated as under:
    Company A - showing earnings from 01.04.08 to 31.12.08 only
    Company B - showing earnings from 01.01.09 to 31.03.09 as current earnings and from 01.04.08 to 31.12.08 as income from previous employment.
    In case multiple Form 16 is not active, then the Form 16 that you are getting is correct. However, in this case you need not print the Form 16 of company A. Only the Form 16 from the company code where the employee belongs to as on 31.03.2009 (i.e. last day of the FY) will be printed. And in this case the Form 16 will include complete earnings from 01.04.2008 to 31.03.2009 as current earnings.
    Hope this clarifies your query.
    VK

  • Print multiple forms between FP_JOB_OPEN and FP_JOB_CLOSE

    I am aware, that there are questions regarding "Printing Multiple forms", but I didn't find answers there.
    Still my system is not working as expected:
    1.  FP_JOB_OPEN is called
    2. the generated Adobe Forms function is called multiple times
    3.  FP_JOB_CLOSE is called
    This program doesn't deliver all the pages, but just the first call. How shall I solve this problem?
    (Coding should work anywhere with copy-pase.)
    data: fm_name           type rs38l_fnam,
          fp_docparams      type sfpdocparams,
          fp_outputparams   type sfpoutputparams.
    parameters: p_fpname type fpname default 'FP_TEST_02'.
    * Get the name of the generated function module
    call function 'FP_FUNCTION_MODULE_NAME'
      exporting
        i_name     = p_fpname
      importing
        e_funcname = fm_name.
    * Sets the output parameters and opens the spool job
    call function 'FP_JOB_OPEN'
      changing
        ie_outputparams = fp_outputparams
      exceptions
        cancel          = 1
        usage_error     = 2
        system_error    = 3
        internal_error  = 4
        others          = 5.
    * Call the generated function module
    call function fm_name.
    * SECOND CALL ****************************
    call function fm_name.
    * Close the spool job
    call function 'FP_JOB_CLOSE'
    *    IMPORTING
    *     E_RESULT             =
      exceptions
        usage_error           = 1
        system_error          = 2
        internal_error        = 3
        others               = 4.

    Hi ZSOLT,
    In order to call the form multiple times please do the following,
    1) Just before your FP_JOB_OPEN you need to pass the output parameters (good practice). You can also set other parameters as well (for example nodialog, preview, copies., etc)
      CLEAR  fp_outputparams.
      fp_outputparams-dest = 'PDF1'.      "Default pdf printer
      fp_outputparams-reqnew = 'X'.       "New spool request
    Now call your FM FP_JOB_OPEN with the above output parameters.
    2) Usually this step is processed in a loop. (getting your interface data into a internal table and then looping at it)
    But here I am enhancing your example code.
    In order to trigger the form multiple times you need to change some input data to the form (for example I have changed date and time below in the prepare test data sections) so that the call function fm_name gets regenerated every time there is new data
    data  l_datatypes       type sfpdatatypes.
    prepare test data
      l_datatypes-char = '#'.
      l_datatypes-string = 'Auf geht''s! '.    "#EC NOTEXT
      l_datatypes-numc = '42'.
      l_datatypes-dec = 0 - ( 12345 / 7 ).
      l_datatypes-fltp = 0 - ( 12345 / 7 ).
      l_datatypes-int = 4711.
      l_datatypes-curr = 0 - ( 12345 / 7 ).
      l_datatypes-cuky = 'JPY'.       " no decimals
      l_datatypes-quan = 12345 / 7.
      l_datatypes-unit = 'DEG'.       " 1 decimal
      l_datatypes-date = '20040613'.      
      l_datatypes-time = '100600'.         
      l_datatypes-lang = sy-langu.
    FIRST CALL ****************************
    Call the generated function module
      CLEAR fp_docparams.
      fp_docparams-langu = 'EN'.       
      fp_docparams-country = 'US'.  
      call function fm_name
        exporting
          /1bcdwb/docparams        = fp_docparams
          datatypes                = l_datatypes
          mychar                   = l_datatypes-char
         mybyte                   =
          mystring                 = l_datatypes-string
         myxstring                =
          mydate                   = l_datatypes-date
          mytime                   = l_datatypes-time
          mynum                    = l_datatypes-numc
          myint                    = l_datatypes-int
          myfloat                  = l_datatypes-fltp
          mypacked                 = l_datatypes-dec
      IMPORTING
        /1BCDWB/FORMOUTPUT       =
    prepare test data
      l_datatypes-char = '#'.
      l_datatypes-string = 'Auf geht''s! '.    "#EC NOTEXT
      l_datatypes-numc = '42'.
      l_datatypes-dec = 0 - ( 12345 / 7 ).
      l_datatypes-fltp = 0 - ( 12345 / 7 ).
      l_datatypes-int = 4711.
      l_datatypes-curr = 0 - ( 12345 / 7 ).
      l_datatypes-cuky = 'JPY'.       " no decimals
      l_datatypes-quan = 12345 / 7.
      l_datatypes-unit = 'DEG'.       " 1 decimal
      l_datatypes-date = '20100913'.                 "You need to change your data in order it to trigger a new form with the new data.
      l_datatypes-time = '10700'.                        "You need to change your data in order it to trigger a new form with the new data.       
      l_datatypes-lang = sy-langu.
    SECOND CALL ****************************
    Call the generated function module
      CLEAR fp_docparams.
      fp_docparams-langu = 'EN'.
      fp_docparams-country = 'US'.
      call function fm_name
        exporting
          /1bcdwb/docparams        = fp_docparams
          datatypes                = l_datatypes
          mychar                   = l_datatypes-char
         mybyte                   =
          mystring                 = l_datatypes-string
         myxstring                =
          mydate                   = l_datatypes-date
          mytime                   = l_datatypes-time
          mynum                    = l_datatypes-numc
          myint                    = l_datatypes-int
          myfloat                  = l_datatypes-fltp
          mypacked                 = l_datatypes-dec
      IMPORTING
        /1BCDWB/FORMOUTPUT       =
    Close the spool job
    call function 'FP_JOB_CLOSE'
       IMPORTING
        E_RESULT             =
      exceptions
        usage_error           = 1
        system_error          = 2
        internal_error        = 3
        others               = 4.
    I have tested the above code and I am getting multiple forms.
    Please try on your end and let me know if it works.
    Thanks
    Raj

  • Many of our form submissions do not generate an email notification.

    Any ideas why about 30% of our form submissions do not generate an email notification?  We use FormsCentral for a rental reservation form and we have lost several rentals recently because we never knew about the reservations.  We hate to abandon all of the work we put into making this form work so any help is appreciated. Otherwise, we will leave Adobe very soon.

    Hi,
    The E-mail template is actually works as an HTML or CSS page. You need to use the HTML/CSS formats to send these values in the format as you want. Use <tags> to do the formating of Email template. 
    Use function to store multiple values and thn use them into Email 
    I hope this will help. 
    Thanks~ Giriraj Singh Bhamu

  • Using spry select on multiple forms in same page

    Greetings-
    My apologies if this has already been answered but after a few searches I've not found my solution....
    I have a web page with 2 different forms (completely different open form and close form tags) that I'm trying to get the Spry Select Widget to work in.
    Both forms' Spry Select widgets interact as expected with the user with one exception; the second form continues to submit to the action page even if the user is trying to submit an invalid value (the docs suggested using the value of -1 so that's what I'm using). The appropriate error gets displayed to the user but the form continues to submit, which I don't want. Is there a limitation that I missed regarding the use of multiple forms in the same web page with the Spry Select Widget?
    FWIW, I'm running the app on ColdFusion and even the cfform/cfselect won't work with the Spry Widget.... I've named and id'd all forms and form elements and still no luck.
    Any ideas?
    Thanks in advance,
    Rich

    Hi Brad,
    The preamble looks reasonable.  I would like to make sure you are clear on the process.
    The data needs to be rendered twice (i.e. a 2 step job).  In the first step you create a trace file with the page count for each document in it...\trace"^define User:PageCountForTrans_@:TransCount. @$page.@LF."."
    In the second step, that trace file is brought back in as a preamble file.
    Please confirm that you are in fact passing the data twice.
    cheers
    Chris

  • Multiple Forms in a Flash Document and Posting Using ASP

    Hello everyone!
    I have some what of a dilemma on my hands. I am creating
    multiple forms in one document using Flash and need them to post
    using ASP script. I have been researching this for the last six
    days, and I have had NO luck. I have noticed that all the
    information that I have found is for one form, not more than one.
    What I have so far is the Flash document, with 4 forms. The
    basic idea is that a user chooses from a drop down menu (the
    combobox) a location, and depending on the location chosen, it
    takes the user to another frame in the flash document. The forms
    (all their own movie clip) contains a name field, a department
    field, and either a manager name a userID field or an employee
    number as well as the basic buttons for submitting the form or
    resetting the form.
    So far what I have working is the drop down menu (combobox)
    taking me to the proper frame and it shows the appropriate form.
    The reset button clearing the form (deleting any information that I
    have imputed into the input fields), but I have absolutely NO idea
    how to get the submit button to work (I did manage to get it to
    send me a message if there was nothing in one of the input fields),
    and NO idea how to get the information to the ASP file.
    Where there are 4 forms do each of them have to have their
    own ASP file attached to them, or can I use one?
    If anyone knows a site that deals with multiple forms in one
    SWF and posts using ASP that would be greatly appreciated, or if
    you know some actionscript that could be helpful.
    Thank you all in advance.

    That would be part of my problem, I really don't know ASP,
    and I am flying by the seat of my pants.
    The current script I have for the ASP file is:
    <% @Language = "VBScript" %>
    <%
    Option explicit
    Dim strfullName
    Dim strdeptName
    Dim strmanagerName
    Dim strobjeemail
    Dim strlocation
    strfullName.Request.Form("fullName_txt")
    strdeptName.Request.Form("deptName_txt")
    strmanagerName.Request.Form("managerName_txt")
    strlocation.Request.Form("locationName")
    Set strobjemail = CreateObject("CDO.Message")
    strobjemail.From = "[email protected]"
    strobjemail.To = "[email protected]"
    strobjemail.Subject = "Program from " + strlocation
    strobjemail.Body = "This user has completed this progrmam
    from " + strlocation & Chr(13) & Chr(10) & "Name: " +
    strfullName & Chr(13) & Chr(10) & "Department: " +
    strdeptName & Chr(13) & Chr(10) & + "Manager: " +
    strmanagerName
    strobjemail.Send
    Set strobjemail=nothing
    %>
    The AS code that I have so far is:
    function formValidationChecks(){
    if (fullName_txt.length==0){
    status_txt.text = "Please enter your Name";
    else if (deptName_txt.length==0){
    status_txt.text = "Please enter your Department";
    else if (managerName_txt.length==0){
    status_txt.text = "Please enter your Manager";
    else {
    status_txt.text = "Thank You!";
    variables.fullName_txt = fullName_txt.text;
    variables.deptName_txt = deptName_txt.text;
    variables.managerName_txt = managerName_txt.text;
    varLoader.load(varSend);
    trace("-----");
    trace("Name: "+fullName_txt.text);
    trace("Department: "+deptName_txt.text);
    trace("Manager: "+managerName_txt.text);
    trace("Form validated");
    submit_btn.onRelease = function(){
    status_txt.text = "";
    if(formValidationChecks()){
    var lv = new LoadVars();
    lv.fullName_txt = form.fullName_txt.text;
    lv.deptName_txt = form.deptName_txt.text;
    lv.managerName_txt = form.managerName_txt.text;
    lv.sendAndLoad("mail.asp", lv, "POST");
    reset_btn.onRelease = function()
    fullName_txt.text = "";
    deptName_txt.text = "";
    managerName_txt.text = "";
    So far my reset button clears everything, and the submit
    button is tracing the content in the form fields, but it's not even
    grabbing the asp page.
    Any suggestions? Even pages that have tutorials that are in
    the form of a video.
    Thanks

  • Multiple forms in one region???

    Hello guys,
    I have created application with couple of pages, but now I have one critical issue with one page.
    In this page I have created multiple forms in one region by customize templated, that is working very much fine, but I unable to insert/update data into the DB table through this page.
    My sinceraio is something like that, I have couple of tables, where p_id is common in all of the tables, now this issue page I have created multiple(2) forms in one region where both the forms are built but two separated DB tables in one both of them has one column in common ie p_id, the value of p_id is processed from the previous page.
    I am aware of the apex limitation about one table for region and hence I created View from this two different tables and above that created INSTEAD OF trigger for insert and update purpose as through I can't, so.
    got the help from this below forum:-
    Report & form on Multiple table
    But still I am unable to get any sucess.... if somebody can help me out...????
    I have created same example on apex workspace... let me know if you need any credentials than...???
    Thanks
    regards,
    Kumar

    Hi again,
    I'm getting error as :-
    ORA-20508: Unable to perform insert operation. -22816 ORA-22816: unsupported feature with RETURNING clause
    Error Unable to process row of table RENAL_BIOPSY_SYMPTOMS.
    OK
    I have created view on 2 tables as :-
    CREATE OR REPLACE FORCE VIEW "RENAL_BIOPSY_SYMPTOMS" ("P_ID", "RENAL_BIOPSY_CONDUCTED_YN", "DT_CONDUCTED", "CONFIRMED_BY", "REPORTED_ON_BY", "INSTITUTION", "RESULT_TYPE", "COMMENTS", "HEMATURAI_YN", "HEMATURAI_DT", "MICROHEMATURIA_YN", "MICROHEMATURIA_DT", "PROTEINURIA_YN", "PROTEINURIA_DT", "HYPERTENSION_YN", "HYPERTENSION_DT") AS
    SELECT
    RB.P_ID,
    RB.RENAL_BIOPSY_CONDUCTED_YN,
    RB.DT_CONDUCTED,
    RB.CONFIRMED_BY,
    RB.REPORTED_ON_BY,
    RB.INSTITUTION,
    RB.RESULT_TYPE,
    RB.COMMENTS,
    SY.HEMATURAI_YN,
    SY.HEMATURAI_DT,
    SY.MICROHEMATURIA_YN,
    SY.MICROHEMATURIA_DT,
    SY.PROTEINURIA_YN,
    SY.PROTEINURIA_DT,
    SY.HYPERTENSION_YN,
    SY.HYPERTENSION_DT
    FROM
    RENAL_BIOPSY RB
    INNER JOIN
    SYMPTOMS SY
    ON
    RB.P_ID=SY.P_ID
    and created INSTEAD OF trigger on the above view as:-
    CREATE OR REPLACE TRIGGER "RENAL_BIOPSY_SYMPTOMS_TRIGGER"
    INSTEAD OF INSERT ON "RENAL_BIOPSY_SYMPTOMS"
    FOR EACH ROW
    BEGIN
    DECLARE
    PAT_ID NUMBER;
    BEGIN
    INSERT INTO RENAL_BIOPSY (RENAL_BIOPSY_CONDUCTED_YN, DT_CONDUCTED, CONFIRMED_BY, REPORTED_ON_BY, INSTITUTION, RESULT_TYPE, COMMENTS)
    VALUES (:NEW.RENAL_BIOPSY_CONDUCTED_YN, :NEW.DT_CONDUCTED, :NEW.CONFIRMED_BY, :NEW.REPORTED_ON_BY, :NEW.INSTITUTION, :NEW.RESULT_TYPE, :NEW.COMMENTS)
    RETURNING P_ID INTO PAT_ID;
    INSERT INTO SYMPTOMS (P_ID, HEMATURAI_YN, HEMATURAI_DT, MICROHEMATURIA_YN, MICROHEMATURIA_DT, PROTEINURIA_YN, PROTEINURIA_DT, HYPERTENSION_YN, HYPERTENSION_DT)
    VALUES (PAT_ID, :NEW.HEMATURAI_YN, :NEW.HEMATURAI_DT, :NEW.MICROHEMATURIA_YN, :NEW.MICROHEMATURIA_DT, :NEW.PROTEINURIA_YN, :NEW.PROTEINURIA_DT, :NEW.HYPERTENSION_YN, :NEW.HYPERTENSION_DT);
    END;
    END;
    ALTER TRIGGER "RENAL_BIOPSY_SYMPTOMS_TRIGGER" ENABLE
    My apex workspace is :-
    ws :- newapex
    us :- [email protected]
    ps :- kg
    and application as "BeforeDemo_Application" with page as 6(the ISSUE page).
    Any help guys..... appreciated..!!!!
    Regards,
    Kumar

  • Merging multiple forms and having shared fields

    I am designing multiple forms for a client for application purposes.  There are about 40 forms in all. Client is designing a online helper that will help users download only the forms they need for their application.  So once that is decided, then we are giving them a download link for required forms only. In the end client will print the forms and submit them manually. (I know it could be done better, but not yet) There will be about 16-17 different combinations of forms.
    Thing is, many of these forms have repetitive fields (name, address, phone, email, etc), so we would REALLY like to have it so that once filled out, those fields could quickly populate all the rest of the remaining forms. (does that make sense?)
    I have had a couple ideas on how to accomplish this
    1) Magic
    2) Combined all required forms into one large PDF.  Make the 16-17 possible combinations and then just set them all up manually.
         Problem is that if Form 6 changes, it may change in 10 different packages.  I don't want to do that manually every time there is a change
    3) Somehow use Adobe Livecycle to piar the fields up in the different docs, and have them all linked. (think that is impossible, hense #1)
    4) Your suggestion?
    Thanks in advanced.
    Ask any questions you may need.

    The templates/PDFs designed in LC are primarily can not talk to each other. But we can make them pull and save the information stored in Database through LC workflow. Which will give them ability to transfer data between using SOAP (we can activate these SOAP transfers on certain events or on user actions). But that involves User acknowledging each time the data transfer activated (of-course there is an option to remember the user action and never ask the user but it is controlled by user). Things get complicated once you start in this direction. However we use this technique in our internal environment.

  • Multiple form inside one jsp file

    I have to use nested jsp forms in my latest project
    ex:-
    <html>
    <head>
    </head>
    <body>
    <form id="form1" name="form1" method="post" action="ex.htm">
    <form id="form2" name="form2" method="post" action="ex2.htm">
    </form>
    <form id="form3" name="form3" method="post" action="ex3.htm">
    </form>
    </form>
    </body>
    </html>
    Can some one tell me, is there a way to submit the each forms seperatly?
    -----------------------------------------------------------------More on problem-----------------------------------------------------------------
    I am developing e-savings application.
    When the customer enter the accountno i need to display details - for this i use "form1"
    When the customer enter the withdrawal amount i need to display the balance - for this i use "form2"
    Finally i use "form3" to submit the data.
    I have done all the things inside one jsp page.
    I think you are now clear in my problem and hope best solution....
    Thank you........

    According to the HTML specification, you may not nest forms.
    You can use multiple forms as long as you don´t nest them.

  • Loading multiple forms in single jsp

    Hi,
    My jsp page has multiple forms (one form for each table which has specific info). So assume it has 3 tables, so 3 forms.
    I need to load all the form when the page is loaded.
    code:
    <FORM name=form1 action="/action1" method=post></FORM>
    <FORM name=form2 action="/action2" method=post></FORM>
    <FORM name=form3 action="/action3" method=post></FORM>
    So if I need to load all the forms, how should I proceed. Also please note each form has its own form class and action class.
    For e.g. Assume Page A (From Page A I am coming to this form page via a hyperlink and there is no action class in between) calls the page with 3 forms and I need to display all the values in the 3 forms. So how can I call the action classes for each of the 3 forms.
    So when and how will the action1, action2, action3 called?
    Any help would be greatly appreciated.
    Thanks.

    Thanks for your reply. I understand only one form would be submitted. Its ok.
    But the thing I am looking at is loading the multiple form values at a time.
    I have page A, Page B (where I need to display multiple form values. Actually this page has 3 tables, and each table is one form e.g. one table has all the name values, one table has all address values. So each has different actions).
    I am calling Page B via a hyperlink from Page A. Since I need to use hyperlink, there is no way (atleast I dont know) of using action class or anything.
    Now, my question is how do I populate the values for all these 3 forms.
    Any help would be great.
    Thanks.

  • Multiple forms in a page

    Hi
    I am writing a custom component which would behave similar way to showDetail tag in adf, but we need it as header and customized text so we went for a custom component, in showDetail component, ADF uses PPR to render only the section of the page, but if i want to achieve the same way, i am using multiple forms in the page and trying to submit each selected form, but the issue when a submit a form, it's not invoking the encodeBegin method, i am not sure whether it would execute the lifecycle of ADF.
    How can we handle multiple forms in developing a custom component.
    Thanks a lot...

    Thanks for the reply......
    Does this mean that simple forms will not work? Do I need to move to iframe?
    Even if use iframe, i have to use form for submit, as i cann't submit iframe, even then i would face the problem i earlier mentioned, like my encodeBegin(phase of lifecycle) is not invoked..... Plz guide me if you have any other alternative to this.....
    Thanks

  • Submit multiple forms with java

    Hello,
    I have a problem when I am submitting multiple forms with the javascript document.form1.submit();.
    I shall explain what my problem is. I have made a JSP that contains some forms. In the forms I post values to external sites. so the action from the forms are http://www.example.com/employee/login. I post my username and password to this external link so I have logged in. So I do this for 20 different sites. so 20 different actions in 20 different forms on one JSP.
    Now I have made one button that submit all of this forms. I do this with the javascript document.form1.submit();
    document.form2.submit();
    etc.
    But this is not consistent and I wan't a sollutions in Java so I am sure that all the forms wil execute. Because now he post only some forms and some not. So i want a solid sollution. Can anyone help me.
    Thanks in advance,
    Henk

    I had a similar situation a few years ago, where I needed to close sessions that my application had opened with different servers.
    The way I did it was with a secondary browser window, which my "primary" window would control. I had a JavaScript routine that would set the URL of the secondary window, loop with a timer and check the state of that window until the request had completed, then send the next URL, until I had "fired off" URLs to close all of my sessions.
    If this sounds like something you'd be interested in doing, let me know and I can post the code here.
    James W. Anderson
    The Coca-Cola Company

  • Multiple Form Tracking in marketing documents

    Dear all,
    I have a scenario wherein I need to track multiple forms like Form C & Vat 47 or Form C & Vat 49 during purchase/ sales. But in SAP B1 2005 we can track only 1 form per marketing transaction. Kindly suggest a workaround.
    Thanks

    Create 2 user defined fields(UDF's) one for form type(Set default value)
    and another for entering form number.
    U can also make form type depending on business requiement.
    Jeyakanthan

  • Multiple Form Regions with a single Save button

    Hello,
    Is it possible to have multiple form regions on a single page, with a single Save button that commits changes in all form regions? If so, would the forms have to be manual forms?
    If that is not possible, or a bad way to go with APEX, what are my alternatives?
    I am trying to avoid the user having to click through many screens to input the data. Logically each section should be in a different table, but I would like to group some of the sections together to reduce the number of pages the users need to navigate to.
    Thanks in advance for your help,
    Johnnie
    Edited by: johnniebillings on Jun 1, 2009 9:33 PM

    Hi Johnnie,
    I assume that the tables are related somehow?
    If so, you can create a SQL View on the joined tables (making sure that you have a unique ID for each record in the view that can act as the Primary Key), base the form on that view and then use an INSTEAD OF trigger on the view to populate the individual tables.
    Andy

Maybe you are looking for