FRM-40403 A Calling for has.....

Hi guyz,
im facing some strange problem, hope someone give me a suitable answer.
My application is working fine just i attach the another datablock its starts giving problem with an error
FRM-40403: A Calling form has unapplied changes. Save not allowed.
I create some parameters and passing the values below is the parameter code.
declare
plist ParamList;
begin
plist := Create_Parameter_List('INPUT_PARAM');
Add_Parameter(plist, 'empid',TEXT_PARAMETER,:employee.empid);
Add_Parameter(plist, 'emp_name',TEXT_PARAMETER,:employee.emp_name);
Add_Parameter(plist, 'dob',TEXT_PARAMETER,:employee.dob);
CALL_FORM('PORTS',no_HIDE,NO_REPLACE,NO_QUERY_ONLY,plist);
DESTROY_PARAMETER_LIST(plist);
end;
im unable to save the data in form B before it was working fine.
anyone help me why this problem occured? even though i delete the newly added datablock even though not working. help me plz...
Regards

Before calling form b you could check :SYSTEM.FORM_STATUS, if that is changed, the changed have to be applied to DB before callin form b, maybe something like:
IF :SYSTEM.FORM_STATUS='CHANGED' THEN
  IF <Aks use for saving> THEN
    COMMIT_FORM;
    CALL_FORM('FORMB');
  END IF;
ELSE
  CALL_FORM('FORMB');
END IF;

Similar Messages

  • FRM-40403 A CALLING FORM HAS UNAPPLIED CHANGES  SAVE NOT ALLOWED .

    Dear Friends
    I have order data entry screen form when the order item is not yet defined
    then I am using this script for calling the item definition form
    DECLARE
         l_n_curr_rec NUMBER;
    BEGIN
    BEGIN
         :global.l_n_curr_rec2 := :COP_ORDER_DETAILS.LINE_NO;
         :GLOBAL.CLASS_CODE := :CLASS_CODE;
         :GLOBAL.LINE_NO := :LINE_NO;
    :GLOBAL.USER_ID := '1';
    END;
    :global.cop_order_code := :cop_order_details.cop_order_code;
    :global.ord_date := :cop_order_details.ord_date;
    :global.command_line := 'c:\sales\new_items.fmx';
    call_form(command_line);
    go_block('cop_order_details');
    go_record(:global.l_n_curr_rec2);
    :cop_order_details.item_code := :global.item_code_var;
    END;
    And this script is used in the item definition ,that is the called form
    BEGIN
    INSERT INTO IM_INVETORY
    (ITEM_CODE,ITEM_NAME_A,ITEM_NAME_E,STOCK_ITEM,ITEM_CLASS)
    VALUES(:IM_NEW_ITEMS.ITEM_CODE,:IM_NEW_ITEMS.ITEM_NAME_A,:IM_NEW_ITEMS.ITEM_NAME_E,'1',:IM_NEW_ITEMS.ITEM_CLASS)
    COMMIT_FORM;
    Wating for your valuable aswer.
    Best regards
    Jamil

    Hello,
    Go to the help -> display last error option menu to get the complete error message.
    Francois

  • Problem with FRM-40403

    I'm getting the following error when trying to commit a form in Forms 6i
    FRM-40403: A calling form has unapplied changes. Save not allowed
    The scenario is the following:
    I have Form A which calls Form B, when I save Form B I get the error and nothing is saved on that form... The problem is that I have another form, lets called it Form C which also calls Form B and I am able to save Form B there... the call I'm doing its exactly the same in both forms A & C,
    CALL_FORM('FORM_B', NO_HIDE, DO_REPLACE, NO_QUERY_ONLY, pl_id);
    I googled the error but the only workaround I found is using OPEN_FORM to use another session, it actually works but then I loose some global variables I set in Form B so I can use in Form A; and the actual course of the code after doing the call_form doesn't execute.
    Any ideas what could it be??
    Thanks in advance

    you mean all the changes to the form?? Its sounds kinda complicatedThe problem:
    If you use POST in a form, all outstanding changes will be applied against the database (INSERT's, UPDATE's, DELETE's are executed), but there is no final commit sent to the database. But.. forms treats the status of all objects as applied (means the record-status of all records is QUERY, the Form-Status is QUERY). If you now exit the form, forms will not ask you "Do you want to save the changes" for there are no outstanding changes. But... If the forms is exited, there will be no commit executed and therefore the formerly applied changes are lost.
    To avoid this, you have to "remember" that you posted in some variable and check that variable additionally to the Form-Status, something like
    IF :SYSTEM.FORM_STATUS='CHANGED' OR :GLOBAL.MY_PERSONNEL_COMMIT_FLAG='Y' THEN
      -- now ask for "Do you want to save the changes"
      -- and do a COMMIT_FORM if answered with yes
    END IF;

  • FRM-40403

    FRM-40403 A calling form has unapplied changes. Save not allowed.
    I do not understand why the above message occurs when the CALLING form is performing an UPDATE but NOT when it is performing an INSERT. I have seen documented (cannot remember where) that the called form is not allowed to commit because it would also try to commit the calling form. However, if the calling form is creating a new record I can successfully commit the called form and the changes in the calling form remain outstanding. If this is possible, why is it not possible when the calling form is doing an update ?

    I've done a bit more research and it seems to be about preserving locks in the calling form, and of course inserting does not involve locks. I suppose that the called form is ABLE to commit without affecting
    an outstanding insert in the calling form because the insert is not yet posted.
    What I really want is a method to detect whether a called form is running in post-only-mode. One method is to attempt a commit and trap FRM-40403, but that means if it is not in P-O-M the commit will succeed, and I might not want to do that.
    I thought about passing the calling form system.form_status, but that does not distinguish between updates and inserts. I could set a variable in an on-lock
    trigger but would need to be careful about unsetting it correctly, seems cumbersome.
    One of the things I am trying to achieve is a called form used as a LOV, which allows new rows to be added to the list. Whether the called form can commit or needs to post only depends on whether the calling form is updating or inserting.

  • GetOutputStream() has already been called for this response

    I have a problem with my servlet,
    i compiled my code,it works normally but there is an error occured when it works.
    The error is :
    java.lang.IllegalStateException: getOutputStream() has already been called for this response
    *     at org.apache.catalina.connector.Response.getWriter(Response.java:607)*
    *     at org.apache.catalina.connector.ResponseFacade.getWriter(ResponseFacade.java:196)*
    *     at org.apache.jasper.runtime.JspWriterImpl.initOut(JspWriterImpl.java:125)*
    *     at org.apache.jasper.runtime.JspWriterImpl.flushBuffer(JspWriterImpl.java:118)*
    *     at org.apache.jasper.runtime.PageContextImpl.release(PageContextImpl.java:179)*
    *     at org.apache.jasper.runtime.JspFactoryImpl.internalReleasePageContext(JspFactoryImpl.java:116)*
    *     at org.apache.jasper.runtime.JspFactoryImpl.releasePageContext(JspFactoryImpl.java:76)*
    *     at org.apache.jsp.KaptchaExample_jsp._jspService(KaptchaExample_jsp.java:209)*
    *     at org.apache.jasper.runtime.HttpJspBase.service(HttpJspBase.java:98)*
    *     at javax.servlet.http.HttpServlet.service(HttpServlet.java:803)*
    *     at org.apache.jasper.servlet.JspServletWrapper.service(JspServletWrapper.java:331)*
    *     at org.apache.jasper.servlet.JspServlet.serviceJspFile(JspServlet.java:329)*
    *     at org.apache.jasper.servlet.JspServlet.service(JspServlet.java:265)*
    *     at javax.servlet.http.HttpServlet.service(HttpServlet.java:803)*
    *     at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:269)*
    *     at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:188)*
    *     at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:213)*
    *     at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:174)*
    *     at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:127)*
    *     at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:117)*
    *     at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:108)*
    *     at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:174)*
    *     at org.apache.coyote.http11.Http11Processor.process(Http11Processor.java:874)*
    *     at org.apache.coyote.http11.Http11BaseProtocol$Http11ConnectionHandler.processConnection(Http11BaseProtocol.java:665)*
    *     at org.apache.tomcat.util.net.PoolTcpEndpoint.processSocket(PoolTcpEndpoint.java:528)*
    *     at org.apache.tomcat.util.net.LeaderFollowerWorkerThread.runIt(LeaderFollowerWorkerThread.java:81)*
    *     at org.apache.tomcat.util.threads.ThreadPool$ControlRunnable.run(ThreadPool.java:689)*
    *     at java.lang.Thread.run(Thread.java:534)*
    here is my code :
    Iterator iter = ImageIO.getImageWritersByFormatName(imageFormat);
    *          if( iter.hasNext() ) {*
    *          ImageWriter writer = (ImageWriter)iter.next();*
    *          ImageWriteParam iwp = writer.getDefaultWriteParam();*
    *          if ( imageFormat.equalsIgnoreCase("jpg") || imageFormat.equalsIgnoreCase("jpeg") ) {*
    *          iwp.setCompressionMode(ImageWriteParam.MODE_EXPLICIT);*
    *          iwp.setCompressionQuality(imageQuality);*
    *          //writer.setOutput(ImageIO.createImageOutputStream(response.getWriter()));*
    *          IIOImage imageIO = new IIOImage(bufferedImage, null, null);*
    *          writer.write(null, imageIO, iwp);*
    *          response.flushBuffer();*
    please help me,would u give me a solutions for my problem..i really appreciate if you want to give a solution.
    Regards,
    Dany Fauzi

    Actually the stack trace indicates the the error is happening in KaptchaExample.jsp, not in a Servlet. I'm guessing that the code you've presented is in a scriptlet (i.e. inside the JSP in <% %> brackets). This is altogether the wrong place for it. JSPs are purely for generating HTML and to try and generate image responses in one is doomed to failure. Write a servlet class to generate your image file. If you want to embed a dynamically generated image in an HTML page, then you need to generate HTML which accesses the Servlet through the <img src=... tag, i.e. the browser retrieves the image data as a separate transaction.
    The immediate source of the crash is that the JSP already opened the output stream in order to write HTML output, so it's too late to try and open it for the writing of image data.

  • Application crashes when calling run_report_object , FRM-93652: The runtime process has terminated abnormally

    I got this error when calling report from my form:
    FRM-93652: The runtime process has terminated abnormally
    Forms Session ID is WLS FORMS.formsapp.101
    Here is the trace dump info :
    Last Trigger  FORM/BLOCK/FIELD: FRM_ACTIVITY_QUEUE.BLK_ACTIVITY_QUEUE.BTN_PRINT
    Last Trigger: WHEN-BUTTON-PRESSED - (In Progress)
    Last Builtin: RUN_REPORT_OBJECT - (In Progress)
    ----- Call Stack Trace -----
    calling              call     entry                argument values in hex
    location             type     point                (? means dubious value)
    siehDumpStackTrace(  call     kgdsdst()            000000000 ? 000000000 ?
    )+104                                              7FFFBF18D110 ? 7FFFBF18D1D8 ?
                                                       7FFFBF1AD130 ? 000000000 ?
    siehjmpterm()+650    call     siehDumpStackTrace(  000000000 ? 2B1668E4EB00 ?
                                  )                    7FFFBF18D110 ? 7FFFBF18D1D8 ?
                                                       7FFFBF1AD130 ? 000000000 ?
    __restore_rt()       call     siehjmpterm()        00000000B ? 2B1668E4EB00 ?
                                                       7FFFBF18D110 ? 7FFFBF18D1D8 ?
                                                       7FFFBF1AD130 ? 000000000 ?
    00002B1660459EB0     signal   __restore_rt()       2B16603F2929 ? 7FFFBF1ADBD8 ?
                                                       000000000 ? 000000002 ?
                                                       000000001 ? 0EBC57ED8 ?
    Anybody knows what might be the cause ?
    Thanks

    Refer to : Oracle Support :  Forms Runtime Crash (FRM-93652) When calling RUN_REPORT_OBJECT in 11g (Doc ID 1306368.1)

  • Never once has my phone updated without deleting everything. It says "iTunes has detected an iPhone in recovery mode. You must restore this iPhone before it can be used with iTunes. I can't call for help because my phone is frozen on the screen with iTune

    Never once has my phone updated without deleting everything. It says "iTunes has detected an iPhone in recovery mode. You must restore this iPhone before it can be used with iTunes. I can't call for help because my phone is frozen on the screen with iTunes. On line live chat won't chat until I give them my serial number which I can't get to because its frozen and can't call for the same reason!!  Omg!  Someone please help me!?

    Morning AppleHlumamkhululi,
    Thanks for using Apple Support Communities.
    In most cases, the connected iPod needs to be restored.
    For more information on this, take a look at this article:
    iTunes has detected an iPod in recovery mode - Use iTunes to restore
    http://support.apple.com/kb/ts1456
    Best of luck,
    Mario

  • ERROR: getOutputStream() has already been called for this response

    <font size="2"><p align="left">I am trying to export a pdf from a jsp page using the crystal report viewer. The jsp is deployed in a .war archive on JBoss 4.0.4. The PDF comes up fine, but each time I make the request I get the error listed below from the JBOSS console. Can anyone explain what is going wrong? How do I make thie message go away?</p><p align="left">&#160;</p><p align="left">16:33:50,966 ERROR [[jsp]] Servlet.service() for servlet jsp threw exception</p></font><u><font size="2" color="#000080">java.lang.IllegalStateException</font></u><font size="2">: getOutputStream() has already been called for this response</font><font size="2"> <p align="left">at org.apache.catalina.connector.Response.getWriter(<u><font size="2" color="#000080">Response.java:599</font></u><font size="2">)at org.apache.catalina.connector.ResponseFacade.getWriter(</font></p></font><u><font size="2" color="#000080">ResponseFacade.java:195</font></u><font size="2">)</font><font size="2"> <p align="left">at org.apache.jasper.runtime.JspWriterImpl.initOut(<u><font size="2" color="#000080">JspWriterImpl.java:124</font></u><font size="2">)at org.apache.jasper.runtime.JspWriterImpl.flushBuffer(</font></p></font><u><font size="2" color="#000080">JspWriterImpl.java:117</font></u><font size="2">)</font><font size="2"> <p align="left">at org.apache.jasper.runtime.PageContextImpl.release(<u><font size="2" color="#000080">PageContextImpl.java:191</font></u><font size="2">)at org.apache.jasper.runtime.JspFactoryImpl.internalReleasePageContext(</font></p></font><u><font size="2" color="#000080">JspFactoryImpl.java:115</font></u><font size="2">)</font><font size="2"> <p align="left">at org.apache.jasper.runtime.JspFactoryImpl.releasePageContext(<u><font size="2" color="#000080">JspFactoryImpl.java:75</font></u><font size="2">)at org.apache.jsp.rptFBATAG_002dviewer_jsp._jspService(</font></p></font><u><font size="2" color="#000080">rptFBATAG_002dviewer_jsp.java:164</font></u><font size="2">)</font><font size="2"> <p align="left">at org.apache.jasper.runtime.HttpJspBase.service(<u><font size="2" color="#000080">HttpJspBase.java:97</font></u><font size="2">)at javax.servlet.http.HttpServlet.service(</font></p></font><u><font size="2" color="#000080">HttpServlet.java:810</font></u><font size="2">)</font><font size="2"> <p align="left">at org.apache.jasper.servlet.JspServletWrapper.service(<u><font size="2" color="#000080">JspServletWrapper.java:332</font></u><font size="2">)at org.apache.jasper.servlet.JspServlet.serviceJspFile(</font></p></font><u><font size="2" color="#000080">JspServlet.java:314</font></u><font size="2">)</font><font size="2"> <p align="left">at org.apache.jasper.servlet.JspServlet.service(<u><font size="2" color="#000080">JspServlet.java:264</font></u><font size="2">)at javax.servlet.http.HttpServlet.service(</font></p></font><u><font size="2" color="#000080">HttpServlet.java:810</font></u><font size="2">)</font><font size="2"> <p align="left">at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(<u><font size="2" color="#000080">ApplicationFilterChain.java:252</font></u><font size="2">)at org.apache.catalina.core.ApplicationFilterChain.doFilter(</font></p></font><u><font size="2" color="#000080">ApplicationFilterChain.java:173</font></u><font size="2">)</font><font size="2"> <p align="left">at org.jboss.web.tomcat.filters.ReplyHeaderFilter.doFilter(<u><font size="2" color="#000080">ReplyHeaderFilter.java:96</font></u><font size="2">)at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(</font></p></font><u><font size="2" color="#000080">ApplicationFilterChain.java:202</font></u><font size="2">)</font><font size="2"> <p align="left">at org.apache.catalina.core.ApplicationFilterChain.doFilter(<u><font size="2" color="#000080">ApplicationFilterChain.java:173</font></u><font size="2">)at org.apache.catalina.core.StandardWrapperValve.invoke(</font></p></font><u><font size="2" color="#000080">StandardWrapperValve.java:213</font></u><font size="2">)</font><font size="2"> <p align="left">at org.apache.catalina.core.StandardContextValve.invoke(<u><font size="2" color="#000080">StandardContextValve.java:178</font></u><font size="2">)at org.jboss.web.tomcat.security.SecurityAssociationValve.invoke(</font></p></font><u><font size="2" color="#000080">SecurityAssociationValve.java:175</font></u><font size="2">)</font><font size="2"> <p align="left">at org.jboss.web.tomcat.security.JaccContextValve.invoke(<u><font size="2" color="#000080">JaccContextValve.java:74</font></u><font size="2">)at org.apache.catalina.core.StandardHostValve.invoke(</font></p></font><u><font size="2" color="#000080">StandardHostValve.java:126</font></u><font size="2">)</font><font size="2"> <p align="left">at org.apache.catalina.valves.ErrorReportValve.invoke(<u><font size="2" color="#000080">ErrorReportValve.java:105</font></u><font size="2">)at org.apache.catalina.core.StandardEngineValve.invoke(</font></p></font><u><font size="2" color="#000080">StandardEngineValve.java:107</font></u><font size="2">)</font><font size="2"> <p align="left">at org.apache.catalina.connector.CoyoteAdapter.service(<u><font size="2" color="#000080">CoyoteAdapter.java:148</font></u><font size="2">)at org.apache.coyote.http11.Http11Processor.process(</font></p></font><u><font size="2" color="#000080">Http11Processor.java:869</font></u><font size="2">)</font><font size="2"> <p align="left">at org.apache.coyote.http11.Http11BaseProtocol$Http11ConnectionHandler.processConnection(<u><font size="2" color="#000080">Http11BaseProtocol.java:664</font></u><font size="2">)at org.apache.tomcat.util.net.PoolTcpEndpoint.processSocket(</font></p></font><u><font size="2" color="#000080">PoolTcpEndpoint.java:527</font></u><font size="2">)</font><font size="2"> <p align="left">at org.apache.tomcat.util.net.MasterSlaveWorkerThread.run(<u><font size="2" color="#000080">MasterSlaveWorkerThread.java:112</font></u><font size="2">)<p>at java.lang.Thread.run(<u><font size="2" color="#000080">Thread.java:595</font></u><font size="2">)</font></p></font></p></font>

    <p>Hi there,</p><p>     This issue is the same as the one in the following thread:</p><p><u><strong><a href="/node/711">http://diamond.businessobjects.com/node/711</a>  </strong></u></p><p>There are a few ideas in that thread to use as a work-around. </p><p>Regards,<br />Sean Johnson (CR4E Product Manager) </p>

  • I have a message on my Ipad that my IOS has crashed due to a 3rd party. It gives a number to call for support. It has locked up my Safari. What can I do to get rid of it?

    I have a message on my Ipad that states my IOS has crashed due to a 3rd party. It refers to my tablet as a phone (sorry, don't have an Iphone. It gives a number to call for support but I know it's a scam. Is there a solution to get rid of it as it has locked up my Safari.

    1. Reset the iPad
       Press and hold the Sleep/Wake button on your iPad,
       simultaneously  press and hold down the “Home” button” until the screen turns off.
       Turn it back on.
    2. Clear information from your device
       iOS 7
       Tap  Settings > Safari > Clear History > Clear Cookies and Data.

  • HT1351 my music is not on my ipod touch anymore but one of my other software called copytrans has my music backup so i got all of my music and videos back but they will not play in copytrans itunes or just my ipod touch itself please please help there????

    my music is not on my ipod touch anymore but one of my other software called copytrans has my music backup so i got all of my music and videos back but they will not play in copytrans itunes or just my ipod touch itself please please help there???????????
    there has to be a completley FREE software out on the whole internet downloads to fix my ipod touch musics completely free no money involved
    please help me to fix this i jave all of my 6 thousand plus music with some videos back onto my ipod touch this happened to me this year well a week ago or two last year and also the years before to with or without any backups but i have my other software for that saved all of my stuff thank gosh but now nothings playing so i love itunes its the best but when it doesn't play or find my lots of songs makes me mad sometimes but anyways thanks for any or all the help you can to fix this problem
    THANKS AGAIN:-):-)

    my music is not on my ipod touch anymore but one of my other software called copytrans has my music backup so i got all of my music and videos back but they will not play in copytrans itunes or just my ipod touch itself please please help there???????????
    there has to be a completley FREE software out on the whole internet downloads to fix my ipod touch musics completely free no money involved
    please help me to fix this i jave all of my 6 thousand plus music with some videos back onto my ipod touch this happened to me this year well a week ago or two last year and also the years before to with or without any backups but i have my other software for that saved all of my stuff thank gosh but now nothings playing so i love itunes its the best but when it doesn't play or find my lots of songs makes me mad sometimes but anyways thanks for any or all the help you can to fix this problem
    THANKS AGAIN:-):-)

  • Error calling for web-service from BPEL

    hello,
    I'm getting an exception thrown when I try to call for a web service. Until yesterday it was fine, but since today we keep getting this error message:
    <2006-05-29 21:02:03,635> <ERROR> <red.collaxa.cube>
    <BaseCubeSessionBean::logError> Error while invoking bean "finder": Instance not found in datasource.
    The process domain was unable to fetch the instance with key "c2c73aae36359a11:84cc09:10b7b50ebef:-7d45" from the datasource.
    Please check that the instance key "c2c73aae36359a11:84cc09:10b7b50ebef:-7d45" refers to a valid instancet
    hat has been started and not removed from the process domain.
    ORABPEL-02152
    Instance not found in datasource.
    The process domain was unable to fetch the instance with key "c2c73aae36359a11:84cc09:10b7b50ebef:-7d45" from the datasource.
    Please check that the instance key
    "c2c73aae36359a11:84cc09:10b7b50ebef:-7d45" refers to a valid instance that has been started and not removed from the process domain.
    at com.collaxa.cube.engine.data.AdminFinder.__lookupInstanceMetaData(AdminFinder.java:314)
    at com.collaxa.cube.engine.data.AdminFinder.__lookupInstanceMetaData(AdminFinder.java:262)
    at com.collaxa.cube.engine.data.AdminFinder.lookupInstanceByConversationId(AdminFinder.java:235)
    at com.collaxa.cube.ejb.impl.FinderBean.lookupInstanceByConversationId(FinderBean.java:177)
    at IFinderBean_StatelessSessionBeanWrapper42.lookupInstanceByConversationId(IFinderBean_StatelessSessionBeanWrapper42.java:669)
    at com.oracle.bpel.client.Locator.lookupInstance(Locator.java:420)
    at displayInstance.jspService(_displayInstance.java:111)
    at com.orionserver.http.OrionHttpJspPage.service(OrionHttpJspPage.java:56)
    at oracle.jsp.runtimev2.JspPageTable.service(JspPageTable.java:350)
    at oracle.jsp.runtimev2.JspServlet.internalService(JspServlet.java:509)
    at oracle.jsp.runtimev2.JspServlet.service(JspServlet.java:413)
    at javax.servlet.http.HttpServlet.service(HttpServlet.java:853)
    at com.evermind.server.http.ServletRequestDispatcher.invoke(ServletRequestDispatcher.java:824)
    at com.evermind.server.http.ServletRequestDispatcher.forwardInternal(ServletRequestDispatcher.java:330)
    at com.evermind.server.http.ServletRequestDispatcher.forward(ServletRequestDispatcher.java:222)
    at com.collaxa.cube.fe.DomainFilter.doFilter(DomainFilter.java:152)
    at com.evermind.server.http.ServletRequestDispatcher.invoke(ServletRequestDispatcher.java:663)
    at com.evermind.server.http.ServletRequestDispatcher.forwardInternal(ServletRequestDispatcher.java:330)
    at com.evermind.server.http.HttpRequestHandler.processRequest(HttpRequestHandler.java:830)
    at com.evermind.server.http.HttpRequestHandler.run(HttpRequestHandler.java:285)
    at com.evermind.server.http.HttpRequestHandler.run(HttpRequestHandler.java:126)
    at com.evermind.util.ReleasableResourcePooledExecutor$MyWorker.run(ReleasableResourcePooledExecutor.java:192)
    at java.lang.Thread.run(Thread.java:534)
    Any ideas how I can fix it?
    Thanks.

    Hi,
    We've tried increasing the
    <transaction-config timeout="60000" /> to 120000, and also tried increasing the syncMaxWaitTime from the console...
    But nothing seems to help.
    In addition, the test page of the web service we are invoking returns after 1 second (so there shouldn't be a latency problem)
    Maybe you have any other ideas?

  • Flat File-to-RFC question, multiple RFC calls for one file.

    Hi guys,
    I'm quite new to XI / PI and I have a question regarding a File-to-RFC scenario we're trying in NW PI 7.1.
    We have a flat file which has two lines with two fields each, let's take this as an example :
    001,001
    002,002
    The files needs to be converted to XML and then transferred to the RFC program which will update a table with the values above.
    In the ESR I've created 3 data types (z_row1,z_record1 and z_fileinput1), 1 message type (z_file2rfc_ob_mt), 1 message mapping (z_file2rfc_mm), 2 Service Interface (z_file2rfc_ob_si and z_file2rfc_ib_ztestpi) and 1 operation mapping (z_file2rfc_om).
    In the Integration Builder (ID) I've created everything required (The sender and receiver communication channels, sender and receiver agreement, receiver determination and interface mapping).
    We're also using content conversion to convert the flat file to XML, this does seem to work because I see all the lines/field in the message when it gets into PI. The problem is that the RFC can only accept two fields at a time and only the first line gets updated. I see that only the first line gets sent to the RFC.
    How can I make the RFC call for each and every line ?
    Thanks !!

    Create the RFC with table, which takes multiple lineitem as input and update the table in single call.
    If you want response back then call RFC as synchrounous else in Asynchrounous mode.
    By doing this in single call it will update the complete table.
    Gaurav Jain
    Reward Points if answer is helpful

  • A search engine called DynaSearch has taken over fire fox without my permission

    I think My brother has attacked my computer, he found my note book and i now have 160 spam when I had only about ten before, and even an xxx dating service used my daughters name to make me click to their site, saying," Sheila has a message for you". Since then fire fox started crashing every ten minutes, and now it's not crashing because a site called DynaSearch has taking over the usual Google trademark that used to apesr on my page, this is a search engine that has taken over Fire Fox without my permission correct. How do I get Fire Fox back, and get them off.

    Do a malware check with some malware scan programs.<br />
    You need to scan with all programs because each program detects different malware.<br />
    Make sure that you update each program to get the latest version of the database before doing a scan.<br />
    * http://www.malwarebytes.org/mbam.php - Malwarebytes' Anti-Malware
    * http://www.superantispyware.com/ - SuperAntispyware
    * http://www.microsoft.com/windows/products/winfamily/defender/default.mspx - Windows Defender: Home Page
    * http://www.safer-networking.org/en/index.html - Spybot Search & Destroy
    * http://www.lavasoft.com/products/ad_aware_free.php - Ad-Aware Free
    See also "Spyware on Windows": http://kb.mozillazine.org/Popups_not_blocked and [[Searches are redirected to another site]]

  • How do I log a support call for Pages with Apple?

    Hello,
    Sorry to have to ask this question here because I suspect it has been covered and I'm searching wrong. Anyway I'm on the Apple support site trying to log a call for some erratic behaviour when Pages tries to sync with iCloud. It seems that no matter what I end up having to enter the serial number of my hardware. Well first off this is a software issue and not a hardware issue - I've been to the Genius Bar and they believe it is Pages failing to sync with the iCloud. I have had both the iPad and the iPhone replaced during the issue and still the same problem. Secondly I have two devices affected by the same Pages behaviour
    Ok so after going around in circles for quite some time and becoming quite frustrated I thought I would come here for some sane suggestions. The first of which I fully expect to be an explanation of how to log a software support call Is there anyone out there who can advise me on how to log my issue please?
    Many thanks in advance,
    Andy

    Do what you did before and, in a second session, look at V$SESSION and other relevant dynamic performance views.

  • IPTComm 2010 Call for Papers: Deadline Extended

    CALL FOR PAPERS: DEADLINE EXTENDED
    4th ACM Conference on Principles, Systems and Applications of IP Telecommunications
    IPTComm 2010
    http://www.iptcomm.org
    August 2-3, 2010
    Leibniz Supercomputing Center
    Munich, Germany
    IMPORTANT DATES
    ================
    Paper registration: Midnight, March 5, 2010.
    Paper submission: Midnight March 19th, 2010 (Firm deadline).
    Notification of acceptance: May 21st, 2010.
    Final camera-ready submission: June 30th, 2010.
    Conference dates: August 2-3, 2010.
    The paper submission deadline has been extended to March 19, 2010.
    However, authors are required to register with EDAS and submit
    their paper abstract by the original deadline of Midnight March 5,
    2010.
    The IP communications domain has matured beyond providing VoIP only
    services. Universities, enterprises, businesses and individual
    consumers routinely use VoIP. The focus of IP communications is now on
    the operations, management, administration and provisioning aspects of
    large-scale, reliable and secure communication systems. To this extent,
    the research and standardization work now includes log file analysis,
    session tracing across proxy meshes and overload control. As IP
    communications grapples with these issues, newer technologies in the
    form of cloud-based IP communication systems; peer-to-peer VoIP
    networks; use of IP communications in virtual worlds; social
    networks and IP communications are starting to assert a strong
    presence in the IP communications domain.
    The aim of the IPTComm conference is to serve as a platform for
    researchers from academia, research labs, industry and government to
    share their ideas, views, results and experiences in the field of
    IP-based telecommunication. IPTComm will include presentations of
    theoretical and experimental achievements, innovative systems,
    prototyping efforts, case studies, and advancements in technology.
    We invite authors to submit papers in the following and related areas:
    New services and service models
    * Over-the-top services.
    * Social networking and IP communications.
    * IP telecommunications in virtual worlds.
    * Compositional services and model checking.
    * Cloud-based IP communications infrastructure.
    * Rapid application development frameworks.
    * APIs and enablers for IP communication services.
    * Browser-based IP communication services.
    * Context-aware communication services.
    * IMS and NGN services.
    Management and Resilience
    * Advantages and disadvantages of IP communications as a P2P
    application.
    * Advances in P2P overlays for IP communications systems.
    * Management of IP communications systems and networks.
    * Overload management schemes for IP communications.
    * Log files and log file analysis for IP communication systems.
    * Scalability of large-scale IP communication systems.
    * Traffic and QoS measurement of VoIP traffic.
    * Self-tuning and self-monitoring IP communications systems.
    * Service discovery.
    * Energy consumption and energy management in IP communication
    systems.
    * Incentives in P2P IP communication systems.
    * Resilience in P2P IP communication system.
    Security
    * Identity management for IP communications systems.
    * Anonymity and privacy in IP communications.
    * Forensics and diagnostics in IP communication systems.
    * Techniques to detect, mitigate and prevent SPIT, phreaking
    and vishing.
    * Denial of service detection and prevention.
    Mobile IP Communications
    * Mobile IP communication services.
    * Mobility in cloud-based IP communications infrastructure.
    * Mobile P2P IP communication systems.
    Miscellaneous
    * The role of IP communications in the power grid.
    * Open source development in IP communications.
    * Research issues in vertical IP communication markets (e.g.,
    privacy in the medical field, location in logistical
    field, etc.)
    * Regulatory issues in IP communications.
    AUTHOR INFORMATION
    ==================
    Papers submission is handled by EDAS (http://edas.info/N8459).
    IPTComm solicits full papers up to 12 pages in length, in two-column
    ACM conference format
    (see http://www.acm.org/sigs/publications/proceedings-templates). All
    submissions must describe original research, not published nor
    currently under review for another conference or journal. The program
    committee will referee all papers, and accepted papers will be
    published in the conference proceedings. Papers will also be published in
    the ACM Digital Library.
    In 2010, IPTComm will be accepting short papers of at least 5 pages and
    no more than 6 pages. The aim of the short paper category is to help
    maintain a published record of work carried out as well as facilitate
    future affiliations and foster collaborative work. Short papers are
    subject to the same rigorous review process as full papers and follow
    the same submission process, schedule and expectation of presentation as
    the full papers.
    IMPORTANT DATES
    ================
    Paper registration: Midnight, March 5, 2010.
    Paper submission: Midnight March 19th, 2010 (Firm deadline).
    Notification of acceptance: May 21st, 2010.
    Final camera-ready submission: June 30th, 2010.
    Conference dates: August 2-3, 2010.
    Conference Location: Leibniz Supercomputing Center, Munich, Germany.
    CONFERENCE CO-CHAIRS
    ====================
    Georg Carle (Technical University of Munich)
    Helmut Reiser (Leibniz Supercomputing Center)
    TPC CO-CHAIRS
    =============
    Gonzalo Camarillo (Ericsson Research)
    Vijay K. Gurbani (Bell Laboratories/Alcatel-Lucent)
    DEMONSTRATION AND INDUSTRY TALKS CO-CHAIRS
    ==========================================
    Carol Davids (Illinois Institute of Technology)
    Saverio Niccolini (NEC Laboratories Europe)
    PUBLICITY CHAIR
    ===============
    Gregory Bond (AT&T Research)
    Steering Committee
    ==================
    Gregory Bond (AT&T Research)
    Saverio Niccolini (NEC Laboratories Europe)
    Henning Schulzrinne (Columbia University)
    Dorgham Sisalem (Tekelec)
    Radu State (University of Luxembourg)
    TPC MEMBERS
    ===========
    John Buford Avaya Labs Research
    Eric Chen NTT Corporation
    Eric Cheung AT&T Labs - Research
    Tasos Dagiuklas Technological Educational Institute of Mesolonghi
    Carol Davids Illinois Institute of Technology
    Ali Fessi Technical University of Munich
    Rosario Garroppo University of Pisa
    Aniruddha Gokhale Vanderbilt University
    Swapna Gokhale University of Connecticut
    Carmen Guerrero University Carlos III of Madrid
    Christian Hoene University of Tubingen
    Alan Jeffrey Bell Laboratories, Alcatel-Lucent
    Cullen Jennings Cisco
    Salvatore Loreto Ericsson
    Jouni Maenpaa Ericsson
    Enrico Marocco Telecom Italia
    Joerg Ott Helsinki University of Technology
    Victor Pascual Avila Acme Packets
    Joachim Posegga University of Passau
    Anand Prasad NEC Corporation
    Yacine Rebahi Fraunhofer Institut Fokus, Berlin
    Ivica Rimac Bell Laboratories, Alcatel-Lucent
    Ronaldo Salles Military Institute of Engineering (Brazil)
    Stefano Salsano University of Rome "Tor Vergata"
    Jan Seedorf NEC Europe Ltd.
    Jose Solar Technical University of Denmark
    Ivan Vidal University Carlos III of Madrid
    Xiaotao Wu Avaya Labs Research
    Pamela Zave AT&T Laboratories

    Reminder: Our call for papers is closing on Monday 27th July. Be sure to send your abstracts to [[email protected]]
    We also have a Twitter account and will be posting updates via that. Se sure to follow: aus_ora_spatial
    Ross.

Maybe you are looking for

  • Cannot add photos to my iPod video - error message

    I get the same error message every time I try to add photos to my iPod - "The ipod "Susan's iPod" cannot be updated. The disk could not be read from or written to." I can still sync and add/delete songs, but I have never successfully transferred a si

  • Time Machine Backup Error

    I just bought a new 2gb Time Capsule to replace my 3 year old 1gb model.  I have 4 Macs that back up to the Time Capsule (3 laptops wirelessly, 1 iMac wired).  It is the exact same setup I had with the old Time Capsule.  I set up the new Time Capsule

  • Backspace and return keys make phone inoperable

    Whenever I try and try to make a correction using the backspace, the backspace does not stop and erases the entire message. Or if I hit the return key, it doesn't just return to the next line, but repeatedly returns making an infinite number of new l

  • Aggregate tables have many partitions per request

    We are having some performance issues dealing with aggregate tables and Db partitions. We are on BW3.5 Sp15 and use Oracle DB 9.2.06. After some analysis, we can see that for many of our aggregates, there are sometimes as much as a hundred partitions

  • Framemaker 8 and 64-bit OS

    I'm considering buying a new laptop and was wondering if anyone knows whether Framemaker 8 will run OK under a 64-bit operating system.