Attach a form objects to another form

Hi, excuse me if my question is evident for you, i am a little new with oracle form,
i want to know if it is possible to attach a form objects to another form and how to do that. Thanks for your help.
Edited by: Tabit7 on Apr 1, 2011 11:37 AM

You cannot attatch a whole form (.fmb) to you form but you can subclass blocks canvas for example.
open your form A and B
in your reference form A select the block you want to have in form B (subclassed) and select and drag it to B.
You will have a popup saying "do you want to copy the object ir subclass it ?" choose sublass and you are ready...
Do the same with canvas.
but PAY ATTENTION !!!! this method seems very useful if you have let say a identical master block for different forms.
but you have to handle it with precautions as every changes made in form A will be reflected to all your sub-classed forms B, B1, B2 .... and could cause you designs problems
if for example you master form A width change to something larger than one of you B forms.
Hope this helps
JeanYves

Similar Messages

  • How can I pass data from a form guide to another form in a business process

    How do we pass data from a form guide to another form(not necessarily a guide) without having to open the form. For example we have a small form guide to capture the contract id so we can then get data from contracts table to present to the user in a form. We want the user to open the guide (either Flex guide or form guide) to enter the contract id. Upon submission we want the process to get the contract data and put it into the form that will be opened at the next step by the user without having a user interact with the form to get the data into it. In other words we need the process to get the data and populate a different form than the form guide the contract id was entered in and this new form needs to be opened in the next step by the user.

    Firstly, I'm assuming that you have a Forms ES Server if you are rendering a Guide.  This could be either version ES1, ES2/2.5 or ES3/ADEP
    If you submit the form back to the server, you can populate a second (PDF/XDP) form with the data bound to the same schema/Data Model using Forms ES. 
    You referred to the next user in the chain - If you are using Process Management, this is very easy, as you define what form is used to render the data in the "Presentation & Data" section of the Assign Task activity

  • How to display the values in the form based on another form option?

    Hi,
    I have two forms. Based on form 1 option the form 2 should display.
    Form 2 values are stored in a separate table consists of step_id and step_name
    For example:
    In a Procedure there are multiple steps(step1, step2... step n).
    If procedure 1 is choosen from form 1 and user clicks the start button and the page navigates to another form 2.
    In form 2, step 1 of procedure 1 should display.
    Hope it make some sense....
    thank you

    You can cachieve this my passing parameter through the Branc or by setting the items in computation / process.
    1. On Page 1 on condition Proc1 chosen create a conditional branch that fires only when Proc 1 is chosen
    2. In the Branch set the Items on Page 2 with values of Items as dictated by Proc 1.
    That should do it.
    It depends a lot on what Page 2 needs to dispaly the right stuff.
    Regards,

  • Referencing object from another form

    I have two forms. The first one (F) uses some objects from the second one (Lib). There is a reference to item of the form Lib in a program unit of the form F as :something:=:blok.item (blok.item is defined in the form Lib).
    Although I have put the form Lib to directory listed in FORMS45_PATH, if I try to open form F, I get message table or view does not exist and then cannot retrieve block B in Lib module. When I try to compile this program unit, I get message bad bind variable.
    They are legacy forms and I need to use them. Can you help me please? What it is necessary to setup to work correctly?
    Thanks
    Jarda

    Hi,
    I hope you might want to change the icon in form 2 based on some attribute value from form 1? If yes, probably you can pass that as a parameter list to form 2 / set a global value. In the form 2's WHEN-NEW-FORM-INSTANCE trigger, you can check the value of the parameter/global value and change the icon as required.
    -Arun

  • How to import form results into another form

    I'd like a simplified online membership form at acrobat.com to collect new member information, then have an employee in another office be able to import that record into another, more graphical PDF form that would be printed and go in the new member welcome pack that would be mailed out. The fields would be the same but the design would be different. Is there a way to do that?

    We currently don't support a workflow like this. I can't think of a work around either. Sorry we couldn't help more...
    Randy

  • Calling Form/Block from another Form/Block

    I have several form/blocks in my application with field COMPANY_NAME/ID. How can I navigate from more then 1 form/block to the same Form (with Company information)
    From 1 Block it is easy: Where clause: :t_bedrijf_lijst.bedr_id = t_bedrijf.bedr_id
    But now :t_bedrijf_lijst. is depending from the previous form or block
    can anyone help me with this?

    Hi Slot
    Make a package like this in any PL/Sql Library which is attached to your forms:
    PACKAGE GLOBAL_VAR IS
    v_company_name varchar2(15);
    v_company_id     varchar2(10);
    END;
    and whichever form you want to refer it you can refer this way:
    MESSAGE(GLOBAL_VAR.v_company_name);
    MESSAGE(GLOBAL_VAR.v_company_ID);
    hth
    ARIF

  • How do I transfer text from a form field to another form field in different PDFs?

    To clarify, I have a PDF form that is sent to me and has all of the text/data already filled out.  I now have to transfer a majority of that data to a new PDF form.  This isn't really that bad on a case by case basis, but sometimes it can be a large batch of files.
    Is it possible to use the "Action Wizard" to accomplish this or will I have to use some sort of javascript?
    Any guidance is very much appreciated.

    If the fields that hold the same data in both forms have identical field names, you can simply export the form data from the first to an FDF file and import it into the other form. Exactly how you do this depends on which versio of Acrobat you have.

  • Forms Help- calling another forms w/ parameters

    Hi- I am new to forms development.
    When calling a form, I see samples of code that use the 'execute' procedure, and then pass a few parameters.
    I try to open a different form, use this syntax, and I get errors...along the lines of the parameters are wrong.
    My question- is there a place in the application where I can find a listing of forms I can call, and what parameter names to use?
    Thanks

    hi
    Definitions : FORM parameters are variables of TYPE char,number, or date that you define
    at design time.
    Let us assume that I am calling form in this script.
    ** Example:   Calls a form, passing a parameter list if the
    **            parameter list exists.
       Here it passes the city_name and City_date;
    DECLARE
      pl_id       ParamList; 
      city_name VARCHAR2(30) := 'BANGALORE'; // You can assign dyanamically;
      city_date DATE := SYSDATE;
    BEGIN
      ** Try to lookup the 'TEMPDATA' parameter list
      pl_id := Get_Parameter_List('tempdata');
      IF NOT ID_NULL(pl_id) THEN
          Destroy_Parameter_List(pl_id);
      END IF;
      pl_id := CREATE_PARAMETER_LIST('tempdata');
      ADD_PARAMETER(pl_id,'p_city',TEXT_PARAMETER,city);
      ADD_PARAMETER(pl_id,'p_city_date',TEXT_PARAMETER,TO_CHAR(city_date));
      /* Please note that here you can pass only Text i.e., CHAR parameters, that
         means if it is other than CHAR you have to convert into CHAR function */
      CALL_FORM('XYZ_FORM', No_HIDE, NO_REPLACE, NO_QUERY_ONLY,pl_id);
    END IF;
    In the above program I am calling XYZ_FORM by passing parameter list of "TEMPDATA"
    which contains 2 parameters
        1. P_City
        2. P_city_date
    When you are receiving these parameters in the XYZ_FORM.
    You MUST HAVE these PARAMETERS in the XYZ_FORM.
    You can declare like this
    1. In XYZ_FORM, Click on PARAMETERS.
    2. Go to the property sheet of PARAMETER1
        Change the following things
        i) Name = P_CITY   /* It must be the same name that what you are passing */
        ii) Data Type = CHAR
        iii) Maximum Length = 30 //sample
        iv) Close the parameter sheet.
    /* Now you have created for one parameter */
    3. Similarly Create one more parameter for P_City_date by clicking "new".
        i)  Name = P_CITY_DATE   /* It must be the same name that what you are passing */
        ii) Data Type = DATE
        iii) Close the parameter sheet.
    -- Similarly you can have no. of parameters.
    To access the values of the above parameters in the XYZ_FORM
    append with :PARAMETER.
    That is
    You can access P_City in Xyz_form by   :PARAMETER.P_CITY
    Similarly for P_City_Date is :PARAMETER.P_CITY_DATE.
    I hope this is more than sufficient and it is acceptable to yousarah

  • Passing form parameters to another form in another frame

    I want to have a frameset with the form entries in the top frame and the submit button in the bottom frame. I think the weay to do it is to use javascript to copy the top form parameters over to hidden variables in the bottom form (the one with the submit button). Can someone help me with the javascript (or general approach)
    I'm tryuing something like the following: The javescript has errors, though...
    <!-- iframe.jsp -->
    <frameset rows="*,100">
    <frame name="frame1" src="frame1.jsp">
    <frame name="frame2" src="frame2.jsp">
    </frameset>
    <!-- frame1.jsp -->
    <form name="form1" method="post">
    <input type="text" name="param1"><br>
    <input type="text" name="param2">
    </form>
    <!-- frame2.jsp -->
    <html>
    <HEAD>
    <ScRiPt>
    function getValues()
    document.frame1.form[mainform].param2 = document.frame1.form[form1].param1;
    document.frame2.form[mainform].param2 = document.frame1.form[form1].param2;
    </SCRIPT>
    </HEAD>
    <body>
    <form method=post name="mainform" onsubmit="getValues()" action="process.jsp" target="_parent">
    <input type="hidden" name="param1">
    <input type="hidden" name="param2">
    <input type=submit name=submit value=submit>
    </form>
    </body>
    </html>
    <!-- process.jsp -->
    param1 = <%=request.getParameter("param1")%><br>
    param2 = <%=request.getParameter("param2")%><br><br>
    click here to go back

    I figured it out. The following worked.
    ifram.jsp and process.jsp unchanged...
    <!-- frame1.jsp -->
    <form name="form1" method="post" action="process.jsp" target="_parent">
    <input type="text" name="param1"><br>
    <input type="text" name="param2">
    </form>
    <!-- frame2.jsp -->
    <html>
    <HEAD>
    <ScRiPt>
    function frame2()
    parent.frames.frame1.document.form1.submit();
    </SCRIPT>
    </HEAD>
    <body>
    <form method=post name="mainform" >
    <input type=submit name=submit value=submit onclick="frame2()">
    </form>
    </body>
    </html>

  • Insert html form tag inside another form tag

    Hi all, this is my issue. I have a xhtml page structured as following:
    <h:form id="mainForm">
    ....... some stuff........
    <form id="fileForm" action="myServlet" method="post" enctype="multipart/form-data">
         <input type="file" onchange="fileForm.submit()" />
    </form>
    </h:form>
    When uploading a file, I wanna submit only 'fileForm'. But "fileForm.submit()" doesn't work because fileFom is null. Looking at the page source, I realized that only one form is seen client-side (the mainForm):
    <form id="mainForm">
    ....... some stuff........
         <input type="file" onchange="fileForm.submit()" />
    </form>
    Any idea on how to implement it?
    Thanks in advance...

    I think so too.
    I tried creating a custom fileUploader component but, as expected, it didn't work.
    Here http://balusc.blogspot.com/2009/12/uploading-files-with-jsf-20-and-servlet.html they create a completely custom renderer which would solve my issue but it works only with j2ee6 and for company reason I must use j2ee5.
    I think I have to refactor the page and figure out a new approach.
    Thanks for your reply.

  • CAN ANSWERS TO "CERTAIN" QUESTIONS ON ONE FORM REPOPULAT INTO ANOTHER FORM AUTOMATICALLY?

    I need to design a form that will have lots of questions to be answerd. Some (not all) of the answers need to be re-populated into fields in a second form.. Can this be done?

    Hi Alice,
    The eventual solution you come up with will depend upon the your clients requirements, and the environment in which the solution is to operate. A good place to start in terms of determining the capabilities of LiveCycle Designer and other Adobe products that make up Adobe's Intelligent Document Solution is the
    LiveCycle Developer Center which contains resources useful to developers building solutions with our products and the online help included with LiveCycle Designer.
    Denver
    Adobe Developer Support

  • Query regarding Form Object

    Dear All,
    In my Add On, I have many forms and I am using only one form object for all the forms. Is it permissible or I have to use different form objects for each form. When I am navigating from One form to other I am getting error as Invalid Form. In one case I am opening another(child) form from the parent form, but when I close the child form and click anything on the parent form I am getting error as Invalid Form. Please help me.
    Regards,
    Noor hussain
    Edited by: noor_023 on Feb 25, 2010 10:41 AM

    Hi,
    the error "Invalid Form" refers to the attempt to take a reference to a not existing form, like this:
    oForm = oSboApplication.Forms.Item("ThisFormUIDNotExists")
    Or probably you use e not correct reference to a form in order to reach an item, like this:
    ' oForm is not set properly
    oItem = oForm.Items.Item("TheItemUID")
    Please, post relevant code if this not help you.
    Regards.
    Carmine

  • Referencing object outside a form

    Hello,
    I have a form with an icon (form A). This one creates another form (form B ) with the open_form built-in. I would like modifying
    the graphical attribute of the icon when I am in form B. How can I reference an object in another form ?
    Name_in () doesen't work in this case. Have-you an idea ?
    thank's

    Hi,
    I hope you might want to change the icon in form 2 based on some attribute value from form 1? If yes, probably you can pass that as a parameter list to form 2 / set a global value. In the form 2's WHEN-NEW-FORM-INSTANCE trigger, you can check the value of the parameter/global value and change the icon as required.
    -Arun

  • Create/Modify another form's triggers

    How can we create modify an existing form trigger from another form? Eg, in FORM A, I want to create a PRE-BLOCK trigger on a certain block in FORM B before calling FORM B. Any advice is appreciated. Thanks.

    I want to control the firing of the trigger, ie, want it to fire only if FORM B is opened from FORM A.
    If this cannot be done, can we pass parameters into the trigger in FORM B and then do the checking using the input parameter?
    I guess another way is to use a flag in a user-defined table?

  • How to call another form ,if option is entered in a text item object ???

    hi ,
    I am created an application ,where in i press a button which call another form having a menu .
    I select any one of the option from the menu ....i enter a number in the text item object of this form ....depending upon what option i have typed .....i would like to call another form ...
    My questions are
    1) Which trigger of this text item should be enabled,and what code to i write in this trigger ?
    2) Since this form is not having any database insert,delete ,update or query (select)
    it should directly go to the new form,whose option i provide in the text item .
    Sunny

    hey bro, i am assuming that ur text item contains the form name, any relevant trigger can be used for user action, like key-enter, post-change or key-next-item.
    to run a form u can use functions call_form or open_form with proper paramters.
    if u want to forward the entered text in the item, use global variable for the session.
    it doesnt matter if the form contains database items or blocks, all u have to do is run the form.
    e.g,
    declare
    VAR VARCHAR2-------;
    begin
    /* u can use the variable to concatinate or modify too, also can use global variable
    var:=:urblock.uritem;
    /* use ur own relevant parameters */
    open_form(VAR,ACTIVATE,NO_SESSION);
    exception
    when---------
    end;

Maybe you are looking for

  • How can I stop my lock-in results from oscillating. The low pass filter is creating artificial noise

    I am using the lock in amplifier kit and sort of sending some of the parameters manually. I choose manually the low pass filter. Now I find strange behavior depending on the filter I choose.  The lock in results oscillates in time, the higher the dB

  • Interaction of BW Roles and BWA Explorer Security

    We secure all our BW users via roles these roles have Analysis authorizations embedded in them which restrict access to specific infoproviders and values in these based on authorization relevant infobjects. When we try to create a BWA Explorer object

  • ColdFusion 10 new feature list?

    Is there a list somewhere of all the new features in this ColdFusion 10 beta? Thanks, Ron

  • Elastic dropd down menu

    Hi friends, I have stuck in a problem with a drop down menu i am making for one customer. Unfortunately we don't have the permission to include swf files here, so i' ll try to describe it to you with few words. Firstly i am making a parent movie clip

  • Production guidance needed - Capturing Reflections for CG

    Hi, At my work we're setting up a shoot of a handheld device. We'd like to capture the natural reflections to composite with the simulated screen. What's a good production technique for doing this? It seems like tracking markers taped to the device w