Each WORKBOOK in separate windows Excel 2010 Windows 7

Hi,
I read a lot of thread about this topic, and I begin to despair :)
With this config : Excel 2010 / Windows 7
I found the solution to open 2 Workbooks in separate windows, but from explorer / desktop ONLY !
But from Excel (when a document is already opened), if I have an hyperlink in a spreadsheet that points on an other wordbook, when I click on the link, I would like to open it in a new instance of Excel.
Same about FILE => OPEN (I would like to open it in a new instance of Excel too, always in fact)
Thank you.

Just an update to my above instructions:
I had an MS Office update pushed via my corporation and while I'm not going to try and determine which update caused the reversion, my Excel open commands reverted back to the default behavior.
What happened: 
The (Default)  REG_SZ  "C:\Program Files (x86)\Microsoft
Office\Office14\EXCEL.EXE" /e "%1" (specifically the /e "%1") reverted back
to the default ... /dde switch.
The HKEY_CLASSES_ROOT\Excel.Sheet.12\shell\Open\ddeexec
was returned (remember,
we renamed it). 
The HKEY_CLASSES_ROOT\Excel.Sheet.12\shell\Open\ddeexec2
key remained.
The same applies to the Sheet.8 keys:
HKEY_CLASSES_ROOT\Excel.Sheet.8\shell\Open\command
HKEY_CLASSES_ROOT\Excel.Sheet.8\shell\Open\ddeexec
How
to revert Excel 2010 back to open workbooks in separate instances:
Simply
change the Excel sheet.12 and sheet.8 open commands back to the /e "%1" switch and
delete the ddeexec keys, since we already renamed them once before and the renamed key remains. 
Detailed
Instructions:
Edit HKEY_CLASSES_ROOT\Excel.Sheet.12\shell\Open\command
Before: (Default)  REG_SZ  "C:\Program Files (x86)\Microsoft Office\Office14\EXCEL.EXE" /dde
    and: command  REG_MULTI_SZ  xb'BV5!!!!!!!!!MKKSkEXCELFiles>VijqBof(Y8'w!FId1gLQ /dde
to
Change: (Default)  REG_SZ  "C:\Program Files (x86)\Microsoft Office\Office14\EXCEL.EXE" /e "%1"
    Delete (if exist): command 
REG_MULTI_SZ  xb'BV5!!!!!!!!!MKKSkEXCELFiles>VijqBof(Y8'w!FId1gLQ /dde
then
    Delete (if exist): "HKEY_CLASSES_ROOT\Excel.Sheet.12\shell\Open\ddeexec"
then repeat the
above steps on:
HKEY_CLASSES_ROOT\Excel.Sheet.8\shell\Open\command
HKEY_CLASSES_ROOT\Excel.Sheet.8\shell\Open\ddeexec
This seems to "fix" what an update unfixed.

Similar Messages

  • Problem accessing informix ODBC 32 bit System DSN using Microsoft Query external data sources in Microsoft Excel 2010

    Hi all...
    I'm hoping if anybody could help me. I'm using Microsoft Excel 2010 + Windows 7 Professional 64 bit. I've installed the informix client sdk for odbc drivers to create odbc 32 bit connection. Before this, i had successfully installed in
    another Windows 7 Professional 64 bit PC the informix client drivers and configured the odbc connection for it. During that time, i can access the 32 bit ODBC using the microsoft query from the Microsoft Excel 2007. But now...in the new PC, even though i had
    successfully installed the informix client and manage to configure the 32 bit ODBC for it, my Microsoft Excel 2010 can't call/recognise the 32 bit ODBC connection as if the Microsoft Excel 2010  only called the 64 bit ODBC. Is it in Microsoft excel 2007
    it is possible to recognise the 32 bit ODBC but the Microsoft Excel 2010 can't? Is there any solution if my Microsoft Excel 2010 still want to use the 32 bit ODBC connection.

    Hi,
    Excel 2007 has only 32-bit since 64-bit applications for Office are available only for Office 2010. Thus, you can use
    32 bit ODBC between Microsoft Excel 2007 & Windows 7 Professional 64 bit. Now, you are using Microsoft Excel 2010 64 bit & Windows 7 Professional 64 bit, thus, you must install the 64 bit ODBC drive. If you still need to use 32
    bit odbc drive, please use 32 bit Excel 2010. Here is the detailed steps:
    http://datasummit.co.za/how-to-install-an-informix-odbc-driver-on-windows-7-for-ms-office-2010
    Regards,
    George Zhao
    TechNet Community Support
    It's recommended to download and install
    Configuration Analyzer Tool (OffCAT), which is developed by Microsoft Support teams. Once the tool is installed, you can run it at any time to scan for hundreds of known issues in Office
    programs.

  • Obiee 11.1.1.5.0 cannot open .iqy file in Excel 2010

    Hi,
    when I try to open a .iqy file in Excel 2010 (windows 7) I get the Error:
    Unable to open http://answers.activision.com/analytics/saw.dll?Download. The hyperlink cannot be followed to the destiantion.
    In Excel 2007 (windows XP) I can open/refersh this query without any problems.
    I think this is only a setting issue, but I don't have an idea what I have to change.
    Maybe someone can help
    Thanks and regards
    Chris

    Go to View Options where you will select Narrative View or Pivot Table under that you can see a Filters,Just click and export the results to excel it will work,Below the screen shot for your reference.
    Recordings_2 - Download - 4shared
    Mark if helps.
    Thanks,

  • How to reference Excel 2010 template project in my ViewModel

    Hi,
    I have 3 separate projects :
    Excel 2010 template project
    Class Library project
    WPF Application project
    Excel 2010 template project hosts wpf user controls developed in WPF Application project. Those controls use command bindings to Class Library project which contains my ViewModels. When user clicks on button on hosted WPF control in Excel 2010 template project
    ViewModel generating BindingList.
    Now I need to show content of generated BindingList on Excel worksheet in Excel 2010 template project by using ListObject.
    Can anyone provide me with instructions or even better with example or solution to my problem in order to make this working OK.
     Thank you in advance.
    Almir

    Hi,
    thank you for your reply. In order to solve problem, I have build the same WPF user controls in Excel 2010 template and pass DataContext behind working sheet in order to populate ListObject and show data in Excel datagrid.
    Here is how I did it
    private PlanningAreaDimensionDetailsViewModel ViewModel
    get
    return (PlanningAreaDimensionDetailsViewModel)DataContext;
    private void Buton_Clicking(object sender, RoutedEventArgs e)
    Sheet1 ws = (Sheet1)Globals.Sheet1;
    ws.ShowResult(ViewModel);
    I don't like this code behind my button_click (I prefer no code behind) but don't know how to do this differently in Excel templeting. Any proposal will be more than Welcome.
    Also, I have created ShowResult method  behind my Sheet1 and it looks as follows:
    public void ShowResult(PlanningAreaDimensionDetailsViewModel ViewModel)
    PlanningAreaDimensionDetailsViewModel myList = ViewModel;
    int ListObjectCount = this.ListObjects.Count;
    this.Columns.Delete();
    inputTable = Controls.AddListObject(Range["A8", "E11"], ViewModel.SelectedPlanningArea.ToString());
    inputTable.SetDataBinding(myList.PlanningDimensions, string.Empty, null);
    Do you maybe know how can I delete ListObject if already exist the one with the same name? This is where I stuck right now:(
    Sorry for this questions, but I have never before used VSTO. Just trying to reuse my ViewModels and WPF controls in order to provide solution to my boss he asked (he is Excel man and wants Excel as Front)
    Kind regards,
    Almir

  • Excel 2013: Lost VBA Code From Excel 2010

    Just upgraded from Office 2010 to Office 2013.
    Tried to open several of my Excel spreadsheets created in 2010 with Excel 2013. I have spreadsheets that have VBA to perform several functions and routines.
    None of the .xlsm spreadsheets from 2010 work in 2013. I get the following messages:
    "The Visual Basic for Applications (VBA) macros in this workbook are corrupted and have been deleted. The macro corruption most likely exists in the current file. To recover the macros, open a backup copy of this file if you have one."
    OR ...
    "We found a problem with some content in '*******.xlsm'. Do you want us to try to recover as much as we can? If you trust the source of this workbook, click Yes."
    Clicking Yes does not help. It removes or tries to fix the issue. Under the developer tab, the "Visual Basic" and "Macros" button is disabled.
    I tried 3 of my different workbooks. They all get the same error. I went back to an Office 2010 installation and all the workbooks open file - without error, and the code executes.
    Advice?

    I'm getting the same problem, but with Excel 2010.
    I've created a workbook with macros in Excel 2010 and couldn't run it in two computers with office 2010. The same problem as above occurs:
    "The Visual Basic for Applications (VBA) macros in this workbook are corrupted and have been deleted. The macro corruption
    most likely exists in the current file. To recover the macros, open a backup copy of this file if you have one."
    This problem happened with other 2 workbooks with macro. It's curious too that another workbook with macro created by
    me is working on these two computers without errors. And, of course, all of the workbooks mentioned works well in the other computers. This problem started when I downgrade the office os this two computers from 2013 to 2010.
    None of the solutions proposed above has worked.
    Any ideas?
    Thanks in advance!

  • Windows 7 - Open Excel 2010 in separate window

    Setup:
    Windows 7 Ent.
    2 monitors in extended desktop mode
    Office 2010
    Opening Excel Files from multiple sources (Outlook 2010, Desktop, OneNote 2010, etc.)
    New laptop with 12GB of RAM
    i7 Quad Proc.
    Problem:
    By default, all of my Excel books open in the same window of Excel.  I open lots of sheets that need visual side-by-side comparison.  I want every every Excel book I open to have its own Excel window.  It doesn't necessarily need to be it's
    own running instance of the binary, but it's own separate window that I can minimize, maximize, resize, or close independently of the other Excel windows.
    I've tried the registry fixes for DDE.  I've tried the "Ignore other applications with DDE" option in Excel.  Both of those solutions give the desired multi-window result, but both break my ability to open spread sheets from OneNote and
    Outlook.  The error for OneNote is "OneNote has encountered a problem and cannot complete this operation", when I double click an embedded Excel file.
    Question:
    Is it possible to get Excel to open a new window for each file without disabling DDE or breaking my ability to open embeddede spreadsheets from other applications like Outlook and OneNote?  The "Put Excel into windowed mode and drag it across multiple
    monitors" work around is not feasible since I run two different sized monitors.

    Not necessarily an ideal solution, but the only way I've found with Excel 2010 is to open a second instance of Excel, which will then allow you to move it to the second screen and either open your spreadsheets from there, or drop and drop them into
    the required copy of Excel from Outlook/OneNote. Annoyingly with Excel 2010 by default it only opens one instance of Excel and then all workbooks you open after then are opened within that same instance, but if you select Excel from the start menu it will
    open a second (or third, or forth etc) instance which can be moved and handled independently.
    The other option would be to upgrade to Excel 2013 since that doesn't have that limitation, but that may be an expensive way around the issue!

  • Excel 2010 changes relative link paths to absolute in files synced with Offline Files in Windows 7

    Hello! I'm wondering if anyone else has seen this problem: I have a large number of Excel 2010 and 2003 files in a folder on my file server. This whole folder is also synced to my computer using Offline Files in Windows 7. I have a lot of references between
    cells in different Excel files, and all referenced workbooks are physically in the same folder. This all works nicely when I create these files at work - all file paths referenced in the cells are created as relative paths and the documents open correctly.
    This is, I understand, the expected and default behavior when Excel creates links. When I edit these files at home, nothing seems odd until I get back to work and sync these files back to the file server. At this point, I discovered that Excel 2010 has, when
    I saved the files while away from the corporate network, changed /all/ the cell references in any offline-edited Excel files to point at absolute paths, and that these absolute paths point to somewhere in my %APPDATA% structure. So whenever I come to work
    and I try to open an Excel file that I have recently worked with offline, I get a bunch of error messages about referenced files that are missing, although clearly they exist in the same folder as the file I've opened, and I must edit all the file references
    again, whereupon they are again created correctly as relative paths (since all files exist in the same folder), which are promptly mangled into absolute C:\....\Offline Files\.....\..... paths whenever I save them at home (and since that works too, I don't
    notice it again until I come back to work and the offline files are synced back to the real network location). This seems to be a case of Windows 7's Offline Files not being able to fool Excel 2010 into believing it is working on a file server - apparently
    Excel 2010 can see through the fakery and decides on it's own to "fix" the problem (which obviously isn't a problem since the paths are relative to begin with) by saving the paths as absolute paths instead. Yes, really clever, Excel. The exepected behavior
    according to MSKB is that links are created as relative paths, so why does it change to absolute whenever Offline Files are involved? I know Offline Files only syncs, it doesn't actually change the files, so I can conclude that Excel is the program at fault
    here. Is there a fix for this, or a known workaround? Because frankly, this bug makes it impossible for me to work in any advanced manner with linked Excel files. The sad thing is that this worked perfectly fine with Office 2003 and Windows XP. Is there a
    patch for this problem that I might have missed (I am running the latest Service Pack and I get Office updates from Microsoft Update). If not, is there a workaround I can use to prevent Excel from corrupting my links when I edit the files offline?

    Hello danceswithwindows,
    Thank you for your post.
    This is a quick note to let you know that we are performing research on this issue.
    Sincerely
    Rex Zhang
    Rex Zhang
    TechNet Community Support

  • Getting BW Workbook to open in same window (Excel Display)

    Hi there
    We have a number of BW Workbooks that are published through the portal. I have succesfully configured the transaction iview to open the workbook, which results in Excel opening up and the workbook opening up in Excel.
    Now, surely it is possible to open Excel within the portal window ... now Excel opens as a separate application, and we are left with a large white screen where the portal content is normally displayed, which doesn't look so nice.
    Any ideas?
    Cheers,
    Andrew

    Hi ,
    i am facing some problem to while displaying the workbook in the portal. i selected transaction iveiw , selected alias name of the system, used rrmpx as the transaction code and in application parameter i user WBID=<xyz>.
    after that i tried to preview the iview but not able. can you please guide me i am in the same path or not.
    Thanks,
    Srinivasu.Y

  • Excel 2010; Two file opened in a single instance with two different windows... Is it possible?

    Hello
    I'm using Excel 2010
    I need to open a new Excel file to be display on a 2' monitor.  The new file need to be under the same instance has my main Excel file to prevent problem with a special dll collection that I'm using.
    I need to have both file in a separate window
    Is it possible?
    Excuse my English
    Martin

    Hi Martin,
    Open two excel file in one excel instance, display them to different windows.
    Please try the methods listed in the thread below:
    http://social.technet.microsoft.com/Forums/en-US/6ba32569-19a0-4b45-806f-9a42258bdb5f/how-to-open-two-excel-files-in-multiple-monitors-in-windows-7?forum=excel
    Best Regards,
    Wind

  • OraOLEDB.Oracle Provider Not Found- Windows 7 64 bit Excel 2010 32-bit Help

    Currently, I have an excel 2010 application that users on Windows XP 32 bit are using to connect to an Oracle 32-bit database and extract data back into Excel. Each time they open the Excel file, the VBA code automatically creates a new connection using Provider =ORA.OLEDB.Oracle Provider. All users using the Excel file have installed Oracle 9.2.1 run-time client on their machine. All of that works well currently for over 100+ users on Windows XP 32-bit
    Starting very shortly our company is moving to Windows 7 64-bit. We acquired a test PC with Windows 7 64-bit and Excel 2010 32-bit. We tried to install Oracle 9.0.2 run-time client but we couldn't connect to the database ( even with Sql Plus). We therefore downloaded Oracle 10g 10.2.04 Run-time client. With this installed, we were able to connect to via SQL Plus to the database. However, using the same Excel file and the following same VBA code.
    Set cn = New ADODB.Connection
    cn.Open ThisWorkbook.getDBCon()
    Public Function getDBCon()
    getDBCon = "Provider=OraOLEDB.Oracle;" & _
    "Data Source=MyOracleDB;" & _
    "User Id=" & getDBUser() & ";Password=" & getDBPss()
    End Function
    I get a "Provider Not Found error". The VBA code and file work perfect in XP 32-bit. It seems going over to Windows 64-bit has caused issues with the file's macro. I am looking for help assessing if I have more of an Oracle Client issue or a Microsoft ADO issue. Any input would be greatly appreciated. Thank You.

    @damorgan
    Yea agreed with Excel to Oracle comment. This is due to issues with global implementation of an ERP system and the disconnets between IT and Business. Therefore the business intelligence tables in oracle are most easily pulled and acted on by novice PC users via Excel. In the business, Excel is the standard tool novice non-IT people feel comfortable in to share and act on data. Most of these users have no IT knowledge whatsoever, so we create buttons and filters for them to query and then massage in Excel as they see fit.
    Having said that, still wondering if it's a ADO or Oracle Client issue. This is something beyond my knowledge. I wouldn't imagine it's the Visual Basic issue since this same file works in Windows XP. I am not in the position to just scrap Excel as the business relies on this in production and I am the only support. What could 64 bit vs 32 bit differences be having here? Thank You.

  • DDE link between MT4 & Excel 2010 no longer works on Windows 8.1 64bit

    I have a DDE link between EXCEL 2010 & Metatrader (MT4)  that has worked flawlessly up until yesterday. Now the spreadsheet just hangs when
    i attempt to update.
    I had not changed anything on my machine prior to the problem, but have since repaired then reinstalled Office and reinstalled MT4 but the problem persists.
    The link still works fine on my Windows 7 64bit PC with the same version of Excel and MT4, so the problem is not at the server end. I have even taken the EXCEL file from the WIN8 machine and it works fine on the Win7 machine
    MT4 is installed in C:/ as the link did not work previously when installed in program files
    Help!

    P.S.  If Excel file was created on an older version of Excel, it should be converted to 2010 format, and the inputs are a little different.
    Example:
    Instead of  =MT4|ASK!EURUSD
    it's now       ='MT4'|ASK!EURUSD

  • Connecting Excel 2010 64 bit on Windows 7 64 bit to Oracle 11gR2 on Linux

    Using:
    Excel 2010 64 bit
    Windows 7 64 bit
    Oracle instant client 11.2.0.1 64 bit
    connecting to Oracle 11gR2 64 bit on Linux 5.8 64 bit
    I have created a User DSN in Windows called "NITRO Oracle 11gR2 DB" using the Oracle 64 bit instant client driver 11.2.0.1. Configured as so
    http://i.imgur.com/2a3MZ.png
    Connection test is successful.
    In Excel 2010, I go to Data ribbon, From Data Connection Wizard
    http://i.imgur.com/han3u.png
    I then choose Other/Advanced, and then Oracle Provider for OLE DB.
    http://i.imgur.com/w3P1c.png
    I click next and then put in the data source, user name and password and click test, and it fails with Micosoft Data Link Error. http://i.imgur.com/zuv41.png
    Do you know what I'm doing wrong?

    12154 means the client couldn't resolve what you filled in for Data Source. What did you fill in for Data Source when configuring the OLEDB connection? It looks like "nitro" should be the correct thing to fill in, based on your statement that the ODBC DSN you configured works with it.
    Greg

  • Problems with exporting PWA views (grids in general) to Excel 2010 with Windows 8 + IE 10 as a client configuration

    Hello,
    I wondering if windows 8 + IE10 is a supported client configuration for PWA (Project Server 2010). I am unable to export PWA views to Excel 2010. No problems with Windows 7 + IE8/9
    Any ideas?
    thanks,
    Daniel
    Daniel Villacis

    Hi,
    We followed the below steps in the local machine and check the behavior.
    a. Open the Windows registry editor (regedit.exe)
    b. Go the location HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\App Paths\excel.exe
    c. Here, you’ll see a string value named “useURL”
    d. Rename this value to something else.  For example “useURLx”
    Note: You might have to restart the machine to apply the registry change to take effect.

  • Not able to get WebADI working on MS Excel 2010 and Windows 7

    Hello All,
    Can you please advise on setting in Excel 2010 on Windows 7 and IE 8 working for WebADI.
    Please note we are on R12.1.3 Oracle EBS.
    I followed the Note - Using Microsoft Office 2007 and 2010 with Oracle E-Business Suite 11i and R12 [ID 1077728.1] but nothing seem to work.
    Thanks

    5/3/12 9:55 AM AJPRequestHandler-HTTPThreadGroup-4 WARNING BneCaboUtils.getCaboHeadlessMode, Value for "CaboHeadlessMode" property is null! Headless mode could not be changed.
    5/3/12 9:55 AM AJPRequestHandler-HTTPThreadGroup-4 TRACE BneCache() constructing new cache.
    5/3/12 9:55 AM AJPRequestHandler-HTTPThreadGroup-4 TRACE BneCache.cacheSweeper: starting sweeper ...
    5/3/12 9:55 AM Web ADI Cache Sweeper TRACE BneWebAppsContext:getValidContext() Start.
    5/3/12 9:55 AM Web ADI Cache Sweeper TRACE BneContext:getBneDbcFilename() Start.
    5/3/12 9:55 AM Web ADI Cache Sweeper TRACE BneContext:getBneDbcFilename() Done, filename = /local/apps/OAT3/inst/apps/OAT3_vienna/appl/fnd/12.0.0/secure/OAT3.dbc
    5/3/12 9:55 AM Web ADI Cache Sweeper TRACE BneWebAppsContext:getValidContext() Start.
    5/3/12 9:55 AM Web ADI Cache Sweeper TRACE BneJDBCUtils.commit() current connection: oracle.jdbc.driver.T4CConnection@c52af8
    5/3/12 9:55 AM AJPRequestHandler-HTTPThreadGroup-4 TRACE BneOracleWebAppsContext.getUserId() End, userId = 14629
    5/3/12 9:55 AM AJPRequestHandler-HTTPThreadGroup-4 TRACE BnePerformanceStatistics - Wrote 0 of 2 statistics in 160 Milliseconds.
    5/3/12 9:55 AM AJPRequestHandler-HTTPThreadGroup-4 TRACE BneJDBCUtils.commit() current connection: oracle.jdbc.driver.T4CConnection@85968b
    5/3/12 9:55 AM AJPRequestHandler-HTTPThreadGroup-4 TRACE BneJDBCUtils.commit() current connection: oracle.jdbc.driver.T4CConnection@15750e4
    5/3/12 9:55 AM AJPRequestHandler-HTTPThreadGroup-4 TRACE BneOracleWebAppsContext.releaseContext() Web Event Duration = 1.785(s)
    5/3/12 9:55 AM AJPRequestHandler-HTTPThreadGroup-4 TRACE Exit BneApplicationService.handleRequest()
    5/3/12 9:55 AM AJPRequestHandler-HTTPThreadGroup-4 TRACE Enter BneBajaServlet.doRequest()
    5/3/12 9:55 AM AJPRequestHandler-HTTPThreadGroup-4 TRACE BneWebAppsContext:getValidContext() Start.
    5/3/12 9:55 AM AJPRequestHandler-HTTPThreadGroup-4 TRACE BneOracleWebAppsContext:getValidContext() Start.
    5/3/12 9:55 AM AJPRequestHandler-HTTPThreadGroup-4 TRACE BneWebAppsContext:getValidContext() Start.
    5/3/12 9:55 AM AJPRequestHandler-HTTPThreadGroup-4 TRACE BneOracleWebAppsContext:getValidContext() Apps Version = 120
    5/3/12 9:55 AM AJPRequestHandler-HTTPThreadGroup-4 TRACE BneWebAppsContext:dumpCookies() === ALL COOKIES ===
    5/3/12 9:55 AM AJPRequestHandler-HTTPThreadGroup-4 TRACE BneWebAppsContext:dumpCookies() cookie[0] Name : JSESSIONID
    5/3/12 9:55 AM AJPRequestHandler-HTTPThreadGroup-4 TRACE BneWebAppsContext:dumpCookies() cookie[0] Domain : null
    5/3/12 9:55 AM AJPRequestHandler-HTTPThreadGroup-4 TRACE BneWebAppsContext:dumpCookies() cookie[0] Value : 0c056cddfd0d890e9ea9e344d9f43a5706b9652e5635717f2f5d11ce55a06c83.e3iKaNmNah4Ne3iSbhuPb30Mb40
    5/3/12 9:55 AM AJPRequestHandler-HTTPThreadGroup-4 TRACE BneWebAppsContext:dumpCookies() cookie[0] Path : null
    5/3/12 9:55 AM AJPRequestHandler-HTTPThreadGroup-4 TRACE BneWebAppsContext:dumpCookies() --------------------------------
    5/3/12 9:55 AM AJPRequestHandler-HTTPThreadGroup-4 TRACE BneWebAppsContext:dumpCookies() cookie[1] Name : oracle.uix
    5/3/12 9:55 AM AJPRequestHandler-HTTPThreadGroup-4 TRACE BneWebAppsContext:dumpCookies() cookie[1] Domain : null
    5/3/12 9:55 AM AJPRequestHandler-HTTPThreadGroup-4 TRACE BneWebAppsContext:dumpCookies() cookie[1] Value : 0^^GMT-7:00^p
    5/3/12 9:55 AM AJPRequestHandler-HTTPThreadGroup-4 TRACE BneWebAppsContext:dumpCookies() cookie[1] Path : null
    5/3/12 9:55 AM AJPRequestHandler-HTTPThreadGroup-4 TRACE BneWebAppsContext:dumpCookies() --------------------------------
    5/3/12 9:55 AM AJPRequestHandler-HTTPThreadGroup-4 TRACE BneWebAppsContext:dumpCookies() cookie[2] Name : treemenu1
    5/3/12 9:55 AM AJPRequestHandler-HTTPThreadGroup-4 TRACE BneWebAppsContext:dumpCookies() cookie[2] Domain : null
    5/3/12 9:55 AM AJPRequestHandler-HTTPThreadGroup-4 TRACE BneWebAppsContext:dumpCookies() cookie[2] Value : 0
    5/3/12 9:55 AM AJPRequestHandler-HTTPThreadGroup-4 TRACE BneWebAppsContext:dumpCookies() cookie[2] Path : null
    5/3/12 9:55 AM AJPRequestHandler-HTTPThreadGroup-4 TRACE BneWebAppsContext:dumpCookies() --------------------------------
    5/3/12 9:55 AM AJPRequestHandler-HTTPThreadGroup-4 TRACE BneWebAppsContext:dumpCookies() cookie[3] Name : OAT3
    5/3/12 9:55 AM AJPRequestHandler-HTTPThreadGroup-4 TRACE BneWebAppsContext:dumpCookies() cookie[3] Domain : null
    5/3/12 9:55 AM AJPRequestHandler-HTTPThreadGroup-4 TRACE BneWebAppsContext:dumpCookies() cookie[3] Value : ssR4thdVHNos106Al4qqy21OB8
    5/3/12 9:55 AM AJPRequestHandler-HTTPThreadGroup-4 TRACE BneWebAppsContext:dumpCookies() cookie[3] Path : null
    5/3/12 9:55 AM AJPRequestHandler-HTTPThreadGroup-4 TRACE BneWebAppsContext:dumpCookies() === DONE COOKIES ===
    5/3/12 9:55 AM AJPRequestHandler-HTTPThreadGroup-4 TRACE BneWebAppsContext:getValidContext() Start.
    5/3/12 9:55 AM AJPRequestHandler-HTTPThreadGroup-4 TRACE BneContext:getBneDbcFilename() Start.
    5/3/12 9:55 AM AJPRequestHandler-HTTPThreadGroup-4 TRACE BneContext:getBneDbcFilename() Done, filename = /local/apps/OAT3/inst/apps/OAT3_vienna/appl/fnd/12.0.0/secure/OAT3.dbc
    5/3/12 9:55 AM AJPRequestHandler-HTTPThreadGroup-4 TRACE BneOracleWebAppsContext:getValidContext() request is not null
    5/3/12 9:55 AM AJPRequestHandler-HTTPThreadGroup-4 TRACE BneWebAppsContext:setupContext() Session Ticket from bne:viewerticket = null
    5/3/12 9:55 AM AJPRequestHandler-HTTPThreadGroup-4 TRACE BneOracleWebAppsContext:setupContext() Cookie Session Ticket = ssR4thdVHNos106Al4qqy21OB8
    5/3/12 9:55 AM AJPRequestHandler-HTTPThreadGroup-4 TRACE BneOracleWebAppsContext:setupContext() appsCon = oracle.jdbc.driver.T4CConnection@c52af8
    5/3/12 9:55 AM AJPRequestHandler-HTTPThreadGroup-4 TRACE BneOracleWebAppsContext.setLoggedInUser(), request = com.evermind.server.http.AJPHttpServletRequest@1bcb230, newUser = null
    5/3/12 9:55 AM AJPRequestHandler-HTTPThreadGroup-4 TRACE BneOracleWebAppsContext.setLoggedInUser(), m_bneLoggedInUser = null
    5/3/12 9:55 AM AJPRequestHandler-HTTPThreadGroup-4 TRACE BneOracleWebAppsContext.getUserId() End, userId = 14629
    5/3/12 9:55 AM AJPRequestHandler-HTTPThreadGroup-4 TRACE BneOracleWebAppsContext.getUserId() End, userId = 14629
    5/3/12 9:55 AM AJPRequestHandler-HTTPThreadGroup-4 TRACE BneOracleWebAppsContext.setLoggedInUser(), set id, name, resp, session.
    5/3/12 9:55 AM AJPRequestHandler-HTTPThreadGroup-4 TRACE BneWebAppsContext:getValidContext() Start.
    5/3/12 9:55 AM AJPRequestHandler-HTTPThreadGroup-4 TRACE BneOracleWebAppsContext.setLoggedInUser(), set language via apps context.
    5/3/12 9:55 AM AJPRequestHandler-HTTPThreadGroup-4 TRACE BneUser.printToTrace() m_userID = 14629
    5/3/12 9:55 AM AJPRequestHandler-HTTPThreadGroup-4 TRACE BneUser.printToTrace() m_userName = RSREENIV
    5/3/12 9:55 AM AJPRequestHandler-HTTPThreadGroup-4 TRACE BneUser.printToTrace() m_userDesc = Rakesh Sreenivasa
    5/3/12 9:55 AM AJPRequestHandler-HTTPThreadGroup-4 TRACE BneUser.printToTrace() m_guestUser = null
    5/3/12 9:55 AM AJPRequestHandler-HTTPThreadGroup-4 TRACE BneUser.printToTrace() m_responsibilityId = 50286
    5/3/12 9:55 AM AJPRequestHandler-HTTPThreadGroup-4 TRACE BneUser.printToTrace() m_applicationId = 231
    5/3/12 9:55 AM AJPRequestHandler-HTTPThreadGroup-4 TRACE BneUser.printToTrace() m_sessionId = 254857769
    5/3/12 9:55 AM AJPRequestHandler-HTTPThreadGroup-4 TRACE BneUser.printToTrace() m_language = US
    5/3/12 9:55 AM AJPRequestHandler-HTTPThreadGroup-4 TRACE BneOracleWebAppsContext:setupContext() End.
    5/3/12 9:55 AM AJPRequestHandler-HTTPThreadGroup-4 TRACE BneServletUtils.setRequestEncoding(), ICX_CLIENT_IANA_ENCODING = US-ASCII
    5/3/12 9:55 AM AJPRequestHandler-HTTPThreadGroup-4 TRACE BneServletUtils.setRequestEncoding(), PageDecoder.setRequestCharacterEncoding to US-ASCII
    5/3/12 9:55 AM AJPRequestHandler-HTTPThreadGroup-4 TRACE BneOracleWebAppsContext.getLanguage(), set language via apps context.
    5/3/12 9:55 AM AJPRequestHandler-HTTPThreadGroup-4 TRACE BneMLSUtils.setLangOnThread from language parameter :US
    5/3/12 9:55 AM AJPRequestHandler-HTTPThreadGroup-4 TRACE BneBajaServlet.setLocaleContext() Start
    5/3/12 9:55 AM AJPRequestHandler-HTTPThreadGroup-4 TRACE BneWebAppsContext:getValidContext() Start.
    5/3/12 9:55 AM AJPRequestHandler-HTTPThreadGroup-4 TRACE BneOracleWebAppsContext:getLocale() ISO Language =EN
    5/3/12 9:55 AM AJPRequestHandler-HTTPThreadGroup-4 TRACE BneOracleWebAppsContext:getLocale() ISO Territory =US
    5/3/12 9:55 AM AJPRequestHandler-HTTPThreadGroup-4 TRACE BneBajaServlet.setLocaleContext decimalSeparator = .
    5/3/12 9:55 AM AJPRequestHandler-HTTPThreadGroup-4 TRACE BneBajaServlet.setLocaleContext groupingSeparator = ,
    5/3/12 9:55 AM AJPRequestHandler-HTTPThreadGroup-4 WARNING BneOracleWebAppsContext.getTimeZone CLIENT_TIMEZONE_ID has not been set
    5/3/12 9:55 AM AJPRequestHandler-HTTPThreadGroup-4 TRACE BneBajaServlet.setLocaleContext() Done.
    5/3/12 9:55 AM AJPRequestHandler-HTTPThreadGroup-4 TRACE BneWebAppsContext:getValidContext() Start.
    5/3/12 9:55 AM AJPRequestHandler-HTTPThreadGroup-4 TRACE BneOracleWebAppsContext.getUserId() End, userId = 14629
    5/3/12 9:55 AM AJPRequestHandler-HTTPThreadGroup-4 TRACE Profile: BNE_DISABLE = N
    5/3/12 9:55 AM AJPRequestHandler-HTTPThreadGroup-4 TRACE BneWebAppsContext:getValidContext() Start.
    5/3/12 9:55 AM AJPRequestHandler-HTTPThreadGroup-4 TRACE BneOracleWebAppsContext.getUserId() End, userId = 14629
    5/3/12 9:55 AM AJPRequestHandler-HTTPThreadGroup-4 TRACE Profile: FND_RESTRICT_INPUT = Y
    5/3/12 9:55 AM AJPRequestHandler-HTTPThreadGroup-4 TRACE BneApplicationService.handleRequest() oracle.apps.bne.webui.BneApplicationService@1d12802
    5/3/12 9:55 AM AJPRequestHandler-HTTPThreadGroup-4 TRACE BneApplicationService:loadPageHandle() page name to load = BneCreateDoc
    5/3/12 9:55 AM AJPRequestHandler-HTTPThreadGroup-4 TRACE BneApplicationFactory.createPageObject Start
    5/3/12 9:55 AM AJPRequestHandler-HTTPThreadGroup-4 TRACE BneApplicationFactory.loadApplicationObject Start
    5/3/12 9:55 AM AJPRequestHandler-HTTPThreadGroup-4 TRACE BneCreateDocPage.BneCreateDocPage Start.
    5/3/12 9:55 AM AJPRequestHandler-HTTPThreadGroup-4 TRACE BneCreateDocPage.BneCreateDocPage Start.
    5/3/12 9:55 AM AJPRequestHandler-HTTPThreadGroup-4 TRACE BneApplicationFactory.loadApplicationObject Start
    5/3/12 9:55 AM AJPRequestHandler-HTTPThreadGroup-4 TRACE BneApplicationFactory.createPageObject Done
    5/3/12 9:55 AM AJPRequestHandler-HTTPThreadGroup-4 TRACE BneOracleWebAppsContext:sessionHasRoleAssigned() start.
    5/3/12 9:55 AM AJPRequestHandler-HTTPThreadGroup-4 TRACE BneOracleWebAppsContext:sessionHasRoleAssigned() resp = 50286
    5/3/12 9:55 AM AJPRequestHandler-HTTPThreadGroup-4 TRACE BneBasePageController.handlePage()
    5/3/12 9:55 AM AJPRequestHandler-HTTPThreadGroup-4 TRACE BneBasePageController.createBody() start.
    5/3/12 9:55 AM AJPRequestHandler-HTTPThreadGroup-4 TRACE BneBasePageController.createBody() incomingEvent = goNext, callingPage = oracle.apps.bne.webui.pageflow.BneCreateDocPage1
    5/3/12 9:55 AM AJPRequestHandler-HTTPThreadGroup-4 TRACE BneBasePageBean:getBean() start.
    5/3/12 9:55 AM AJPRequestHandler-HTTPThreadGroup-4 TRACE BneBasePageBean:getBean() end.
    5/3/12 9:55 AM AJPRequestHandler-HTTPThreadGroup-4 TRACE BneBasePageController.processPageEvent() start.
    5/3/12 9:55 AM AJPRequestHandler-HTTPThreadGroup-4 TRACE BneUIMessages:clearAll() errors.size = 0 infos.size = 0 warnings.size = 0 confirms.size = 0
    5/3/12 9:55 AM AJPRequestHandler-HTTPThreadGroup-4 TRACE BneBasePageController:getPage() Start
    5/3/12 9:55 AM AJPRequestHandler-HTTPThreadGroup-4 TRACE BneBasePageController:getPage() Creating a page reference, for page = oracle.apps.bne.webui.pageflow.BneCreateDocPage1
    5/3/12 9:55 AM AJPRequestHandler-HTTPThreadGroup-4 TRACE BneBasePageController:getPage() class detail, name = oracle.apps.bne.webui.pageflow.BneCreateDocPage1
    5/3/12 9:55 AM AJPRequestHandler-HTTPThreadGroup-4 TRACE BneBasePageController:getPage() End
    5/3/12 9:55 AM AJPRequestHandler-HTTPThreadGroup-4 TRACE BneCreateDocPage1:processEvent()
    5/3/12 9:55 AM AJPRequestHandler-HTTPThreadGroup-4 TRACE BneCreateDocPage1:processEvent() event = PageEvent[name=goNext,bne:page=BneCreateDoc,bne.createdoc.savedsettings=Z Claims Invoice Load,bne:page:originator=oracle.apps.bne.webui.pageflow.BneCreateDocPage1,bne:pageSeq=2,source=,value=]
    5/3/12 9:55 AM AJPRequestHandler-HTTPThreadGroup-4 TRACE BneOracleWebAppsContext.getExtraJDBCConnection assigned connection oracle.jdbc.driver.T4CConnection@85968b
    5/3/12 9:55 AM AJPRequestHandler-HTTPThreadGroup-4 TRACE BneOracleWebAppsContext.getUserId() End, userId = 14629
    5/3/12 9:55 AM AJPRequestHandler-HTTPThreadGroup-4 TRACE BneCreateDocHolderBean.setIncomingFromUserSettings Start, settingValue = bne:viewer=BNE:EXCEL2010&bne:reporting=N&bne:integrator=SQLAP:ZEN_CLMS_INV_LOAD_XINTG&bne:layout=SQLAP:ZCLAIMSINVOICELOAD&bne:content=SQLAP:ZEN_CLMS_INV_LOAD_CNT1&bne:noreview=Y
    5/3/12 9:55 AM AJPRequestHandler-HTTPThreadGroup-4 TRACE BneCreateDocHolderBean.nicePut {}(bne:viewer,BNE:EXCEL2010)
    5/3/12 9:55 AM AJPRequestHandler-HTTPThreadGroup-4 TRACE BneCreateDocHolderBean.nicePut {bne:page=BneCreateDoc, bne:reporting=No}(bne:viewer,BNE:EXCEL2010)
    5/3/12 9:55 AM AJPRequestHandler-HTTPThreadGroup-4 TRACE BneCreateDocHolderBean.nicePut {bne:viewer=BNE:EXCEL2010}(bne:reporting,N)
    5/3/12 9:55 AM AJPRequestHandler-HTTPThreadGroup-4 TRACE BneCreateDocHolderBean.nicePut {bne:page=BneCreateDoc, bne:reporting=No, bne:viewer=BNE:EXCEL2010}(bne:reporting,N)
    5/3/12 9:55 AM AJPRequestHandler-HTTPThreadGroup-4 TRACE BneCreateDocHolderBean.nicePut {bne:reporting=N, bne:viewer=BNE:EXCEL2010}(bne:integrator,SQLAP:ZEN_CLMS_INV_LOAD_XINTG)
    5/3/12 9:55 AM AJPRequestHandler-HTTPThreadGroup-4 TRACE BneCreateDocHolderBean.nicePut {bne:page=BneCreateDoc, bne:reporting=N, bne:viewer=BNE:EXCEL2010}(bne:integrator,SQLAP:ZEN_CLMS_INV_LOAD_XINTG)
    5/3/12 9:55 AM AJPRequestHandler-HTTPThreadGroup-4 TRACE BneCreateDocHolderBean.nicePut {bne:reporting=N, bne:integrator=SQLAP:ZEN_CLMS_INV_LOAD_XINTG, bne:viewer=BNE:EXCEL2010}(bne:layout,SQLAP:ZCLAIMSINVOICELOAD)
    5/3/12 9:55 AM AJPRequestHandler-HTTPThreadGroup-4 TRACE BneCreateDocHolderBean.nicePut {bne:page=BneCreateDoc, bne:reporting=N, bne:integrator=SQLAP:ZEN_CLMS_INV_LOAD_XINTG, bne:viewer=BNE:EXCEL2010}(bne:layout,SQLAP:ZCLAIMSINVOICELOAD)
    5/3/12 9:55 AM AJPRequestHandler-HTTPThreadGroup-4 TRACE BneCreateDocHolderBean.nicePut {bne:reporting=N, bne:layout=SQLAP:ZCLAIMSINVOICELOAD, bne:integrator=SQLAP:ZEN_CLMS_INV_LOAD_XINTG, bne:viewer=BNE:EXCEL2010}(bne:content,SQLAP:ZEN_CLMS_INV_LOAD_CNT1)
    5/3/12 9:55 AM AJPRequestHandler-HTTPThreadGroup-4 TRACE BneCreateDocHolderBean.nicePut {bne:page=BneCreateDoc, bne:reporting=N, bne:layout=SQLAP:ZCLAIMSINVOICELOAD, bne:integrator=SQLAP:ZEN_CLMS_INV_LOAD_XINTG, bne:viewer=BNE:EXCEL2010}(bne:content,SQLAP:ZEN_CLMS_INV_LOAD_CNT1)
    5/3/12 9:55 AM AJPRequestHandler-HTTPThreadGroup-4 TRACE BneCreateDocHolderBean setViewerBean(): Viewer Reset to null. viewer id : null
    5/3/12 9:55 AM AJPRequestHandler-HTTPThreadGroup-4 TRACE BneCreateDocHolderBean.nicePut {bne:content=SQLAP:ZEN_CLMS_INV_LOAD_CNT1, bne:page=BneCreateDoc, bne:reporting=N, bne:layout=SQLAP:ZCLAIMSINVOICELOAD, bne:integrator=SQLAP:ZEN_CLMS_INV_LOAD_XINTG, bne:viewer=BNE:EXCEL2010}(bne:reporting,No)
    5/3/12 9:55 AM AJPRequestHandler-HTTPThreadGroup-4 TRACE BneCreateDocHolderBean.validatePassedParameters() start.
    5/3/12 9:55 AM AJPRequestHandler-HTTPThreadGroup-4 TRACE BneWebAppsContext:getValidContext() Start.
    5/3/12 9:55 AM AJPRequestHandler-HTTPThreadGroup-4 TRACE BneOracleWebAppsContext.getUserId() End, userId = 14629
    5/3/12 9:55 AM AJPRequestHandler-HTTPThreadGroup-4 TRACE Profile: BNE_ALLOW_NO_SECURITY_RULE = Y
    5/3/12 9:55 AM AJPRequestHandler-HTTPThreadGroup-4 TRACE BneWebAppsContext:getValidContext() Start.
    5/3/12 9:55 AM AJPRequestHandler-HTTPThreadGroup-4 TRACE BneOracleWebAppsContext.getUserId() End, userId = 14629
    5/3/12 9:55 AM AJPRequestHandler-HTTPThreadGroup-4 TRACE BneIntegrator.getIntegratorNamesBySearchString number of integrators stored:1
    5/3/12 9:55 AM AJPRequestHandler-HTTPThreadGroup-4 TRACE BneInterface.loadInterfaces() No keys specified in metadata - duplicate detection disabled
    5/3/12 9:55 AM AJPRequestHandler-HTTPThreadGroup-4 TRACE BneCreateDocHolderBean.nicePut {bne:content=SQLAP:ZEN_CLMS_INV_LOAD_CNT1, bne:page=BneCreateDoc, bne:reporting=No, bne:layout=SQLAP:ZCLAIMSINVOICELOAD, bne:integrator=SQLAP:ZEN_CLMS_INV_LOAD_XINTG, bne:viewer=BNE:EXCEL2010}(bne:integrator,200:ZEN_CLMS_INV_LOAD_XINTG)
    5/3/12 9:55 AM AJPRequestHandler-HTTPThreadGroup-4 TRACE BneCreateDocHolderBean.nicePut {bne:content=SQLAP:ZEN_CLMS_INV_LOAD_CNT1, bne:page=BneCreateDoc, bne:reporting=No, bne:layout=SQLAP:ZCLAIMSINVOICELOAD, bne:integrator=200:ZEN_CLMS_INV_LOAD_XINTG, bne:viewer=BNE:EXCEL2010}(bne:integrator,SQLAP:ZEN_CLMS_INV_LOAD_XINTG)
    5/3/12 9:55 AM AJPRequestHandler-HTTPThreadGroup-4 TRACE BneCreateDocHolderBean.validateReporting() bne:reporting = N
    5/3/12 9:55 AM AJPRequestHandler-HTTPThreadGroup-4 TRACE BneCreateDocHolderBean.nicePut {bne:content=SQLAP:ZEN_CLMS_INV_LOAD_CNT1, bne:page=BneCreateDoc, bne:reporting=No, bne:layout=SQLAP:ZCLAIMSINVOICELOAD, bne:integrator=SQLAP:ZEN_CLMS_INV_LOAD_XINTG, bne:viewer=BNE:EXCEL2010}(bne:reporting,Yes)
    5/3/12 9:55 AM AJPRequestHandler-HTTPThreadGroup-4 TRACE BneCreateDocHolderBean.nicePut {bne:content=SQLAP:ZEN_CLMS_INV_LOAD_CNT1, bne:page=BneCreateDoc, bne:reporting=Yes, bne:layout=SQLAP:ZCLAIMSINVOICELOAD, bne:integrator=SQLAP:ZEN_CLMS_INV_LOAD_XINTG, bne:viewer=BNE:EXCEL2010}(bne:reporting,N)
    5/3/12 9:55 AM AJPRequestHandler-HTTPThreadGroup-4 TRACE Enter BneViewerFactory.create
    5/3/12 9:55 AM AJPRequestHandler-HTTPThreadGroup-4 TRACE Enter BneViewerFactory.loadViewerObject
    5/3/12 9:55 AM AJPRequestHandler-HTTPThreadGroup-4 TRACE Enter BneViewerFactory.loadViewerObject ... load = oracle.apps.bne.integrator.document.BneOAExcelViewer
    5/3/12 9:55 AM AJPRequestHandler-HTTPThreadGroup-4 TRACE Enter BneViewerFactory.loadViewerObject ... load = oracle.apps.bne.integrator.document.BneOAExcelViewer - done.
    5/3/12 9:55 AM AJPRequestHandler-HTTPThreadGroup-4 TRACE Enter BneViewerFactory.loadViewerObject Done
    5/3/12 9:55 AM AJPRequestHandler-HTTPThreadGroup-4 TRACE Leave BneViewerFactory.create
    5/3/12 9:55 AM AJPRequestHandler-HTTPThreadGroup-4 TRACE BneCreateDocHolderBean.nicePut {bne:content=SQLAP:ZEN_CLMS_INV_LOAD_CNT1, bne:page=BneCreateDoc, bne:reporting=N, bne:layout=SQLAP:ZCLAIMSINVOICELOAD, bne:integrator=SQLAP:ZEN_CLMS_INV_LOAD_XINTG, bne:viewer=BNE:EXCEL2010}(bne:viewer,BNE:EXCEL2010)
    5/3/12 9:55 AM AJPRequestHandler-HTTPThreadGroup-4 TRACE BneOracleWebAppsContext.getUserId() End, userId = 14629
    5/3/12 9:55 AM AJPRequestHandler-HTTPThreadGroup-4 TRACE BneOracleWebAppsContext.getUserId() End, userId = 14629
    5/3/12 9:55 AM AJPRequestHandler-HTTPThreadGroup-4 TRACE BneCreateDocHolderBean.nicePut {bne:content=SQLAP:ZEN_CLMS_INV_LOAD_CNT1, bne:page=BneCreateDoc, bne:reporting=N, bne:layout=SQLAP:ZCLAIMSINVOICELOAD, bne:integrator=SQLAP:ZEN_CLMS_INV_LOAD_XINTG, bne:viewer=BNE:EXCEL2010}(bne:oraclemenu,true)
    5/3/12 9:55 AM AJPRequestHandler-HTTPThreadGroup-4 TRACE BneCreateDocHolderBean.nicePut {bne:oraclemenu=Y, bne:content=SQLAP:ZEN_CLMS_INV_LOAD_CNT1, bne:page=BneCreateDoc, bne:reporting=N, bne:layout=SQLAP:ZCLAIMSINVOICELOAD, bne:integrator=SQLAP:ZEN_CLMS_INV_LOAD_XINTG, bne:viewer=BNE:EXCEL2010}(bne:lovcontextmenu,true)
    5/3/12 9:55 AM AJPRequestHandler-HTTPThreadGroup-4 TRACE BneCreateDocHolderBean.nicePut {bne:oraclemenu=Y, bne:content=SQLAP:ZEN_CLMS_INV_LOAD_CNT1, bne:page=BneCreateDoc, bne:reporting=N, bne:layout=SQLAP:ZCLAIMSINVOICELOAD, bne:integrator=SQLAP:ZEN_CLMS_INV_LOAD_XINTG, bne:lovcontextmenu=Y, bne:viewer=BNE:EXCEL2010}(bne:layout,200:ZCLAIMSINVOICELOAD)
    5/3/12 9:55 AM AJPRequestHandler-HTTPThreadGroup-4 TRACE BneCreateDocHolderBean.nicePut {bne:oraclemenu=Y, bne:content=SQLAP:ZEN_CLMS_INV_LOAD_CNT1, bne:page=BneCreateDoc, bne:reporting=N, bne:layout=200:ZCLAIMSINVOICELOAD, bne:integrator=SQLAP:ZEN_CLMS_INV_LOAD_XINTG, bne:lovcontextmenu=Y, bne:viewer=BNE:EXCEL2010}(bne:layout,SQLAP:ZCLAIMSINVOICELOAD)
    5/3/12 9:55 AM AJPRequestHandler-HTTPThreadGroup-4 TRACE BneCreateDocHolderBean.nicePut {bne:oraclemenu=Y, bne:content=SQLAP:ZEN_CLMS_INV_LOAD_CNT1, bne:page=BneCreateDoc, bne:reporting=N, bne:layout=SQLAP:ZCLAIMSINVOICELOAD, bne:integrator=SQLAP:ZEN_CLMS_INV_LOAD_XINTG, bne:lovcontextmenu=Y, bne:viewer=BNE:EXCEL2010}(bne:content,200:ZEN_CLMS_INV_LOAD_CNT1)
    5/3/12 9:55 AM AJPRequestHandler-HTTPThreadGroup-4 TRACE BneCreateDocHolderBean.nicePut {bne:oraclemenu=Y, bne:content=200:ZEN_CLMS_INV_LOAD_CNT1, bne:page=BneCreateDoc, bne:reporting=N, bne:layout=SQLAP:ZCLAIMSINVOICELOAD, bne:integrator=SQLAP:ZEN_CLMS_INV_LOAD_XINTG, bne:lovcontextmenu=Y, bne:viewer=BNE:EXCEL2010}(bne:content,SQLAP:ZEN_CLMS_INV_LOAD_CNT1)
    5/3/12 9:55 AM AJPRequestHandler-HTTPThreadGroup-4 TRACE BneCreateDocHolderBean.validatePassedParameters() end.
    5/3/12 9:55 AM AJPRequestHandler-HTTPThreadGroup-4 TRACE BneBasePageController.processPageEvent() end.
    5/3/12 9:55 AM AJPRequestHandler-HTTPThreadGroup-4 TRACE BneCreateDocPage.renderPage Start.
    5/3/12 9:55 AM AJPRequestHandler-HTTPThreadGroup-4 TRACE BneCreateDocPage.renderNextPage() start.
    5/3/12 9:55 AM AJPRequestHandler-HTTPThreadGroup-4 TRACE BneCreateDocHolderBean.validatePassedParameters() start.
    5/3/12 9:55 AM AJPRequestHandler-HTTPThreadGroup-4 TRACE BneCreateDocHolderBean.nicePut {bne:oraclemenu=Y, bne:content=SQLAP:ZEN_CLMS_INV_LOAD_CNT1, bne:page=BneCreateDoc, bne:reporting=N, bne:layout=SQLAP:ZCLAIMSINVOICELOAD, bne:integrator=SQLAP:ZEN_CLMS_INV_LOAD_XINTG, bne:lovcontextmenu=Y, bne:viewer=BNE:EXCEL2010}(bne:integrator,null)
    5/3/12 9:55 AM AJPRequestHandler-HTTPThreadGroup-4 TRACE BneCreateDocHolderBean.nicePut {bne:oraclemenu=Y, bne:content=SQLAP:ZEN_CLMS_INV_LOAD_CNT1, bne:page=BneCreateDoc, bne:reporting=N, bne:layout=SQLAP:ZCLAIMSINVOICELOAD, bne:integrator=SQLAP:ZEN_CLMS_INV_LOAD_XINTG, bne:lovcontextmenu=Y, bne:viewer=BNE:EXCEL2010}(bne:reporting,null)
    5/3/12 9:55 AM AJPRequestHandler-HTTPThreadGroup-4 TRACE BneCreateDocHolderBean.nicePut {bne:oraclemenu=Y, bne:content=SQLAP:ZEN_CLMS_INV_LOAD_CNT1, bne:page=BneCreateDoc, bne:reporting=N, bne:layout=SQLAP:ZCLAIMSINVOICELOAD, bne:integrator=SQLAP:ZEN_CLMS_INV_LOAD_XINTG, bne:lovcontextmenu=Y, bne:viewer=BNE:EXCEL2010}(bne:viewer,null)
    5/3/12 9:55 AM AJPRequestHandler-HTTPThreadGroup-4 TRACE BneCreateDocHolderBean.nicePut {bne:oraclemenu=Y, bne:content=SQLAP:ZEN_CLMS_INV_LOAD_CNT1, bne:page=BneCreateDoc, bne:reporting=N, bne:layout=SQLAP:ZCLAIMSINVOICELOAD, bne:integrator=SQLAP:ZEN_CLMS_INV_LOAD_XINTG, bne:lovcontextmenu=Y, bne:viewer=BNE:EXCEL2010}(bne:oraclemenu,true)
    5/3/12 9:55 AM AJPRequestHandler-HTTPThreadGroup-4 TRACE BneCreateDocHolderBean.nicePut {bne:oraclemenu=Y, bne:content=SQLAP:ZEN_CLMS_INV_LOAD_CNT1, bne:page=BneCreateDoc, bne:reporting=N, bne:layout=SQLAP:ZCLAIMSINVOICELOAD, bne:integrator=SQLAP:ZEN_CLMS_INV_LOAD_XINTG, bne:lovcontextmenu=Y, bne:viewer=BNE:EXCEL2010}(bne:lovcontextmenu,true)
    5/3/12 9:55 AM AJPRequestHandler-HTTPThreadGroup-4 TRACE BneCreateDocHolderBean.nicePut {bne:oraclemenu=Y, bne:content=SQLAP:ZEN_CLMS_INV_LOAD_CNT1, bne:page=BneCreateDoc, bne:reporting=N, bne:layout=SQLAP:ZCLAIMSINVOICELOAD, bne:integrator=SQLAP:ZEN_CLMS_INV_LOAD_XINTG, bne:lovcontextmenu=Y, bne:viewer=BNE:EXCEL2010}(bne:layout,null)
    5/3/12 9:55 AM AJPRequestHandler-HTTPThreadGroup-4 TRACE BneCreateDocHolderBean.nicePut {bne:oraclemenu=Y, bne:content=SQLAP:ZEN_CLMS_INV_LOAD_CNT1, bne:page=BneCreateDoc, bne:reporting=N, bne:layout=SQLAP:ZCLAIMSINVOICELOAD, bne:integrator=SQLAP:ZEN_CLMS_INV_LOAD_XINTG, bne:lovcontextmenu=Y, bne:viewer=BNE:EXCEL2010}(bne:content,null)
    5/3/12 9:55 AM AJPRequestHandler-HTTPThreadGroup-4 TRACE BneCreateDocHolderBean.validatePassedParameters() end.
    5/3/12 9:55 AM AJPRequestHandler-HTTPThreadGroup-4 TRACE BneCreateDocPage.findNextPage() Start. callingPage = oracle.apps.bne.webui.pageflow.BneCreateDocPage1
    5/3/12 9:55 AM AJPRequestHandler-HTTPThreadGroup-4 TRACE BneOracleWebAppsContext.getUserId() End, userId = 14629
    5/3/12 9:55 AM AJPRequestHandler-HTTPThreadGroup-4 TRACE BneOracleWebAppsContext.getUserId() End, userId = 14629
    5/3/12 9:55 AM AJPRequestHandler-HTTPThreadGroup-4 TRACE BneCreateDocPage.findNextPage() Start. pageToReturn = oracle.apps.bne.webui.pageflow.BneCreateDocPage7
    5/3/12 9:55 AM AJPRequestHandler-HTTPThreadGroup-4 TRACE BneSecurity.checkAccess(): checking access for INTEGRATOR: 200:ZEN_CLMS_INV_LOAD_XINTG
    5/3/12 9:55 AM AJPRequestHandler-HTTPThreadGroup-4 TRACE BneSecurity.checkAccess(): a system administrator. return true
    5/3/12 9:55 AM AJPRequestHandler-HTTPThreadGroup-4 TRACE BneWebAppsContext:getValidContext() Start.
    5/3/12 9:55 AM AJPRequestHandler-HTTPThreadGroup-4 TRACE BneOracleWebAppsContext.getUserId() End, userId = 14629
    5/3/12 9:55 AM AJPRequestHandler-HTTPThreadGroup-4 TRACE Profile: BNE_NEW_SESSION =
    5/3/12 9:55 AM AJPRequestHandler-HTTPThreadGroup-4 TRACE BneOracleWebAppsContext.getUserId() End, us

  • How to Use AccessibleObjectFromWindow API in VBA to Get Excel Application Object from Excel Instance Window Handle

    I need to get the Excel.application object from a window handle using AccessibleObjectFromWindow. I can't seem to make the code work. First, I successfully search for the XLMAIN windows. Then, when I get a handle, I execute the AccessibleObjectFromWindow
    function. It seems to return a value of -2147467262 in all cases. Therefore, I believe that it is returning an error value. I can't figure out how to determine the meaning of this value.
    If it is an error value, I believe that one or more arguments are in error. My best guess at present is that the GUID argument is incorrect. I have tried two GUID values: {00020400-0000-0000-C000-000000000046} and {90140000-0016-0409-0000-0000000FF1CE}.
    I have seen both used in conjunction with OBJID_NATIVEOM. Neither one seems to work. I really would prefer not to use the second one as it has an Excel major and minor version number. I would hate to have to change this code, if a new minor version appeared.
    The attached code has been commented to show which parts have been shown to work and which not. I'm at my wits end and really need help.
    Thanks
    'This module is located in Access 2010, but this is an Excel question.
    Option Compare Database
    Option Explicit
    ' Module-Level Declarations
    'The GetDesktopWindow function and FindWindowEx function work just fine.
    Public Declare Function GetDesktopWindow Lib "user32" () As Long
    Public Declare Function FindWindowEx Lib "user32" Alias "FindWindowExA" _
    (ByVal hWnd1 As Long, _
    ByVal hWnd2 As Long, _
    ByVal lpsz1 As String, _
    ByVal lpsz2 As String) _
    As Long
    'I'm not getting the expected output from this function (see below)
    Private Declare Function AccessibleObjectFromWindow& Lib "oleacc.dll" _
    (ByVal hwnd&, _
    ByVal dwId&, _
    riid As GUID, _
    xlwb As Object)
    Type GUID
    lData1 As Long
    iData2 As Integer
    iData3 As Integer
    aBData4(0 To 7) As Byte
    End Type
    Function ExcelInstances() As Long
    ' Procedure-Level Declarations
    ' Value of OBJID_NATIVEOM verified by checking list of Windows API constants _
    on this site: http://www.lw-tech.com/q1/base.htm
    Const OBJID_NATIVEOM = &HFFFFFFF0
    Dim hWndDesk As Long 'Desktop window
    Dim hWndXL As Long 'Child window
    Dim objExcelApp As Object 'Final result wanted: Excel application object
    'Following variable (xlapp) to be set by AccessibleObjectFromWindow function
    Dim xlapp As Object
    Dim IDispatch As GUID 'GUID used in call to AccessibleObjectFrom Window function
    'Set up GUID to be used for all instances of Excel that are found
    Dim tmp1 As Variant 'Return value from AccessibleObjectFromWindow
    ' Executable Statements
    SetIDispatch IDispatch
    IDispatch = IDispatch
    'Get a handle to the desktop
    hWndDesk = GetDesktopWindow 'This seems to work
    Do
    'Get the next Excel window
    'The following statement seems to work. We are finding and counting _
    correctly all the instances of Excel. hWndXL is non-zero for each _
    instance of Excel
    hWndXL = FindWindowEx(GetDesktopWindow, hWndXL, "XLMAIN", vbNullString)
    'If we got one, increment the count
    If hWndXL > 0 Then
    'This works. We correctly count all _
    instances of Excel
    ExcelInstances = ExcelInstances + 1
    'Here is the problem. The following statement executes and returns a value of _
    -2147467262. xlapp, which is passed by reference to AccessibleObjectFromWindow, _
    is set to nothing. It should be set to the object for Excel.application. _
    I believe that this value is not an object. I tried to reference tmp1. in the _
    immediate window. There was no Intellisense.
    'I think that the function in returning an error value, but I can't figure _
    out what it is. I believe that AccessibleObjectFromWindow returns error _
    values, but I don't know where to find their values so I can interpret the _
    function's results.
    'As best I can tell, the hWndXL parameter is correct. It is the handle for _
    an instance of Excel. OBJID_NATIVEOM is set correctly (see constant declaration _
    above). xlapp is passed by reference as a non-initialized object variable, which _
    will be set by AccessiblObjectFromWindow. IDispatch may be the problem. It is set _
    as shown below in the procedure SetIDispatch(ByRef ID As GUID). This procedure _
    appears to work. I can see that IDispatch is set as I intended and correctly _
    passed to AccessibleObjectFromWindow.
    tmp1 = AccessibleObjectFromWindow(hWndXL, OBJID_NATIVEOM, IDispatch, xlapp)
    'Need to write code to test tmp1 for error. If none, then set objExcelApp = _
    object. Also, I exect xlapp to be set to Excel.application
    End If
    'Loop until we've found them all
    Loop Until hWndXL = 0
    End Function
    Private Sub SetIDispatch(ByRef ID As GUID)
    'Defines the IDispatch variable. The interface _
    ID is {90140000-0016-0409-0000-0000000FF1CE}.
    'NOT USING {00020400-0000-0000-C000-000000000046}, _
    which could be the problem
    '9 is release version - first version shipped (initial release)
    '0 is release type - retail/oem
    '14 is major version
    '0000 is minor version
    '0016 is product ID - MS Excel 2010
    '0409 is language identifier - English
    '0 is x86 or x64 - this is x86
    '000 reserved
    '0 is debug/ship
    '000000FF1CE is office family ID
    With ID
    .lData1 = &H90140000
    .iData2 = &H16
    .iData3 = &H409
    .aBData4(0) = &H0
    .aBData4(1) = &H0
    .aBData4(2) = &H0
    .aBData4(3) = &H0
    .aBData4(4) = &H0
    .aBData4(5) = &HF
    .aBData4(6) = &HF1
    .aBData4(7) = &HCE
    End With
    End Sub
    DaveInCalabasas

    I don't think you can return a reference to Excel's main window like that as you are attempting to do.
    Ref:
    http://msdn.microsoft.com/en-us/library/windows/desktop/dd317978(v=vs.85).aspx 
    It's relatively straightforward to return any workbook's window in any given instance, and in turn it's parent Excel app. Try the following and adapt as required (and include error handling) -
    Option Explicit
    Private Declare Function FindWindowEx Lib "User32" Alias "FindWindowExA" _
    (ByVal hWnd1 As Long, ByVal hWnd2 As Long, ByVal lpsz1 As String, _
    ByVal lpsz2 As String) As Long
    Private Declare Function IIDFromString Lib "ole32" _
    (ByVal lpsz As Long, ByRef lpiid As GUID) As Long
    Private Declare Function AccessibleObjectFromWindow Lib "oleacc" _
    (ByVal hWnd As Long, ByVal dwId As Long, ByRef riid As GUID, _
    ByRef ppvObject As Object) As Long
    Private Type GUID
    Data1 As Long
    Data2 As Integer
    Data3 As Integer
    Data4(7) As Byte
    End Type
    Private Const S_OK As Long = &H0
    Private Const IID_IDispatch As String = "{00020400-0000-0000-C000-000000000046}"
    Private Const OBJID_NATIVEOM As Long = &HFFFFFFF0
    Sub test()
    Dim i As Long
    Dim hWinXL As Long
    Dim xlApp As Object ' Excel.Application
    Dim wb As Object ' Excel.Workbook
    hWinXL = FindWindowEx(0&, 0&, "XLMAIN", vbNullString)
    While hWinXL > 0
    i = i + 1
    Debug.Print "Instance_" & i; hWinXL
    If GetXLapp(hWinXL, xlApp) Then
    For Each wb In xlApp.Workbooks
    Debug.Print , wb.Name
    Next
    End If
    hWinXL = FindWindowEx(0, hWinXL, "XLMAIN", vbNullString)
    Wend
    End Sub
    'Function GetXLapp(hWinXL As Long, xlApp As Excel.Application) As Boolean
    Function GetXLapp(hWinXL As Long, xlApp As Object) As Boolean
    Dim hWinDesk As Long, hWin7 As Long
    Dim obj As Object
    Dim iid As GUID
    Call IIDFromString(StrPtr(IID_IDispatch), iid)
    hWinDesk = FindWindowEx(hWinXL, 0&, "XLDESK", vbNullString)
    hWin7 = FindWindowEx(hWinDesk, 0&, "EXCEL7", vbNullString)
    If AccessibleObjectFromWindow(hWin7, OBJID_NATIVEOM, iid, obj) = S_OK Then
    Set xlApp = obj.Application
    GetXLapp = True
    End If
    End Function
    Note as written if an instance does not have any loaded workbooks a reference will not be returned (though a workbook can be added using DDE, but convoluted!)
    FWIW there are two other very different approaches to grab all running Excel instances though something along the lines of the above is simplest.
    Peter Thornton

Maybe you are looking for

  • Using my home Mac as a server

    I would like to put my pictures on the web so that certain clients can view their photos with password. I photograph weddings and would prefer to make html slide shows of their wedding pictures so that they can view them anywhere with any computer. I

  • HT2474 Please Remove The Dock or at least Give me The possibility Of totally Hiding it, thanks

    Is apple going to completely remove the dock or at least give us the possibility of removing it? I am thinking about an interface like Xubuntu, it is quite strange that Snow Leopard does not give us the same flexibility to achieve such a clean OS int

  • CLIENT_HOST-Command not working properly

    Hi everyone, i am having trouble on starting a SQL-PLUS-Prompt with the WEBUTIL_HOST-Package. I use the following code to start SQL-PLUS: DECLARE THE_COMMAND Varchar2(100); BEGIN THE_COMMAND := 'PLUS80.EXE scott/scott@database' WEBUTIL_HOST.Blocking(

  • I want to make a java chatroom

    i need help with the code. I got a url from my web hosting to a chatroom, but i can't figure out what the code should be. it is a blank page with no html code on it yet and here is the url provided to me for the chatroom. http://bloodhouse.org/cgi-sy

  • Links to developer documentations are dead

    Hi, Most of the links to the developer docs are dead, especially those to the Java, PHP and Dev guides are giving a 404 message. Can someone tell me how I can get these guides? Thanks, Tom