Error in terminating a string in pageContext.setForwardURL

based on a condition i need to pass the url back from a package to the CO pageFormRequest
in package i have my_string := ' "OA.jsp?page=/oaf/oracle/apps/xx/wf/wflocator/webui/ResultsPG" ';
in co i have
String paramABCD = am1.invokeMethod("my_test", paramList);
pageContext.setForwardURL( ""+ paramABCD +"" // i am making this dynamic when we run the FND_RUN_FUNCTION.get_run_function_url
,null,......
i know i have "OA.jsp?page=/oaf/oracle/apps/xx/wf/wflocator/webui/ResultsPG" in the variable when i do a System.out.println(paramABCD). i tested by taking the line from the println and it went to next page.
does anyone have an example of how to properly add the " (start and end ) " or "" + ... + "" ex " + paramABCD + " . i tried several ways and keep getting page not found. thanks for the input.
THanks.

resolved using ...
pkg my_string := 'OA.jsp?page=/oaf/oracle/apps/xx/wf/wflocator/webui/ResultsPG';
co pageContext.setForwardURL( ""+ paramABCD +"" ....
to many or to few " or '
problem was the combination of using java and plsql. the correct format is listed above..... it works for me now..

Similar Messages

  • How to pass parameter as http POST in pageContext.setForwardURL

    Hi,
    I need to call a third party application page in my custom OAF page. I need to pass parameter to this third party page using POST method. I am using following command to call that -
    HashMap hm = new HashMap();
    hm.put("FirstName",firstName );
    hm.put("LastName",lastName);
    hm.put("AppSignature", signature);
    pageContext.setForwardURL(hopURL,
    null, // not necessary with KEEP_MENU_CONTEXT
    OAWebBeanConstants.KEEP_MENU_CONTEXT, // no change to menu context
    null, // No need to specify since we're keeping menu context
    hm, // request parameters
    false, // retain the root application module
    OAWebBeanConstants.ADD_BREAD_CRUMB_YES, // display breadcrumbs
    OAException.ERROR);
    I am passing parameter to the page using hash map table. That application is expecting the parameters in POST format and I believe using hash map table the parameters will be passed as GET format.
    We figured that out because one of the parameter we have to send is AppSignature which is 160 characters long. When third party applicatoin received that parameter they got only 151 characters, looks like they are truncated by GET method.
    Any idea how to pass parameter using POST format so that this issue could be fixed.
    Regards
    Hitesh

    Sumit,
    Thanks for your reply. I have resolved this issue by forwarding all parameters in session using pageContext.putSessionValueDirect and redirect to a jsp using pageContext.redirectImmediately.
    in jsp I read the params from session and set in the form , and then redirected to my third party application.
    Regards
    Hitesh

  • How can I put all output error message into a String Variable ??

    Dear Sir:
    I have following code, When I run it and I press overflow radio button, It outputs following message:
    Caught RuntimeException: java.lang.NullPointerException
    java.lang.NullPointerException
         at ExceptionHandling.ExceptTest.actionPerformed(ExceptTest.java:72)
         at javax.swing.AbstractButton.fireActionPerformed(AbstractButton.java:1995)
         at javax.swing.AbstractButton$Handler.actionPerformed(AbstractButton.java:2318)
         at javax.swing.DefaultButtonModel.fireActionPerformed(DefaultButtonModel.java:387)
         at javax.swing.JToggleButton$ToggleButtonModel.setPressed(JToggleButton.java:291)
         at javax.swing.plaf.basic.BasicButtonListener.mouseReleased(BasicButtonListener.java:236)
         at java.awt.Component.processMouseEvent(Component.java:6038)
         at javax.swing.JComponent.processMouseEvent(JComponent.java:3260)
         at java.awt.Component.processEvent(Component.java:5803)
         at java.awt.Container.processEvent(Container.java:2058)
         at java.awt.Component.dispatchEventImpl(Component.java:4410)
         at java.awt.Container.dispatchEventImpl(Container.java:2116)
         at java.awt.Component.dispatchEvent(Component.java:4240)
         at java.awt.LightweightDispatcher.retargetMouseEvent(Container.java:4322)
         at java.awt.LightweightDispatcher.processMouseEvent(Container.java:3986)
         at java.awt.LightweightDispatcher.dispatchEvent(Container.java:3916)
         at java.awt.Container.dispatchEventImpl(Container.java:2102)
         at java.awt.Window.dispatchEventImpl(Window.java:2429)
         at java.awt.Component.dispatchEvent(Component.java:4240)
         at java.awt.EventQueue.dispatchEvent(EventQueue.java:599)
         at java.awt.EventDispatchThread.pumpOneEventForFilters(EventDispatchThread.java:273)Caught RuntimeException: java.lang.NullPointerException
         at java.awt.EventDispatchThread.pumpEventsForFilter(EventDispatchThread.java:183)
         at java.awt.EventDispatchThread.pumpEventsForHierarchy(EventDispatchThread.java:173)
         at java.awt.EventDispatchThread.pumpEvents(EventDispatchThread.java:168)
         at java.awt.EventDispatchThread.pumpEvents(EventDispatchThread.java:160)
         at java.awt.EventDispatchThread.run(EventDispatchThread.java:121)I hope to catch all these error message into a String Variable such as StrErrorMsg, then I can use System.out.println(StrErrorMsg) to print it out or store somewhere, not only display at runtime,
    How can I do this??
    Thanks a lot,
    See code below.
    import java.awt.Frame;
    import java.awt.GridLayout;
    import java.awt.event.ActionEvent;
    import java.awt.event.ActionListener;
    import java.awt.event.WindowAdapter;
    import java.awt.event.WindowEvent;
    import java.io.FileInputStream;
    import javax.swing.ButtonGroup;
    import javax.swing.JFrame;
    import javax.swing.JPanel;
    import javax.swing.JRadioButton;
    public class ExceptTest extends JFrame implements ActionListener {
        private double[] a;
      private JRadioButton divideByZeroButton;
      private JRadioButton badCastButton;
      private JRadioButton arrayBoundsButton;
      private JRadioButton nullPointerButton;
      private JRadioButton negSqrtButton;
      private JRadioButton overflowButton;
      private JRadioButton noSuchFileButton;
      private JRadioButton throwUnknownButton;
      public ExceptTest() {
        JPanel p = new JPanel();
        ButtonGroup g = new ButtonGroup();
        p.setLayout(new GridLayout(8, 1));
        divideByZeroButton = addRadioButton("Divide by zero", g, p);
        badCastButton = addRadioButton("Bad cast", g, p);
        arrayBoundsButton = addRadioButton("Array bounds", g, p);
        nullPointerButton = addRadioButton("Null pointer", g, p);
        negSqrtButton = addRadioButton("sqrt(-1)", g, p);
        overflowButton = addRadioButton("Overflow", g, p);
        noSuchFileButton = addRadioButton("No such file", g, p);
        throwUnknownButton = addRadioButton("Throw unknown", g, p);
        getContentPane().add(p);
      private JRadioButton addRadioButton(String s, ButtonGroup g, JPanel p) {
        JRadioButton button = new JRadioButton(s, false);
        button.addActionListener(this);
        g.add(button);
        p.add(button);
        return button;
      public void actionPerformed(ActionEvent evt) {
        try {
          Object source = evt.getSource();
          if (source == divideByZeroButton) {
            a[1] = a[1] / a[1] - a[1];
          } else if (source == badCastButton) {
            Frame f = (Frame) evt.getSource();
          } else if (source == arrayBoundsButton) {
            a[1] = a[10];
          } else if (source == nullPointerButton) {
            Frame f = null;
            f.setSize(200, 200);
          } else if (source == negSqrtButton) {
            a[1] = Math.sqrt(-1);
          } else if (source == overflowButton) {
            a[1] = 1000 * 1000 * 1000 * 1000;
            int n = (int) a[1];
          } else if (source == noSuchFileButton) {
            FileInputStream is = new FileInputStream("Java Source and Support");
          } else if (source == throwUnknownButton) {
            throw new UnknownError();
        } catch (RuntimeException e) {
          System.out.println("Caught RuntimeException: " + e);
          e.printStackTrace();
          System.out.println("Caught RuntimeException: " + e);
        } catch (Exception e) {
          System.out.println("Caught Exception: " + e);
      public static void main(String[] args) {
        JFrame frame = new ExceptTest();
        frame.setSize(150, 200);
        frame.addWindowListener(new WindowAdapter() {
          public void windowClosing(WindowEvent e) {
            System.exit(0);
        frame.show();
    }

    yes, I update as follows,
    but not looks good.
    import java.io.*;
    public class UncaughtLogger implements Thread.UncaughtExceptionHandler {
        private File file;
        private static String errorMessage;
        public UncaughtLogger(File file) {
            this.file = file;
            //Thread.setDefaultUncaughtExceptionHandler(this);
        public UncaughtLogger(String str) {
            this.errorMessage = str;
            Thread.setDefaultUncaughtExceptionHandler(this);
        //@Override()
        public void uncaughtException(Thread t, Throwable e){
            try {
                log(e);
            } catch (Throwable throwable) {
                System.err.println("error in logging:");
                throwable.printStackTrace();
        private void log(Throwable e) throws IOException {
            PrintWriter out = new PrintWriter(new FileWriter(file, true));
            try {
                e.printStackTrace(out);
            } finally {
                out.close();
        private static UncaughtLogger logger = new UncaughtLogger(new File("C:/temp/log.txt"));
        private static UncaughtLogger logger2 = new UncaughtLogger(errorMessage);
        public static void main(String[] args) {
                String s1 = "Hello World!";
                s1 = null;
                String s2 = s1.getClass().getName();
                System.out.println(s1);
                System.out.println(s2);
                System.out.println("errorMessage =" + errorMessage);
    }

  • Error While terminating the employee through API

    Hello Group,
    I am facing the error while terminating the employee through standard api. The error is "You cannot create an entry past the termination rule date" The element entry I have are type "Recurring" and Termination at "Final Close" I have gone through the thread
    " http://forums.oracle.com/forums/thread.jspa?messageID=3794867 " Which is partial complete.
    Will be looking forward for the response.
    Thanks,
    Nitin Singh

    This doc directs to apply a patch.
    I have gone through. Just want to cross check if this required. I am able to terminate the employee through the application. There it just throws the warning saying " Element Entry has been changed for the Employee as the result of the termination do you wish to go with the termination"
    Srini let me know your opinion.
    Thanks
    Nitin Singh

  • Error; publication terminated = Content Could not be Read

    Hello All,
      It is getting insanely painful. We are replicating our catalog. which is massive 10000 products, 8000 images tons of attributes etc. the project is CRM 2007 Web Channel and we are using TREX 7.1. I am getting the below error
    Error; publication terminated => Content Could not be Read
    Message no. COM_PCAT_IMS852
    We checked all the timeout paarameters for both FTP and HTTP and set it to unlimited.
    please help

    pounce???
    Grrrrr
    The Long Text for your error COM_PCAT_IMS852 is given below You might have already seen it. It appears that the load (FTP or HTTP) aborted and it is very likely there is an ABAP dump ( ST22 ) or at least a log entry ( SM21 ?).
    You can find the document class (TIF , GIF, JPG) etc you set for the document type.
    SAP Web Application Server -> Application Server  -> Basis Services  -> ArchiveLink  -> Basic Customizing  -> Edit Document Types
    For every document type there can be only one document class right? So, I am not sure if you are mixing the document classes for a document type.
    Easwar Ram
    http://www.parxlns.com
    Long text
    Diagnosis
    No link to the HTTP Server could be created.
    System response
    No connection could be made with the HTTP server selected by the publishing computer ID. The replication process is stopped, since the requested transport of documents cannot be executed.
    Procedure
    => ACCESS_DENIED
    Check whether you have read and write authorizations for the document directories
    => OBJECT_NOT_FOUND
    Check whether the HTTP process is correctly configured onto the HTTP server (usually the Web server of your Internet Sales application).
    Check whether the settings of the publishing computer ID are the same as the settings of the HTTP server.
    => 1/'ERROR NIECONN_REFUSED
    Check the RFC destination SAPHTTPA. Application server must be chosen at 'Start'.
    => 4/
    The HTTP client program showed an unspecific TCP/IP error.
    => all other values zero or empty.
    Check whether the RFC connection is correctly set. The RFC destination to be checked is SAPHTTPA.
    Procedure for System Administration

  • Error writing the handshake string to the newly established connection. (02

    Hi
    I am having problems connecting from my Master to the Local Distributor server both on Solaris 10
    I am using ssh with ssl and select encryption, no authentication on the Master
    I was able to ssh from master to LD with prompt
    I check the path it was correct
    When I installed the LD I specified ssh
    I turn on the Debug and got the following results
    Debug from SPS Viewing Host Information
    Trace route to 10.233.12.38:70001 failed. (022167)
    Error writing the handshake string to the newly established connection. (022181)
    Connection handshake failed, invalid handshake string. Ensure that the path to the N1 Service Provisioning System application is correct, the application is configured to accept ssh connections and that you can ssh to the machine without any prompts.
    [debug1: channel 0: obuf empty, debug1: channel 0: close_write, debug1: channel 0: output drain -> closed, debug1: channel 0: almost dead, debug1: channel 0: gc: notify user, debug1: channel 0: gc: user detached, debug1: channel 0: send close, debug1: channel 0: is dead, debug1: channel 0: garbage collecting, debug1: channel_free: channel 0: client-session, nchannels 1, debug3: channel_free: status: The following connections are open:, #0 client-session (t4 r0 i3/0 o3/0 fd -1/-1), , debug3: channel_close_fds: channel 0: r -1 w -1 e 7, debug1: fd 0 clearing O_NONBLOCK, debug1: fd 1 clearing O_NONBLOCK, debug1: fd 2 clearing O_NONBLOCK, debug1: Transferred: stdin 0, stdout 0, stderr 0 bytes in 0.1 seconds, debug1: Bytes per second: stdin 0.0, stdout 0.0, stderr 0.0, debug1: Exit status 1](022138)
    Debug from cr_server.out
    2007-07-12 15:49:57,342 ERROR [Connection [127.0.0.1305]-[10.233.12 .38:70001]:Reader] com.raplix.rolloutexpress.net.transport.Connection$Rea
    dThread (Connection.java:515) - Exception when reading from connection in
    put:Connection [127.0.0.1:98305]-[10.233.0.38:70001]:Closing connecti
    on:
    Unable to make connection handshake using data, "0". (022195)
    Ok what am I mssing

    Hi,
    I am not quite sure where exactly you get an error. Are you trying to prepare an agent that connects to your newly installed LD?
    You did mention the following:
    I was able to ssh from master to LD with promptDo you mean you could login from the MS to the LD without password and got the OS prompt? What you have to make sure is that your ssh authentication works for the n1sps user (or whatever you have chosen during installation) from MS to LD and from LD to RA. That involves copying the public key from the MS n1sps user to the .ssh/authorized_keys files on the LD and RA. And after that, you should check the connections manually:
    1. From the MS: ssh <LD> ls -al
    2. From the MS: ssh <LD> ssh <RA> ls -al
    These both commands should work without any prompts and after that, you shouldn't get any error messages in SPS anymore.
    HTH,
    Michael

  • How to access error description in a string from error code returned by NI-DAQ driver?

    I am tring to write codes to control NI-6703 for PCI using the NI-DAQ driver for C++.
    In the sample codes, it calls "NIDAQErrorHandler" to retrieve the error description and display in the pop-up message box. The method is included with header file "nideqex.h", and implemented w/ the nidex32.lib
    I would like to get the error description in a string rather than getting a message box. Is there a way to do that? Am I missig something here?
    I managed to find the "NIDAQEx.c" source code on the internet, but it seems like the code is outdated, and the library is NOT really compiled from it, since it does not seems to have a call to any method that will return th
    e error description in a string that got used to be displayed in the message box.
    Is there a method that I can call and pass a error code, which will return the error description in a string?

    There is a function documented in dataacq.h called GetNIDAQErrorString that accomplishes what you would like.
    Raecine Meza
    NI
    http://www.ni.com/ask

  • Error or termination in target client

    Hi All,
    We are able to move Transport Request from Development BW Client  to Quality BW Client smoothly.
    But when we move the same TR to Production client, we are getting the following error log. I would be very grateful if somebody could throw light on why it is happening, what could be its implications and what to do to avoid the same
    ===========================================================================================
    ETP162 EXECUTION OF REPORTS AFTER PUT
    1 ETP101 transport order     : "BWDK900063"
    1 ETP102 system              : "BWP"
    1 ETP108 tp path             : "tp"
    1 ETP109 version and release : "372.04.88" "701"
    1 ETP198
    2 EPU126XPost-import methods for change/transport request: "BWDK900063"
    4 EPU111    on the application server: "BWPRD2"
    2 EPU122XPost-import method "FINB_TR_AFTER_IMP_METHOD" started for "UCM001" "T", date and time: "20110113171454"
    2 EPU186 Post-processing taking place in client &2"800"&1"FINB_TR_AFTER_IMP_METHOD"
    A2 EFINB_TR 033 Import carried out using RFC destination "FINBTR@BWPCLNT800"
    A2AEFINB_TR 077 Error or termination in target client: "胇嗣嘎堵泵^颐趁?"800""FINBTR@BWP"
    A2AEFINB_TR 078 Target client: "800" user: "FINBTR@BWP" RFC dest.: "FINBTR@BWPCLNT800"
    A2EEFINB_TR 091 Last transport object: "UGMD001" (component "FINBASIS")"FIN 涓绘瞻鎊彤: 搴早渊绋隋篰翔蘜缅鄞""CL_UG_MD_
    TR_METHOD_IMPORT"
    2EEPU133 Errors occurred during post-handling "FINB_TR_AFTER_IMP_METHOD" for "UCM001" "T"
    3 EPU135 "FINB_TR_AFTER_IMP_METHOD" belongs to package "FINB_TRANSPORT_TOOL"
    2EEPU136 The errors affect the following components:
    2EEPU137    "FIN-FB" ("Financials Basis")
    3 EPU123 Post-import method "FINB_TR_AFTER_IMP_METHOD" completed for "UCM001" "T", date and time: "20110113171509"
    2 EPU127 Post-import methods of change/transport request "BWDK900063" completed
    2 EPU128      Start of subsequent processing ... "20110113171454"
    2 EPU129      End of subsequent processing... "20110113171509"
    2 EPU110XExecute reports for change/transport request: "BWDK900063"
    4 EPU111    on the application server: "BWPRD2"

    HI,
    pretty sure that this should be part of either the BW forum or the Basis forum.
    Ingo

  • Error PLS 00363  expression "string" cannot be used as an assignment target in sentence SELF.ATTRIBUTE1:=PARAMETER;

    Hi everybody. I wrote de following  type
    create or replace TYPE ALMACEN AS OBJECT
      id_almacen number(10),
      descripcion varchar2(40),
      existencias number(6),
      precio number(4),
      member function movimiento (p_num number)  return boolean
    create or replace TYPE BODY ALMACEN AS
      member function movimiento (p_num number)  return boolean AS
      v_inf boolean;
      n number(6);
      BEGIN
        if self.existencias+p_num>=0 then
        self.existencias:=existencias+p_num;
        return TRUE;
        else return FALSE;
        end if;
      END movimiento;
    END;
    I have Oracle 11g release I.
    In previous releases it worked, but now SQLDeveloper marks
    self.existencias:=existencias+p_num;
    Error PLS 00363  expression "string" cannot be used as an assignment target in sentence
    Please, What's wrong?
    Thanking in advance

    Hi,
    Not quite a PL/SQL XML question but anyway...
    Since the member function modifies the object instance, the implicit argument "self" must be declared explicitly as "IN OUT" :
    member function movimiento (self in out nocopy almacen, p_num number)  return boolean

  • Ifrun60_dump_10036 ERROR: Abnormal termination, Error Code: C0000005 ACCESS

    Hi All,
    I'm getting the following error mssage. Please help me to resolve this issue.
    Client Status [ConnId=0, PID=10336]
         >> ERROR: Abnormal termination, Error Code: C0000005 ACCESS_VIOLATION
    ======================= STACK DUMP =======================
    Fault address: 5DF18207 01:00027207
    Module: D:\OraFrm6i\BIN\ifr60.dll
    System Information:
    Operating System: Windows NT Version 5.2 Build 3790 Service Pack 1
    Command line: D:\OraFrm6i\BIN\IFRUN60.EXE D:\contrmgr\dev\forms6\login.fmx
    FORM/BLOCK/FIELD: MASS_BC_UPDATE:CONTRACTS_LIST.LOAD_DATE
    Last Trigger: WHEN-MOUSE-DOWN - (Successfully Completed)
    Msg: <NULL>
    Last Builtin: SET_ITEM_PROPERTY/SET_FIELD - (Successfully Completed)
    Registers:
    EAX:00000062
    EBX:02DCCD38
    ECX:0000022C
    EDX:02B8A44C
    ESI:02DD014C
    EDI:0234D8E0
    CS:EIP:001B:5DF18207
    SS:ESP:0023:0012E854 EBP:0012E86C
    DS:0023 ES:0023 FS:003B GS:0000
    Flags:00000202
    ------------------- Call Stack Trace ---------------------
    Frameptr RetAddr Param#1 Param#2 Param#3 Param#4 Function Name
    0x0012e86c 5deffed5 0234d8e0 00000026 02b801a8 00000008 0x5df18207
    0x0012e8ac 5df2ae98 0234d8e0 02c5fcd8 02dccd38 00000008 0x5deffed5
    0x0012e8f8 5df2acaa 0234d8e0 02c602d4 02b97530 00000001 0x5df2ae98
    0x0012e920 5df0b382 02342780 02dccd38 02b97530 00000001 0x5df2acaa
    0x0012e95c 5df1e978 0234d8e0 00000000 00000001 02dccd38 0x5df0b382
    0x0012e9a0 5df1df4f 02dccd38 02c5ebf8 02c5f878 0234d8e0 0x5df1e978
    0x0012e9d0 5df1d8fd 023832fc 02c5f878 02b8a8ec 0234d8e0 0x5df1df4f
    0x0012e9f8 5df1cb3a 023832fc 02b8a8ec 00000000 0234d8e0 0x5df1d8fd
    0x0012ea48 5defa297 00000000 00000000 0012ea80 00000000 0x5df1cb3a
    0x0012eab0 5def9e87 02dc5db8 02381e88 00a00000 00000001 0x5defa297
    0x0012eae8 5def7db6 00000000 02381e88 00a00000 00000001 0x5def9e87
    0x0012ee20 5def5e42 023af1bc 00000000 029c53b0 0234d8e0 0x5def7db6
    0x0012f190 5df1c50f 0234d8e0 00000001 023af1bc 0234d8e0 0x5def5e42
    0x0012f1e0 5df1ae25 023b0c28 00000001 023af1bc 0234d8e0 0x5df1c50f
    0x0012f278 5df1acd0 029c51fc 029c51fc 0234d8e0 023af1bc 0x5df1ae25
    0x0012f29c 5df1e7be 029c53b0 00000000 029c51fc 0234d8e0 0x5df1acd0
    0x0012f2dc 5df1df4f 029c51fc 023afc28 023afc28 0234d8e0 0x5df1e7be
    0x0012f30c 5df1d8fd 023af1bc 023afc28 023afc28 0234d8e0 0x5df1df4f
    0x0012f334 5df1cb3a 023af1bc 023afc28 023b34ac 0234d8e0 0x5df1d8fd
    0x0012f384 5defa297 00000000 00000000 0012f3bc 00000000 0x5df1cb3a
    0x0012f3ec 5def9cc6 029c482c 023447e4 00000000 00000001 0x5defa297
    0x0012f508 5def2e15 00000000 023449a4 00000020 02351668 0x5def9cc6
    0x0012fd68 5def19e9 00000014 00000000 00000002 012f0b30 0x5def2e15
    0x0012fd8c 5def18be 012e2090 00000000 00000000 00000002 0x5def19e9
    0x0012fdac 67948973 012e2090 00000000 00000000 00000002 0x5def18be
    0x0012fdfc 6794a3b1 012e3624 00403010 00000000 00000002 0x67948973
    ------------------- End of Stack Trace -------------------
    -Regards,
    Prashant

    Hi there,
    At the top of the dump file it states the last successful built in thus
    Last Builtin: SET_ITEM_PROPERTY/SET_FIELD - (Successfully Completed)
    Perhaps add some messages or run the form in debug to see the exact line of code that terminates the form.

  • ERROR: Abnormal termination of connection

    Hi All,
    We recently upgraded to Oracle Forms 6i in character mode, running on HP Unix 11.11. My users frequently crash. The screen changes to just a few characters on the right hand side. There are dump files in the forms directory -- one follows. The error message is Abnormal termination of connection, Error Code: 1
    Any clues or hints would be greatly appreciated.
    Thanks
    Jim Barnhart
    [email protected]
    /u15/acpt/apps/src/frm: cat f60run_dump_960
    [Fri Feb 28 15:49:48 2003 PST]::Client Status [ConnId=0, PID=960]
    >> ERROR: Abnormal termination of connection, Error Code: 1
    FORM/BLOCK/FIELD: APS070:DETAIL_TRANS.PAYMENT_ID
    Last Trigger: WHEN-TIMER-EXPIRED - (Successfully Completed)
    Msg: <NULL>
    Last Builtin: COPY - (Successfully Completed)
    ------------- Call Stack Trace [ConnId = 0, ProcId = 960] -------------
    calling call entry argument values in hex
    location type point (? means dubious value)
    ------------- End of Call Stack Trace -------------
    /u15/acpt/apps/src/frm:

    This is probably not Oracle Applications eBusiness Suite forms as 11i uses $ORACLE_HOME/forms60 and R12 uses $ORACLE_HOME/forms.
    Since there are backslashes, if you are on Windows, use the following note to enable Dr Watson to capture some stack trace information on crashes:
    Default Debugger on Windows NT/2000
    http://metalink.oracle.com/metalink/plsql/ml2_documents.showDocument?p_database_id=NOT&p_id=136627.1

  • ERROR: Abnormal termination

    Hello,
    Which possible the cause of the error below?
    06/25/07 11:27:34 Hora padrão leste da Am. Sul]::Client Status [ConnId=0, PID=-1709033]
    >> ERROR: Abnormal termination, Error Code: C0000005 ACCESS_VIOLATION
    ======================= STACK DUMP =======================
    Fault address: 67238795 01:00077795
    Module: C:\ORACLE\DEV6I\BIN\UIW60.DLL
    System Information:
    Operating System: Windows 98 Version 4.10 Build 2222 A
    Command line: "C:\oracle\dev6i\BIN\ifrun60.EXE" x:\NLGESTAO\GE\GE_CONEXAO_VAR.FMX nl/nl@nlprod
    FORM/BLOCK/FIELD: CR_CON_CLIENTE:PSPES.COD_GU
    Last Trigger: WHEN-VALIDATE-ITEM - (Successfully Completed)
    Msg: <NULL>
    Last Builtin: NAME_IN - (Successfully Completed)
    Registers:
    EAX:00000000
    EBX:0067B09A
    ECX:00000000
    EDX:00010000
    ESI:000090BE
    EDI:0067B050
    CS:EIP:0167:67238795
    SS:ESP:016F:0067AFF8 EBP:0067B048
    DS:016F ES:016F FS:4497 GS:0000
    Flags:00010246
    ------------------- Call Stack Trace ---------------------
    Frameptr RetAddr Param#1 Param#2 Param#3 Param#4 Function Name
    0x0067b048 bff7363b 00001540 00000046 00000000 0067b0da 0x67238795
    0x0067b068 bff94407 43bf90be 000043bf 00000000 bff719b8 0xbff7363b
    0x0067b07c 000090b8 0067fe28 bff7186d 909844a7 00000000 0xbff94407
    0xbff719b8 00058f64 8d000000 5f042464 3d896466 0000000e 0x000090b8
    ------------------- End of Stack Trace -------------------

    ok, do a complete recompilation of all your sources.
    - first the libraries pll or (pll and plx)
    - menus
    - forms
    then restart your application and test test test.
    If you don't have further problems, then that was the solution.
    a recompilation, as I do it :
    for each form :
    Ctrl-Shift-K - Compile all
    Ctrl-T - Generate
    Ctrl-S - Save
    that's it
    Gerd

  • Data loading error - processing terminated

    Hi Friends,
    I am trying to load data in Master-data getting the following error  when excuting the DTP.
    Error :-  Pocessing  Terminated 
    at the processssing Request . when I checked display message it shows  Message No :- RSBK223.
    No other error message is displayed.
    I am able to load data upto PSA means infopackage is running fine.
    Above error is coming when i am executing DTP to load DSO, MASTER DATA, MASTER DATA TEXT.
    Please suggest what to do ?
    Regards,
    RG

    HI,
    Transformation....PSA data all are correct.....
    i am taking data from a flat file.... created a simple master data Material ID and loading it....
    upto PSA i can see the values but when i am executing DTP it is failing with above mentioned error.
    Not getting any clue.....
    Please help...

  • Forms- ERROR: Abnormal termination, Error Code: C0000005 ACCESS_VIOLATION -

    Hi All,
    I know that our system is using very old technologies (ie Java version, AS 10g 10R2, IE 8, etc). But due to the nature of the application, we can't upgrade it yet for a lot of both technical & political reasons ( i know some of you guys out there are in the same boat as we do)...
    Anyways, given the above, we are having this Oracle 10g Forms issue where it just crashes, crash in a sense that the frmweb.exe just died for some reason ( which we are trying to figure out). I know the best way to find the culprit of this issue is to contact Support but given that our current platform, the support guys will just tell us to b49g3r off and use 11g.... So I was hoping to get some feedback from the general public on how to exactly find the culprit code... We tried a lot of things like, enabling trace from forms level (then run xlate to analyze) but given the "random nature" of the error we cannot capture where the error is coming from, we tried enablign a debug for some users but yields to no access....
    Maybe there are some Gurus out there that can help us with our problem. Everytime the frmweb.exe dies, it leaves a trace file something like this:
    [02/13/13 11:32:01 AUS Eastern Daylight Time]::Client Status [ConnId=0, PID=12916]
         >> ERROR: Abnormal termination, Error Code: C0000005 ACCESS_VIOLATION
    ======================= STACK DUMP =======================
    Fault address: 66453C89 01:00002C89
    Module: D:\Apps\oracle\ias\10.1.2\FRPrdHome3\bin\frmw.dll
    System Information:
    Operating System: Windows NT Version 5.2 Build 3790 Service Pack 2
    Command line: frmweb server webfile=HTTP-0,0,1,default,165.142.10.51
    FORM/BLOCK/FIELD: VISATMO:VISAT_ANSWERS.<NULL>
    Last Trigger: WHEN-VALIDATE-RECORD - (Successfully Completed)
    Msg: <NULL>
    Last Builtin: NEXT_RECORD - (Successfully Completed)
    Registers:
    EAX:00000062
    EBX:00000008
    ECX:00000058
    EDX:03E171F8
    ESI:04636640
    EDI:012BD5D8
    CS:EIP:0023:66453C89
    SS:ESP:002B:0012B40C EBP:04636390
    DS:002B ES:002B FS:0053 GS:002B
    Flags:00210202
    ------------------- Call Stack Trace ---------------------
    Frameptr RetAddr Param#1 Param#2 Param#3 Param#4 Function Name
    0x04636390 04621a4c 03de287c 00042904 00000000 00000000 0x66453c89
    0x04622850 00000000 04580038 00000000 0458003c 00000000 0x04621a4c
    0x04580030 004f4d54 00000000 61666564 00746c75 00000000 0x00000000
    ------------------- End of Stack Trace -------------------
    Any forms expert or gurus out there that can help us solve this riddle?
    thanks!

    Whilst error correcting support may have ended for your Forms version, the product is still covered by sustaining support. The support folks won't tell you to 'b49g3r' off, though they might indeed tell you to start preparing for an 11g upgrade. So they might still be able to help you with this issue with the restriction that they won't be able to get a patch anymore, should your issue be caused by a net yet discovered bug or by a bug which is fixed in 11g. To see your entitlements, check the definition of Sustaining Support in the [url http://www.oracle.com/us/support/library/lifetime-support-middleware-069163.pdf]Lifetime Support (PDF) policies brochure for Middleware.
    And have you patched up your environment as per the instructions in Note [url https://support.oracle.com/CSP/main/article?cmd=show&type=NOT&id=415222.1]415222.1, "Steps to Maintain Oracle Application Server 10g Release 2 (10.1.2"?
    Thanks,
    EJ

  • Why Do I Receive Internal Software Error(s): Terminal Index Out of Bounds. Error code -61350,When Compiling my FPGA VI for an cRIO-9118 using NI 9223 ?

    I am receiving the following error (in a pop-up window) when compiling my VI FPGA code in chassis NI 9118 using NI 9223 module.  This error occur while compiling process (generating intermediate files , stage 7 of 7). how do I resolve this error ?
    thank you
    additional information :
    Original error message: 
    Errors : 
    Internal Software Error(s): Terminal Index Out of Bounds.
    Error code: -61350
    Details : 
    A terminal with this index does not exist on this block diagram node.
    NiFpgaHandleCallbackError.vi<APPEND>
    <b>Complete call chain:</b>
    NiFpgaHandleCallbackError.vi
    niFpgaNodeInformation.lvclass:Get Const Variant.vi
    DfirModGen.lvclass:GetConstant.vi
    niLvFpgaMungerBrainwashIONodeCommon_Dfir.vi
    niLvFpgaMungerBrainwashSingleIOGrowableMethod_DFIR.vi
    nirviEIOMethodImplementation_SpecifyDFIR.vi
    nirviEIOMethodImplementation_SpecifyDFIR.vi.ProxyCaller
    Solved!
    Go to Solution.

    Hi tesa,
    This is a bug which was fixed in LabVIEW 2012 SP1. The CAR number created for this bug is 332811 and as you can see in this link, it is already in the bug fixes list.
    Carmen C.

Maybe you are looking for

  • Bluetooth mouse no longer works

    My Microsoft Bluetooth 5000 mouse no longer works after install of the latest 10.6.4 update any reason this could be? (Also forgive the use of a microsoft mouse haha)

  • Is there an easier way to creating complex trim marks?

    I'm creating the surface graphics for a box/package cut-out and it will require multiple trim marks. I could make individual trim marks for the box but their would be over 30 edges. Could there be a script out there that would make it easier? Thank y

  • What is the difference between Lightroom and Elements?

    I'm trying to decide between Photoshop Elements and Lightroom--both for a Mac. They seem to have very similar photo editing features. Could anyone tell me some of the differences so that I can see which would be better for my work? One feature that I

  • Messages can't share screen with iChat/Lion user?!

    My newly upgraded iMac now has Messages and it keeps failing when I try and use the screen sharing option with a friend running Lion / iChat on a 2012 Macbook Pro. Anyone else having this problem?  I hope it gets fixed really soon - I use this featur

  • Change format as per location locale

    HI All, I am working on BO XI R3.1 webi report. I want to change my report format based on OS locale set in control penal Date, Time, Language, and Regional Options. means my BO server based on US locale and different different location user are acce