Jco call rfc throws error after WAS upgrade sp15

Hi all.
When 2 days ago, our WAS engine version is sp14.
And we have one application using jco library to connect to SAP R/3. It works well.
After we upgrade WAS to sp15.
This function throws out the error.
Umrechnungsfaktor konnte nicht bestimmt werden
Is there anybody can help me ? Its very urgent !

Hi
A)Go to adming page http://<localhost>:<port> >>click Web Dynpro >>Content admin >> create, maintain, test Jco and also you can Test the SLD connection too
B)If you are using any JDBC driver,Check your JDBC driver is registered. or else you have register it
1. Start the Visual Admin tool
2. In the tab Cluster, open the node of the server you want to check.
3. Open the node Services under the server you want to check.
4. Click on the entry ClassLoader Viewer under Services. 5. The components are displayed in the right window. Open the node Applications in the right window.
6. Look for the entry sap.com/com.sapportals.connectors.database and click on it.
Under sap.com/com.sapportals.connectors.database, your JDBC driver should be available
Cheers
Jawahar Govindaraj
PS: Reward points

Similar Messages

  • WCF-SAP Adapter throwing errors after SAP Upgrade from ECC 5 to ECC6 Release 640 to 700

    Hello Everyone,
    We were able to communicate(Send and Receive Idoc's) to SAP via WCF-SAP Adapter in BizTalk 2010.
    SAP Servers were upgraded to ECC5 to ECC 6 and we started facing below issue communicating on send and receive both.
    I am aware that there is a hotfix available but that is more on the Receive Side from SAP. Nevertheless I installed the hotfix but issue still persists. Any suggestions will be highly appreciated.
    Microsoft.ServiceModel.Channels.Common.XmlReaderParsingException: The segment name is not valid for the IDOCTYP, Release, or CIMTYP. Segment name: E2EDP01006GRP   IDOCTYP: ORDERS05   
    Release: 700    CIMTYP: . Ensure that your message xml validates against the operation schema.
    Server stack trace:
       at System.Runtime.AsyncResult.End[TAsyncResult](IAsyncResult result)
       at System.ServiceModel.Channels.ServiceChannel.SendAsyncResult.End(SendAsyncResult result)
       at System.ServiceModel.Channels.ServiceChannel.EndCall(String action, Object[] outs, IAsyncResult result)
       at System.ServiceModel.Channels.ServiceChannel.EndRequest(IAsyncResult result)
    Exception rethrown at [0]:
       at System.Runtime.Remoting.Proxies.RealProxy.HandleReturnMessage(IMessage reqMsg, IMessage retMsg)
       at System.Runtime.Remoting.Proxies.RealProxy.PrivateInvoke(MessageData& msgData, Int32 type)
       at System.ServiceModel.Channels.IRequestChannel.EndRequest(IAsyncResult result)
       at Microsoft.BizTalk.Adapter.Wcf.Runtime.
    Thanks,
    Vikingss

    I am aware that there is a hotfix available but that is more on the Receive Side from SAP. Nevertheless I installed the hotfix but issue still persists. Any suggestions will be highly appreciated.
    For this issue, you can contact Microsoft support directly(http://support.microsoft.com).

  • How to via JCO Call RFC upload file to the SAP DMS.

    HI ,ALL :
      NOW i want to upload file via JCO,but i upload in sap gui is success ,but jco call RFC is error ,this is my code:
    excute this  code is not error ,but the data not write to SAP,
            //连接SAP
              Client client = com.hipfung.jco.JCOFactory.getInstance().getClient();
              JCO.Repository repo = new JCO.Repository("ZOA01", client);
              //调用RFC函数
              IFunctionTemplate ft = repo.getFunctionTemplate("CVAPI_DOC_CHECKIN");
              JCO.Function f = ft.getFunction();
              IFunctionTemplate ft2 = repo.getFunctionTemplate("BAPI_TRANSACTION_COMMIT");
              JCO.Function commitFunction = ft2.getFunction();
              //设置传入参数值(注意类型)
              //1.传入参数为Field
                f.getImportParameterList().setValue("TXB",          "PF_DOKAR");  //
              f.getImportParameterList().setValue("0000010101010101020000000","PF_DOKNR");  //文档类型
              f.getImportParameterList().setValue("01","PF_DOKVR");                          //文档版本
              f.getImportParameterList().setValue("000","PF_DOKTL");     
              f.getImportParameterList().setValue("SAPFTPA","PF_FTP_DEST");     
              f.getImportParameterList().setValue("SAPHTTPA","PF_HTTP_DEST");     
              // Get content as table
              f.getImportParameterList().setValue("TBL", "PF_CONTENT_PROVIDE");
            //read file and trans to byte
                      byte b[]=null;
                        File inf = new File("d:
    test.jpg");
                        InputStream in;
                        try {
                             in = new FileInputStream(inf);
                              b =new byte[(int)inf.length()];     //创建合适文件大小的数组
                             in.read(b);                          //读取文件中的内容到b[]数组
                             in.close();
                        } catch (FileNotFoundException e1) {
                             // TODO Auto-generated catch block
                             e1.printStackTrace();
              //set byte to internal table     
             JCO.Table poItem = f.getTableParameterList().getTable("PT_CONTENT");        
             poItem.appendRow(); //增加空行
             poItem.setValue(b, "ORBLK");
             poItem.nextRow();
             //运行RFC函数
              try
                   client.execute(f);
                   client.execute(commitFunction);
              catch(JCO.AbapException ae)
                   System.err.println("JCO.AbapException: < DMS > " + ae);
                   ae.printStackTrace();
              catch(JCO.Exception e)
                   System.err.println("JCO.Exception: < DMS > " + e);
                   e.printStackTrace();
             //返回参数
              JCO.Structure struct = f.getExportParameterList().getStructure("PSX_MESSAGE");
              String te = struct.getString("MSG_TYPE");
              System.out.println("RFC Error Type is :"+te);
              String pr = struct.getString("MSG_TXT");
              System.out.println("RFC get Data is :"+pr);
              com.hipfung.jco.JCOFactory.getInstance().release(client);
    i  can get file via CVAPI_DOC_CHECKoutView
    Edited by: pan qiaoming on Mar 15, 2011 3:05 PM

    HI ,ALL :
      NOW i want to upload file via JCO,but i upload in sap gui is success ,but jco call RFC is error ,this is my code:
    excute this  code is not error ,but the data not write to SAP,
            //连接SAP
              Client client = com.hipfung.jco.JCOFactory.getInstance().getClient();
              JCO.Repository repo = new JCO.Repository("ZOA01", client);
              //调用RFC函数
              IFunctionTemplate ft = repo.getFunctionTemplate("CVAPI_DOC_CHECKIN");
              JCO.Function f = ft.getFunction();
              IFunctionTemplate ft2 = repo.getFunctionTemplate("BAPI_TRANSACTION_COMMIT");
              JCO.Function commitFunction = ft2.getFunction();
              //设置传入参数值(注意类型)
              //1.传入参数为Field
                f.getImportParameterList().setValue("TXB",          "PF_DOKAR");  //
              f.getImportParameterList().setValue("0000010101010101020000000","PF_DOKNR");  //文档类型
              f.getImportParameterList().setValue("01","PF_DOKVR");                          //文档版本
              f.getImportParameterList().setValue("000","PF_DOKTL");     
              f.getImportParameterList().setValue("SAPFTPA","PF_FTP_DEST");     
              f.getImportParameterList().setValue("SAPHTTPA","PF_HTTP_DEST");     
              // Get content as table
              f.getImportParameterList().setValue("TBL", "PF_CONTENT_PROVIDE");
            //read file and trans to byte
                      byte b[]=null;
                        File inf = new File("d:
    test.jpg");
                        InputStream in;
                        try {
                             in = new FileInputStream(inf);
                              b =new byte[(int)inf.length()];     //创建合适文件大小的数组
                             in.read(b);                          //读取文件中的内容到b[]数组
                             in.close();
                        } catch (FileNotFoundException e1) {
                             // TODO Auto-generated catch block
                             e1.printStackTrace();
              //set byte to internal table     
             JCO.Table poItem = f.getTableParameterList().getTable("PT_CONTENT");        
             poItem.appendRow(); //增加空行
             poItem.setValue(b, "ORBLK");
             poItem.nextRow();
             //运行RFC函数
              try
                   client.execute(f);
                   client.execute(commitFunction);
              catch(JCO.AbapException ae)
                   System.err.println("JCO.AbapException: < DMS > " + ae);
                   ae.printStackTrace();
              catch(JCO.Exception e)
                   System.err.println("JCO.Exception: < DMS > " + e);
                   e.printStackTrace();
             //返回参数
              JCO.Structure struct = f.getExportParameterList().getStructure("PSX_MESSAGE");
              String te = struct.getString("MSG_TYPE");
              System.out.println("RFC Error Type is :"+te);
              String pr = struct.getString("MSG_TXT");
              System.out.println("RFC get Data is :"+pr);
              com.hipfung.jco.JCOFactory.getInstance().release(client);
    i  can get file via CVAPI_DOC_CHECKoutView
    Edited by: pan qiaoming on Mar 15, 2011 3:05 PM

  • Finding: Incorrect SQL throws a random error (after 2005 upgrade)

    Hi I thought that I would share an experience that we found after upgrading a system to 2005:
    Due to the upgrade of SBO, one of our addons didn't work properly after upgrading it to 2005.  Basically the code would break in random places (while stepping through it in the Development Environment).
    After some time we identified the error was being thrown because a sql query we were using was incorrect due to the changing of the DB structure in the upgrade.  The weird thing was that it didn't throw an error at rs.DoQuery(query) but actually would step into the recordset and then the addon would suddenly stop working - hence the reason it took a while to identify it was the sql causing the problem.
    Anyway updating the sql fixed the problem, but if anyone else is finding strange behavior whilst trying to identify why an addon might stop working after an upgrade, you should check any sql being used is still correct....
    Daniel

    The first versions of SBO2005A SDK (PL00 to PL04) was the say the least VERY buggy... PL05,06 and now 07 seem to get things under control... Any rampup version of 2005 should at least get up PL05 ASAP... I didnt have many problem with the SQL, but "Server produced an error was a very common error".. my problem was primarily in matrixes (add/remove of lines), itemevent (pval internal COM error) and the dangerouse UserTable error due to currupted object in it....

  • RFC invoke = error after 250 lines recovered...

    Hello everybody,
    I use SAP .Net connector 3 to create an application that makes a remote function call (RFC). This function takes a table in parameter and I expect another table in return which should as many or less lines as the one in parameter.
    The problem is that I didn't manage to retrieve more than 250 values. I tried to split by package of 250 lines but the problem is still there. I just manage to retrieve 250 values and then got an error.
    The only info I got from Visual Studio is "RfcAbapException". no message, no detail...
    Please help me. I don't know how to do...

    Hello everybody,
    I talk to the SAP team in charge of all stuff related to SAP in my company. You will find the ABAP message further down. After many tries, they can't figure out what is the problem. For them, RFC function works well even with 300 or 400 lines.
    So maybe the problem comes from my code??? I paste here my code. Please help !!!
    /// <summary>
            /// Call SAP and check the credit status of each order
            /// </summary>
            /// <param name="p_lstDNToCheck">The sub list of order to check</param>
            static void makeSAPCreditCheck(List<DN> p_lstDNToCheck)
                //Connection to SAP = destination
                RfcDestination l_destination = RfcDestinationManager.GetDestination(Global.get_sapSystemName());
                //Retrieve schema of the function we want to call
                RfcFunctionMetadata l_funcMD = l_destination.Repository.GetFunctionMetadata("MY_FUNCTION");
                try
                    //Create the function
                    IRfcFunction l_func = l_funcMD.CreateFunction();
                    //Retrieve Parameters
                    l_func.SetValue("IF_PROCTYPE", "F");
                    IRfcTable l_param = l_func.GetTable("IT_VBELN");
                    l_param.Append(p_lstDNToCheck.Count());
                    for (int li_i = 0; li_i < p_lstDNToCheck.Count(); li_i++)
                        DN l_dn = p_lstDNToCheck[li_i];
                        l_param[li_i].SetValue("SIGN", "I");
                        l_param[li_i].SetValue("OPTION", "EQ");
                        l_param[li_i].SetValue("LOW", l_dn.ORDER_NUMBER.ToString().PadLeft(10, '0'));
                    //Return values
                    IRfcTable l_res = l_func.GetTable("CT_POSTAB");
                    //Call remote function
                    l_func.Invoke(l_destination);
                catch (RfcAbapException e)
                    Console.WriteLine("Error RfcAbapException : " + e.Message);
                    Console.WriteLine("Press key");
                    Console.ReadKey();
    and here the ABAP message given when we try to retrieve more than 250 values ( for example 1call with 300 values => error, or 2 call with 150 values => 1st call ok, second one throw an error)
    Runtime Error          SAPSQL_IN_ITAB_ILLEGAL_OPTION
    Error analysis
         The current ABAP/4 program attempted to execute an ABAP/4 Open SQL
         statement in which the WHERE condition contains an IN itab operator.
         The IN itab operator is used with internal tables which
         have the following structure:
            SIGN(1)   OPTION(2)   LOW LIKE db_field   HIGH LIKE db_field
         The OPTION column should contain only one of the following values:
             "EQ LE GE CP BT NE LT GT NP NB"
         The value "I " is not allowed here.
    How to correct the error
         Use only one of the permitted values in the OPTION column.
         You may able to find an interim solution to the problem
         in the SAP note system. If you have access to the note system yourself,
         use the following search criteria:
         "SAPSQL_IN_ITAB_ILLEGAL_OPTION" C
         "SAPLV50Q" or "LV50QU07"
         "WS_LM_DATA_SELECTION_FREE"
    Information on where terminated
        The termination occurred in the ABAP program "SAPLV50Q" in
         "WS_LM_DATA_SELECTION_FREE".
        The main program was "SAPMSSY1 ".
        The termination occurred in line 628 of the source code of the (Include)
         program "LV50QU07"
        of the source code of program "LV50QU07" (when calling the editor 6280).
    >>>>>         SELECT * INTO CORRESPONDING FIELDS OF TABLE lt_likpuk
      629                  FROM likp AS l INNER JOIN vbuk AS v
      630                  ON l~vbeln = v~vbeln
      631                  WHERE ( l~vbtyp EQ 'J' OR l~vbtyp EQ 'T' )
      632                  AND   l~vbeln IN lt_vbeln
      633                  AND   l~vstel IN lt_vstel
      634                  AND   l~ernam IN lt_ernam
      635                  AND   l~erdat IN it_erdat
      636                  AND   l~kunnr IN lt_kunwe
      637                  AND   l~kunag IN lt_kunag                  "50A
      638                  AND   l~vkorg IN lt_vkorg
      639                  AND   l~lfart IN lt_lfart
      640                  AND   l~wadat IN lt_wadat
      641                  AND   l~wadat_ist IN it_wadat_ist
      642                  AND   l~lddat IN lt_lddat
      643                  AND   l~tddat IN lt_tddat
      644                  AND   l~lfdat IN lt_lfdat
      645                  AND   l~kodat IN lt_kodat
      646                  AND   l~route IN lt_route
      647                  AND   l~lprio IN it_lprio

  • Report giving error after 10g upgrade

    We have a custom report which is erroring out after 10g upgrade. Following is the log file-->
    **Starts**24-APR-2009 04:11:21
    ORACLE error 3113 in FDPSTP
    Cause: FDPSTP failed due to ORA-03113: end-of-file on communication channel
    The SQL statement being executed at the time of the error was: SELECT R.Conc_Login_Id, R.Request_Id, R.Phase_Code, R.Status_Code, P
    APP-FND-01564: ORACLE error 1000 in AFPGRG
    Cause: AFPGRG failed due to ORA-01000: maximum open cursors exceeded.
    The SQL statement being executed at the time of the error was: &SQLSTMT and was executed from the file &ERRFILE.
    Start of log messages from FND_FILE
    End of log messages from FND_FILE
    ORACLE error 3114 in AFPRSR-Resubmit_Time
    Cause: AFPRSR-Resubmit_Time failed due to ORA-03114: not connected to ORACLE
    The SQL statement being executed at the time of the error was: SELECT R.Conc_Login_Id, R.Request_Id, R.Phase_Code, R
    SELECT R.Conc_Login_Id, R.Request_Id, R.Phase_Code, R.Status_Code, P.A
    Routine AFPPRD has encountered a fatal error. ORA-03114: not connected to ORACLE
    Contact your system administrator or support representative.
    Shutting down Concurrent Manager : 24-APR-2009 04:11:51
    ORA-01041: internal error. hostdef extension doesn't exist
    ORACLE error 3114 in AFPRSR-Resubmit_Time
    Cause: AFPRSR-Resubmit_Time failed due to ORA-03114: not connected to ORACLE
    The SQL statement being executed at the time of the error was: SELECT R.Conc_Login_Id, R.Request_Id, R.Phase_Code, R
    List of errors encountered:
    _ 1 _
    Routine AFPCMT encountered an ORACLE error. ORA-01041: internal error.
    hostdef extension doesn't exist
    Review your error messages for the cause of the error. (=<POINTER>)
    _ 2 _
    Routine AFPPRD has encountered a fatal error. ORA-03114: not connected
    to ORACLE
    Contact your system administrator or support representative.
    _ 3 _
    Routine AFPPRD has encountered a fatal error. ORA-03114: not connected
    to ORACLE
    Contact your system administrator or support representative.
    However the alert log has following-->
    Errors in file /u07/fatstdb/10g/admin/FATST_fatstdb/udump/fatst_ora_10468.trc:
    ORA-07445: exception encountered: core dump [qercoStart()+156] [SIGSEGV] [Address not mapped to object] [0x00000087D] [] []
    I already increased the cursors from 700 to 900
    How to fix it?

    Hi,
    However the alert log has following-->
    Errors in file /u07/fatstdb/10g/admin/FATST_fatstdb/udump/fatst_ora_10468.trc:
    ORA-07445: exception encountered: core dump [qercoStart()+156] [SIGSEGV] [Address not mapped to object] [0x00000087D] [] []Refer to the lookup to get more details about this error.
    Note: 153788.1 - Troubleshoot an ORA-600 or ORA-7445 Error Using the Error Lookup Tool
    https://metalink2.oracle.com/metalink/plsql/ml2_documents.showDocument?p_database_id=NOT&p_id=153788.1
    I already increased the cursors from 700 to 900
    How to fix it?Is it possible to increase OPEN_CURSORS to a higher value? Enable trace on this concurrent program, and see if this collects more details about the error.
    Regards,
    Hussein

  • [solved] Opera & Sublime Text have graphic errors after system upgrade

    Hi all,
    I hope this was not already answered, but I couldn't find anything in the wiki or the forums.
    Since a pacman -Syu yesterday, Opera (from official repo) and Sublime Text (from the AUR) have some weird graphical glitches:
    Opera: http://i.imgur.com/7XfPK.png
    Sublime Text: http://i.imgur.com/q5guw.png
    (The menus in Sublime Text do work without graphical glitches, I am pretty sure they are drawn with GTK. The rest uses some custom drawing methods AFAIK.)
    Other programs, including 3D-accelerated games, work fine like before.
    I first suspected the catalyst driver, so I went to the wiki and read that it is now in the official repos. So I installed that version. Same effects. So back to the version from Vi0L0s catalyst repo. Did still not work. Then I tried the catalyst-generator package with the same effects.
    Then I looked in pacman.log to see what was upgraded. I then downgraded the kernel and all packages that seemed to have something to do with graphics. Still the same error. Downgraded more packages and finally managed to break X11 :-/.
    I then upgraded everything again so at least most things work.
    I now have this kernel version: 3.6.2-1-ARCH
    I am using systemd.
    My graphics card has a Radeon HD 7750 Chip.
    My pacman.log: http://pastebin.com/RK8cngNq (The upgrade that caused this was at 2012-10-16 14:43)
    Has someone a idea what I can do?
    Thanks,
    Kevin
    EDIT:
    I now run pacman -Syu on my notebook. Both programs work like a charm. The notebook has an Intel GPU. So it must be an issue with the raden driver. I'll try downrading that again...
    Yet another EDIT:
    Didn't work. Here is what I have done to downgrade:
    1. Removed installed catalyst version (installed libgl and lib32-libgl temporarilly so pacman would not remove all 3D-related stuff).
    2. Downloaded all catalyst related packages from the Arch Rollback Machine from 2012-10-08 and installed them using pacman -U
    3. Downgraded X and other related(?) packages:
    # cd /var/cache/pacman/pkg
    # pacman -Uf xorg-server-common-1.12.4-1-x86_64.pkg.tar.xz xorg-server-1.12.4-1-x86_64.pkg.tar.xz xf86-input-evdev-2.7.3-1-x86_64.pkg.tar.xz freeglut-2.8.0-1-x86_64.pkg.tar.xz khrplatform-devel-8.0.4-3-x86_64.pkg.tar.xz mesa-8.0.4-3-x86_64.pkg.tar.xz lib32-mesa-8.0.4-4-x86_64.pkg.tar.xz libglapi-8.0.4-3-x86_64.pkg.tar.xz libgbm-8.0.4-3-x86_64.pkg.tar.xz libegl-8.0.4-3-x86_64.pkg.tar.xz xf86-video-vesa-2.3.2-1-x86_64.pkg.tar.xz
    Had a running X after this, but Opera and Sublime Text are still broken.
    Now upgraded again...
    Last edited by kch42 (2012-10-19 14:39:13)

    To find out, which libraries are involved, I executed opera and subl using strace and then went to a python shell to filter the output for libraries (finding stuff that looks like lib*.so, only catching the middle part) and printing the libraries that both strace logs had in common.
    These libraries are loaded by both programs:
    X11
    Xau
    Xcomposite
    Xcursor
    Xdamage
    Xdmcp
    Xext
    Xfixes
    Xi
    Xinerama
    Xrandr
    Xrender
    atk-1.0
    bz2
    c
    cairo
    canberra
    canberra-gtk
    canberra-gtk-module
    dl
    equinox
    expat
    ffi
    fontconfig
    freetype
    gcc_s
    gdk-x11-2.0
    gdk_pixbuf-2.0
    gio-2.0
    glib-2.0
    gmodule-2.0
    gobject-2.0
    gthread-2.0
    gtk-x11-2.0
    ltdl
    m
    ncursesw
    nss_files
    ogg
    pango-1.0
    pangocairo-1.0
    pangoft2-1.0
    pcre
    pixman-1
    pixmap
    png15
    pthread
    readline
    resolv
    rt
    stdc++
    tdb
    vorbis
    vorbisfile
    xcb
    xcb-render
    xcb-shm
    z
    Some of these libraries have nothing to do with graphics, after filtering these out:
    X11
    Xau
    Xcomposite
    Xcursor
    Xdamage
    Xdmcp
    Xext
    Xfixes
    Xi
    Xinerama
    Xrandr
    Xrender
    atk-1.0
    cairo
    canberra
    canberra-gtk
    canberra-gtk-module
    equinox
    fontconfig
    freetype
    gdk-x11-2.0
    gdk_pixbuf-2.0
    gtk-x11-2.0
    pango-1.0
    pangocairo-1.0
    pangoft2-1.0
    pixman-1
    pixmap
    png15
    xcb
    xcb-render
    xcb-shm
    Both use a lot of X* libraries. But I already downgraded X and the graphics driver and that didn't work...
    I still have no idea, but perhaps someone has?

  • SIM card registration error after SW upgrade

    Hi
    After I upgraded my Nokia 6110 Navigator to SW 4.22 I get insert SIM or SIM card registration error. It happends approx. once a week. Before I upgraded my mobile it never happend. Why?
    BR / haav

    This is often a problem with the SIM itself. That it started showing just when you did the firmware upgrade could be coincidence.
    Was this post helpful? If so, please click on the white "Kudos!" star below. Thank you!

  • External command Cpic error - after V5R4M5 upgrade

    Hi,
    We are getting an error when we try to run external commands - Exception raised: PROGRAM_START_ERROR - The problem started after we upgraded the OS to V5R4M5.  We are running R/3 45B.  kernel patch 994.
    SAPXPG JOBLOG:  I see the following error MCH1210
    QCPFMSG
    MESSAGE-                                
    Receiver value too small to hold result.
    I could not find a new version of sapxpg for 4.5b_ext.  I
    Regards,
    Brian

    Never mind I found note 976837 that resolved the problem
    Regards,
    Brian

  • BPEL......  On Alram Branch not throwing error after the set time

    Hi,
    In SOA 10.1.3.4 BPEL process , i have a asynchronous process which Invokes a Partnerlink and waits in the Recieve Activity. The OnAlarm branch set here waits for 2 hrs, after which the scope throws that Global fault.
    I have observed that for some instances, the OnAlarm Branch does not throw error even after about 24 hrs ( though the OnAlarm is set to 2 hrs )
    Is this a prodcut defect or something to do with thread level issues ?
    Thanks & Regards,
    Md Yaqoob.
    Edited by: Sam9999 on Oct 6, 2010 5:33 PM

    Hi,
    We did not talk to Oracle last week, but hope to do so this week via web conference. According to Oracle support, the version and patch level we are on should not have the problem we are encountering. Both the Oracle constant and support have been unable to replicate the error when they attempt to recreate our setup on their own servers.
    We can produce this issue 100% of the time, on a server with no load at all. it is a brand new environment for development use to which we have deployed the latest versions of our flows. I have deployed a simple flow containing just a Wait 15 minutes, and any instances in flight when I restart BPEL do not wake-up on time. Very occassionally, instances that previously failed to wake after a restart do wake after subsequent restarts, but that is not 100% of the time.
    Hope to conference with Oracle on Wednesday.
    Anit

  • FR Studio started throwing error after environment restart

    Hi All,
    We have distributed Hyperion EPM installation (Version 11.1.2.0) in windows and repository resides in MS sql server.
    It is quite stable environment and everything was working fine till sometime back .
    However, recently these windows servers got patched (some OS level patching) and post that we restarted our services , FR studio started throwing error while connecting:
    "You are not authorized to use this functionality "
    We checked the services and verified if there is any issue on port or firewall level but there was none.
    Also while logging to workspace users get this message 'The startup document specified doesn't exist in the repository'.
    Just wondering what could cause this issue and how to troubleshoot this as nothing has changed in environment aprat from windows patching.
    Please suggest.
    Thanks

    We could get the issue fixed by adding some additional entries in host files of foundation server and FR server.
    In the server where we have FR server installed , we found log file  'registry' at E:\Oracle\Middleware\user_projects\domains\EPMSystem\servers\  and got the hint that server was trying to communicate with wrong host name (not sure why) which actually don't exist in our environment.
    Once we mapped that incorrect host names in host files to the correct host name and ip in host files of servers, issue got resolved.
    Now we would be finding why servers started to refer other server with wrong host name and to fix that we had to explicitly add entries to host files which was not the case earlier.
    Thanks again.

  • I'm getting errors after I upgraded to Mavericks

    After I upgraded my Mac Pro to Mavericks, I've been having problems exporting files out of Final Cut Pro to any use.
    The error message displays the following:
    The operation couldn’t be completed. (com.apple.Compressor.CompressorKit.ErrorDomain error -1.)
    Has anyone seen similar error and found a way to fix it?

    10.0.1 //
    Model Name:          Mac Pro
      Model Identifier:          MacPro5,1
      Processor Name:          Quad-Core Intel Xeon
      Processor Speed:          2.4 GHz
      Number of Processors:          2
      Total Number of Cores:          8
      L2 Cache (per Core):          256 KB
      L3 Cache (per Processor):          12 MB
      Memory:          20 GB

  • Error after V6R1M0 upgrade

    Hi
    After OS upgrade V5R3 -> V6R1 we encounter problems with starting SAP. All the WORK process's dies.
    ECC 7.0
    Kernel patch 186
    This is the log from one of the work process.
    Loading DB library '/usr/sap/BND/SYS/exe/run/dbdb4slib.o' ...                                                
    ERROR => DlLoadLib: dlopen()= Could not load module /usr/sap/BND/SYS/exe/run/dbdb4slib.o.                
    itional errors occurred but are not reported. -> DLENOACCESS (2,No such file or directory) ¬dlux.c       314|
    ERROR => Couldn't load library '/usr/sap/BND/SYS/exe/run/dbdb4slib.o'                                    
    I don't think PTF MF46062 is the issue here!
    Can anyone help?
    Best regards
    Mads Hammer

    Hi Rene
    Yes, I run APYR3FIX as <SID>OFR. Here is a screen dump of the user.
    User profile . . . . . . . . . . . . . . . :   BNDOFR 
    Special authority  . . . . . . . . . . . . :   *SAVSYS
                                                   *SECADM
    Group profile  . . . . . . . . . . . . . . :   BNDOWNER
    Owner  . . . . . . . . . . . . . . . . . . :   *GRPPRF
    Group authority  . . . . . . . . . . . . . :   *NONE  
    Group authority type . . . . . . . . . . . :   *PRIVATE
    Supplemental groups  . . . . . . . . . . . :   BNDGROUP
                                                   R3OWNER
                                                   R3GROUP
    R3OWNER is a supplemental group.
    Is there something wrong with user profile?
    Best regards
    Mads Hammer

  • Apache "Forbidden" Error after Leopard Upgrade

    Hopefully this is really simple.
    I have just upgraded from Tiger to Leopard and as part of that process Apache 2.2 was installed where before I had Apache 1.3. Interesting the upgrade turned Web Sharing OFF - nice - however that was easily overcome in System Preferences.
    However, I know next to nothing about Apache so cannot easily solve the next problem. Now whenever I try to access http://localhost/~Username Apache returns "Forbidden - You do not have permission".
    It would be much appreciated if anyone could let me know where I need to put the 'tick-in-the-box' or amend some configuration setting. Thanks in advance.

    I finally got my Leopard Apache configuration working with PHP5 and with MySQL. I also solved (finally) the forbidden errors I was seeing. Here are some of the changes I made.
    1. My read permissions on my website files and directories were configured correctly so I suspected that something inside my httpd.conf file was amiss. Inside /etc/apache2/httpd.conf, I commented out two lines in the <Directory> block. This fixed the "forbidden" messages I was seeing for my virtual hosts. See below:
    <Directory />
    Options FollowSymLinks
    AllowOverride None
    # Order deny,allow
    # Deny from all
    </Directory>
    2. I used the system.log in Console to detect and fix httpd.conf syntax errors. If you have syntax errors in any of your httpd.conf files, apache2 under Leopard will not start.
    3. I removed the comment character from the start of the line below inside httpd.conf:
    LoadModule php5_module libexec/apache2/libphp5.so
    I am now back to where I was with Tiger.

  • RE: Issues with iPhone 4 sync/charge/restore ERRORS after iOS6 upgrade

    I saw a lot of people through the forum that experienced the exact issue I have and I spent 4 hours trying to resolve it myself with frantic research.
    What helped me get my iPhone back:
    This morning I received the message to upgrade my iphone 4 to the ios6 upgrade through my home internet. I accepted.
    After the download went through my phone directed me to connect to itunes. I complied.
    After connecting to itunes it informed me that my phone was in recovery mode and that I must restore my iphone.
    Yet again, I complied.
    After hitting restore and it going through the restore process, it instructed me of an error and could not complete restore. My computer refused to recognise my phone at all and said that I needed to enter my passcode.
    My phone then continued to tell me to connect to itunes before it then went a step further and began restarting and just had the apple logo and/or loading circle for about 4 hours. No matter how long I held the home and power button on it just kept doing the same thing and to be honest, I was about to throw my phone out the window.
    I researched different tips on here and other forums for hours and pressing all the reset buttons.
    I downloaded itunes on a different computer and followed this tip
    AjaxOfSalamis
    Re: iOS 6 update attempt bricked iPhone 4s 
    19-Sep-2012 12:28 (in response to geoff566)
    This is the proper procedure as per HT1808, Unable to update or restore
    Plug the sync cable into your computer, but leave it disconnected from your iPhone
    Hole the sleep/wake and home buttons down until the phone powers off completely
    Set the phone down on a flat surface and hold the home button down
    While holding the home button down, connect the sync cable to your iPhone
    Continue holding the home button until you see the Sync to iTunes screen (iTunes logo & USB connector)
    If you have iTunes running, you should see the alert box stating the iTunes has detected an iPhone in recovery mode
    After many tries my phone then told me to connect to power as the battery was dead. After resetting it also had the same apple logo and loading screen.
    Finally, itunes recognised my phone and went back into recovery mode. I restored  my iphone with my fingers crossed. It downloaded the new iphone software update as well and before the restore was finished my phone reset once again and displayed an error message. I was infuriated and thought nothing would solve it.
    Once again, I repeated the procedure until recovery mode was deteced and restored my iphone again.
    This time it proceded a little further than before and successfully restored completely to factory settings and my phone finally switched on like it was a brand new phone.
    I then set up my phone and connected it to my laptop and backed it up from there.
    It was A LOT of fiddling around and just luck of repeating the same process over and over but this is what solved the issue that seems to be very common at the moment.
    Any questions you're welcome to ask. I reassure you, I tried EVERY hold down button reset procedure and every time it failed and my computer absolutely was not registering my phone.
    Hope this helps anyone.

    Ajax, i tried the procedure you have given here and it worked first go. Thanks you legend.

Maybe you are looking for

  • How to close a form within script

    Hello, I'm using Adobe LiveCycle Designer v 8.2 to develop an Order form. I'm fairly new to developing in LiveCycle, and would like to ask the following question that I couldn't find an answer to elsewhere. I'd like to know if it is possible to close

  • PREPARE_XPRA phase error during ST-PI upgrade

    Hi , While upgrading the ST-PI from 2005_1_620 to 2008_1_620 patch 5 we are getting the error in the phase PREPARE_XPRA. The error text as below. Error in phase: PREPARE_XPRA Reason for error: TP_BUFFER_INCONSISTENCY Return code: 0008 Error message:

  • J4550

    Black will not print.  Cartridge is using up ink and used 1/4 now.  The color prints.  Printed OK on May 24th.  Scanned letter, printed in "blue".  Will not print any e-mails (they are in black).  Reinstalled printer, reinstalled black cartridge, che

  • Server 2012 SMB3 for redirecting files or VHD

    Hello, I'm new to Server 2012 and my question is, should I use Server 2012 SMB3 shares for redirecting files and folders or should I create a virtual HD, put the VHD in the shared folder and do file and folder redirection to the VHD? Is there a prefe

  • Access promoted value in an outbound map

    Hi all, Is there any way to access a promoted value in my outbound map. I tried using xpath but that works only if we I give the property schema in source. I wanted to know if there is any functoid that can accomplish this work of accessing a promote