Form Opening while Webutil

Hi All,
When running a form which is attached with webutil.pll, i tried placing the Pll alone in the bin and ran it but it opened with error "when-custom-item-event trigger ora-06508". I had tested this in the sample form provided by ORACLE in OTN i.e WU_TEST_106.fmb.
I generated a plx for the same pll and kept it in the bin and it started working fine. Why is this behaviour. There is only version of PLL in the Forms_Path Variable of my ENV file. This is happening in Windows 2003 Application server.
Please share your thoughts and views on this issue.
Thanks in advance

hi
try to create webutil user and try to compile it with webutil user may it helps u.
its something like this and run the following sql in database.
creeate_webutil_db.sql
CREATE OR REPLACE PACKAGE WEBUTIL_DB AUTHID CURRENT_USER AS
* WebUtil_DB - Database functions used by the WebUtil_File_Transfer
* Package. These functions allow reading and writing direct
* to the specified BLOB in the database.
* The functions should not be called externally from WebUtil
* Version 1.0.0
* Change History
* DRMILLS 11/JAN/2003 - Creation
FUNCTION OpenBlob(blobTable in VARCHAR2,
blobColumn in VARCHAR2,
blobWhere in VARCHAR2,
openMode in VARCHAR2,
chunkSize in PLS_INTEGER default null) return BOOLEAN;
FUNCTION CloseBlob(checksum in PLS_INTEGER) return BOOLEAN;
PROCEDURE WriteData(data in VARCHAR2);
FUNCTION ReadData return VARCHAR;
FUNCTION GetLastError return PLS_INTEGER;
FUNCTION GetSourceLength return PLS_INTEGER;
FUNCTION GetSourceChunks return PLS_INTEGER;
END WEBUTIL_DB;
CREATE OR REPLACE PACKAGE BODY WEBUTIL_DB AS
m_binaryData BLOB;
m_blobTable VARCHAR2(60);
m_blobColumn VARCHAR2(60);
m_blobWhere VARCHAR2(1024);
m_mode CHAR(1);
m_lastError PLS_INTEGER := 0;
m_sourceLength PLS_INTEGER := 0;
m_bytesRead PLS_INTEGER := 0;
MAX_READ_BYTES PLS_INTEGER := 4096;
-- internal Program Units
PROCEDURE Reset;
PROCEDURE Reset is
BEGIN
m_blobTable := null;
m_blobColumn := null;
m_blobWhere := null;
m_mode := null;
m_lastError := 0;
m_sourceLength := 0;
m_bytesRead := 0;
END Reset;
FUNCTION OpenBlob(blobTable in VARCHAR2, blobColumn in VARCHAR2, blobWhere in VARCHAR2, openMode in VARCHAR2, chunkSize PLS_INTEGER default null) return BOOLEAN is
result BOOLEAN := false;
stmtFetch VARCHAR2(2000);
hit PLS_INTEGER;
BEGIN
-- New transaction clean up
reset;
m_blobTable := blobTable;
m_blobColumn := blobColumn;
m_blobWhere := blobWhere;
m_mode := upper(openMode);
if chunkSize is not null then
if chunkSize > 16384 then
MAX_READ_BYTES := 16384;
else
MAX_READ_BYTES := chunkSize;
end if;
end if;
-- check the target row exists
stmtFetch := 'select count(*) from '||m_blobTable||' where '||m_blobWhere;
EXECUTE IMMEDIATE stmtFetch into hit;
if hit = 1 then
if m_mode = 'W' then
DBMS_LOB.CREATETEMPORARY(m_binaryData,false);
DBMS_LOB.OPEN(m_binaryData,DBMS_LOB.LOB_READWRITE);
m_sourceLength := 0;
result := true;
elsif m_mode = 'R' then
stmtFetch := 'select '||m_blobColumn||' from '||m_blobTable||' where '||m_blobWhere;
EXECUTE IMMEDIATE stmtFetch into m_binaryData;
if m_binaryData is not null then
m_sourceLength := dbms_lob.getlength(m_binaryData);
if m_sourceLength > 0 then
result := true;
else
m_lastError := 110;
end if;
else
m_lastError := 111;
end if;
else
m_lastError := 112;
end if; -- mode
else
-- too many rows
m_lastError := 113;
end if; -- Hit
return result;
END OpenBlob;
FUNCTION CloseBlob(checksum in PLS_INTEGER) return BOOLEAN is
sourceBlob BLOB;
stmtFetch VARCHAR2(2000);
stmtInit VARCHAR2(2000);
result BOOLEAN := false;
BEGIN
if m_mode = 'W' then
m_sourceLength := DBMS_LOB.GETLENGTH(m_binaryData);
end if;
-- checksum
if checksum = m_sourceLength then
if m_mode = 'W' then
-- get the locator to the table blob
stmtFetch := 'select '||m_blobColumn||' from '||m_blobTable||' where '||m_blobWhere||' for update';
EXECUTE IMMEDIATE stmtFetch into sourceBlob;
-- Check the blob has been initialised
-- and if it's not empty clear it out
if sourceBlob is null then
stmtInit := 'update '||m_blobTable||' set '||m_blobColumn||'=EMPTY_BLOB() where '||m_blobWhere;
EXECUTE IMMEDIATE stmtInit;
EXECUTE IMMEDIATE stmtFetch into sourceBlob;
elsif dbms_lob.getlength(sourceBlob) > 0 then
dbms_lob.TRIM(sourceBlob,0);
end if;
-- now replace the table data with the temp BLOB
DBMS_LOB.APPEND(sourceBlob,m_binaryData);
DBMS_LOB.CLOSE(m_binaryData);
result := true;
else
-- todo
null;
end if; --mode
else
m_lastError := 115;
end if; --checksum
return result;
END CloseBlob;
PROCEDURE WriteData(data in VARCHAR2) is
rawData raw(16384);
BEGIN
rawData := utl_encode.BASE64_DECODE(utl_raw.CAST_TO_RAW(data));
dbms_lob.WRITEAPPEND(m_binaryData, utl_raw.LENGTH(rawData), rawData);
END WriteData;
FUNCTION ReadData return VARCHAR is
rawData RAW(16384);
bytesToRead PLS_INTEGER;
BEGIN
bytesToRead := (m_sourceLength - m_bytesRead);
if bytesToRead > MAX_READ_BYTES then
bytesToRead := MAX_READ_BYTES;
end if;
DBMS_LOB.READ(m_binaryData, bytesToRead, (m_bytesRead + 1), rawData);
m_bytesRead := m_bytesRead + bytesToRead;
return UTL_RAW.CAST_TO_VARCHAR2(UTL_ENCODE.BASE64_ENCODE(rawData));
END ReadData;
FUNCTION GetLastError return PLS_INTEGER is
BEGIN
return m_lastError;
END GetLastError;
FUNCTION GetSourceLength return PLS_INTEGER is
BEGIN
return m_sourceLength;
END GetSourceLength;
FUNCTION GetSourceChunks return PLS_INTEGER is
chunks PLS_INTEGER;
BEGIN
chunks := floor(m_sourceLength/MAX_READ_BYTES);
if mod(m_sourceLength,MAX_READ_BYTES) > 0 then
chunks := chunks+1;
end if;
return chunks;
END GetSourceChunks;
END;
EXIT;
sarah

Similar Messages

  • Opening a webutil 105  form

    Hi ,
    I've configured webutil 105. When i try to open a webutil configured form i get the following message on console and the form does not open.Non webutil forms are working fine.
    Pls suggest a solution.
    Rgds,
    Shruti.
    The JInitiator gives the following messages:
    Loading http://192.9.1.33:7780/forms90/webutil/webutil.jar from JAR cache
    Loading http://192.9.1.33:7780/forms90/java/f90all_jinit.jar from JAR cache
    RegisterWebUtil - Loading WebUtil Version 1.0.5 Production
    Loading http://192.9.1.33:7780/forms90/webutil/jacob.jar from JAR cache
    proxyHost=null
    proxyPort=0
    connectMode=HTTP, native.
    Forms Applet version is : 9.0.4.0
    Exception occurred during event dispatching:
    java.lang.ExceptionInInitializerError: java.security.AccessControlException: access denied (java.util.PropertyPermission java.home read)
         at java.security.AccessControlContext.checkPermission(Unknown Source)
         at java.security.AccessController.checkPermission(Unknown Source)
         at java.lang.SecurityManager.checkPermission(Unknown Source)
         at java.lang.SecurityManager.checkPropertyAccess(Unknown Source)
         at java.lang.System.getProperty(Unknown Source)
         at oracle.forms.webutil.common.VBeanCommon.<clinit>(VBeanCommon.java:130)
         at java.lang.Class.forName0(Native Method)
         at java.lang.Class.forName(Unknown Source)
         at oracle.forms.handler.UICommon.instantiate(Unknown Source)
         at oracle.forms.handler.UICommon.onCreate(Unknown Source)
         at oracle.forms.handler.JavaContainer.onCreate(Unknown Source)
         at oracle.forms.engine.Runform.onCreateHandler(Unknown Source)
         at oracle.forms.engine.Runform.processMessage(Unknown Source)
         at oracle.forms.engine.Runform.processSet(Unknown Source)
         at oracle.forms.engine.Runform.onMessageReal(Unknown Source)
         at oracle.forms.engine.Runform.onMessage(Unknown Source)
         at oracle.forms.engine.Runform.processEventEnd(Unknown Source)
         at oracle.ewt.lwAWT.LWComponent.redispatchEvent(Unknown Source)
         at oracle.ewt.lwAWT.LWComponent.processEvent(Unknown Source)
         at java.awt.Component.dispatchEventImpl(Unknown Source)
         at java.awt.Container.dispatchEventImpl(Unknown Source)
         at java.awt.Component.dispatchEvent(Unknown Source)
         at java.awt.LightweightDispatcher.processKeyEvent(Unknown Source)
         at java.awt.LightweightDispatcher.dispatchEvent(Unknown Source)
         at java.awt.Container.dispatchEventImpl(Unknown Source)
         at java.awt.Component.dispatchEvent(Unknown Source)
         at java.awt.EventQueue.dispatchEvent(Unknown Source)
         at java.awt.EventDispatchThread.pumpOneEventForHierarchy(Unknown Source)
         at java.awt.EventDispatchThread.pumpEventsForHierarchy(Unknown Source)
         at java.awt.EventDispatchThread.pumpEvents(Unknown Source)
         at java.awt.EventDispatchThread.run(Unknown Source)

    Solve the problem? Else this might help.
    1. Did you sign the two jar-files accordning to the readme.html?
    2. And did you accept the certificate at runtime?
    3. Also, compile the webutil.pll into webutil.plx
    Regards,
    Martin Malmström

  • How can i use jpg extension with forms 10g and webutil

    I have a form with webutil and i want to open imege jpg extension but thier are Bmp but my
    image jpg and image item has no jpg extension .
    How can i use jpg extension with forms 10g and webutil ?

    You can use the JFIF image format for jpg files.

  • Error in Oracle Form 10g while deploying it on Application server

    hiiiii
    I have a form in 10g in which i am trying to produce data in excel format through ole2..
    the form is working fine when i am running it on form builder....but when i deploy this form on oracle 10g application server,the form is getting run through client pc but the excel sheet is not getting opened & i am getting error like
    ora-305500_
    the code which i wrote to access the excel worksheet is as follows::
    declare
    application OLE2.OBJ_TYPE;
    workbook OLE2.OBJ_TYPE;
    workbooks OLE2.OBJ_TYPE;
    worksheet OLE2.OBJ_TYPE;
    worksheets OLE2.OBJ_TYPE;
    Range OLE2.OBJ_TYPE;
    cell OLE2.OBJ_TYPE;
    font OLE2.OBJ_TYPE;
    args OLE2.List_Type;
    col number;
    Vfy varchar2(7);
    vl number;
    vl1 number;
    NYR NUMBER;
    RowNo Number;
    slno Number;
    ColNo Number;
    cmtamt Number;
    AmtFY number;
    AmtBal number;
    xlPagesetup ole2.obj_type;
    cursor cur_rec is
    SELECT ln_typ,ln_typ_dsc from tla_ln_typ
    order by ln_typ;
    begin
    message('step1');
    application:=OLE2.CREATE_OBJ('Excel.Application');
    message('step2');
    OLE2.SET_PROPERTY(application, 'Visible', 'True');
    message('step3');
    workbooks := OLE2.GET_OBJ_PROPERTY(application, 'Workbooks');
    message('step4');
    workbook := OLE2.INVOKE_OBJ(workbooks,'Add');
    message('step5');
    worksheets := OLE2.GET_OBJ_PROPERTY(workbook, 'Worksheets');
    message('step6');
    worksheet := OLE2.INVOKE_OBJ(worksheets,'Add');
    message('step7');
    PageSetup(Worksheet);
    rowno := 1;
    SetCellText(worksheet,rowno,1,'ln_typ');
    SetCellBold(worksheet,rowno,1);
    SetCellText(worksheet,rowno,2,'dsc');
    SetCellBold(worksheet,rowno,2);
              rowno := rowno + 1;
    colno :=1;
    SetCellWidth(Worksheet,rowno,colno,10);
    SetCellWidth(Worksheet,rowno,colno+1,20);
    for rec in cur_rec loop
                             SetCellText(worksheet,rowno,colno,rec.ln_typ);          
                             SetCellText(worksheet,rowno,colno+1,''''||rec.ln_typ_dsc);
                             rowno:=rowno+1;
    end loop;
    rowno:=rowno+1;
    OLE2.RELEASE_OBJ(worksheet);
    OLE2.RELEASE_OBJ(worksheets);
    OLE2.RELEASE_OBJ(workbook);
    OLE2.RELEASE_OBJ(workbooks);
    OLE2.RELEASE_OBJ(application);
    END;

    You are using OLE2. That means that you are using OLE2 and Excel on the SERVER, not on your PC. You have to use CLIENT_OLE2 via Webutil as Sarah suggested.
    Please go the the Forms documentation about Webutil. It has been discussed soooooo many times.

  • 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.

  • 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

  • Keeping the connection open while in sleep

    I was just wondering if there is anyway to keep the internet connection open while the computer is in sleep mode? I have looked around for a little bit but I figured someone else probably already has an answer.
    Just to clarify I don't mean closing the laptop but just putting it into sleep mode. I've read you can't keep a connection open while the laptop is closed but I was wondering if there was a difference between putting it to sleep and closing the laptop.
    Message was edited by: Boogie Chillen

    No difference. If you need to keep the connection open, which is what I do, then set the Energy Saver to never sleep.

  • 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

  • Itunes won't open. it keeps saying cannot be opened while being updated.

    i have a macbook pro.  i updated the os to mavericks maybe 2 months ago. now it is OS x version 10.9.4.  last night i was trying to open iTunes.  it said updates available so i clicked update.  i left my computer on since last night and everytime i try to open iTunes it keeps saying "itunes is being updated.  itunes cannot be opened while being updated."  is that normal? there's no other program running.  i am afraid to reboot the computer, i'm afraid that will cause it to crash.

    Restart and see what happens. You won't be any worse off than you are now, as long as you have backups.

  • 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

Maybe you are looking for