Forms hang when it call reports

Hi there,
In a one of my forms, there is button call report
the report object property like following:
name: report17
filename: f:\ora9ias_bi\reports\report11.rdf
execution mode: batch
communication mode:synchronous
report destination type:cache
report destination format:html
report server : repserver90
the trigger for the button is
eclare
     report_id report_object;
     v_rep     VARCHAR2(100);
     rep_status VARCHAR2(20);
begin
     report_id:=FIND_REPORT_OBJECT('report17');
     v_rep:=RUN_REPORT_OBJECT(report_id);
     rep_status:=REPORT_OBJECT_STATUS(v_rep);
     WHILE rep_status in('RUNNING','OPENNING_REPORT','ENQUEUED')
     LOOP
          rep_status := REPORT_OBJECT_STATUS(v_rep);
     end loop;
     if rep_status = 'FINISHED'or rep_status IS NULL THEN
          WEB.SHOW_DOCUMENT('HTTP://watfapp2.wat.michelin.com:7778/reports/
          rwservlet/getjobid'||substr(v_rep,instr(v_rep,'_',-1)+1)||'?'||'server=repserver90','_blank');
     else
          message('Error when running report');
     end if;
     end;
     when I click the button, the forms hangs for very long time.
Could you please shed some light on it? thanks in advance
Lionel liu

I change trigger like the following
eclare
     report_id report_object;
     v_rep     VARCHAR2(100);
     rep_status VARCHAR2(20);
begin
     message('before find');
     report_id:=FIND_REPORT_OBJECT('report17');
     message('before run');
     v_rep:=RUN_REPORT_OBJECT(report_id);
     message('after run');
     WEB.SHOW_DOCUMENT('HTTP://watfapp2.wat.michelin.com:7778/reports/
          rwservlet/getjobid'||substr(v_rep,instr(v_rep,'_',-1)+1)||'?'||'server=repserver90','_blank');
     rep_status:=REPORT_OBJECT_STATUS(v_rep);
     WHILE rep_status in('RUNNING','OPENNING_REPORT','ENQUEUED')
     LOOP
          rep_status := REPORT_OBJECT_STATUS(v_rep);
     end loop;
     if rep_status = 'FINISHED'or rep_status IS NULL THEN
          WEB.SHOW_DOCUMENT('HTTP://watfapp2.wat.michelin.com:7778/reports/
          rwservlet/getjobid'||substr(v_rep,instr(v_rep,'_',-1)+1)||'?'||'server=repserver90','_blank');
     else
          message('Error when running report');
     end if;
     end;
it hang on the command
report_id:=FIND_REPORT_OBJECT('report17');
the reports_classpath in default.env is
REPORTS_CLASSPATH=<ORACLE>/jlib/zrclient.jar;<oralce_home>/reports/jlib/rwrun.jar
What could cause the command report_id:=FIND_REPORT_OBJECT('report17');
hang on?
thanks again
Lionel

Similar Messages

  • Form call report,but form hang when report sun slowly,how to set server?

    In version 10.1.2
    Form call report, form hang when report sun slowly,
    finally the report will done,I can see the output in the server disk,but form hang,
    I think it's out of the report session, ,how to set server?
    thanks for any help!
    lind

    Hello,
    If you are using the "Paper Layout", check the Reports's "Before Report Value" property:
    Before Report Value :
    <meta http-equiv="Content-Type" content="text/html; charset=&Encoding">
    If you are using the "Web Layout", take a look to the document :
    http://download-uk.oracle.com/docs/cd/B14099_17/bi.1012/b14048/pbr_nls.htm#i1006142
    18.3 Specifying a Character Set in a JSP or XML File
    Regards

  • Forms 9i/ DB 10g - Form Hangs when function is called

    Using 9i Web Forms on 10g Database Linux O/S
    I have the following function call in a form within a loop:
    :nbt02_lentrn.nbt_txn_descr := fn_get_trans_descr(ls_app_area_code,ls_txn_type);
    The function being called contains this code:
    FUNCTION fn_get_trans_descr(ps_app_area_code IN VARCHAR2,
    ps_txn_code IN VARCHAR2) RETURN VARCHAR2 IS
    CURSOR cur_txn_descr IS
    SELECT descr
    FROM financial_trans_types
    WHERE code = ps_txn_code
    AND aparea_code = ps_app_area_code;
    ls_txn_descr financial_trans_types.descr%TYPE;
    BEGIN
    OPEN cur_txn_descr;
    FETCH cur_txn_descr INTO ls_txn_descr;
    CLOSE cur_txn_descr;
    Return(ls_txn_descr);
    END;
    When the call is executed, the form hangs after the OPEN command. I have checked the parameters for their values and successfully executed the cursor in SQL.
    When I hardcode the function parameter values, the code executes successfully. Also, and perhaps most unusually, if I do either of the following before the function call, the code runs successfully:
    ls_txn_type     :=     ls_txn_type;
    :nbt02_lentrn.nbt_txn_descr := fn_get_trans_descr(ls_app_area_code,ls_txn_type);
         ls_txn_type     :=     NVL(ls_txn_type,NULL);
    :nbt02_lentrn.nbt_txn_descr := fn_get_trans_descr(ls_app_area_code,ls_txn_type);
    I have also extracted the call and placed it into a different form where it works fine!
    The variable ln_txn_type is populated via another call within the same loop. It's value alternates between null and a value for the record set.
    The same code works fine Client/Server and although I have a solution, I'm not sure what the problem is! Does anyone have any clues?

    Hello - your problem actually looks similar in symptoms to one I hit just a couple of days ago (see my post 'Forms hangs when using result of an OUT parameter to do an Insert ' on July 19th.)
    The problem I was having was if I had a variable which already had a value, then passed into an IN OUT parameter of a db stored proc, the proc set the value to null, and then I tried to use the variable in a table insert. The form would just hang completely. Like you, one workaround for the problem was to have a line like:
    my_var := NVL(my_var,NULL);
    to somehow 'fix' the variable before trying to use it further. Even though the variable seems null, and returns true for IF ... IS NULL, something had gone wrong with it that rendered it toxic to my form. This workaround should have no net effect, but it does somehow solve the problem. Like your problem, mine doesn't occur on client server, only on the newer version.
    I hit this problem using Forms 10g904, against a 9i database. Having talked it over with Oracle support, I've tried doing the same thing using 10g Release 2, and the problem disappears, so Oracle have obviously fixed it somewhere between the two releases - I'm currently investigating intermediate Patch Sets.
    Don't know if this is helpful, but all I can suggest is that you ensure you've applied the latest patchsets to your Forms (you can try it on the Builder first before patching your apps server installation.) If that doesn't do it, I'm guessing it's a case of use the workarounds, or go up to a higher version altogether of Forms.
    Sorry not to have any more optimistic advice!
    James

  • Forms hanging after multiple calls to Foreign Function Interface

    Hi,
    Can anyone help me with this problem. I'm getting a 'FRM-92100:
    Your connection to the server was interrupted ... Details ...
    Java Exception:java.io.EOFException' error message when i make
    two calls to a c share object file using the ORA_FFI package.
    Forms will hang with that error message when I call the foreign
    function more than once and when the ORA_FFI.LOAD_LIBRARY
    function is executed twice.
    I've tried using the ORA_FFI.UNLOAD_LIBRARY function at the end
    straight after the load library plus my processes and it still
    hangs with that error message.
    I've got a temporary work around which is not ideal but it
    works. I've made another copy of the C shared object file and
    renamed it and made my second call to load this library.
    I would prefer to have one shared object file and make multiple
    calls to it from forms. Any suggestions?
    note : running forms 6.0 on three tier architecture with web
    browser.

    "Mush15" <[email protected]> wrote in
    message
    news:g7hela$flo$[email protected]..
    > Ok the issue is a stack overflow caused by calling the
    function
    > recursivly.
    >
    > I have tried creating 2 functions and have each call the
    other but still
    > recieve a stack overflow.
    >
    > Any ideas help??
    Try incrementing a counter every time you call the function
    and decrementing
    it on the way out. When you hit 2640 times, stop calling it.

  • Forms hangs when using result of an OUT parameter to do an Insert

    Hello,
    I think I have slightly odd problem here... I'm currently migrating a Forms 6i client-server application to Forms 10g904. I found that one of my Forms was hanging i.e. screen goes blank, 'activity' bar on the bottom right just keeps whirring away indefinitely.
    After much investigation, the hanging-form problem occurs in the following scenario:
    - In a routine in a Forms pll library, a variable is declared e.g. w_capture_output
    - In the first round of a loop, this variable is passed into a database stored proc, which has an OUT parameter to return a result e.g. SOME_PROC(w_some_input, w_capture_output);
    - w_capture_output comes back with a value e.g. 'P'
    - This is then used in an Insert e.g. INSERT INTO some_table (a, b) VALUES (1, w_capture_output)
    - The next round of the loop; the variable is passed in again into the proc. It still holds the value from the last round e.g. 'P'
    - In this round, the logic of the proc is such that the OUT argument is set to null i.e. when the proc has finished, w_capture_output is now null. This can be confirmed with IF w_capture_output IS NULL THEN display_some_message. The code is still all running fine.
    - But now when I run INSERT INTO some_table (a, b) VALUES (2, w_capture_output) - the form hangs.
    I can, however, work around this and prevent the form from hanging simply by ensuring at the start of each round of the loop that I explicitly set w_capture_output back to null before passing it into the proc that sets it. Or alternatively, after it comes back from the proc, the following also prevents the hanging problem:
    w_capture_output := NVL(w_capture_output,NULL);
    To summarise - if I pass a variable into a proc taking an OUT parameter, AND that variable is not null going into the proc, AND the proc sets it to null AND I then try to use that variable in an Insert statement - the form hangs. Something horrible is happening to the variable inside the procedure, I think.
    Now, I can kind of see why passing a non-null variable into an OUT argument might cause problems (although only if you then try to set it to null - not if you set it to another, non-null value). However, exactly the same code works fine under Forms 6i, using the same database instance and proc. And if Oracle have changed the rules, shouldn't it throw an error, rather than just hanging? I'd prefer not to have to use the workaround, as this is a very large app and I don't know yet how many places would need it.
    Has anyone else come across this issue..? (Database is 9.0.2. btw, Forms are 10g904)
    Cheers,
    James

    Try
    v_log_name := 'Fnd_File.LOG_OUT';Hey, what r u doing with above code?
    You are assigning string value to a variable?
    The compilation won't give any error.
    And OP thinks it's solution!!!!!!!!!!!
    LOL

  • The I4S is frequently hanging when a call is received after updating the Sw to version 8

    After updating the Phone Software to version 8 the Instrument I4S hangs frequently when a call is received. You can see who is calling but the touch screen does not respond and only way is to switch off and on.

    Make sure that you don't have the Do Not Disturb mode enabled in your device.
    Use Control Center and verify that the Moon icon is greyed (not white).
    Check as well in Settings > Do Not Disturb > Manual and Scheduled is turned off

  • Web Form Hangs When Scrolling through Multi-Record Block

    Hello!
    I have a web-deployed form that uses the Sun Java JVM and utilizes WebUtil.
    We are using JDK v1.4.2.
    When I open this form using the Java plug-in and try to scroll through a multi-record block ... it will hang at various points and eventually I have to close the form because it won't respond.
    This does not happen if I simply access the form through the Microsoft JVM.
    Any suggestions?

    That's a know solved bug. You must install AS10g patchset 9.0.4.2.
    For me it solved the problem.
    Bug 3557904: Forms hangs (deadlocks) when scrolling on XP under some circumstances
    Joao Oliveira

  • Applicaiton form hangs when trying to make C# form visible from menu event

    I have a MDI windows app, running as an addon on Verion 2007A
    The applicaion is written in C# ( VS 2005)
    I am a newbee to C# ( VS too ) as well.
    All I want is to display the MDI container form when a menu is clicked. But the windows form hangs forever, and does not show.
    if I try to show the form within Main method then no issues! The problem happens only off the SBO menu event .
    I cannot have the form loaded all the time. so I need the services of the SBO menu click, so a user can open it whenever he wants.
    Note: I can open any other form off the menu click, but that , provided they are not MDI containers and they are opened with ShowDialog(); If I use Show(); then again hangs.
    I tried opening the MDI form in Main method, ( wich of course works) and hide it when not needed. I could hide the form, but when I issued a command myForm.visible = true;  through the SBO menu event, again hangs!
    my applicaion Main function is as follows. The class AA_SBO_MAIN  holds the SBO application events.
    static void Main()
                Application.EnableVisualStyles();
                Application.SetCompatibleTextRenderingDefault(false);
                Classes.AA_SBO_MAIN oSBOMain = null;
                oSBOMain = new Classes.AA_SBO_MAIN(); 
                 Application.Run();        
    the menu event simply does
                  frmMain fm = new frmMain();
                  fm.Visible = true;

    Hi
    I try doing these few steps and it seems to work!  The code is in Visual Basic though!
    Declare the form variable
    Private mMDI As New frmMDI
    In your menu click event enter a code like this
    If mMDI Is Nothing Then mMDI = New frmMDI
    mMDI.Visible = True
    On your startup function do something like this
    Public Sub New()
           mMDI.Show() : mMDI.Visible = False
    End Sub
    And more important ... in the form class comment all the code inside the Dispose method
    and finally do the following
    Private Sub frmMDI_Closed(ByVal sender As Object, ByVal e As System.EventArgs) Handles MyBase.Closed
            Me.Hide()
    End Sub
    it seems to work for me . Hope it helps you too!

  • Form hangs when try to open excel

    Hi everybody,
    When I try to upload some data from excel it work's ok when i'm doing it on xp, but when i'm on windows server 2003 won't upload. Form hangs on code noted below. On both OS are Excel 2003.
    args := OLE2.create_arglist;
    OLE2.ADD_ARG(args, p_filename);
    vdoc :=OLE2.INVOKE_OBJ(vworkbooks,'Open',args); -- on this code form hangs
    OLE2.destroy_arglist(args);
    I tried various things but without success.
    If I need provide some additional information please let me know.
    Thanks

    What version of WebUtil are you using? There is a known problem with 1.0.2 (beta) where the EXCEL.EXE process is not released by the form.

  • Phone hangs when receiving calls

    I have a E66 about 6 months old with the latest software (210.21.007) installed. When I receive a call, the phone hangs. All I can do is take the battery out and restart the phone. It happens about every 8th call or so.
    Please help.
    Thanks.

    I just bought an E66 and I am having the exact same problem.  The phone just hangs when I try to receive the call and I have to remove the battery to reset it.
    This happens around every 8th call just like to previous poster, I am also running firmware 210.21.007
    Will really appreciate if someone can give a solution for this as this is very irritating. 

  • E51 hangs when someone calls

    Hi.
    My e51 is 1.5 year old. Originaly there was fw.:100.xx.x.x. I flashed it to 200.xxx.x.x.x, then to 300.xx.xxx.xx and now there is 400.xx.xx.xx. Then i backup my settings from backup. It restored everything except - google maps and nimbuzz. Everything works quite ok, but it hangs up sometimes when someone calls. It doesn't matter if it is in standby or charging or browsing www via wlan. It just happens. I've updated to newest fw last week and my phone has hanged up for 4 times. It just show "someone" calls and that's it - i cannot pick it up or drop. Only removing battery helps in this case.

    Ola. 
    What is workaround for this problem? This problem is also active few collegues who has latest fw on their e51. 
    What i've done: 
    1) restore to default, reinstall fw, import only contacts. 
    2)set my phone language to english. 
    One friend has a problem with earphone and keyboard, so he putted it in service, after that it has latest fw as benefit - and it hangs also, when someone calls. So i think it couldn't be a case of wrong fw upgrade procedure. 
    Is it possible to downgrade to previous fw:300.xx.xx.x.

  • Forms Hang when trying to open

    We are using Oracle 10.1, on 32 bit Windows XP SP2, IE 6, jre 1.6 on the client side. The end users at time uses multiple forms and also uses Oracle Discoverer 10 at the same time. Print out reports uses Adobe Reader 9.1(which is another story), with java 1.6.7
    We have team of developers that created the forms and application in oracle. I deal with the end users.
    Issues we have been getting are:
    1. Users attempt to open a form and the "hour glass" appears and then hangs. We close the application by closing the IE window.
    2. As time goes on we have been seeing more and more users with this issue. Those that use the application more heavily seem to be having more issues
    3. I called the development team and they have stated that they do not see anything in the database of their logs to indicate that something is wrong.
    What was done to remedy issue:
    1. Cleared IE temp files, cookies, history
    2. Cleared Java temp files - this seems to work for a while
    3. Uninstalled users profile and re-install - it helps for a bit and then the issues comes back
    4. Re-created a new PC from scratch
    On the client computer we do not see any error messages. The system just hangs. It is happening on a daily basis for some users and getting more frequent to others as they use the applications more.
    Does anyone else have this issues? The developer team said that it was a setting on the client side. I have been searching for a while, but have not come up with anything. Can someone assist? Thank you in advance for any assistance.

    New information:
    I was monitoring an end-user, when the freezing occoured during pressing a button. The applet freezes, hourglass is displayed, but I've noticed that I can drag/move the window around and it still gets updated. I didn't gray-out.
    I tried attaching the JConsole utility on the Java.exe process. After some digging I found the following:
    JCONSOLE
    Name: AWT-Windows
    State: BLOCKED on java.util.LinkedList@1367dca owned by: Forms-DialogThread56
    Total blocked: 54 Total waited: 0
    Stack trace:
    java.awt.KeyboardFocusManager.shouldNativelyFocusHeavyweight(Unknown Source)
    sun.awt.windows.WToolkit.eventLoop(Native Method)
    sun.awt.windows.WToolkit.run(Unknown Source)
    java.lang.Thread.run(Unknown Source)
    Name: Forms-DialogThread56
    State: RUNNABLE
    Total blocked: 0 Total waited: 0
    Stack trace:
    sun.awt.KeyboardFocusManagerPeerImpl.getNativeFocusOwner(Native Method)
    sun.awt.KeyboardFocusManagerPeerImpl.getCurrentFocusOwner(Unknown Source)
    java.awt.KeyboardFocusManager.getNativeFocusOwner(Unknown Source)
    java.awt.KeyboardFocusManager.processSynchronousLightweightTransfer(Unknown Source)
    - locked java.util.LinkedList@1367dca
    sun.awt.windows.WComponentPeer.processSynchronousLightweightTransfer(Native Method)
    sun.awt.windows.WComponentPeer.requestFocus(Unknown Source)
    java.awt.Component.requestFocusHelper(Unknown Source)
    java.awt.Component.requestFocusHelper(Unknown Source)
    java.awt.Component.requestFocus(Unknown Source)
    oracle.ewt.lwAWT.AbstractButton.requestFocus(Unknown Source)
    oracle.ewt.lwAWT.lwWindow.LWWindow._restoreFocus(Unknown Source)
    oracle.ewt.lwAWT.lwWindow.LWWindow.setActive(Unknown Source)
    oracle.ewt.lwAWT.lwWindow.LWWindow.setVisible(Unknown Source)
    oracle.ewt.lwAWT.lwWindow.LWWindow.setVisible(Unknown Source)
    oracle.forms.handler.DialogThread.doUserAlert(Unknown Source)
    oracle.forms.handler.DialogThread.run(Unknown Source)
    java.lang.Thread.run(Unknown Source)
    I seems like the AWT-Windows is blocked by the Forms-DialogThread56. Is this normal, when a alert is displayed?
    But!!!! Notice that the alert doesn't get displayed....
    I also tried using the "Detect deadlock" function in JConsole, which doesn't find anything.
    Edited by: Lerche on Jul 17, 2009 12:12 PM

  • Jobs gets hanged when a call is made to PLSQL function in Data Services XI

    Hi,
    I am facing the below issue after migration of BODI 11.7 to BODS XI 3.1.
    The job is not proceeding after the below mentioned statements.
    print('before call');
    $is_job_enable=DS_TEST.TEST.MY_PKG.IS_JOB_ENABLED(job_name());
    print($is_job_enable);
    MY_PKG.IS_JOB_ENABLED plsql function will return Number.
    $is_job_enable is a global variable declared as decimal (10, 0).
    This Job works fine in Data Integrator 11.7.3 version and gets handed in Data Services XI 3.1.
    I tried changing the global variable $is_job_enable to int and created new data sources before doesn't solve the problem. Can anyone tell me what is the issue?
    Thanks & Regards
    Maran MK
    The trace file says
    5260     3284     JOB     5/5/2009 4:43:17 AM     Job <TEST_JOB> is started.
    5260     3284     PRINTFN     5/5/2009 4:43:17 AM     before call
    5260     3284     SP     5/5/2009 4:43:18 AM     Stored procedure call <MY_PKG.IS_JOB_ENABLED> is started.
    5260     3284     SP     5/5/2009 4:43:18 AM     SQL query submitted for stored procedure call <MY_PKG.IS_JOB_ENABLED> is: <BEGIN :AL_SP_RETURN :=
    5260     3284     SP     5/5/2009 4:43:18 AM     "TEST"."MY_PKG"."IS_JOB_ENABLED"("P_JOB_NAME" => :P_JOB_NAME); END;
    5260     3284     SP     5/5/2009 4:43:18 AM     >.
    5260     3284     SP     5/5/2009 4:43:18 AM     Stored procedure call <E> input parameter <P> has value of <TEST_JOB>.
    5260     3284     SP     5/5/2009 4:43:18 AM     Stored procedure call <E> return value is <1.0000000>.
    5260     3284     SP     5/5/2009 4:43:18 AM     Stored procedure call <MY_PKG.IS_JOB_ENABLED> is done.
    The below error occurs only in Windows and not in Linux environment.
    5260     3284     SYS-170101     5/5/2009 4:43:21 AM     |Session TEST_JOB
    5260     3284     SYS-170101     5/5/2009 4:43:21 AM     System Exception <ACCESS_VIOLATION> occurred. Process dump is written to <E:\Program Files\Business Objects\Data
    5260     3284     SYS-170101     5/5/2009 4:43:21 AM     Services\log\BODI_MINI20090505044318_5260.DMP> and <E:\Program Files\Business Objects\Data
    5260     3284     SYS-170101     5/5/2009 4:43:21 AM     Services\log\BODI_FULL20090505044318_5260.DMP>
    5260     3284     SYS-170101     5/5/2009 4:43:21 AM     Process dump is written to <E:\Program Files\Business Objects\Data Services\log\BODI_MINI20090505044318_5260.DMP> and
    5260     3284     SYS-170101     5/5/2009 4:43:21 AM     <E:\Program Files\Business Objects\Data Services\log\BODI_FULL20090505044318_5260.DMP>
    5260     3284     SYS-170101     5/5/2009 4:43:21 AM     Call stack:
    5260     3284     SYS-170101     5/5/2009 4:43:21 AM     001B:00CA9EAB, ActaDecimalImpl<RWFixedDecimal<RWMultiPrecisionInt<3> >,RWMultiPrecisionInt<3>,ActaDecimal28,char
    5260     3284     SYS-170101     5/5/2009 4:43:21 AM     [29]>::operator=()0315 byte(s), x:\src\rww\actadecimalimpl.cpp, line 13140004 byte(s)
    5260     3284     SYS-170101     5/5/2009 4:43:21 AM     001B:00D8A267, Convert()+0999 byte(s), x:\src\eval\calc.cpp, line 0303
    5260     3284     SYS-170101     5/5/2009 4:43:21 AM     001B:00DBF9E0, XVal_cast::compute()+0272 byte(s), x:\src\core\compute.cpp, line 1664
    5260     3284     SYS-170101     5/5/2009 4:43:21 AM     001B:00DBC239, XStep_assn::execute()+0057 byte(s), x:\src\core\step.cpp, line 0069
    5260     3284     SYS-170101     5/5/2009 4:43:21 AM     001B:00DBB30D, XStep_sblock::execute()+0029 byte(s), x:\src\core\step.cpp, line 0707
    5260     3284     SYS-170101     5/5/2009 4:43:21 AM     001B:00DBB30D, XStep_sblock::execute()+0029 byte(s), x:\src\core\step.cpp, line 0707
    5260     3284     SYS-170101     5/5/2009 4:43:21 AM     001B:00DBE0BC, XPlan_spec::execute()+0348 byte(s), x:\src\core\plan.cpp, line 0082
    5260     3284     SYS-170101     5/5/2009 4:43:21 AM     001B:00DC5EA0, XPlan_desc::execute()+0336 byte(s), x:\src\core\xplan.cpp, line 0153
    5260     3284     SYS-170101     5/5/2009 4:43:21 AM     001B:00DBD68E, XPlan_spec::compute()0206 byte(s), x:\src\core\plan.cpp, line 01450011 byte(s)
    5260     3284     SYS-170101     5/5/2009 4:43:21 AM     001B:00DBD891, XPlan_spec::compute()+0225 byte(s), x:\src\core\plan.cpp, line 0244
    5260     3284     SYS-170101     5/5/2009 4:43:21 AM     001B:0074533A, AE_Main_Process_Options()+31498 byte(s), x:\src\xterniface\actamainexp.cpp, line 3485
    5260     3284     SYS-170101     5/5/2009 4:43:21 AM     001B:00747EDA, AE_Main()1498 byte(s), x:\src\xterniface\actamainexp.cpp, line 07680030 byte(s)
    5260     3284     SYS-170101     5/5/2009 4:43:21 AM     001B:004029F9
    5260     3284     SYS-170101     5/5/2009 4:43:21 AM     Registers:
    5260     3284     SYS-170101     5/5/2009 4:43:21 AM     EAX=0000000E  EBX=03E392E0  ECX=04B455A0  EDX=012346D8  ESI=02B75D88
    5260     3284     SYS-170101     5/5/2009 4:43:21 AM     EDI=04B455A0  EBP=00212738  ESP=002124BC  EIP=00CA9EAB  FLG=00210206
    5260     3284     SYS-170101     5/5/2009 4:43:21 AM     CS=001B   DS=0023  SS=0023  ES=0023   FS=003B  GS=0000
    5260     3284     SYS-170101     5/5/2009 4:43:21 AM     Exception code: C0000005 ACCESS_VIOLATION
    5260     3284     SYS-170101     5/5/2009 4:43:21 AM     Fault address:  00CA9EAB 01:00585EAB E:\Program Files\Business Objects\Data Services\bin\acta.dll

    Hi Manoj & Tiji,
    Thanks for your comments. Please find the below outcome.
    print($is_job_enable); -- is not executed if PLSQL function is called.
    I changed $is_job_enable to VARCHAR, still the same issue.
    I created new project and executed the same in new job, still the same issue (all objects are new except Datastore).
    The dmp happens only when we the PLSQL function is called. I commented the Function call, the execution proceeds further but got hanged in other PLSQL function call (different than the 1st one)
    Is this bug in 12.1?
    Can you tell any Hot fix available? If possible please give me the SAP Notes Number.
    Is there any other way to execute the PLSQL functions/procedures in 12.1?
    Thanks
    Maran MK

  • 10g form hangs when compiling! - please help!

    Hi,
    I'm having a problem compiling a couple of my forms. I'm using forms 10g and when I compile the form it hangs in a particular program unit. Actually, if I connect to my database first and then open the form in forms builder, it will hang. I have to connect after I load the form.
    In the program unit that compiling is hanging on, we are selecting from a synonym which is a dblink to another database. The synonym is in a 9i database, the dblink is linking to a table in a 10g database. I can see the synonym and perform a select from it. However, it will not compile in the form.
    Please help!
    Thanks!

    Hi,
    The same issue is faced by me when I was migrating my application from forms6i (oracle 8i) to forms 10g(oracle 10g).
    Solution:
    create a view based on the table on the other database (use db link)
    now create a synonym using this view and make it public.
    use this synonym in your form.
    It looks like something weared but this worked !!
    Try it !!

  • ITS screen hangs when downloading a report to an excel from an ITS screen

    Hi All,
    We are having an Transaction iview which is used by manager to generate reports, When the user tries to download the report to a local file the screen just hangs and nothing happens. We get an error at the IE status bar saying "Load: class Query not found". This the same when the user tries to upload selection criteria from an text file to execute the report. We are running EP7 with ECC5 as backend with Integrated ITS.
    Both the functionalities works when the report is executed in the backend.
    Regards
    Prakash

    Hi All,
    I found about a OSS note 980772 in one of the threads (ITS: issues with downloading ALV)
    which mentions about the SUN Virtual Machine and downloading and uploading of files.
    After i made the changes it worked for me.
    Regards
    Prakash

Maybe you are looking for

  • Pascal's Triangle Problem

    Hey there guys. I was looking around the forums seeing if there was anything that someone posted simliar to my assignment. While there were SOME similar things, I think mines a bit more specific. Let me just state here that I don't want anyone to jus

  • SetMnemonic for non-english characters

    Does anybody knos how to set JButtons mnemonic for non-english characters? My mnemonic is loaded from a resource bundle, and in the documentation the setMnemonic(char) is only limited to english and it is written that the user should call setMnemonic

  • Constant registration prompting in iTunes 7.5

    Hi, Every time I plug in my new iPod classic, the iTunes software prompts me to register the iPod & create an iTunes store account. I've registered it 3 times, twice by the iTunes software and once by the Apple website. It's getting annoying, and I'd

  • Airport Base Station password

    I've had my Airport Base station for years.  Now I'm trying to add a wireless printer, and I don't remember the original WEP password assigned to my base station.  Is there a way to find it, or can it be reset somehow? Thanks Bill

  • Long text not apearing on contract

    Hi SAP Gurus, Can anybody please help me with this scenario. The long text appears on the PO but does not appear on contract. When i say long text it refers to the Basic text in the additional data part of the Basic data tab. Whatever text we maintai