Opening Forms With NO_ACTIVATE

Hi
I have a form which opens serveral forms based on a client. Each form has a datablock on it which I was fireing with When-New-Form-Instance.
The problem I have is when I open the forms with NO_ACTIVATE (i am using no_activate so the code opening many forms continues to run) the when new form instance trigger doesnt actually fire untill I click on the form to make it active.
Are there any triggers I can use to query the datablock when opening the form in NO_ACTIVE mode.
Thanks

Hi
Thanks, pre form does fire but I am trying to get my data block to fire
Go_Block('My_View');
Execute_Query;
trouble is if I put in pre form it doesnt know the block exists. In When-New-Form-Instance doesnt appear to fire unless the form is active.

Similar Messages

  • When open forms with IE7,meet an error

    today when I opened forms with IE7, IE could not open forms again, but this time IE did not crash .
    MY IE version is 7.0.5730.13
    EBS version is 11.5.10.
    How to solve this?? it has bothered me for a day
    Thanks in advanced.

    Hi,
    Was this working before? If yes, any changes have been done recently?
    Can you reproduce the issue from other clients or it is just specific to your machine?
    What is the error you get when you try to open the forms?
    Please make sure you meet all the requirements as per (Note: 285218.1 - Recommended Browsers for Oracle E-Business Suite 11i).
    Thanks,
    Hussein

  • JDev902: how open form with empty JTable?

    Background: Using the wizard I have created a number of JClient forms pulling their data from a BC-layer. However, some forms fill only very slowly because of the large number of rows of the underlying tables. Sometimes it would be better to open a form with an empty JTable and let the user formulate a query and pull in the desired data.
    Question: How do I open a form without automatically filling its JTable from the BC-layer? The old method of setting "...WHERE 1 = 0" seems rather - well - old! Is there a more elegant way?
    Thanks for any help!
    Sten Jones

    You can bring up the panel that the JTable is contained in without executing the query on it (remove executeQuery()) call. See JClient component demo on the JDeveloper HowTo pages on how to detail data-binding and query execution. Basically what these panels do is not setup the UI till it's displayed and then perform the binding. You can take it a step further by also not executing the query and executing it only after the user says so.
    Another way would be to "force" the startup to be in find mode. So, instead of executing query for the panels, you may want to set the table in find mode so that the user is able to enter query right up, when the UI comes up.

  • Can't open forms with Adobe Reader X

    I'm running Windows Vista Business and after installing Adobe reader X. It will no longer opens forms.  The program simply quits responding.  Tried installing it on a Windows 7 computer and it works fine.  Any help besides reverting back to Reader 9.4.1 

    I found an issue with the new security features in this version of Reader. If you go to Edit>Preferences>General and uncheck "Enable procted mode at startup." You will get a pop-up warning that you will need to manually restart Adobe Reader.  Restart the reader and the problem seems to be resolved "for now"

  • Open Form With Session Option

    Hi,
    I have problem when i try to open a form with No_Session the blocks didn't retrive any data.
    Regards,

    The "NO_SESSION" parameter to Open_Form built-in simply instructs the new form to use the same session as the Form that opened it. I don't believe this would prevent the new form from being able to retrieve data as this is the default SESSION_MODE parameter value. Could you please give us a code sample so we can see how you are opening your form?
    Craig B-)
    If someone's response is helpful or correct, please mark it accordingly.

  • Open form with hidden table

    Hi All.
    I have simple form with CheckBox and Table. I show table when CheckBox is True. My code:
    form1.#subform[0].CheckBox1::change - (JavaScript, client)
    if (CheckBox1.rawValue == true)
        Table1.presence = "hidden";
    else
        Table1.presence = "visible";
    But I would like to hide Table in case when user open form and then when CheckBox is True show table. In case when CheckBox is False the Table is hidden. How it to do? I will appreaciate for sample.
    Thanks.

    Hi,
    this is not so difficult. You have to do the following steps:
    open a new form.
    insert a checkbox and a table into the form.
    mark the checkbox
    open the script editor (about window)
    select "click-event"
    write:
    if (CheckBox1.rawValue == 1)
        Table1.presence = "hidden";
    }else
        Table1.presence = "visible";
    And now you have to hide the table under "object" | "presence" | "hidden (exclude from layout)"
    Ready.
    Kind regards Mandy
    PS: Oh I haven't seen that the problem is solved.

  • Cannot open form with a button

    Hi folks, I'm new to Developer, so apologies.
    I am opening a form xxx by attaching a smart trigger of WHEN-BUTTON-PRESSED to a button by
    call_form('xxx');
    It compiles fine, but when I evesute the form, it says errer 400010 cannot read form. Any ideas?
    Thx,
    Ken

    <BLOCKQUOTE><font size="1" face="Verdana, Arial">quote:</font><HR>Originally posted by Carter:
    Put the called form's fmx file in a directory specified in the FORMS60_PATH key in the registry
    <HR></BLOCKQUOTE>
    More simply, you can pass the parameter with the path. ie call_form('c:\xxx.fmx') and so.
    If you want to pass any other parameters check it in the help for call_form. Tip. You also can use run_form/new_form to call a new form and go_form to navigate b/w forms.

  • I can not open an IRS fill-in form with x-1

    I can not open an IRS fill=in form with x=1  I have no problem an another computer running an older version of reader.  I am running windows 7 on a relatively new computer, and it also opened forms with the older version.

    What exactly means "can not"?

  • Open Form and code after call

    Hi
    My application has forms which calls other forms on a button click.
    I have my code like this
    1. CALL_FORM(.....
    2. After cal form there is some code which need to execute after the called form is closed.
    Now I am making the app multi window and so is changing call form with OPEN FORM. Now I see that the step 2, ie the code after the OPEN FORM is not executing.
    Why is this so? Any workarounds?
    Regards
    Sajan

    Hi
    I am not sure if this is of any help, but at least may help to clarify what is going on...
    From the Forms online help:
    When you open a form with ACTIVATE specified (the default), the opened form receives focus immediately; trigger statements that follow the call to OPEN_FORM never execute. When you open a form with NO_ACTIVATE specified, trigger statements that follow the call to OPEN_FORM will execute after the opened form has been loaded into memory and its initial start-up triggers have fired.
    Rgds
    Luis

  • How to open new form with set value

    I have two forms CLIENT and ORDERS who are connected by "client_id" in a one to many relationship [one client can have many orders]. What code to I put in the button so that that when I click on it from the CLIENT table, it goes to the ORDERS form with just the orders that match that "client_id"? The application is in oracle 9i developer using swing.
    Here's what I have so far, code to open the form without the binding
    //Open Order Form
    FormIcdClientApplicationView frameTarget = new FormOrderApplicationView(getPanelBinding());
    frameTarget.setVisible(true);
    // Close this window
    this.setVisible(false);

    Hello,
    This is the Forms forum. I am sure you will have more chance to get answer in the JDeveloper forum.
    FRancois

  • FRM-18108 Error when opening a form with subclassed objects

    Dear Group,
    I have 2 forms in Oracle Forms 6i. One of the forms contains an object group. The other form contains the object that I subclassed it to.
    When I open the form that contains the subclassed object group, I get the FRM-18108 error.
    If I open the form with the original object group, then open the subclassed form, there is no error.
    Does this mean I must always open the original form in order to work on the one with the subclassed object group?
    I hope there is an simple solution to what is something I am missing in my Oracle Forms setup.
    Thank you in advance.
    Emad

    Hi Duncan.
    Your suggestion worked.
    Thank you for the fast response!
    Truly,
    Emad

  • How to open a pdf form with fdf data

    Hi all,
          I am working on a new project. In that, I have to load a PDF contract form with FDF data on Internet Explorer Window.
    I don't know how to do it. Actually I tried using this format on the URL (while loading the respective page)
    http://www.example.org/pdf_file_name.pdf#FDF=http://www.example.org/fdf_file_name.fdf
    But it opened as an empty pdf document. . Actually I need it with the fdf data.
    Can anyone know any other way to do this?
    Or is this not possible to open a pdf form with fdf data in a browser?
    Thanks in advance
    Annamalai

    @ Bernd. It still opens a text file
    Here's my FDF file sample
    %FDF-1.2
    %âãÏÓ
    1 0 obj
    <<
    /FDF << /Fields
    <</V (07/22/2009)/T (Loan_Note_Date)>><</V (22.29)/T (Loan_AnnualPercentage_Rate)>></V ()/T (Seller_ESignatureArea1_Date)>><</V (GA Dealer)/T (Seller_Signer_FullNameTitle)>><</V ()/T (ThirdParty_ESignatureArea1_Date)>>
    /F (MARSMFLZ.pdf)/ID [ <1f0b6b55f345db39e8246247138fe562><e960588530b0d06d35cd618b34d4c314>
    ]>>
    >> endobj
    trailer
    <<
    /Root 1 0 R
    >>
    %%EOF
    (I have uploaded the related pdf file before.)
    Just now I got an idea to use WScript (the code is written in javascript)
    ws = new ActiveXObject("WScript.shell");
    ws.Run('"AcroRd32.exe" "C:\\annukar\\Refi\\Refinance_Module\\Forms\\Contract.fdf"', 1, true);
    this opens my fdf document in Acrobat reader using command prompt.
    I have a doubt now, can i use some string in place of "C:\\annukar\\Refi\\Refinance_Module\\Forms\\Contract.fdf" in the above command?
    I mean something like fdf_file = "C:\\annukar\\Refi\\Refinance_Module\\Forms\\Contract.fdf"
    and replace ws.Run('"AcroRd32.exe" fdf_file,1,true). I tried it but it doesn't work Any idea's? Since the path will not remain the same always. So i need to change it

  • Filling up a pdf form which I received as email. I opened it on my adobe reader 11 and filled up the highlighted fields. Yet when I click on the send via mail it says changes will not be included. How do I send the form with changes?

    Filling up a pdf form which I received as email. I opened it on my adobe reader 11 and filled up the highlighted fields. Yet when I click on the send via mail it says changes will not be included. How do I send the form with changes?
    The add annotations field shows as not allowed in the security options. So how do I send this form back with the changes??

    I think you you need to click 'save' first, then it is saved to acrobat, where it will prompt to send.

  • PDF form with buttons opens up URL with security warning window

    I have a short-lived process that renders PDF form with data merged. The data is in XML format. 
    The form buttons are assigned URL values when the form is opened. When I click on them,I get a Security warning prompting me to allow/block that site. When I click on 'Allow', I get a window of download statistics of the website that in the URL.
    This would be annoying to the end user. How I do I suppress the Security warning window as well as the download statistics window before the PDF is opened ? Can this be done either at the process design, form design stage or using Java APIs ?
    Thanks,
    Jyothi

    I have a short-lived process that renders PDF form with data merged. The data is in XML format. 
    The form buttons are assigned URL values when the form is opened. When I click on them,I get a Security warning prompting me to allow/block that site. When I click on 'Allow', I get a window of download statistics of the website that in the URL.
    This would be annoying to the end user. How I do I suppress the Security warning window as well as the download statistics window before the PDF is opened ? Can this be done either at the process design, form design stage or using Java APIs ?
    Thanks,
    Jyothi

  • How do I get to open a access's form with LabView?

    I know as to send data to access´s table. Now,I would like to open a access´s form with LabView using activeX or other tools.
    I would like to receive, if possible, a v.i. as example.
    Thank you ...

    This is a resource which should help you:
    http://digital.ni.com/public.nsf/3efedde4322fef198​62567740067f3cc/f763aa1d7cd3c83d862568e8007c51cd?O​penDocument

Maybe you are looking for

  • Portal runtime error in Theme editor:Urgent

    Hi All, I am getting the following error when i am logging as a j2ee_admin user in Theme Editor and also when i click on theme transport it is not displaying any contents. Portal Runtime Error An exception occurred while processing a request for : iV

  • Can't upload reports to crystal server

    Hello guys, First is the system info: Crystal Server XI R2 with SP3 OS: Red Hat Enterprise Linux ES release 4 (Nahant Update 6) Database: Oracle DB 10g This issue shall be divided into two parts. Parts one: Before the server is reinstalled we can upl

  • How Secure Are We?

    Hello there, Arch users. I'm a fairly secure user of Windows and Android operating systems. I've also recently wanted to further expand and harden my privacy and security out of a need, as I live under not-so-favorable conditions. I've switched my de

  • Making Mac OSX (10.8.5) Web Server available to public

    I have successfully set up apache on my laptop ( Macbook Pro with Mac OSX (10.8.5)) and am able to access the html page via http://localhost I have disabled firewall on my local router (tried port forwarding and DMZ before this) . I have disable Mac

  • I have installed Lightrom 5.5 but in Creative Cloud Desktop it still shows as uninstalled.

    relevant screenshots: I tried signing in and out, and I deleted the OODB file and signed back in. Still no luck. Now trying to "install" lightroom over the current install to see if that fixes it.