Multiple installs of causing Data provider internal error (-3000) on Open

Hi,
We have an application written against Oracle ODP 10.1.0.401 that's been deployed out on a web farm working great for some time now, however recently another area has asked to get ODP for 11g installed on that server. The install originally broke our application, but we were able to resolve most of the issues after following all of the appropriate "PATH" reordering and registering appropriate dlls. In fact, we finally got a server completely back up and running both versions with no issues.
Unfortunately, it's a load-balanced server, and while one of the two servers is working correctly, the second seems to be having issues with specific parts of the install. We're trying to fix it on the second server now, and will be doing the same install shortly in our production environments.
I was able to break the error out and create a very simple test app to eliminate as many variables as possible. It appears to be an issue with the driver when we enlist into a Distributed Transaction.
The following code works fine:
var connection = new Oracle.DataAccess.Client.OracleConnection(connectionStringBase + "Enlist=False");
connection.Open();
While this code does not:
var connection = new Oracle.DataAccess.Client.OracleConnection(connectionStringBase);
connection.Open();
In both examples, connectionStringBase is Data Source=...;Validate Connection=true;User ID=...;Password=...; (where ... represents masked values). I've also tried "Enlist=True" in case the default was a problem, but it also fails.
The exceptions we're getting on the server happen in the .Open() call. The stack trace is:
[OracleException: Data provider internal error(-3000) [System.String]]
Oracle.DataAccess.Client.OracleException.HandleErrorHelper(Int32 errCode, OracleConnection conn, IntPtr opsErrCtx, OpoSqlValCtx* pOpoSqlValCtx, Object src, String procedure) +779
Oracle.DataAccess.Client.OracleException.HandleError(Int32 errCode, OracleConnection conn, IntPtr opsErrCtx, Object src) +41
Oracle.DataAccess.Client.OracleConnection.Open() +3338
Default.Page_Load(Object sender, EventArgs e) in C:\Code\Oracle11gTest\Oracle11gTest\Default.aspx.cs:13
System.Web.Util.CalliHelper.EventArgFunctionCaller(IntPtr fp, Object o, Object t, EventArgs e) +14
System.Web.Util.CalliEventHandlerDelegateProxy.Callback(Object sender, EventArgs e) +43
System.Web.UI.Control.OnLoad(EventArgs e) +91
System.Web.UI.Control.LoadRecursive() +74
System.Web.UI.Page.ProcessRequestMain(Boolean includeStagesBeforeAsyncPoint, Boolean includeStagesAfterAsyncPoint) +2604
I've read a few articles on this particular error and found that it's generally considered an ambiguous error with many potential causes, most of which I've been trying to test and rule out. While I don't have direct access to the server, I've been working with someone who does and they have compared registry settings and registered dlls, and have told me that the 2 servers match, and we've already re-installed the 10.1 drivers hoping it would help, but at this point we're stumped. I've read that it's possible that the COM+ install could have become corrupt, but what confuses me is that just prior to the 11g install, everything works great, and after doing no more than an ODP 11g install, it breaks. Do you have any advice or suggestions we could try?
Thanks in advance for any insight you might have!
~Jeff

If I read your post correctly that this is a "everything is equal as far as we know, but box A works and box B doesn't" type situation, my first suggestion would be to get Process Explorer from http://sysinternals.com, and compare the loaded modules between the working and non-working servers. You'll probably find that you're not using the software you think you're using, or have mismatched dlls across homes, or something to that effect. Once you figure out what the difference between the two is, correcting it will probably be the easy part.
Hope it helps,
Greg

Similar Messages

  • Data provider internal error(-3000)  during DataAdapter.Fill

    I get this error sporadically.
    From other messages on this forum, it seems others are having similar problems. It appears the Oracle staff
    is still struggling to identify and fix (or did I miss a post?)
    I hope the next release can include some more informative diagnostic error messages. (no judgment implied, just a suggestion).
    But I need this to work, so I'm posting my
    info as well in hopes it will help.
    Sorry for the length, but I think all the detail may be needed to diagnose.
    I have been using ODP.Net for weeks without trouble
    until recently. I just added a CLOB field to my table yesterday, and
    the problem started. I don't know whether that's cause or coincidence.
    Possible workarounds I will try:
    1) Explicit select of columns rather than select *
    2) Retry once on failure after short delay
    Below, I'm including the exception message from the ASP.Net page.
    It occurs at the same spot in my code, but often
    it works fine. Now, an hour later, I cannot repeat the problem.
    I've edited the "Source Error" section to
    provide more of the code, so you can see the full context.
    I've also pasted the stored procedure called so you can see what that is about.
    I need this to work, so feel free to contact me if you need further information
    to diagnose this in order to fix it.
    I go live on March 7, so if I don't get a fix soon and can't find
    a workaround, I'll just make a lame error message like "Site is very busy, please try again".
    Even though the site is NOT busy. But having them try again seems to work.
    And I don't want to tell them why I'm asking them to try again <grin>.
    I am thinking of putting a try/catch block and sleeping for a second and then trying one more
    time in my code. I'll let you know if that is an effective work-around.
    David Kreth Allen
    University of Minnesota
    Carlson School of Management
    [email protected] remove XYZ to send emails
    612-625-0386
    <WebPageError>
    Server Error in '/ScholarshipApplicationWeb' Application.
    Data provider internal error(-3000)
    Description: An unhandled exception occurred during the execution of the current web request. Please review the stack trace for more information about the error and where it originated in the code.
    Exception Details: Oracle.DataAccess.Client.OracleException: Data provider internal error(-3000)
    Source Error:
         OracleCommand cmd = new OracleCommand();
         cmd.Connection = new OracleConnection(
              ApplicationEnvironment.current.database.OracleConnectionString);
         cmd.CommandType = CommandType.StoredProcedure;
         cmd.CommandText = "pkg_batch.get_details";
         cmd.Parameters.Add("batch_id",OracleDbType.Int32,
              batchId,ParameterDirection.Input);
         cmd.Parameters.Add("batchCursor",OracleDbType.RefCursor,
              DBNull.Value,ParameterDirection.Output);
         cmd.Parameters.Add("majorsCursor",OracleDbType.RefCursor,
              DBNull.Value,ParameterDirection.Output);
         cmd.Parameters.Add("detailCursor",OracleDbType.RefCursor,
              DBNull.Value,ParameterDirection.Output);
         OracleDataAdapter da = new OracleDataAdapter(cmd);
         DataSet ds = new DataSet("batches");
         da.Fill(ds);
         DataTable dt = ds.Tables[0];
         dt.TableName = "batch";
    Source File: C:\Projects\ScholarshipSolution\ScholarshipLibrary\Data\ScholarshipApplicationBatch.cs Line: 329
    Stack Trace:
    [OracleException: Data provider internal error(-3000)]
    Oracle.DataAccess.Client.OracleException.HandleErrorHelper(Int32 errCode, OracleConnection conn, IntPtr opsErrCtx, IntPtr opsSqlCtx, Object src, String procedure, String[] args)
    Oracle.DataAccess.Client.OracleDataReader.NextResult() +1259
    System.Data.Common.DbDataAdapter.FillNextResult(IDataReader dataReader) +98
    System.Data.Common.DbDataAdapter.FillFromReader(Object data, String srcTable, IDataReader dataReader, Int32 startRecord, Int32 maxRecords, DataColumn parentChapterColumn, Object parentChapterValue) +261
    System.Data.Common.DbDataAdapter.Fill(DataSet dataSet, String srcTable, IDataReader dataReader, Int32 startRecord, Int32 maxRecords) +129
    Oracle.DataAccess.Client.OracleDataAdapter.Fill(DataSet dataSet, String srcTable, IDataReader dataReader, Int32 startRecord, Int32 maxRecords) +516
    Oracle.DataAccess.Client.OracleDataAdapter.Fill(DataSet dataSet, Int32 startRecord, Int32 maxRecords, String srcTable, IDbCommand command, CommandBehavior behavior) +290
    System.Data.Common.DbDataAdapter.Fill(DataSet dataSet) +38
    CSOM.ScholarshipLibrary.Data.ScholarshipApplicationBatch.getDataById(Int32 batchId) in C:\Projects\ScholarshipSolution\ScholarshipLibrary\Data\ScholarshipApplicationBatch.cs:329
    CSOM.ScholarshipLibrary.Data.ScholarshipApplicationBatch.GetById(Int32 batchId) in C:\Projects\ScholarshipSolution\ScholarshipLibrary\Data\ScholarshipApplicationBatch.cs:290
    CSOM.ScholarshipApplicationWeb.BatchSummaryControl.Edit_Click(Object sender, CommandEventArgs e) in c:\inetpub\wwwroot\ScholarshipApplicationWeb\BatchSummaryControl.cs:68
    System.Web.UI.WebControls.LinkButton.OnCommand(CommandEventArgs e) +110
    System.Web.UI.WebControls.LinkButton.System.Web.UI.IPostBackEventHandler.RaisePostBackEvent(String eventArgument) +115
    System.Web.UI.Page.RaisePostBackEvent(IPostBackEventHandler sourceControl, String eventArgument) +18
    System.Web.UI.Page.RaisePostBackEvent(NameValueCollection postData) +138
    System.Web.UI.Page.ProcessRequestMain() +1244
    Version Information: Microsoft .NET Framework Version:1.0.3705.288; ASP.NET Version:1.0.3705.288
    </WebPageError>
    <PackageBody>
    PROCEDURE GET_DETAILS(
    p_batch_id IN number,
    batchCursor OUT pkg_batch.refcur,
    majorsCursor OUT pkg_batch.refcur,
    applicationsCursor OUT pkg_batch.refcur
    IS
    BEGIN
    OPEN batchCursor FOR SELECT
    * FROM scholarshipApplicationBatch
    where scholarshipApplicationBatch_id = p_batch_id;
    OPEN majorsCursor FOR SELECT
    * FROM major_response
    where batch_id = p_batch_id;
    OPEN applicationsCursor FOR SELECT
    * FROM schol_detail
    where batch_id = p_batch_id;
    END GET_DETAILS;
    </PackageBody>

    One workaround that seems to work is to retry in a loop.
    Sample code is pasted below.
    Obviously it may still fail, but less often.
    I'll report any further changes that affect
    the behavior in hopes it will assist the Oracle staff in
    fixing it.
    <CODE>
    try
    da.Fill(ds);
    catch (OracleException excp)
         const int maxTrys = 5;
         int failureCount = 1;
         bool succeeded = false;
         for (int i = 0;i<maxTrys;i++)
              try
                   System.Threading.Thread.Sleep(
                        TimeSpan.FromSeconds(1));
                   ds.Clear();
                   da.Fill(ds);
                   i = maxTrys;
                   succeeded = true;
              }//try
              catch
                   failureCount ++;
         }//for
         errorHandler.Report(
              String.Format(
              "Failure in da.Fill in ScholAppBatch. " +
              " Failed {0} times. Finally Succeeded = {1}.",
                                            failureCount.ToString(),
         succeeded.ToString()),
              excp);
    }//catch
    </CODE>

  • Data Provider Internal error(-3000): please help!

    Hi,
    I've a Web Application using Oracle Data Provider 9.2.0.2 to communicate with mu oracle DB.
    I'm using the ExecuteNonQuery function to run a SQL statement (it's a select connect by), but after some time, I get the following error:
    Data Provider Internal error(-3000)
    It seems to happen if the query takes a lot of time.
    If I reduce the number of returned rows, I don't get the error anymore.
    After some searches through the internet I found that the problem should fixed in the next ODP release, 9.2.0.4: I installed it too, but with no success.
    I played with the connection timeout and some other parameters without solving the error.
    Someone can help me?
    Thanks.
    Daniele.

    I met the same question too.
    I list your problem below:
    my ODP.net is 9.2.0.4.
    code snippet is below:
    string constring = "user id=gz;data source=ipas_local;password=gz";
                        OracleConnection conn = new OracleConnection(constring);
                        OracleCommand cmd = new OracleCommand(sql,conn);
                        try
                             conn.Open();
                             cmd.ExecuteNonQuery();
                        catch(Exception ex)
                             doredirect = false;
                             lblMessage.Text = ex.ToString();
                        finally
                             conn.Close();
    I have a Oracle9i DBMS which home_name is OraHome92 in my computer,and have a ODP.NET9.2.0.4 which home_name is ORADOTNET9 deferent from DBMS.
    9i DBMS path:D:\oracle\ora92
    ODP.NET 9i path:D:\oracle\ODPDotNet
    my web app never work before
    what's the meaning of "100% & consistently reproducible"?
    how to know whether Connection pool is on or off?

  • Latest Security Updates cause Data Execution Protection errors

    Since the latest Windows updates I have been inundated with Data Execution Protection errors in IE 11. I have tired the troubleshoot of tuning off add-ons but the error continues. I only have Norton 360 toolbar as an add on anyway.
    I can't isolate the problem - any suggestions?
    As a side issue I also can't launch Google Chrome - it crashes on launch from a new installation.
    I am running Windows 8.1 on a Lenovo X1 carbon laptop.

    Hello Adrian0511,
    Which update do you mean?
    Have you tried to reset Internet Explorer as MVP Rob mentioned?
    We could go to Control Panel\Programs\Programs and Features click View Installed Updates and then uninstall the update and check if the issue stseill exists.
    For more information about troubleshoot problems with removing updates, please take a look at the following article.
    http://windows.microsoft.com/en-hk/windows/troubleshoot-problems-removing-updates#1TC=windows-7
    About the Chrome issue, it is recommended to ask in the related Chrome forum.
    Best regards,
    Fangzhou CHEN
    Fangzhou CHEN
    TechNet Community Support

  • Internal Error trying to open a remote panel in netscape 7.1 in linux

    /usr/local/netscape/netscape
    Internal Error : "fontmgr.cpp", line 1023
    LabVIEW version 7.0
    For assistance in resolving this problem, please exit and relaunch LabVIEW, or contact National Instruments.
    I got this error when I was trying to open a remote panel from a machine running windows 2000 to a machine with netscape 7.1 browser under linux redhat 7.3
    I have made a link in /usr/local/netscape/plugins LV7NPlugin.so -> /usr/local/lib/LabVIEW-7.0/LV7NPlugin.so
    I have also copied the file in /usr/local/netscape/plugins but it doesn't work.

    Here the official statement from NI
    The crash happens when LabVIEW can't open the catch-all font of "fixed" as a fallback when a particular font is not available on the system. The "fixed" font is ALWAYS supposed to be available on the system. The "fixed" font is provided by a font alias in the file /usr/X11R6/lib/X11/fonts/misc/fonts.alias. The alias should be defined in the first few lines of this text file. On a SuSE system where the crash is occurring, do an 'xlsfonts | grep fixed' . In a correct configuration, you should see a font called simply "fixed" in the output, but if not, this will cause the LV crash. I have not actually been able to reproduce the problem here without intentionally deleting this alias, because "fixed" is available on our SuSE syste
    m with the XFree86 packages from SuSE 8.2 installed. It's possible that this problem has already been corrected by SuSE, and the packages on their FTP site have been updated from the original CD release. Workaround: Download XFree86-4.0.3-19.i386.rpm or later from ftp.suse.com (or a mirror; ftp.mcs.anl.gov is a really fast one in the USA) and upgrade your X server. Verify that "xlsfonts | grep fixed" reports that the font is available. LabVIEW should then display an ugly fixed-width font for the missing font(s), but not crash.

  • Random "Internal Error Occured" When Opening PDFs

    I have a user that since yesterday morning has been having random "An internal error has occured" errors and Adobe Reader X crashes out.  He tells me that it doesn't happen on every PDF he tries to open and on the ones that it does happen if he keeps trying to open the file it will eventually work.  Though when it does it might not display properly or it will cause Reader to freeze.  In his words, "It's not always the same result with each file."
    I've been reading around at all the 'internal error' threads (seems fairly common!) and it seems that it could be something nice and simple from a permissions error, which I can't see it being this because then it wouldn't work at all surely?  And then there is complete hit or miss fixes like reinstalling or a reg fix!
    Can anyone provide anymore useful information!?

    Hi chen,
    I have executed the function modules.Its throwing the floowing exceptions.
    SPBT_INITIALIZE     is throwing the exception INVALID_GROUP_NAME  Message number  BT  - 831.
    Function modules SPBT_GET_CURR_RESOURCE_INFO , SPBT_FIND_FREE_SERVER, SPBT_GET_CURR_RESOURCE_INFO are throwing the exception PBT_ENV_NOT_INITIALIZED_YET  message number BT - 838 .
    How to resolve this problem.
    Thanks in advance.

  • Iexplorer setting that would cause export of xls error "Could not open ..."

    We have a situation where the same user, on two different machines, gets two different results. The user is attempting to export to xls. We are using Discoverer 10g viewer.
    On machine one, the error (Could not open https://server.co.net/discoverer/export/test.xls) prompts when attempting to open or save the exported xls. On maching two, the xls can be opened or saved with no problem. I'm guessing it is a security setting within iexplorer.
    Any thoughts...
    Thanks,
    Jamie

    The quick solution to the problem was to login to XP as an administrator, backup the user profile, remove the user profile, log off, have the user re login (basically recreates profile with latest certificates and security settings), update new profile with backup data (favorites, my documents, etc...), and now all is fine. Not sure which certificate or security setting was causing the problem, but now user has the most up to date profile.
    Jamie

  • ERROR MESSAGE INTERNAL ERROR OCCURED CANT OPEN PDF FILES

    i cannot open pdf files at all.. ive tried uninstalling and installing etc. keep getting message an 'internal error occured'
    PLEASE HELP ITS WRECKING MY BRAIN

    Hi jennycork,
    Please let us know the following:
    - What is the verison of Operating System?
    - What is the version of Adobe Reader you are using?
    - Are you able to launch Adobe Reader (without opening any PDF file) or you get error message?
    If you are not able to launch then perform the following:
    Right click on the Adobe Reader icon and choose Troubleshoot Compatibility - Try Recommended Settings - Then choose test the program and that is where you will be able to Disable Protected Mode which will fix the program. You can disable Ptroected under: Edit > Preferences > Security (Enhanced) > Enable Protected Mode at startup.

  • I just downloaded facetime this morning and when i try to open it a message pops up saying there's an internal error, quit and open again, and when i do that it still pops up the same message and suggestions?

    please help me

    Make sure your time and date are set properly for your city/timezone. In fact, you should have your location services set to automatic.  Also it is important that you have all of the latest software updates for your operating system installed through Apple software updates. 

  • ORA-00600: internal error code, arguments: [kcrfr_update_nab_2], [0xB1B59D

    Can anyone please try check out this ORA-600 error, ORA-00600: internal error code, arguments: [kcrfr_update_nab_2], [0xB1B59DA4],
    [2], [], [], [], [], [].
    My db went down abruptly due to power source ....now the database mounts successfully but when u try opening the db i.e. alter database open; it comes up with the error. Plz kindly treat urgently.Thanks

    For all kind of internal errors, you should open SR (Service Request) in metalink. You need to contact Oracle Support
    Kamran Agayev A. (10g OCP)
    http://kamranagayev.wordpress.com
    [Step by Step install Oracle on Linux and Automate the installation using Shell Script |http://kamranagayev.wordpress.com/2009/05/01/step-by-step-installing-oracle-database-10g-release-2-on-linux-centos-and-automate-the-installation-using-linux-shell-script/]

  • Calls failing to connect due to "Internal Error"

    I have been having issues, with increasing frequency, with Skype on my Mac as well as iPhone. Now EVERY time I try to call a phone number it gives the notification of "Call ended - internal error". What the **bleep**?

    Hi, SOMEONE PLEASE HELP!
    I'm a premium subscriber and I've had multiple calls fail today due to "internal error" and these are USA to USA calls. No proxy, nothing out of the ordinary, and they're failing...been going on for a couple days.
    I'm using the most updated version, I've restarted multiple times.
    PLEASE HELP!!!

  • ORA-03137: TTC protocol internal error

    Hi
    We created a new database and trying to connect from this database to Oracle access manager at AS400.We added the new instance on oracel access manager Tnsnames.
    The connection is failing and the error I see in alert log file is
    ORA-03137: TTC protocol internal error : [12333] [14] [0] [68] [] [] [] []
    We are able to connect to the other database on same server .
    Please help .
    Oracle Version : Oracle Database 11g Enterprise Edition Release 11.1.0.6.0 - 64bit Production

    user8940828 wrote:
    Hi
    We created a new database and trying to connect from this database to Oracle access manager at AS400.We added the new instance on oracel access manager Tnsnames.
    The connection is failing and the error I see in alert log file is
    ORA-03137: TTC protocol internal error : [12333] [14] [0] [68] [] [] [] []
    We are able to connect to the other database on same server .
    Please help .
    Oracle Version : Oracle Database 11g Enterprise Edition Release 11.1.0.6.0 - 64bit Productionbcm@bcm-laptop:~$ oerr ora 3137
    03137, 00000, "TTC protocol internal error : [%s] [%s] [%s] [%s] [%s] [%s] [%s] [%s]"
    // *Cause:  TTC protocol internal error.
    // *Action: Contact Oracle Support Services.                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       

  • Internal Error 2330. 1392...(plug_ins\PaperCapture)

    My Acrobat file folder is corrupted. I can't uninstall, install new, or even open the folder.
    It causes the message:
    Internal Error 2330. 1392, Program Files\Adobe\Acrobat 7.0\Acrobat\plug_ins\PaperCapture
    I have Windows Vista and customer support won't help me because it's version 7.0.
    Please help me someone.
    Patrick

    Hi Aandi -
    I'm running Vista.
    Programs and Features:
    Adobe Photoshop Elements 6.0
    Adobe Premiere Elments 4.0 (can't remove same error as Adobe Reader)
    Adobe Premiere Elements Templates (I did succeed in removing this last night)
    Adobe Reader 8.1.2
    Another problem: In Adobe pdf files won't print.
    Error:
    Unable to start print job. Is printer available?
    ---click OK then:
    Same message.
    ---click OK then:
    Message goes away but doesn't print.
    I installed FoxIT last night - now at least PDF files can be printed just fine.
    More errors:
    When opening Adobe Reader:
    DDE Server Window: AcroRd32.exe - Corrupt File
    The file or directory c:\Progrmam Files\Common Files\Adobe is corrupt and unreadable. Please run the Chkdsk utility.
    (which when I tried to run didn't seem to do anything)
    When tyring to remove Ado Prem Elem 4.0:
    Warning 1910. Could not remove shortcut Adobe Premiere Elements 4.0.lnk. Verify that the shortcut file exists and that you can access it.
    --click OK then get:
    Error 2330. Error getting file attributes: C:Progam Files\Common Files\Adobe\Launch\premiereelements\4.0. GetLastError: 1392.
    --click OK then get:
    Installshield Wizard Completed
    ...wizard was interruppted before Ado Prem Elem 4 could be completely installed... (even though I was trying to remove it).
    Help?

  • ORA-03137: TTC protocol internal error : [1010] [] [] [] [] [] [] [

    Hi
    Database 11.1.0.6
    OS: EL 5
    Hi I'm frequently getting this error in the database alert log:
    ORA-03137: TTC protocol internal error : [1010] [] [] [] [] [] [] [
    and the database got shutdown.
    Anybody has any idea how to troubleshoot?

    03137, 00000, "TTC protocol internal error : [%s] [%s] [%s] [%s] [%s] [%s] [%s] [%s]"
    // *Cause:  TTC protocol internal error.
    // *Action: Contact Oracle Support Services.                                                                                                                                                                                                                                                                                                                                                           

  • W25    The Characteristic %NV% is not found in data provider ...

    Hi Gurus,
    we are currently starting to use the BI Portal. I want to publish a Query, which really works fine in BEx Analyzer, in the Portal using a Web Template.
    So I used the BEx Web Application Designer to create a Template where I just inserted the Analysis Item with my data provider.
    In BEx Web Application Designer I get the warning "W25 The Characteristic %NV% is not found in data provider XXX" - and when I open my Query in the Portal I get the dump message
    "ERROR RS_EXCEPTION (000): SQL0104N  An unexpected token """" was found following "'1' AND "I"."SVER" =".  Expected tokens may include:  "<space>".  SQLSTATE=42601
      MSGV1: SQL0104N  An unexpected token """" was found
      MSGV2: following "'1' AND "I"."SVER" =".  Expected tokens
      MSGV3: may include:  "<space>".  SQLSTATE=42601
    ABEND RSBOLAP (000): Programmfehler in Klasse SAPMSSY1 Methode : UNCAUGHT_EXCEPTION
      MSGV1: SAPMSSY1
      MSGV3: UNCAUGHT_EXCEPTION".
    Does anybody have an idea what's the problem? Please?
    Thank in advance!

    Sandra,
    If you are not on SPS-14 try applying this note
    1122372.
    Please assign points if helpful.
    Thanks,
    Bobby

Maybe you are looking for

  • Report template auto-changed to Default: HTML

    I use the builtin report template "Default: Look 4" for all of my report screens and have a problem when importing the application with a new Application ID. All reports that use the "Default: Look 4" template get changed to "Default HTML" in the new

  • Start up problem with macbook pro

    i have a problem with my macbook. when i start up the macbook after pressing power button it turns on with apple logo and then convert into a stop sign (like a circle with slash ).it does not proceed further .what should i do ??

  • Authorization issue - repeating error message

    I'd just like to mention that I recently experienced the dreaded authorization loop where iTunes continuously asks for authorization to play certain songs. After exhausting different possibilities to resolve the problem, I tried something different.

  • Selection screen in workbook possible?

    All, Is it possible to have selection screen, filter and drill down features of the query within a workbook? If yes, please let me know the details Thanks!

  • DB-Tables: Messages persisted in JAVA Stack?

    Hi - Do we know where (db-tables) messages are persisted when they are processed by a SAP PI adapter? I assume this is the same DB as for the ABAP Stack, but likely different tables. Thanks for your input. Mathias