Forms opened

Does any people know how can I check number
of forms opened in the mdi window ?

Hi Tina
Go into Acrobat/Reader, Edit/Preferences, Internet category, check "Display PDF in Browser". (you may need to reboot after)
If that doesn't help, uninstall Reader/Acrobat, and reinstall.
Regards,
Howard
http://www.avoka.com

Similar Messages

  • Amount of forms open in the session

    Hello all,
    I would like to restrict/control the amount of forms open by the user,
    as I am using open_form.
    I have found nothing in the forms help about that, like a system variable and nothing so far on the web.
    A possible workaroung/idea could be to have a global
    that I count up on when-new-form-instance
    and count down on key-exit.
    Did someone have experience that problem ? what do you think ?
    I am using Forms 10g R2.
    Regards
    Frane
    PS : I guess an amount of 10 forms open by user, could be a good limit in order to don't get performance problem.

    Hello François,
    So far that's the only workaround that I found sor far, init the global at my starting, then count up/down.
    Do you think a limit of 10 opened forms at the same time is reasonable ?
    Thx
    Frane
    PS : btw bravo about your LAF project !!!!, it rocks the layout, I am testing it at the moment on forms migration 6i=>10g that I have to do (sad that it's not brand new appli/project to do, then layout could be really be review and defined nice from the beginning)

  • How to move cursor to a particular field in a form when the form opens

    Hi All,
    Using Forms Personalization how to move the cursor to a particular field in a form when the form opens.We are using Oracle Applications 11.5.10.2
    Please let me know as soon as possible.
    Thanks,
    --John.                                                                                                                                                                                                                                                                                                                                                                                                                                                       

    Hi Satya,
    Try the following
    Open the forms personalization window
    Seq: 10
    description : Move cursor
    Level : Function
    On Condition Tab-
    Trigger Event : when-new-item-instance
    Trigger Object:- (The field on which the cursor is appearing now when you open the form ) for eg : If I am working on a vendor Master form in that case it would be -VNDR.VENDOR_NAME_MIR.
    Processing Mode : Both
    Context:
    whatever context you want to do it respoansibility level or user level.
    On the Actions Tab
    Seq: 1
    Type: Bulletin
    Bulletin type : GO_ITEM
    Argument : The field to which you want to navigate to. (In my case I want to navigate to Alternate name on the Vendor master form so it would be VNDR.VENDOR_NAME_ALT_MIR).
    see if it works for you.
    cheers,
    Ankur

  • InfoPath form opens in the browser instead of InfoPath Filler when a link is clicked from the Approval Task email

    I have an admin approved InfoPath 2010 form that is web enabled. It is published to a SharePoint 2010 Forms library and an Approval Workflow is attached to it.
    The form needs to open up in the InfoPath Filler with the Workflow Task bar at the top so users can approve the task from within the form and not go to Tasks list to do so.
    Here's a problem I am experiencing: sometimes the form opens in InfoPath Filler and sometiems it opens in the browser when the link to approve the form is clicked form the email that is sent by the workflow.
    Windows 7, IE 9, MS Office 2010:
    The form opens up in InfoPath filler like it supposed to. The Workflow task bar is there for users to approve the form.
    Surface Pro with Windows 8.1, IE 11 and MS Office 2013
    The form opens up in the browser and there is no Workflow task bar at the top.
    Things that I've already looked at and tried which didn't solve the issue:
    - The forms library is exclusivly set to open documents/forms in the Client Application
    - Set the browser compatibility mode in IE 11, that doesn't work too well, because you have to do it every time you open the browser.
    - Setting browser compatility in IE 11 reintroduced another issue, of multiple login promts, which was fixed by entering the SharePoint site in question into the Trusted sites by a group policy. Adding the site to trusted sites made the forms open up in the
    browser.
    - Researched compatibility issues with InfoPath and Windows 8.1, cannot find anything.
    - Researched compatibility issues with InfoPath 2010, Windows 8.1 and SharePoint 2010, also didn't find anything.
    Can someone offer a suggestion on how to fix this problem, preferably with no code, because we are not allowed to put custom code on the server?
    I need to force InfoPath form to open in InfoPath Filler when the link to the form is clicked from the Workflow email. Also the login prompts should not pop up. Need it to work on all the platforms: Windows 7, and Surface Pro Windows 8.1.
    Thank you.

    Hi,
    Thank you for your response.
    [Steps about how to capture the capture the fiddler log]
    ===========================================
    1. Download fiddler from
    http://fiddler2.com/
    2. Install fiddler and launch fiddler.
    3. When the fiddler be launched, the log will be enabled automatically.
    4. You can click “X” to remove all the records before you reproduce the issue.
    5. If the web site has been configured to https. Please enable https option:
                 Click “Tools” -> “Fiddler Options”            
    Switch to HTTPS tab, then check “Capture HTTPS CONNECTs” and “Decrypt HTTPS traffic”.
    6. Then repro the issue.
    7. Click “File”->”Capture Traffic”, uncheck the Option “Capture Traffic” to make sure the “
    ” is not shown, that mean the logs has been stopped.
    8. Click “File”->”Save” ->”All sessions”, save the file.
    Any quesitons, please let me know.
    Best Regards,
    Dats Luo

  • Is it possible to setup an alert before the form opens?

    Is it possible to setup an alert before the form opens? If yes how would I do that?
    I have tried to create an alert in preOpen java script but the "preOpen" option is greyed out.
    thank you

    The iPhone will set up any version of the AirPort Extreme from Generation 1 through 6.
    Once you have the AirPort setup, you might want to downloand and install AirPort Utility to be able to make any changes or adjustments to the AirPort.
    AirPort Utility on the App Store on iTunes

  • Changing fields in form opened in query mode via a link from a report

    I have a summary report which allows me to access a form via a link: The form opens up with its fields populated with the corresponding record from the report.
    Can additional code be added to the after displaying page section of the form such that some of the fields can be assigned with different values from those in the original record? If so, can anyone offer some sample code for this?

    Hi,
    You can access and set the values of the columns in forms by using certain apis. All the columns in the form are available in the session which can be accessed and set.
    Sample Code
    declare
    flightno number;
    ticketno varchar2(30);
    tdate date;
    persons number;
    blk varchar2(10) := 'DEFAULT';
    begin
    flightno := p_session.get_value_as_varchar2(
    p_block_name => blk,
    p_attribute_name => 'A_FLIGHT_NO');
    ticketno := p_session.get_value_as_varchar2(
    p_block_name => blk,
    p_attribute_name => 'A_TICKET_NO');
    tdate := p_session.get_value_as_date(
    p_block_name => blk,
    p_attribute_name => 'A_TRAVEL_DATE');
    persons := p_session.get_value_as_number(
    p_block_name => blk,
    p_attribute_name => 'A_NOF_PERSONS');
    p_session.set_value(
    p_block_name => blk,
    p_attribute_name => 'A_FLIGHTNO',
    p_value => to_char(NULL)
    p_session.set_value(
    p_block_name => blk,
    p_attribute_name => 'A_TICKETNO',
    p_value => to_char(NULL)
    p_session.set_value(
    p_block_name => blk,
    p_attribute_name => 'A_TRAVEL_DATE',
    p_value => to_char(NULL)
    end;
    The above code sets and gets value of the form fields. The form field is accessed by prefixing "A" to the form column name. For example if the column name is "DEPTNO" then to access or set value to it you should refer to the session variable "A_DEPTNO".
    Thanks,
    Sharmila

  • How do I keep forms opened on the web  - if they close themselves at times

    How do I keep forms opened on the web  - if they close themselves??

    Hi,
    When you have completed design your form on design tab, you may open form to filling out and submit. At this time, if you don’t change your form, it will keep the open state. if you change or edit your form, it will showing a warning dialog to let you know form will be changed to closed, and remind you to open it again.
    Thanks,
    Guanshuai

  • Issue with Custom Form opening in Oracle apps

    Hello,
    I am not sure if this is correct place for this question.
    Hi,
    I have created a custom form and tested in forms 6i. I have moved the fmb and fmx files from my local machine to unix box and registered the form in oracle apps (11.5.10).
    However, when I open the form from oracle apps, form opens OK but some of the field in form are blacked out-I am able to see the field but its black in color. When I type in field and highlight it with my mouse, the value I typed shows up.
    What can be issue here?
    I moved both fmb and fmx from my local machine to UNIX box.
    Please help...

    NV,
    Have you resolved your issue? I've run into this before. I failed to subclass all of my objects properly from the APPSTAND.fmb in accordance with the [Oracle Applications Developers Guide | http://download.oracle.com/docs/cd/B25516_18/current/acrobat/115devg.pdf]. If you have your items subclassed correctly, double check to make sure your Forms Builder is using the correct color pallet.
    Hope this helps.
    Craig...
    If mine or someone elses response was helpful, please mark it accordingly

  • New form opens up in back of Menu Form in Web Deployed Form

    Hi,
    I am having trouble with my web-deployed form. I have one form that has toolbars and after selecting from the menu for another form to open up, the new form opens up in back of the previous form and I'd have to minimize the previous form in order for new form to be active. Is there any way that I can have the new form open up above the previous form? Also, do you know any good sites where I can get tips on web-deployed forms.
    Thanks,
    Kristine

    Kristine,
    what code are you using to open new forms (call_form, open_form, new_form).
    I have a similar application (custom login module and custom menu), and I run my modules from the menu using
    call_form(<module_name>,HIDE,DO_REPLACE);
    This hides the custom login module and displays the called module.
    Hope this helps
    Gerald Krieger

  • Default Radio button when form opens

    Is there a way to make a radio button when form opens?
    for e.g. when we open key flexfield value sets form, key flexfield radio button is default. i want to do when i open the form value set button is defaultly checked.
    thanking you in advance.

    User personalization.
    Find the name of the field for that radio button.
    Write a when-new-form-instance personalization.
    Make the action type =property
    And make the action as default value/initial value = the value corresponding to the default you want.
    Also check http://it.toolbox.com/blogs/apps-traction-blog/oracle-form-personalization-basic-example-11936
    Hope this answers your question,
    Sandeep Gandhi
    Edited by: Sandeep Gandhi, Independent Consultant on Feb 4, 2011 11:43 AM

  • No form opened yet

    Hello!
      I am getting the below error while executing the SAP Script.
    Normally its working fine. But if we are printing more than 32 elements, its giving the error.
    No form opened yet
    Message no. QG159
    Diagnosis
    When calling up one of the parameters FORM or LANGUAGE only blanks were transferred. A layout set has yet to be selected, whose name or language could be used as a default value.
    System Response
    This causes the program to terminate.
    Procedure
    The problem can only be rectified by a program change.
    regards
    Rajesh V

    You should debug and check exact cause of this.Cause can be due to some missing parameter value like layout name or lanuage.
    Check parameter values of open_form and write_form function module.

  • How form opening time get data as per given date

    my promlem is how use between funciton in form opening where clasee for date
    i use this code but not give me result
    such as
    :global.newparty :=0;
    declare
    vtypev varchar2(15);
    BEGIN
    vtypev :='BPV';
    set_block_property('voumaster', default_where, 'where vtype='||''''||vtypev||''' and entdate between '01-07-2005 and '30-06-2006');
    go_block('voumaster');
    execute_query;
    set_block_property('voumaster', default_where, '');
    END;
    please send me idea how i get data only given date
    thank
    aamir

    thank for your reply
    sir i have date in global variable
    how i put variable in your code
    such as deptono , date1 and date2 are global variable
    SET_BLOCK_PROPERTY('EMP', DEFAULT_WHERE, 'deptno = :deptno AND hiredate BETWEEN '||''''||to_date(':date1','DD-MON-YYYY')
    ||''''||' AND '||''''||to_date(:date2,'DD-MON-YYYY')||'''');
    how i put variable in your code
    thank
    aamir

  • Commit during Call form,open form?

    If i open another form using call/open form command and exit out of the form which is over the base form with some code, what will happen to the data in the base form.
    How can i commit from the call /open form the base form.
    is there any property that needs to set up.
    What is the default behaviour in case of New form, open form , call form.

    Call form:
    Runs an indicated form while keeping the parent form active. Form Builder runs the called form with the same Runform preferences as the parent form. When the called form is exited Form Builder processing resumes in the calling form at the point from which you initiated the call to CALL_FORM.
    New Form:
    Runs an indicated form while keeping the parent form active. Form Builder runs the called form with the same Runform preferences as the parent form. When the called form is exited Form Builder processing resumes in the calling form at the point from which you initiated the call to CALL_FORM.
    Open Form:
    Opens the indicated form. Use OPEN_FORM to create multiple-form applications, that is, applications that open more than one form at the same time.

  • R 12.1.1 After Installtion Forms Opening Error FRM-92101

    After installation of EBS R 12.1.1 on OEL 4.4 , forms opening failure due to following error.
    FRM-92101 : There was a failure in the forms server during startup.This could happen due to invalid configuration , please look into the web-server log file for details.
    When i open the application log file for forms.
    [oracle@test 04271114]$ cd /appshome/oracle/VIS/inst/apps/VIS_test/logs/ora/10.1.3/j2ee/
    [oracle@test j2ee]$ ll
    total 12
    drwxr-xr-x  3 oracle oinstall 4096 Apr 26 21:03 forms
    drwxr-xr-x  3 oracle oinstall 4096 Apr 26 21:03 oacore
    drwxr-xr-x  3 oracle oinstall 4096 Apr 26 21:03 oafm
    [oracle@test j2ee]$ cd forms/
    [oracle@test forms]$ ll
    total 4
    drwxr-xr-x  2 oracle oinstall 4096 Apr 26 21:03 forms_default_group_1
    [oracle@test forms]$ cd forms_default_group_1/
    [oracle@test forms_default_group_1]$ ll
    total 172
    -rw-r--r--  1 oracle oinstall  20449 Apr 27 11:19 application.log
    -rw-r--r--  1 oracle oinstall    418 Apr 27 11:10 global-application.log
    -rw-r--r--  1 oracle oinstall    194 Apr 27 11:10 jms.log
    -rw-r--r--  1 oracle oinstall   1688 Apr 27 11:10 log.xml
    -rw-r--r--  1 oracle oinstall    194 Apr 27 11:10 rmi.log
    -rw-r--r--  1 oracle oinstall 129772 Apr 27 11:56 server.log
    -rw-r--r--  1 oracle oinstall     82 Apr 27 11:10 system-application.log
    [oracle@test forms_default_group_1]$ vi application.log
    11/04/26 21:03:23.966 10.1.3.4.0 Started
    11/04/26 21:03:26.60 formsweb: FormsServlet init():
        configFileName:     /appshome/oracle/VIS/inst/apps/VIS_test/ora/10.1.2/forms/server/appsweb.cfg
        testMode:           false
    11/04/26 21:03:26.74 formsweb: 10.1.3.4.0 Started
    11/04/27 10:33:07.324 formsweb: ListenerServlet init()
    11/04/27 10:33:08.547 formsweb: Forms session <1> aborted: runtime process failed during startup with errors /appshome/oracle/VIS/apps/tech_st/10.1.2/bin/frmweb: error while loading shared libraries: libXm.so.2: cannot open shared object file: No such file or directory
    For the above error resolution i got a doc 1192205.1 which recommend to install rpm openmotif-2.2.3-10.RHEL4.5 Which is already in my OEL 4.4 box.
    [oracle@test forms_default_group_1]$ rpm -qa | grep openmoti*
    openmotif-2.2.3-10.RHEL4.5
    openmotif-devel-2.2.3-10.RHEL4.5What could be other reason for causing above error?

    error while loading shared libraries: libXm.so.2: cannot open shared object file: No such file or directoryPlease make sure you install all OS pre-req. packages.
    FRM-92101: Forms Server [ID 1192205.1]
    Oracle E-Business Suite Installation and Upgrade Notes Release 12 (12.1.1) for Linux x86 [ID 761564.1]
    Oracle E-Business Suite Installation and Upgrade Notes Release 12 (12.1.1) for Linux x86-64 [ID 761566.1]
    Thanks,
    Hussein

  • New form open

    hi kings
    I modified the System form
    when i pressed the button the another form open and copy the previous form data copied to new form this is task..but when i click the button form open and through the error form invalid
    Edited by: lakshmi narayanan on Dec 22, 2009 5:50 AM

    If (pVal.ItemUID = "rm" And pVal.Before_Action = True) Then
                    If pVal.EventType = SAPbouiCOM.BoEventTypes.et_CLICK Then
                        Try
                            Dim f As SAPbouiCOM.Form
                            Dim f1 As SAPbouiCOM.Form
                            f1 = SBO_Application.Forms.Item("139") // * Error Line*
                            SBO_Application.ActivateMenuItem("2053")
                            f = SBO_Application.Forms.ActiveForm
                            Dim oField As SAPbouiCOM.EditText
                            Dim oMatrix As SAPbouiCOM.Matrix
                            Dim ocolumns As SAPbouiCOM.Columns
                            oItem = f.Items.Item("4")
                            oField = oItem.Specific
                            'f1 = SBO_Application.Forms.Item("2050")
                            oField.String = f1.Items.Item("4").Specific.Value
                            Dim sSql As String = ""
                            Dim oRS As SAPbobsCOM.Recordset
                            oItem = f.Items.Item("38")
                            oMatrix = oItem.Specific
                            ocolumns = oMatrix.Columns
                            sSql = "SELECT T1.[ItemCode], T1.[Dscription], T1.[Quantity] FROM ORDR T0  INNER JOIN RDR1 T1 ON T0.DocEntry = T1.DocEntry WHERE T0.[CardCode]='" & f.Items.Item("4").Specific.Value & " '"
                            oRS = gonComCompany.GetBusinessObject(SAPbobsCOM.BoObjectTypes.BoRecordset)
                            oRS.DoQuery(sSql)
                            If oRS.RecordCount > 0 Then
                                Dim i As Integer = 0
                                oRS.MoveFirst()
                                While oRS.EoF = False
                                    i = i + 1
                                    oMatrix.Columns.Item("1").Cells.Item(i).Specific.Value = oRS.Fields.Item("ItemCode").Value
                                    oMatrix.Columns.Item("3").Cells.Item(i).Specific.Value = oRS.Fields.Item("Dscription").Value
                                    oMatrix.Columns.Item("11").Cells.Item(i).Specific.Value = oRS.Fields.Item("Quantity").Value
                                    ' oMatrix.AddRow()
                                    oRS.MoveNext()
                                End While
                            End If
                        Catch ex As Exception
                            SBO_Application.MessageBox(ex.Message)
                        End Try
                    End If
                End If
    Edited by: lakshmi narayanan on Dec 22, 2009 5:52 AM

Maybe you are looking for

  • How di I watch a rented movie on my ipad2?

    How do I watch a rented movie on my ipad2?

  • Error while deploying log4j example

    Hi, I try to run <a href="https://www.sdn.sap.comhttp://www.sdn.sap.comhttp://www.sdn.sap.com/irj/sdn/go/portal/prtroot/docs/library/uuid/36085e78-0801-0010-678d-8b4e89ddff3c">this example</a> to establish a bridge from log4j to SAP Logging. It works

  • Need help in ViewObject Data Validation

    HI Everyone, I have few queries about ViewObject. I'm working on JDev11gU2 ADFRC. Actually i made an application to upload XLS file to af:table. Everything is working but now I stucked with some functionality. Like - 1. After inserting all rows in ta

  • Error when displaying thumbnails in new repository manager

    Hi KM Experts, I created a new Repository Manager as a copy of /documents. When I upload Images (jpegs, gifs) in this repository and try to display them using a ConsumterThumbnailExplorer I don't get the thumbnails displayed but the X-symbol that the

  • Can't View DNG files in Elements 9 Edit Browser

    I have Elements 9. I can view DNG files in the Organizer file browser, but not in the Edit file browser. When in Editor, I have to click on the file (or hold my curser over it) to see the file. Is this normal?