OLE Excel process still open

Hi,
I read a excel sheet via OLE...
everything works fine but after closing the sheet there is still a process of excel in the taskmanager, since this is not needed (anyway it doesn't matter if I kill it) I would like to know how to close this process together with the sheet
the excel process gets terminated after I close my report but this is not enough...
for the coding freaks in here:
Close the file
  CALL METHOD OF E_WORK 'close'.
Quit the file
  CALL METHOD OF E_APPL 'QUIT'.
  FREE OBJECT E_APPL.
btw: it does also not proceed the quit command correctly if I place an ABAP command after it...

Sebastian,
see oss-note 124658
and here:
http://www.abapforum.com/forum/viewtopic.php?t=693&highlight=free+excel
Andreas

Similar Messages

  • WebUtil: Excel-process remains open

    Win-XP, Web-Util, iAS 9.0.2 (Windows XP)
    Hello,
    If I use WebUtil and OLE2 to access Excel, everything works fine - accept for the poor performance (!). But at the end, an "Excel" process (as can be seen in the task manager) remains open, although I used
    CLIENT_OLE2.RELEASE_OBJ(application).
    Everytime, I invoke
    CLIENT_OLE2.CREATE_OBJ('Excel.Application')
    a new Excel-process is started, but never stopped.
    Does anybody have a idea to avoid this problem? Thank you for any answer!

    I just tried the following example onw Win 2000 using word and this works ok (cleaning up the process).
    DECLARE
    app CLIENT_OLE2.OBJ_TYPE;
    docs CLIENT_OLE2.OBJ_TYPE;
    doc CLIENT_OLE2.OBJ_TYPE;
    selection CLIENT_OLE2.OBJ_TYPE;
    args CLIENT_OLE2.LIST_TYPE;
    fname VARCHAR2(200) := 'c:\temp\example.doc';
    BEGIN
    -- set the filename
         IF :OLE_ASK_FILENAME = 'true' THEN
              fname := CLIENT_GET_FILE_NAME(null,null,null,null,OPEN_FILE,TRUE);
         END IF;
    -- create a new document
    app := CLIENT_OLE2.CREATE_OBJ('Word.Application');
    CLIENT_OLE2.SET_PROPERTY(app,'Visible',1);
    docs := CLIENT_OLE2.GET_OBJ_PROPERTY(app, 'Documents');
    doc := CLIENT_OLE2.INVOKE_OBJ(docs, 'add');
    selection := CLIENT_OLE2.GET_OBJ_PROPERTY(app, 'Selection');
    -- insert data into new document from long item
    CLIENT_OLE2.SET_PROPERTY(selection, 'Text', :long_item);
    -- save document as example.doc
    args := CLIENT_OLE2.CREATE_ARGLIST;
    CLIENT_OLE2.ADD_ARG(args, fname);
    CLIENT_OLE2.INVOKE(doc, 'SaveAs', args);
    CLIENT_OLE2.DESTROY_ARGLIST(args);
    -- close example.doc
    args := CLIENT_OLE2.CREATE_ARGLIST;
    CLIENT_OLE2.ADD_ARG(args, 0);
    CLIENT_OLE2.INVOKE(doc, 'Close', args);
    CLIENT_OLE2.DESTROY_ARGLIST(args);
    CLIENT_OLE2.RELEASE_OBJ(selection);
    CLIENT_OLE2.RELEASE_OBJ(doc);
    CLIENT_OLE2.RELEASE_OBJ(docs);
    -- exit MSWord
    CLIENT_OLE2.INVOKE(app,'Quit');
    END;
    Have you actually quit the application?
    Regards
    Grant Ronald
    Forms Product Management

  • On the 10g AS Excel process Issue

    I have created one report using OLE2 . It is working fine ,but report is generated and same report i want to
    generate it again it will raise an error "FIle is in used"
    it is because of "Excell process still running and it contains the handeler of that excel report"
    I need to solve this error .
    Because every time i m creating the same report with same name
    Plz do reply Buddy.
    Enjoy Coading
    == DHM ==

    You need to perform one additional step to see Discoverer portlets in Portal:
    - You need to register the Discoverer Portlet Provider with Oracle Portal
    - Detailed steps are available under the section "How to register Discoverer Portlet Provider with OracleAS Portal" of the "Oracle® Business Intelligence Discoverer Publishing Workbooks in Oracle Application Server Portal" doc, 10g Release 2 (10.1.2.0.0), Part No. B14465-01.
    - Caution: Be sure to follow the instructions carefully or else you may run into unexpected issues later on when publishing or viewing Discoverer portlets.
    Once you have successfully associated your Discoverer middle tier with Portal, Discoverer portlets will be available under the Porlet Staging Area section.
    Thanks
    Abhinav
    Oracle Business Intelligence Product Management
    BI on Oracle: http://www.oracle.com/bi/
    BI on OTN : http://www.oracle.com/technology/products/bi/
    Discoverer : http://www.oracle.com/technology/products/discoverer/
    BI Software : http://www.oracle.com/technology/software/products/ias/devuse.html
    Documentation: http://www.oracle.com/technology/documentation/appserver1012.html
    BI Samples : http://www.oracle.com/technology/products/bi/samples/
    Blog : http://oraclebi.blogspot.com/
    BI RSS Feeds: coming soon...

  • When I close Firefox, the windows closes normally, but firefox.exe still appears in Processes in Task Manager. I have to End Process to open Firefox again, and it goes to Restore Last Session page.

    When I close Firefox, the windows closes normally, but firefox.exe still appears in Processes in Task Manager. I have to End Process to open Firefox again, and it goes to Restore Last Session page.
    Quando eu fecho o Firefox, a janela fecha normalmente, mas o firefox.exe ainda aparece no Processos do Gerenciador de Tarefas. Eu tenho que Finalizar Tarefa pra abrir o Firefox de novo, e quando abre vai para a página de Restaurar Última Sessão.

    I have the same problem - every time I close firefox (using either the red x or by selecting file ---> exit) the program appears to close normally, but the firefox.exe *32 process continues to run. If I try to re-open firefox normally I get a message that the program is still running and I need to go into task manager and manually kill the process.
    I could also kill the process from the command prompt, but both of those methods are slow and annoying. This issue has only been occurring for the last 24 hours or so; to the best of my knowledge I haven't downloaded any new software or updated any plug-ins that would have caused a switch from firefox's normal awesomeness. Norton doesn't show any new viruses or other nastiness on my computer.
    I'm running 64 bit Windows 7 Home Premium edition.

  • How to know what ActiveX references are still open

    Okay, so I'm about the millionth person to post about this topic, but I feel like I know what I should be doing, but have hit a wall.  I have read through pretty much everything I could find in the forums about references and ActiveX.
    I am communicating with Excel via ActiveX, and everything works seemlessly, until I realized that if the user closes the Excel sheet (via an "exit" button on my FP), the "EXCEL.exe" process is still running.  I've read enough to know that this probably points to a reference that I have not closed.
    Problem is, I have poured over my code, and as far as I can tell, I have closed every reference, in the opposite order it was opened (as I read to do in a post earlier).
    Aside from casting references to int's to see what is still considered "active" (as I mentioned earlier, all the ones I can find are closed, so this doesn't help me), is there a way to determine which ActiveX references are still open?
    Even a way outside of LV?  A Microsoft utility even or ...well anything!  This is very annoying, and I know it should be quick and easy, I just have to know what is remaining open.
    Or, am I missing something else that might be keeping EXCEL.exe running?  (yes, I have an application quit and close the application reference)
    Thanks for any help

    Hi Will,
    As you said it yourself closing the same number of references as you open and using Application Quit should be enough to close down Excel.exe.
    Did you run your code in highlight execution to see how the behavior of your program changes when you hit the "Exit" button on your Front Panel?
    If you can post the minimum amount of code that reproduces the error, I will be more than happy to take a look at it.
    Best regards,
    Message Edited by Kalin T on 12-07-2006 03:11 PM
    Kalin T.
    National Instruments
    Attachments:
    activex_excel.jpg ‏16 KB

  • Excel Automation in C# - Excel process won´t quit

    Hi there,
    I´m using Excel automation with C#. When closing Excel, the Excel.exe process still remains in the Task Manager. I´ve tried all the topics that can be found, but Excel won´t quit. When I make Excel visible and close it myself, then the process will stop.
    But when I call the Quit() method, it keeps running.
    Here is my code:
    Excel.Application oExcel = new Excel.Application();
    oExcel.Visible = true;
    Excel.Workbooks oWorkbooks = oExcel.Workbooks;
    string Pfad = "C:\test.xlsx";
    Excel.Workbook oWorkbook = oWorkbooks.Open(Pfad);
    Excel.Worksheet oSheet = oWorkbook.Sheets[1];
    oSheet.Cells[1, 1] = "Test";
    oSheet.SaveAs("C:\test.xlsx");
    GC.Collect();
    GC.WaitForPendingFinalizers();
    Marshal.FinalReleaseComObject(oSheet);
    oWorkbook.Close();
    Marshal.FinalReleaseComObject(oWorkbook);
    oExcel.Workbooks.Close();
    Marshal.FinalReleaseComObject(oWorkbooks);
    oExcel.Application.Quit();
    Marshal.FinalReleaseComObject(oExcel);
    oExcel = null;
    Thanks for any help!

    Sorry I didn't catch the problem sooner.  No need to do any of the marshal stuff or the releases.  they are not necessary.  when you modify the workbook excel won't normally close without the user being prompted if they want to save changes. 
    So simply end you code like this
    If you don't want to save changes
    boolean savechanges = false;
    oWorkbook.Close(savechanges, Type.Missing, Type.Missing);
                    oWorkbook = null;
                    oExcel.Quit();                
                    oExcel
    = null;
    Or this if yo do want to save changes
    boolean savechanges = true;
    oWorkbook.Close(savechanges, Type.Missing, Type.Missing);
                    oWorkbook = null;
                    oExcel.Quit();                
                    oExcel
    = null;
    jdweng

  • Killing an excel process

    Hi!
    That's my first message here, sorry if I left something... I'm having some problems deleting an excel process one I have make some processing previously.
    After calling collect and WaitForPendingFinalizers methods and release all the excel objects created (worksheet, workbook and excelapp in that order) the excel process is still there.
    I have tried to kill the excel process and I could kill it but then I got a system message telling me that the outlook integration addon has failed so my guess is that the outlook integration addon is messing with some dll related to excel also.
    Have you got in this situation and solved it ?
    Thanks a lot !!!

    I have released the ComObjects (using the ReleaseComObject marshal method) and closed the excel connections before and after releasing all the objects opened, but to no avail, the excel process is still there...
    The problem is that each time it opens a new excel instance so it could be a great resources problem if the process is executed a few times.
    Right now I could not put the code used but I would try later.
    Here's the code...
    Finally
                'If Not xlApp Is Nothing Then xlApp.Quit()
                Dim processId As IntPtr
                GetWindowThreadProcessId(New IntPtr(xlApp.Hwnd), processId)
                'AccCommon.Functions.ReleaseComObject(xlSheet)
                'AccCommon.Functions.ReleaseComObject(xlWB)
                'AccCommon.Functions.ReleaseComObject(xlApp)
                GC.Collect()
                GC.WaitForPendingFinalizers()
                GC.Collect()
                GC.WaitForPendingFinalizers()
                RelasseExcelObject(chartRange)
                RelasseExcelObject(xlSheet)
                xlWB.Close(False, Type.Missing, Type.Missing)
                xlApp.Workbooks.Close()
                RelasseExcelObject(xlWB)
                xlApp.Application.Quit()
                xlApp.Quit()
                RelasseExcelObject(xlApp)
                chartRange = Nothing
                xlSheet = Nothing
                xlWB = Nothing
                xlApp = Nothing
                If (processId <> 0) Then
                    Dim excelProcess As Process = Process.GetProcessById(processId)
                    excelProcess.CloseMainWindow()
                    excelProcess.Refresh()
                    excelProcess.Kill()
                End If
            End Try

  • Exit Excel process after finish loading

    Hi ,
    my problem is how to exit the excel process after i import the excel file in forms 10g
    , the file closed successfuly but the process still in memory
    how can i kill this process after finish importing the excel file .

    Why are you programmatically opening an Excel sheet in C# instead of using the DataFlow task with an Excel input?
    Since your task is programmatically starting Excel via "new Microsoft.Office.Interop.Excel.Application();", it is your responsibility to stop it.
    Please see "Quit":
    http://msdn.microsoft.com/en-us/library/microsoft.office.interop.excel._application.quit(v=office.15).aspx

  • Excel doesn't open in portal

    Hi,
    by opening an excel file in the portal, there first comes a pop up window, where you can open or save the file. But when you choose the button "open", the excel file doesn't open anyway.
    When I navigate to the iView a second time, nothing happens - no pop up message and unfortunately no excel file...
    Does somebody know how to solve this problem?
    Thanks,
    Lydia

    Hi,
    thank you very much for your answers.
    Mahesh, your answer was very helpful for another problem we had. Because we wanted to display our documents embedded in the portal area. There was a setting to exactly do that.
    But our problem with the excel files is, that you can open it the first time, but when you want to open it a second time, nothing happens anymore. We found out, that the excel file is still open, although it is closed in the portal (you can see that in the task manager --> Processes). When we close it in the task manager, the excel file can be opened again without any errors.
    In fact of that, we don't have any macro problems.
    We also didn't generate any code. We are using an url iView to display the excel files from another sap r/3 system in portal.
    There you can generate an url for each file of the sap r/3 system and put it in the url iView. This works fine with every file type we have, but not with excel.
    Any other ideas to solve this problem?
    Regards,
    Lydia

  • Excel can not open

    I just bougth a macbook pro with mac osX and Danish microsoft office 2011 preinstalled.
    Now i realize that excel can not open. I have reinstalled the OSX and the Office package but this has not solved the problem. The strange thing is that it work on an other MacBook pro i bougth the same day.

    This is the error message
    Process:         Microsoft Excel [357]
    Path:            /Applications/Microsoft Office 2011/Microsoft Excel.app/Contents/MacOS/Microsoft Excel
    Identifier:      com.microsoft.Excel
    Version:         14.0.0 (14.0.0)
    Build Info:      Unknown-100825~0
    Code Type:       X86 (Native)
    Parent Process:  launchd [87]
    Date/Time:       2011-05-16 22:56:07.128 +0200
    OS Version:      Mac OS X 10.6.7 (10J4138)
    Report Version:  6
    Interval Since Last Report:          -20501 sec
    Crashes Since Last Report:           1
    Per-App Crashes Since Last Report:   1
    Anonymous UUID:                      95BE3A40-B6D1-48C5-9C63-076691571CD9
    Exception Type:  EXC_BREAKPOINT (SIGTRAP)
    Exception Codes: 0x0000000000000002, 0x0000000000000000
    Crashed Thread:  0
    Dyld Error Message:
      Symbol not found: __ZN3Art11ViewElement4DropEP11IDataObjectmRKNS_4View11HitTestInfoEPm
      Referenced from: /Applications/Microsoft Office 2011/Microsoft Excel.app/Contents/MacOS/Microsoft Excel
      Expected in: /Applications/Microsoft Office 2011/Microsoft Excel.app/Contents/MacOS/../../../Office/OfficeArt.framework/Versions/14/Office Art
    in /Applications/Microsoft Office 2011/Microsoft Excel.app/Contents/MacOS/Microsoft Excel
    Binary Images:
    0x3771000 -  0x4df7ff7 +com.microsoft.Excel 14.0.0 (14.0.0) <97320AEE-A1FE-D56E-C76A-17A208F7660B> /Applications/Microsoft Office 2011/Microsoft Excel.app/Contents/MacOS/Microsoft Excel
    0x5183000 -  0x519cff7 +com.microsoft.mbukernel_framework 14.1.0 (14.1.0) <A92FB57F-23C8-3928-54A7-1769839A3790> /Applications/Microsoft Office 2011/Office/mbukernel.framework/Versions/14/mbukernel
    0x51b3000 -  0x51f5fff +com.microsoft.ribbon 14.1.0 (14.1.0) <5ADC1AC8-68B6-F9FF-C3CB-AAC4515B5E79> /Applications/Microsoft Office 2011/Office/MBURibbon.framework/Versions/14/MBURibbon
    0x521a000 -  0x521dff7 +com.microsoft.mbunamedstrings 14.1.0 (14.1.0) <DC76AC0F-EB49-6F6E-FE2B-8025CD34511C> /Applications/Microsoft Office 2011/Office/mbunamedstrings.framework/Versions/14/mbunamedstrings
    0x5224000 -  0x5228ff7 +com.microsoft.frameworks.officewindowlocalizer 14.1.0 (14.1.0) <B2342BE6-022E-8664-CB22-324D5350DBF6> /Applications/Microsoft Office 2011/Office/OfficeWindowLocalizer.framework/Versions/14/OfficeWindowLocalizer
    0x522f000 -  0x52a0fe7 +com.microsoft.netlib 14.1.0 (14.1.0) <F92F2BBA-CA4F-9939-A62A-D992ECB3629F> /Applications/Microsoft Office 2011/Office/Netlib.framework/Versions/14/Netlib
    0x52b6000 -  0x54d4ff7 +com.microsoft.mcp 14.1.0 (14.1.0) <98419278-F21E-17DC-B2AD-A0D551ACD1F2> /Applications/Microsoft Office 2011/Office/MicrosoftComponentPlugin.framework/Versions/14/MicrosoftComponentPl ugin
    0x5593000 -  0x5cfcfff +com.microsoft.office_library 14.1.0 (14.1.0) <DBC2F3ED-8396-EC63-DF29-7B210F989FA8> /Applications/Microsoft Office 2011/Office/MicrosoftOffice.framework/Versions/14/MicrosoftOffice
    0x5e56000 -  0x5efbffb +com.microsoft.ole 14.1.0 (14.1.0) <7E409CD5-7F65-4C6B-18DC-04663216C2A8> /Applications/Microsoft Office 2011/Office/MicrosoftOLE.framework/Versions/14/MicrosoftOLE
    0x5f1f000 -  0x5fbeffb +com.microsoft.ole_automation 14.1.0 (14.1.0) <8F27F2EB-2C5F-570C-0482-DA8BE78ABDFB> /Applications/Microsoft Office 2011/Office/MicrosoftOLEAutomation.framework/Versions/14/MicrosoftOLEAutomation
    0x5fee000 -  0x6022fe3 +com.microsoft.urlmon 14.1.0 (14.1.0) <EF595E8E-4B30-7B09-4BE5-B4F0289063DE> /Applications/Microsoft Office 2011/Office/StdUrlMoniker.framework/Versions/14/StdUrlMoniker
    0x6033000 -  0x603ffeb +com.microsoft.merp 2.2.4 (2.2.4) <7DA12803-4984-ECF7-D74F-D50A6228F8F5> /Applications/Microsoft Office 2011/Office/merp.framework/Versions/14/merp
    0x604b000 -  0x6ed9fef +com.microsoft.officeart 14.1.0 (14.1.0) <55BCDCBF-4605-0D4C-2D61-9E3989E8F211> /Applications/Microsoft Office 2011/Office/OfficeArt.framework/Versions/14/OfficeArt
    0x7199000 -  0x71a3ff7 +com.microsoft.oleo 14.1.0 (14.1.0) <41CF906A-448E-1AAC-90D5-153C1EC3BFA2> /Applications/Microsoft Office 2011/Office/MicrosoftOleo.framework/Versions/14/MicrosoftOleo
    0x71ac000 -  0x7623ff3 +com.microsoft.chart 14.1.0 (14.1.0) <7250B005-7CE6-8497-5A06-B257894F5376> /Applications/Microsoft Office 2011/Office/MicrosoftChartPlugin.framework/Versions/14/MicrosoftChartPlugin
    0x7767000 -  0x777eff3 +com.microsoft.mathfont 14.1.0 (14.1.0) <7A7D72E4-C914-012B-3141-DF07D19F158D> /Applications/Microsoft Office 2011/Office/MicrosoftMathFont.framework/Versions/14/MicrosoftMathFont
    0x7784000 -  0x7978feb +com.microsoft.msxml_library 14.1.0 (14.1.0) <A235849C-127A-1FC6-3A0D-EAA9B90673FA> /Applications/Microsoft Office 2011/Office/MSXML.framework/Versions/14/MSXML
    0x79ea000 -  0x7a46ffb +com.microsoft.wlmuser 14.1.0 (14.1.0) <0A455AFF-228F-B324-15B7-FB1A67F42B91> /Applications/Microsoft Office 2011/Office/WLMUser.framework/Versions/14/WLMUser
    0x7a69000 -  0x7a95fef +com.microsoft.netlib 14.1.0 (14.1.0) <0AA761CA-6CD5-3930-6174-D94A301DDEAF> /Applications/Microsoft Office 2011/Office/WLMKernel.framework/Versions/14/WLMKernel
    0x7aab000 -  0x7ad5fff +com.microsoft.netlib 14.1.0 (14.1.0) <F3BB18DE-5B3C-EB85-9069-F119A61BF610> /Applications/Microsoft Office 2011/Office/WLMGraphicsDevice.framework/Versions/14/WLMGraphicsDevice
    0x7af2000 -  0x7b57fe7 +com.microsoft.mbuCloudServices_framework 14.1.0 (14.1.0) <05E030AD-57DC-DD46-5E31-B1C413F082F6> /Applications/Microsoft Office 2011/Office/MicrosoftCloudServices.framework/Versions/14/MicrosoftCloudServices
    0x7b79000 -  0x8709ffb +com.microsoft.gfx 14.1.0 (14.1.0) <76A4C518-F9FF-50C9-8253-01656FE745D9> /Applications/Microsoft Office 2011/Office/Gfx.framework/Versions/14/Gfx
    0x8781000 -  0x8b3efe7 +com.microsoft.igx 14.1.0 (14.1.0) <478749B9-E923-D954-9B3A-365302A6F411> /Applications/Microsoft Office 2011/Office/SmartArt.framework/Versions/14/SmartArt
    0x8c0b000 -  0x8c0fff7 +com.microsoft.mbustrings 14.1.0 (14.1.0) <F2251E2F-0B5A-914C-E830-51F5B810541A> /Applications/Microsoft Office 2011/Office/mbustrings.framework/Versions/14/mbustrings
    0x8c17000 -  0x8c19ff7 +com.microsoft.mbulocale 14.1.0 (14.1.0) <555E12BE-D76E-8EFB-165E-2DC362D49681> /Applications/Microsoft Office 2011/Office/mbulocale.framework/Versions/14/mbulocale
    0x8c22000 -  0x8c79fe7 +com.microsoft.uniscribe_library 14.1.0 (14.1.0) <BF871A84-0FA6-2CBF-1FAC-E0CFE2DA00F3> /Applications/Microsoft Office 2011/Office/Uniscribe.framework/Versions/14/Uniscribe
    0x8c95000 -  0x8cb6feb +com.microsoft.wlmstrings 14.1.0 (14.1.0) <5CAEC907-DA67-65FC-E2FB-EE119F3D41C6> /Applications/Microsoft Office 2011/Office/wlmstrings.framework/Versions/14/wlmstrings
    0x8cc5000 -  0x8d07fef +com.microsoft.mviewlib 14.1.0 (14.1.0) <3FE84F3B-B232-274D-C1E1-EA7EE8F52A4F> /Applications/Microsoft Office 2011/Office/MViewLib.framework/Versions/14/MViewLib
    0x8d30000 -  0x8d86feb +com.microsoft.CocoaUI 14.1.0 (14.1.0) <B56F485C-1FFC-A77A-96A3-F62A1A988B6C> /Applications/Microsoft Office 2011/Office/CocoaUI.framework/Versions/14/CocoaUI
    0x8db7000 -  0x8ef5feb +com.microsoft.MicrosoftOfficeDRM 14.1.0 (14.1.0) <DE3EE972-B5E1-6CFD-33C9-755CA19A6742> /Applications/Microsoft Office 2011/Office/MicrosoftOfficeDRM.framework/Versions/14/MicrosoftOfficeDRM
    0x8f25000 -  0x8f4dffb +com.microsoft.setupui 14.1.0 (14.1.0) <F1495E00-195D-DC67-429E-AB11BE5BE075> /Applications/Microsoft Office 2011/Office/MicrosoftSetupUI.framework/Versions/14/MicrosoftSetupUI
    0x8f74000 -  0x8fbeffb +com.microsoft.menulib 14.1.0 (14.1.0) <07AF697B-7F11-744A-C452-B69F19CFC2CE> /Applications/Microsoft Office 2011/Office/MicrosoftMenuLibrary.framework/Versions/14/MicrosoftMenuLibrary
    0x8fd8000 -  0x8fe6ff7 +com.microsoft.mbuinstrument_framework 14.1.0 (14.1.0) <DC3290CE-5369-BA47-ED7A-9D9FB5E841F2> /Applications/Microsoft Office 2011/Office/mbuinstrument.framework/Versions/14/mbuinstrument
    0x8ff0000 -  0x90eefef +com.microsoft.metex 14.1.0 (14.1.0) <FF46EB2C-E80A-B3C4-421F-A78EC6B3D9B6> /Applications/Microsoft Office 2011/Office/MetEx.framework/Versions/14/MetEx
    0x913b000 -  0x913cff7 +com.microsoft.CocoaTooltipParser 14.1.0 (14.1.0) <5C746B44-C2AF-3FF0-8A25-D07F78F9B440> /Applications/Microsoft Office 2011/Office/CocoaTooltipParser.framework/Versions/14/CocoaTooltipParser
    0x9141000 -  0x91f6fe7  libcrypto.0.9.7.dylib 0.9.7 (compatibility 0.9.7) <78B6EEB6-50D9-4479-D1A5-B4C381A07E4D> /usr/lib/libcrypto.0.9.7.dylib
    0x923c000 -  0x92a4ff3 +com.microsoft.docex 14.1.0 (14.1.0) <9E9F57A4-6E99-E50F-D19F-4F5D448303D1> /Applications/Microsoft Office 2011/Office/DocEx.framework/Versions/14/DocEx
    0x92b5000 -  0x92cdfe3 +com.microsoft.frameworks.winhttp 14.1.0 (14.1.0) <4E1CBC4A-52D1-9FCD-B16C-7F7585DE9345> /Applications/Microsoft Office 2011/Office/WinHttp.framework/Versions/14/WinHttp
    0x92db000 -  0x92ebff7 +com.microsoft.frameworks.wincrypto 14.1.0 (14.1.0) <794E0BB0-8EAF-1AD4-AF4B-9DF64AD40F16> /Applications/Microsoft Office 2011/Office/WinCrypto.framework/Versions/14/WinCrypto
    0x92f5000 -  0x9300ff7 +com.microsoft.credui_framework 14.1.0 (14.1.0) <8BAEBF84-66F0-B744-82AE-499932C7C4CA> /Applications/Microsoft Office 2011/Office/MicrosoftCredui.framework/Versions/14/MicrosoftCredui
    0x9309000 -  0x9309fff +com.microsoft.ddcs_framework 14.1.0 (14.1.0) <A4BAE060-C245-22B0-8877-2036B81C2CF7> /Applications/Microsoft Office 2011/Office/MicrosoftDDCS.framework/Versions/14/MicrosoftDDCS
    0x930d000 -  0x9317fff +com.microsoft.frameworks.winapiui 14.1.0 (14.1.0) <F581A05C-E9CD-BEF4-A187-AF474E8B0B5F> /Applications/Microsoft Office 2011/Office/WinAPIUI.framework/Versions/14/WinAPIUI
    0x9323000 -  0x9358ff3 +com.microsoft.msgrlibclient 8.0.0 (8.0.0) <7ADCF95E-0CCF-0D4D-C38D-4E72564A76D2> /Applications/Microsoft Office 2011/Office/MsgrLibClient.framework/Versions/14/MsgrLibClient
    0x937d000 -  0x97ccff7 +com.microsoft.csi_framework 14.1.0 (14.1.0) <9F580981-7B68-DCF4-E024-BCFA631DF9A2> /Applications/Microsoft Office 2011/Office/MicrosoftCSI.framework/Versions/14/MicrosoftCSI
    0x98a1000 -  0x98b9ff3 +com.microsoft.threadpool 14.1.0 (14.1.0) <77F22DDC-FF98-2457-6939-0C29B9B03C59> /Applications/Microsoft Office 2011/Office/ThreadPool.framework/Versions/14/ThreadPool
    0x98c9000 -  0x98d5fe3 +com.microsoft.fba_framework 14.1.0 (14.1.0) <7F6BEFF7-31D8-DC9C-D6E6-FE0AB815E423> /Applications/Microsoft Office 2011/Office/MicrosoftFBA.framework/Versions/14/MicrosoftFBA
    0x98e1000 -  0x9b3effb +com.microsoft.XPG 14.1.0 (14.1.0) <E1000B89-DD4A-4F69-E3FF-B0EC451A2992> /Applications/Microsoft Office 2011/Office/XPG.framework/Versions/14/XPG
    0x9b6f000 -  0x9b75fe7 +com.microsoft.mbufs 14.1.0 (14.1.0) <2353A45F-0CC6-6699-B929-452CDE4394CD> /Applications/Microsoft Office 2011/Office/MicrosoftFS.framework/Versions/14/MicrosoftFS
    0x9b7e000 -  0x9c99ff7 +mbupgx.dylib 14.0.0 (compatibility 14.0.0) <26E50DFC-0EFA-76F0-FB25-1EB3655DDEE3> /Applications/Microsoft Office 2011/Office/MicrosoftSetupUI.framework/Libraries/mbupgx.dylib
    0x9cb4000 -  0x9cc3ff3 +com.microsoft.wlmfile_framework 14.1.0 (14.1.0) <54BC1C06-C705-72FA-47ED-B2B34EC55D7A> /Applications/Microsoft Office 2011/Office/MicrosoftWlmFile.framework/Versions/14/MicrosoftWlmFile
    0x9ccb000 -  0x9d6dfe7 +com.microsoft.webservices_framework 14.1.0 (14.1.0) <B7CE254B-D9FD-C374-2C96-5E5A77560816> /Applications/Microsoft Office 2011/Office/MicrosoftWebServices.framework/Versions/14/MicrosoftWebServices
    0x9d86000 -  0x9ed1fef +com.microsoft.Oimg 14.1.0 (14.1.0) <C823A41C-EC4F-3A79-D580-63C20FCC1CB3> /Applications/Microsoft Office 2011/Office/Oimg.framework/Versions/14/Oimg
    0x9f60000 -  0xa0a7ff7 +com.microsoft.msls3 14.1.0 (14.1.0) <33B6C5DC-9F43-FCB0-21B8-E3A06FDCA255> /Applications/Microsoft Office 2011/Office/MicrosoftPTLS.framework/Versions/14/MicrosoftPTLS
    0x8fe00000 - 0x8fe4162b  dyld 132.1 (???) <283EE026-C0FE-1FF9-DB81-BFB155793157> /usr/lib/dyld
    0x90054000 - 0x9007affb  com.apple.DictionaryServices 1.1.2 (1.1.2) <5A8D5D84-06EB-F9B5-BA0A-A87A0A2C0035> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Diction aryServices.framework/Versions/A/DictionaryServices
    0x9007b000 - 0x902e0feb  com.apple.security 6.1.2 (55002) <7F00A51B-F22A-0EBC-A321-923472D686BD> /System/Library/Frameworks/Security.framework/Versions/A/Security
    0x904be000 - 0x90540ffb  SecurityFoundation ??? (???) <C3126552-3B6B-C96A-E7E7-5876AA35D19D> /System/Library/Frameworks/SecurityFoundation.framework/Versions/A/SecurityFoun dation
    0x90541000 - 0x90544ffb  com.apple.help 1.3.1 (41) <6A5AD406-9D8E-5BAC-51E1-E09AB9A6D159> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Help.framewor k/Versions/A/Help
    0x90545000 - 0x9056dff7  libxslt.1.dylib 3.24.0 (compatibility 3.0.0) <12FBE8CB-CC8E-FE8A-7362-C852625C5AAF> /usr/lib/libxslt.1.dylib
    0x909a6000 - 0x90a54ff3  com.apple.ink.framework 1.3.3 (107) <E215794C-F3E9-C067-8882-9054796DDA8A> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Ink.framework /Versions/A/Ink
    0x90a55000 - 0x90a57ff7  libRadiance.dylib ??? (???) <F333B039-FF8D-6CE1-C758-213523EFF928> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libRadiance.dylib
    0x90ad3000 - 0x90ad3ff7  com.apple.Carbon 150 (152) <CB9860F2-3246-4E16-49DF-2EDE81A5551F> /System/Library/Frameworks/Carbon.framework/Versions/A/Carbon
    0x90ad4000 - 0x90ad4ff7  liblangid.dylib ??? (???) <FCC37057-CDD7-2AF1-21AF-52A06C4048FF> /usr/lib/liblangid.dylib
    0x90ad5000 - 0x90d00ff3  com.apple.QuartzComposer 4.2 ({156.29}) <E20EE5C6-7FAD-08E4-3DB5-8E5AAE224C6F> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/QuartzCompose r.framework/Versions/A/QuartzComposer
    0x90d2c000 - 0x90d37ff7  libGL.dylib ??? (???) <4425B9AA-B494-A336-EABB-6BBC9FF4EC4F> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGL.dylib
    0x90d38000 - 0x90e18fe7  com.apple.vImage 4.1 (4.1) <AEF800AE-65DA-5E79-5B01-165AF51BAAF6> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vImage.fr amework/Versions/A/vImage
    0x90e19000 - 0x90e69ff7  com.apple.framework.familycontrols 2.0.2 (2020) <592738FA-B093-279A-8D4E-3F76A21E2912> /System/Library/PrivateFrameworks/FamilyControls.framework/Versions/A/FamilyCon trols
    0x90e75000 - 0x90f79fe7  libcrypto.0.9.8.dylib 0.9.8 (compatibility 0.9.8) <C2C11723-A56D-C790-4E4D-BE6C82CC1099> /usr/lib/libcrypto.0.9.8.dylib
    0x90f7a000 - 0x90f7eff7  libGIF.dylib ??? (???) <24DF7EB7-913B-DF67-C98E-63A987359A16> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libGIF.dylib
    0x90f7f000 - 0x90f7fff7  com.apple.CoreServices 44 (44) <B9461120-F72A-D28F-D0CF-5647958BD3F9> /System/Library/Frameworks/CoreServices.framework/Versions/A/CoreServices
    0x90f80000 - 0x90fc0ff3  com.apple.securityinterface 4.0.1 (40418) <A57E6534-6731-864D-114C-78BF958F6F4D> /System/Library/Frameworks/SecurityInterface.framework/Versions/A/SecurityInter face
    0x91093000 - 0x91140fe7  libobjc.A.dylib 227.0.0 (compatibility 1.0.0) <F237B77D-75A3-7240-931D-4735B91D365F> /usr/lib/libobjc.A.dylib
    0x91141000 - 0x91145ff7  libGFXShared.dylib ??? (???) <8498CFA9-E0A3-7A74-FCF6-EC23E1C07083> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGFXShared.d ylib
    0x91146000 - 0x9119efe7  com.apple.datadetectorscore 2.0 (80.7) <A0156615-4F46-90B3-0807-0AE5F0939DB1> /System/Library/PrivateFrameworks/DataDetectorsCore.framework/Versions/A/DataDe tectorsCore
    0x9119f000 - 0x912cbffb  com.apple.MediaToolbox 0.484.33 (484.33) <E9B67234-768A-07C8-0B09-67C26AED9B67> /System/Library/PrivateFrameworks/MediaToolbox.framework/Versions/A/MediaToolbo x
    0x912cc000 - 0x912e8fe3  com.apple.openscripting 1.3.1 (???) <0E6B81D1-C1BD-1B5F-836F-256E6701B5DE> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/OpenScripting .framework/Versions/A/OpenScripting
    0x912e9000 - 0x915e2fef  com.apple.QuickTime 7.6.6 (1772) <9ADC7B34-ED10-9F8F-EC52-22DA2417DFBB> /System/Library/Frameworks/QuickTime.framework/Versions/A/QuickTime
    0x915e3000 - 0x915fbff7  com.apple.CFOpenDirectory 10.6 (10.6) <6D726EA4-67D2-E534-13A3-E3767BA59786> /System/Library/Frameworks/OpenDirectory.framework/Versions/A/Frameworks/CFOpen Directory.framework/Versions/A/CFOpenDirectory
    0x915fc000 - 0x9186ffe7  com.apple.Foundation 6.6.6 (751.53) <CBEA97E4-811D-CBCF-63A0-B43D5C45A90D> /System/Library/Frameworks/Foundation.framework/Versions/C/Foundation
    0x91870000 - 0x9193bfef  com.apple.CoreServices.OSServices 359 (359) <1EBCB6E1-C23A-D21A-0FDE-B3763DCCF790> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/OSServi ces.framework/Versions/A/OSServices
    0x9193c000 - 0x9197aff7  com.apple.QuickLookFramework 2.3 (327.6) <FCA83173-6DBF-615C-699A-529A7FD821ED> /System/Library/Frameworks/QuickLook.framework/Versions/A/QuickLook
    0x919b2000 - 0x919d3fe7  com.apple.opencl 12.3.6 (12.3.6) <B774CF2D-C067-DFFE-3EE6-90A036E36E06> /System/Library/Frameworks/OpenCL.framework/Versions/A/OpenCL
    0x91aff000 - 0x91affff7  com.apple.Accelerate.vecLib 3.6 (vecLib 3.6) <ABF97DA4-3BDF-6FFD-6239-B023CA1F7974> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/vecLib
    0x91b03000 - 0x91b2aff7  com.apple.quartzfilters 1.6.0 (1.6.0) <F45520B0-6B27-CD57-54B1-203FE32120DA> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/QuartzFilters .framework/Versions/A/QuartzFilters
    0x91b2b000 - 0x91b62fe7  libssl.0.9.8.dylib 0.9.8 (compatibility 0.9.8) <8AF8C02A-9B51-D4CC-BAAA-B420210478FE> /usr/lib/libssl.0.9.8.dylib
    0x91b63000 - 0x9201effb  com.apple.VideoToolbox 0.484.33 (484.33) <AD2BBB4E-B2EA-F64B-CA86-AD143596BF76> /System/Library/PrivateFrameworks/VideoToolbox.framework/Versions/A/VideoToolbo x
    0x9201f000 - 0x9202dfe7  libz.1.dylib 1.2.3 (compatibility 1.0.0) <E1B922F4-23DC-467E-631F-7E1B9C9F51CB> /usr/lib/libz.1.dylib
    0x92035000 - 0x92072ff7  com.apple.CoreMedia 0.484.33 (484.33) <6BA86EF4-75C3-44C7-E8D0-CFED153E09E7> /System/Library/PrivateFrameworks/CoreMedia.framework/Versions/A/CoreMedia
    0x92073000 - 0x92862557  com.apple.CoreGraphics 1.545.0 (???) <2E0455F5-A2DC-4AC2-B19A-3335FD8A2B1D> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/CoreGraphics
    0x92896000 - 0x928c6ff7  com.apple.MeshKit 1.1 (49.2) <464BD81C-9970-FBF5-507F-3EEBD020A967> /System/Library/PrivateFrameworks/MeshKit.framework/Versions/A/MeshKit
    0x928c7000 - 0x928ffff7  com.apple.LDAPFramework 2.0 (120.1) <FDBA63D6-E765-407A-AD1F-858116AECE8C> /System/Library/Frameworks/LDAP.framework/Versions/A/LDAP
    0x92900000 - 0x929aafe7  com.apple.CFNetwork 454.11.12 (454.11.12) <F637DBD0-CA3F-F536-6ABF-FA8B16A44DBA> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CFNetwo rk.framework/Versions/A/CFNetwork
    0x929ab000 - 0x929dcff7  libGLImage.dylib ??? (???) <314E14A3-AA04-0586-20D2-F0209B8BDF1C> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLImage.dyl ib
    0x93a2b000 - 0x93aa2ff3  com.apple.backup.framework 1.2.2 (1.2.2) <EAD97F26-D3B1-F618-A84C-CF689860C2AF> /System/Library/PrivateFrameworks/Backup.framework/Versions/A/Backup
    0x93aa3000 - 0x93aa4ff7  com.apple.TrustEvaluationAgent 1.1 (1) <06484720-AB50-6FD9-B5BF-05F5A640C9E5> /System/Library/PrivateFrameworks/TrustEvaluationAgent.framework/Versions/A/Tru stEvaluationAgent
    0x93aa5000 - 0x93bb4fe7  com.apple.WebKit 6533.21 (6533.21.1) <4FBCE2F9-84EB-302C-FD1F-DAD2422A219E> /System/Library/Frameworks/WebKit.framework/Versions/A/WebKit
    0x93bb5000 - 0x93bbdff7  com.apple.DisplayServicesFW 2.3.3 (289) <277007DC-4C27-2B9D-A64E-6C662BAA1C84> /System/Library/PrivateFrameworks/DisplayServices.framework/Versions/A/DisplayS ervices
    0x93bbe000 - 0x93bbeff7  com.apple.Cocoa 6.6 (???) <5A785062-1ABB-2A54-BAAC-8FEF95275E05> /System/Library/Frameworks/Cocoa.framework/Versions/A/Cocoa
    0x93bbf000 - 0x93d02fef  com.apple.QTKit 7.6.6 (1772) <CD589E90-BD4D-FAEE-CC21-22CB13620E0F> /System/Library/Frameworks/QTKit.framework/Versions/A/QTKit
    0x93d03000 - 0x93d0fff7  libkxld.dylib ??? (???) <4088783A-C805-4191-0E77-4D949B48F49D> /usr/lib/system/libkxld.dylib
    0x93dd2000 - 0x93ddcffb  com.apple.speech.recognition.framework 3.11.1 (3.11.1) <90C38107-AEE7-AE55-5C51-28D129B19BCD> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SpeechRecogni tion.framework/Versions/A/SpeechRecognition
    0x93dfe000 - 0x93dfeff7  com.apple.vecLib 3.6 (vecLib 3.6) <FF4DC8B6-0AB0-DEE8-ADA8-7B57645A1F36> /System/Library/Frameworks/vecLib.framework/Versions/A/vecLib
    0x93dff000 - 0x93dffff7  com.apple.Accelerate 1.6 (Accelerate 1.6) <3891A689-4F38-FACD-38B2-4BF937DE30CF> /System/Library/Frameworks/Accelerate.framework/Versions/A/Accelerate
    0x93e00000 - 0x93e92fe7  com.apple.print.framework.PrintCore 6.3 (312.7) <EE9ED7BE-7D97-B759-C063-1E4B7DBD3775> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ PrintCore.framework/Versions/A/PrintCore
    0x93e93000 - 0x93f49ffb  libFontParser.dylib ??? (???) <D85C1840-0FA8-27A2-54B7-FF336099EBC0> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/Resources/libFontParser.dylib
    0x94244000 - 0x94258ffb  com.apple.speech.synthesis.framework 3.10.35 (3.10.35) <9F5CE4F7-D05C-8C14-4B76-E43D07A8A680> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ SpeechSynthesis.framework/Versions/A/SpeechSynthesis
    0x9425c000 - 0x94672ff7  libBLAS.dylib 219.0.0 (compatibility 1.0.0) <9D89FCB3-24C9-8FCF-DB49-27B184AC3222> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libBLAS.dylib
    0x947f8000 - 0x94806ff7  com.apple.opengl 1.6.13 (1.6.13) <3E7B0FAC-B5DF-A87F-CD3F-2A053B033155> /System/Library/Frameworks/OpenGL.framework/Versions/A/OpenGL
    0x94820000 - 0x94823ff7  libCoreVMClient.dylib ??? (???) <E5E756D0-FC65-227B-DC92-10874062FF5D> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libCoreVMClien t.dylib
    0x94824000 - 0x94838fe7  libbsm.0.dylib ??? (???) <B328FA0A-899C-4FC4-F2AC-2FDC08819CD2> /usr/lib/libbsm.0.dylib
    0x94839000 - 0x94880ffb  com.apple.CoreMediaIOServices 140.0 (1493) <C00F5249-713F-A8F3-F9EB-121F6AF5FB08> /System/Library/PrivateFrameworks/CoreMediaIOServices.framework/Versions/A/Core MediaIOServices
    0x9492b000 - 0x9496bff7  com.apple.ImageCaptureCore 1.0.4 (1.0.4) <511AD34B-AFE7-946B-8DD7-159122B2C64E> /System/Library/Frameworks/ImageCaptureCore.framework/Versions/A/ImageCaptureCo re
    0x949a0000 - 0x94b1bfe7  com.apple.CoreFoundation 6.6.4 (550.42) <BA29C5CE-77DB-87DB-5B74-9EEFF5265681> /System/Library/Frameworks/CoreFoundation.framework/Versions/A/CoreFoundation
    0x94bf8000 - 0x94bf9ff7  com.apple.MonitorPanelFramework 1.3.0 (1.3.0) <1DD14B2E-E466-1A45-5CF7-947766F0ECD9> /System/Library/PrivateFrameworks/MonitorPanel.framework/Versions/A/MonitorPane l
    0x94bfa000 - 0x94c4bff7  com.apple.HIServices 1.8.2 (???) <BBE23110-368B-EE45-9D1D-D61473BF2078> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ HIServices.framework/Versions/A/HIServices
    0x94c4c000 - 0x94cc7fff  com.apple.AppleVAFramework 4.10.25 (4.10.25) <C38DA93D-1DB6-761E-9F8F-659CB57D9D7C> /System/Library/PrivateFrameworks/AppleVA.framework/Versions/A/AppleVA
    0x94cc8000 - 0x94d2cfff  com.apple.htmlrendering 72 (1.1.4) <0D22B190-513B-7FF6-39FC-9D336285DE08> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HTMLRendering .framework/Versions/A/HTMLRendering
    0x94d73000 - 0x94da6ff7  com.apple.AE 496.4 (496.4) <23F0DB1F-2856-0091-80AE-BDEF9A4F1731> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/AE.fram ework/Versions/A/AE
    0x94da7000 - 0x94f61feb  com.apple.ImageIO.framework 3.0.4 (3.0.4) <40F9474B-8819-CDF7-A4E2-8963E723ED8C> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/ImageIO
    0x94f62000 - 0x94f64ff7  com.apple.securityhi 4.0 (36638) <EC36A223-0B54-FB80-7F6A-90FB0A1AA746> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SecurityHI.fr amework/Versions/A/SecurityHI
    0x94f65000 - 0x94fdeff7  com.apple.PDFKit 2.5.1 (2.5.1) <4C374867-71B8-B202-ADDA-9985B4379470> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/PDFKit.framew ork/Versions/A/PDFKit
    0x94fdf000 - 0x95022ff7  com.apple.NavigationServices 3.5.4 (182) <FE19D51B-233A-69EC-9E36-B89D0EA438C1> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/NavigationSer vices.framework/Versions/A/NavigationServices
    0x9502a000 - 0x950c7fe3  com.apple.LaunchServices 362.2 (362.2) <16E9C194-A145-5BD0-2A8B-8E610AE1169E> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/LaunchS ervices.framework/Versions/A/LaunchServices
    0x950c8000 - 0x95433ff7  com.apple.QuartzCore 1.6.3 (227.36) <7844CA24-7A00-EB86-9631-0461DE4FF46E> /System/Library/Frameworks/QuartzCore.framework/Versions/A/QuartzCore
    0x95ab0000 - 0x95ab6fe7  com.apple.CommerceCore 1.0 (9) <DC6B8176-5526-581F-A977-5A6D20FDAA09> /System/Library/PrivateFrameworks/CommerceKit.framework/Versions/A/Frameworks/C ommerceCore.framework/Versions/A/CommerceCore
    0x95b0c000 - 0x95c8efe7  libicucore.A.dylib 40.0.0 (compatibility 1.0.0) <3F00D378-803C-5011-6A29-4461F06AFD44> /usr/lib/libicucore.A.dylib
    0x95c8f000 - 0x95cccff7  com.apple.SystemConfiguration 1.10.5 (1.10.2) <B2B2A68A-81D9-CE93-2B77-FC0DA6F43F4A> /System/Library/Frameworks/SystemConfiguration.framework/Versions/A/SystemConfi guration
    0x95ccd000 - 0x95ce2fff  com.apple.ImageCapture 6.0.2 (6.0.2) <88A621FB-8462-2010-22A5-55D2848E4CB3> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/ImageCapture. framework/Versions/A/ImageCapture
    0x95e92000 - 0x95f93fe7  libxml2.2.dylib 10.3.0 (compatibility 10.0.0) <E1A44C67-FA6C-0188-F46F-EA14CEE557BB> /usr/lib/libxml2.2.dylib
    0x96041000 - 0x960bbfff  com.apple.audio.CoreAudio 3.2.6 (3.2.6) <38147344-843F-A52F-9FE5-9A3FDF044024> /System/Library/Frameworks/CoreAudio.framework/Versions/A/CoreAudio
    0x960e3000 - 0x96b36ff7  com.apple.WebCore 6533.21 (6533.21.1) <09CE6602-4DB5-6E93-8593-4E1C57CB202F> /System/Library/Frameworks/WebKit.framework/Versions/A/Frameworks/WebCore.frame work/Versions/A/WebCore
    0x96b45000 - 0x96c47fef  com.apple.MeshKitIO 1.1 (49.2) <EC52D0C5-5291-441D-F137-8E4DD60F0E25> /System/Library/PrivateFrameworks/MeshKit.framework/Versions/A/Frameworks/MeshK itIO.framework/Versions/A/MeshKitIO
    0x96c57000 - 0x96c5bff7  IOSurface ??? (???) <A74AF792-125B-AD8A-4472-EA8F22E7C91B> /System/Library/Frameworks/IOSurface.framework/Versions/A/IOSurface
    0x96c5c000 - 0x96c63ff3  com.apple.print.framework.Print 6.1 (237.1) <726A7F31-8C27-8403-0016-71E022EDC14C> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Print.framewo rk/Versions/A/Print
    0x96c64000 - 0x96cd3ff7  libvMisc.dylib 268.0.1 (compatibility 1.0.0) <B3DEACA1-9375-CF8F-0898-AA2C5F8159DC> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libvMisc.dylib
    0x96cd4000 - 0x96ff4ff3  com.apple.CoreServices.CarbonCore 861.34 (861.34) <88A96F0F-C8A6-BB10-70AE-B9C30E15EEAA> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CarbonC ore.framework/Versions/A/CarbonCore
    0x96ff5000 - 0x97017fef  com.apple.DirectoryService.Framework 3.6 (621.11) <401E67B3-96DF-287B-2892-210C3A2EE9A6> /System/Library/Frameworks/DirectoryService.framework/Versions/A/DirectoryServi ce
    0x97018000 - 0x9706eff7  com.apple.MeshKitRuntime 1.1 (49.2) <4B41E225-69AC-6EFA-190E-DC6A4BD8109E> /System/Library/PrivateFrameworks/MeshKit.framework/Versions/A/Frameworks/MeshK itRuntime.framework/Versions/A/MeshKitRuntime
    0x9706f000 - 0x97216ff7  libSystem.B.dylib 125.2.10 (compatibility 1.0.0) <E9242C9C-0EE8-0658-F002-D05DA4164F0F> /usr/lib/libSystem.B.dylib
    0x97217000 - 0x973f9fff  com.apple.imageKit 2.0.3 (1.0) <BE53BBDF-F144-78AC-DCBC-40E847D5A25F> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/ImageKit.fram ework/Versions/A/ImageKit
    0x973fa000 - 0x974d4ffb  com.apple.DesktopServices 1.5.10 (1.5.10) <CF69F8CA-DC47-EF8E-AD79-04D589B7D116> /System/Library/PrivateFrameworks/DesktopServicesPriv.framework/Versions/A/Desk topServicesPriv
    0x974d5000 - 0x976dcfeb  com.apple.AddressBook.framework 5.0.4 (883) <DAC9BD84-85CA-BE07-6874-43829E3BE702> /System/Library/Frameworks/AddressBook.framework/Versions/A/AddressBook
    0x976dd000 - 0x97747fe7  libstdc++.6.dylib 7.9.0 (compatibility 7.0.0) <411D87F4-B7E1-44EB-F201-F8B4F9227213> /usr/lib/libstdc++.6.dylib
    0x97748000 - 0x977a5ff7  com.apple.framework.IOKit 2.0 (???) <4389DF74-E070-C787-4EC1-7754B5AE19B3> /System/Library/Frameworks/IOKit.framework/Versions/A/IOKit
    0x977a6000 - 0x977c6fe7  libresolv.9.dylib 41.0.0 (compatibility 1.0.0) <584B2B30-DC65-6930-F59F-C49FD5604B67> /usr/lib/libresolv.9.dylib
    0x977da000 - 0x978e6ff7  libGLProgrammability.dylib ??? (???) <D8A31B5B-26F7-7AB6-F4F4-D720384947E2> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLProgramma bility.dylib
    0x97943000 - 0x97967ff7  libJPEG.dylib ??? (???) <B54ACF14-A32D-C90D-D086-5CE54CFC29B5> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libJPEG.dylib
    0x97968000 - 0x97975ff7  com.apple.NetFS 3.2.2 (3.2.2) <0A53CD10-DBC7-2BE8-34F7-354BE201F6FB> /System/Library/Frameworks/NetFS.framework/Versions/A/NetFS
    0x97976000 - 0x979b9ff7  libGLU.dylib ??? (???) <0CF0BB97-62AA-6A63-7FF9-F06E4F42176C> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLU.dylib
    0x97a29000 - 0x97a39ff7  libsasl2.2.dylib 3.15.0 (compatibility 3.0.0) <E276514D-394B-2FDD-6264-07A444AA6A4E> /usr/lib/libsasl2.2.dylib
    0x97a3a000 - 0x97a59ff7  com.apple.CoreVideo 1.6.2 (45.6) <F9E52A13-E181-D302-3B0E-0799ED6D6130> /System/Library/Frameworks/CoreVideo.framework/Versions/A/CoreVideo
    0x97ae8000 - 0x97ae9ff7  com.apple.audio.units.AudioUnit 1.6.6 (1.6.6) <E49F6AB1-941E-5DA8-575F-D816A449624B> /System/Library/Frameworks/AudioUnit.framework/Versions/A/AudioUnit
    0x97aea000 - 0x97af4fe7  com.apple.audio.SoundManager 3.9.3 (3.9.3) <DE0E0EF6-8190-3F65-6BDD-5AC9D8A025D6> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/CarbonSound.f ramework/Versions/A/CarbonSound
    0x97b05000 - 0x97d03ff3  com.apple.JavaScriptCore 6533.20 (6533.20.20) <C97A479C-FDF9-3F19-2EE0-80288257C477> /System/Library/Frameworks/JavaScriptCore.framework/Versions/A/JavaScriptCore
    0x97d04000 - 0x97d0afff  com.apple.CommonPanels 1.2.4 (91) <CE92759E-865E-8A3B-1488-ECD497E4074D> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/CommonPanels. framework/Versions/A/CommonPanels
    0x97d87000 - 0x97dcbfe7  com.apple.Metadata 10.6.3 (507.15) <D26C3B8E-5B33-FAF9-CF70-1088B22783AF> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Metadat a.framework/Versions/A/Metadata
    0x97ff0000 - 0x9804afe7  com.apple.CorePDF 1.3 (1.3) <3293C017-8294-402E-79C7-AA728A7B9535> /System/Library/PrivateFrameworks/CorePDF.framework/Versions/A/CorePDF
    0x9804b000 - 0x9892bff7  com.apple.AppKit 6.6.7 (1038.35) <8070FE1F-1B86-F58C-441F-FF8629F5061D> /System/Library/Frameworks/AppKit.framework/Versions/C/AppKit
    0x9892c000 - 0x98a68ff7  com.apple.audio.toolbox.AudioToolbox 1.6.6 (1.6.6) <F4E5167C-E184-8D2D-082B-0B3EB751F707> /System/Library/Frameworks/AudioToolbox.framework/Versions/A/AudioToolbox
    0x98a74000 - 0x98d98fef  com.apple.HIToolbox 1.6.5 (???) <F21289A3-A00E-0BC3-66F1-7557862CE7EB> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HIToolbox.fra mework/Versions/A/HIToolbox
    0x98d99000 - 0x991ceff7  libLAPACK.dylib 219.0.0 (compatibility 1.0.0) <4D2F47EF-BD32-1E3C-6A0A-438896ADE2BE> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libLAPACK.dylib
    0x991cf000 - 0x991d8ff7  com.apple.DiskArbitration 2.3.1 (2.3.1) <AAE0185D-4A47-1833-27A3-03FDF734A3BA> /System/Library/Frameworks/DiskArbitration.framework/Versions/A/DiskArbitration
    0x991d9000 - 0x99292fe7  libsqlite3.dylib 9.6.0 (compatibility 9.0.0) <03186216-0A12-4AA9-D7BA-3E3551A1195C> /usr/lib/libsqlite3.dylib
    0x99293000 - 0x9929eff7  com.apple.CrashReporterSupport 10.6.7 (258) <FE4FBB43-95B6-1BBF-DECD-A90BB5B8BF45> /System/Library/PrivateFrameworks/CrashReporterSupport.framework/Versions/A/Cra shReporterSupport
    0x9929f000 - 0x992a4ff7  com.apple.OpenDirectory 10.6 (10.6) <7E8AFE74-1FA9-7B35-A0E3-545959A9CA73> /System/Library/Frameworks/OpenDirectory.framework/Versions/A/OpenDirectory
    0x992a5000 - 0x99313ff7  com.apple.QuickLookUIFramework 2.3 (327.6) <0A8CF0E7-9ED7-31F2-B6CC-7EE5A5F2EEC9> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/QuickLookUI.f ramework/Versions/A/QuickLookUI
    0x99324000 - 0x99452fe7  com.apple.CoreData 102.1 (251) <0C2636F3-CCB4-5ED9-1D3E-5AE36BE57071> /System/Library/Frameworks/CoreData.framework/Versions/A/CoreData
    0x99461000 - 0x99472ff7  com.apple.LangAnalysis 1.6.6 (1.6.6) <B59157A1-8796-CE8F-2508-EB96F093F6A7> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ LangAnalysis.framework/Versions/A/LangAnalysis
    0x99479000 - 0x994bdff3  com.apple.coreui 2 (114) <1A3C3B7F-3837-6477-3114-47F6BFD56CB2> /System/Library/PrivateFrameworks/CoreUI.framework/Versions/A/CoreUI
    0x994be000 - 0x99504ff7  libauto.dylib ??? (???) <7CB1AB76-50A2-8E56-66E4-CF51CA75B177> /usr/lib/libauto.dylib
    0x99505000 - 0x99515ff7  com.apple.DSObjCWrappers.Framework 10.6 (134) <95DC4010-ECC4-3A75-5DEE-11BB2AE895EE> /System/Library/PrivateFrameworks/DSObjCWrappers.framework/Versions/A/DSObjCWra ppers
    0x99516000 - 0x9951dff7  com.apple.agl 3.0.12 (AGL-3.0.12) <2F55EF92-4D25-56FD-8623-A3231F32F49C> /System/Library/Frameworks/AGL.framework/Versions/A/AGL
    0x9961f000 - 0x9961fff7  com.apple.ApplicationServices 38 (38) <EAF1BC8C-4FD4-4300-B8F7-4B24E49125E2> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Application Services
    0x99620000 - 0x99620ff7  com.apple.quartzframework 1.5 (1.5) <7DD4EBF1-60C4-9329-08EF-6E59731D9430> /System/Library/Frameworks/Quartz.framework/Versions/A/Quartz
    0x99621000 - 0x9966afe7  libTIFF.dylib ??? (???) <883E22E0-2D17-14F4-0B7D-69025BA7EFD8> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libTIFF.dylib
    0x996ac000 - 0x996e5ff7  libcups.2.dylib 2.8.0 (compatibility 2.0.0) <A618C135-8463-B2C4-C3E5-16DD58E0E389> /usr/lib/libcups.2.dylib
    0x996f6000 - 0x99757fe7  com.apple.CoreText 3.151.8 (???) <940ECF78-8BC2-B74E-F815-FDFFB3C550C2> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreText.framework/Versions/A/CoreText
    0x997da000 - 0x99827feb  com.apple.DirectoryService.PasswordServerFramework 6.1 (6.1) <9E35835E-BC33-F8EC-8F3B-84D51DEBDB16> /System/Library/PrivateFrameworks/PasswordServer.framework/Versions/A/PasswordS erver
    0x99828000 - 0x998c0fe7  edu.mit.Kerberos 6.5.11 (6.5.11) <88CA2CC8-9005-E017-6D61-5809C3CE5FC6> /System/Library/Frameworks/Kerberos.framework/Versions/A/Kerberos
    0x99908000 - 0x999c4fff  com.apple.ColorSync 4.6.6 (4.6.6) <8FB2E63C-FA84-1CFD-15ED-F9FEC7A019A6> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ColorSync.framework/Versions/A/ColorSync
    0x999c5000 - 0x99a45feb  com.apple.SearchKit 1.3.0 (1.3.0) <7AE32A31-2B8E-E271-C03A-7A0F7BAFC85C> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/SearchK it.framework/Versions/A/SearchKit
    0x99a46000 - 0x99a49fe7  libmathCommon.A.dylib 315.0.0 (compatibility 1.0.0) <1622A54F-1A98-2CBE-B6A4-2122981A500E> /usr/lib/system/libmathCommon.A.dylib
    0x99b8d000 - 0x99ba8ff7  libPng.dylib ??? (???) <ED4DF104-C0A1-6614-7CEE-DA0937196DD3> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libPng.dylib
    0x99ba9000 - 0x99c44ff7  com.apple.ApplicationServices.ATS 275.15.1 (???) <6AFD74A0-3A75-1362-E1EC-FC85EE3F68B2> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/ATS
    0x99c45000 - 0x99cedffb  com.apple.QD 3.36 (???) <5A93B258-3853-636F-DB26-223642DA2779> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ QD.framework/Versions/A/QD
    0x99f08000 - 0x99f4aff7  libvDSP.dylib 268.0.1 (compatibility 1.0.0) <1AE34B00-8A62-1E51-935F-BB3F0E4BE50F> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libvDSP.dylib
    0x9a000000 - 0x9a012ff7  com.apple.MultitouchSupport.framework 207.11 (207.11) <6329EE2D-725B-D1E5-D613-EB3A9CCF498F> /System/Library/PrivateFrameworks/MultitouchSupport.framework/Versions/A/Multit ouchSupport
    0xffff0000 - 0xffff1fff  libSystem.B.dylib ??? (???) <E9242C9C-0EE8-0658-F002-D05DA4164F0F> /usr/lib/libSystem.B.dylib
    Model: MacBookPro8,1, BootROM MBP81.0047.B0E, 2 processors, Intel Core i5, 2.3 GHz, 4 GB, SMC 1.68f96
    Graphics: Intel HD Graphics 3000, Intel HD Graphics 3000, Built-In, 384 MB
    Memory Module: global_name
    AirPort: spairport_wireless_card_type_airport_extreme (0x14E4, 0xD6), Broadcom BCM43xx 1.0 5.100.198.104.3)
    Bluetooth: Version 2.4.5f1, 2 service, 12 devices, 1 incoming serial ports
    Network Service: AirPort, AirPort, en1
    Serial ATA Device: TOSHIBA MK5065GSXF, 465,76 GB
    Serial ATA Device: HL-DT-ST DVDRW  GS31N
    USB Device: FaceTime HD Camera (Built-in), 0x05ac  (Apple Inc.), 0x8509, 0xfa200000 / 3
    USB Device: Hub, 0x0424  (SMSC), 0x2513, 0xfa100000 / 2
    USB Device: Apple Internal Keyboard / Trackpad, 0x05ac  (Apple Inc.), 0x0246, 0xfa120000 / 5
    USB Device: BRCM2070 Hub, 0x0a5c  (Broadcom Corp.), 0x4500, 0xfa110000 / 4
    USB Device: Bluetooth USB Host Controller, 0x05ac  (Apple Inc.), 0x821a, 0xfa113000 / 7
    USB Device: Hub, 0x0424  (SMSC), 0x2513, 0xfd100000 / 2
    USB Device: IR Receiver, 0x05ac  (Apple Inc.), 0x8242, 0xfd110000 / 3

  • Excel 2008 wont open excel files from at WHS network share.

    hi all
    i have a strange problem here, i own a mac mini the 2.53ghz model bought a month ago, and a macbook (the white model) also bought a month ago, both running all the latest software updates, and office 2008 for mac, with all the latest updates
    on the mac mini, i can´t open any excel documents that are stored on a shared folder on my windows home server, it just says
    excel cannot open this file the file might have been damaged or modified from its original format
    but when i try to open the same document on the macbook, it opens just fine?
    i have tried to remove office 2008 and reinstall it on the mac mini, but that didnt help, and the strange thing is if i move the excel files, from my windows home server, to another windows home server, it opens just fine on the mac mini
    i then suspected that it was the WHS that was ****** up, and deleted the account on the WHS where the folders were stored, rebooted the whs, and added the account again, but with the same result, the mac mini wont open the excel files, it will open word files, from the same folder.
    and the macbook will still open both excel and word files, from the same folder?
    i´m really confused now, and cant seem to pinpoint the error, and hope that someone can give me some pointers of where to look?
    sincerely
    Carsten Larsen
    Denmark

    You're pobably better off posting your question on Microsoft's own forums for their Mac products, as it's their software you're having issue with:
    http://www.officeformac.com/productforums

  • W/zoteroinstalledwedo a window,open() followed by a window.close() in tha window. Zotero remains and the window is still open. How do I close the window with zotero present in FF w/o disabling zotero?

    the js function to window.open() is in pageAA on a tab.
    We click the form or link to open the popup to run a video.
    We have a close button on the popup window.
    When that is clicked the window.close() js is executed on that page leaving Zotero present and the popup still open.
    We've tried using close() window.close() name.window.close() and
    all fail the same way.
    Short of disabling Zotero is there a way to close the popup in FF and any other addons with one shot?

    Thank's but still no fix.
    In safe mode everything works.
    Without Zotero - everything works.
    When the popup is loaded with Zotero, the tab shows a constant "Loading" with the circular in process icon.
    The Zotero icon shows to the left of the tab.
    If I right click on Zotero and close it, the close() js works properly
    Is there a way to do a window.open() with:
    A. no tabs -or-
    B. block all add on's -or-
    C. to kill an add on
    before doing the close()?

  • Delivery document is still open even already invoiced

    Good day! Could anyone help me on this?
    Here is the scenario:
    A new delivery document was created based in sales order. The delivery undergoes to approval procedure and then approved.
    Upon posting of the delivery doc and after past few days, sales return was requested. So, sales return was processed and successfully posted based in that delivery doc, but later that day another sales return was requested and did same procedure (successful).
    Two sales return was created based in that delivery doc and both SR were 'closed' while the delivery doc is still open, now to close that DR an invoice doc is required. Invoice was made base again in that DR and successfully posted. Expectedly, the DR should close but apparently it doesn't close. Why is that? Or did I miss something that would close that DR?
    Thanks in advance!

    Hi Nagesh,
    Yes your right, all marketing docs undergone with approval procedure are all saved as Draft until it was approved by the approver and then posted by the originator and that is the only time DR or any marketing docs should be called as official/posted transaction.
    Going back to my scenario, what I mentioned was approved and posted meaning the transaction was officially saved and undergone with the normal module flow SO->DR->SR->SI.
    And my concern was focused on why DR is still open even already invoiced.
    Correct me if I'm wrong, DR will still remain 'Open' only if the item total qty was not yet invoiced. For example:
    DR1              QTY            Amount
    Item 1             10              100
    SI
    Item 1              8                80
    Thanks,
    Rhod

  • ICR process for Open item recon.(003) - Report Display issue

    Hi All,
    I am facing a problem in the data reconciliation report display.The document number "1212121212" doesn't not exist in the SAP system.But "1212121212" is used as the reference number in the another document which is created in the SAP.
    Legacy data file.
    RCOMP RASSC       DOCNR                ATYPE        RACCT      RTCUR     TSL
    L001     U001     1212121212     C     CCU001     USD     200
    In the data selection process, i am using the following inputs.
    Company code - L001, U001.
    Vendor - CCU001,CCL001.
    Customer - CCU001,CCL001.
    In the data assignment process, i am using the following inputs.
    Company - L001, U001.
    Trading Partner - L001, U001.
    Rule - 300, 400.
    Rule - 300 config.
    200     DOCNR     Document Number     Equal     DOCNR     Document Number
    Rule - 400 config.
    200     DOCNR     Document Number     Equal     REFNR     Reference Number
    In the reconciliation report display (right side bottom page),
    U001->L001->Payables or other way around L001->U001->Receivables (Top Left side).In the either of the two display am able to see two items.
    first item (not expected in the report display, bcoz there is no relevant data present in the legacy file).
    TR.PT PRT.DOC.NO  PR.CUR Amount DGC  Difference  Reference no
    U001 1700036236      USD       500       USD   500          TEST
    The first item exist in the SAP and it is getting selected during the data selection process.
    second item (reconciled and expected in the report display)
    L001     U001     1212121212     C     CCU001     USD     200
    Kindly help.
    Thanks in advance
    Regards,
    Karthik

    Hi Ralph,
    Yes we are having two company codes.your understanding on this point is rite.
    I am using the standard file upload functionality from the presentation server for uploading the non-sap company data.since in the earlier thread i had explained very detail level, so now had made it short.
    The only issue that I am having is that I have just one line item in my upload file and it is from non sap company L001 for trading partner u001. File gets loaded (data selected 1 correctly), Then after all the steps when I am in the last step (reconciliation) I see that line getting reconciled with other line available in U001 with zero difference. That looks good because it is matching as per my rule. but I am also seeing some other open items in U001 that are also getting reconciled with no lines in file with difference equal to their values. They should not show up in the bottom part of reconciliation part at all as they are still open in U001 and should not get reconciled until I put their offsetting lines in upload file from L001. So they should stay at the top right side in simple words I am seeing open items as well in reconciliation portion bottom one even I do not have any lines to reconcile them and they are showing a balance in them as well.
    Thanks in advance.
    Let me know, if you need any more details.
    Regards,
    Karthik

  • Failed to Run OLE Excel program in background JOB (SM36)

    Please help.
    I have write a program to use OLE to create a Excel file.
    The program can run successful in front end workstation. However, when I run the program in background job by SM36.
    The statement "CREATE OBJECT EXCEL 'EXCEL.APPLICATION'" return with error "SY-SUBRC = 2".
    How can I solve it ?
    Can OLE Excel be run on background job ?
    Thanks so much,
    Mark

    Hi Mark:
    Your need is a very common one. I also was asked to generate an Excel in Background.
    It is not possible to work with OLE in background mode.
    The reason is: In background mode there is no presentation server. OLE is executed in presentation server.
    Below I paste the code I wrote to solve my problem.
    This class sends a mail with an excel attached. The Excel content will be the internal table you pass to the class. But the Excel is not binary, it is a plain text file, separated by tabulators. Anyway, when you open it with Excel, the columns are properly shown.
    Sorry. Comments are in spanish, I don't have time to translate it.
    I kindly ask to everybody which want to use it to keep my name in the code.
    * Autor: Jordi Escoda, 30/10/2008.
    * Descripción: Esta clase genera un correo electrónico destinado a
    *  una persona, adjuntando el contenido de una tabla interna como
    *  Excel (campos separados por tabuladores).
    *  La virtud de esta clase es su sencillez de utilización. Para lanzar
    *  el mail con el excel adjunto basta con declarar la tabla interna,
    *  llenarla, colocar el asunto del mensaje, el destinatario, el nombre
    *  del excel adjunto, y pasar la tabla interna.
    * Ejemplo de utilización:
    *  DATA: lc_mail TYPE REF TO cl_mail_builder_xls_attach.
    *  DATA: lt_anla TYPE STANDARD TABLE OF anla.
    *    SELECT * INTO TABLE lt_anla  FROM anla.
    *    CREATE OBJECT lc_mail.
    *    CALL METHOD lc_mail->set_subject( 'Excel adjunto' ).
    *    CALL METHOD lc_mail->set_recipient( 'XXX@XXXDOTCOM' ).
    *    CALL METHOD lc_mail->set_attach_filename( 'ANLA' ).
    *    APPEND 'Cuerpo del mensaje' TO  lt_body.
    *    APPEND 'Saludos cordiales' TO  lt_body.
    *    CALL METHOD lc_mail->set_bodytext( lt_body ).
    *    CALL METHOD lc_mail->set_attach_table( lt_anla ).
    *    CALL METHOD lc_mail->send( ).
    *       CLASS cl_mail_builder_xls_attach DEFINITION
    CLASS cl_mail_builder_xls_attach DEFINITION.
      PUBLIC SECTION.
        METHODS: set_subject
                               IMPORTING im_subject TYPE so_obj_des,
                 set_bodytext
                               IMPORTING im_body TYPE bcsy_text,
                 set_recipient
                               IMPORTING im_recipient TYPE ad_smtpadr,
                 set_attach_table
                               IMPORTING im_table TYPE ANY TABLE,
                 set_attach_filename
                               IMPORTING im_attach_name TYPE sood-objdes,
                 send.
      PRIVATE SECTION.
        CONSTANTS:
          c_tab  TYPE c VALUE cl_bcs_convert=>gc_tab,
          c_crlf TYPE c VALUE cl_bcs_convert=>gc_crlf,
          c_singlequote TYPE c VALUE '.
        DATA: l_recipient_addr TYPE ad_smtpadr.
        DATA: send_request   TYPE REF TO cl_bcs,
              document       TYPE REF TO cl_document_bcs,
              recipient      TYPE REF TO if_recipient_bcs,
              bcs_exception  TYPE REF TO cx_bcs.
        DATA: binary_content TYPE solix_tab,
              size           TYPE so_obj_len.
        DATA: l_string TYPE string,
              l_body_text TYPE bcsy_text,
              l_subject TYPE so_obj_des,
              l_attach_name TYPE sood-objdes.
        METHODS: create_binary_content,
                 get_dataelement_medium_text
                        IMPORTING im_table_name TYPE tabname
                                  im_field_name TYPE fieldname
                        EXPORTING ex_medium_text TYPE scrtext_m.
    ENDCLASS.                    "cl_mail_builder_xls_attach DEFINITION
    *       CLASS cl_mail_builder_xls_attach IMPLEMENTATION
    CLASS cl_mail_builder_xls_attach IMPLEMENTATION.
      METHOD set_bodytext.
        l_body_text[] = im_body[].
      ENDMETHOD.                    "add_bodytext
      METHOD set_subject.
        l_subject = im_subject.
      ENDMETHOD.                    "add_subject
      METHOD set_attach_filename.
        l_attach_name = im_attach_name.
      ENDMETHOD.                    "add_subject
      METHOD set_recipient.
        l_recipient_addr = im_recipient.
      ENDMETHOD.                    "add_subject
      METHOD set_attach_table.
    *   Rellena en un string el contenido de la tabla interna recibida
        DATA: ref_to_struct  TYPE REF TO cl_abap_structdescr.
        DATA: my_like TYPE fieldname,
              nombretabla TYPE tabname,
              nombrecampo TYPE fieldname,
              texto_mediano TYPE scrtext_m.
        DATA: l_idx TYPE i,
              l_valorcampo(16) TYPE c,
              l_long TYPE i.
        FIELD-SYMBOLS: <fs_linea> TYPE ANY,
                       <fs_campo> TYPE ANY.
        FIELD-SYMBOLS: <comp_descr> TYPE abap_compdescr.
        CHECK NOT im_table[] IS INITIAL.
    *   Línea con los nombres de las columnas.
        CLEAR l_string.
        LOOP AT im_table ASSIGNING <fs_linea>.
    *     Toma los atributos del componente
          ref_to_struct  =
                     cl_abap_structdescr=>describe_by_data( <fs_linea> ).
          LOOP AT ref_to_struct->components ASSIGNING <comp_descr>.
            ASSIGN COMPONENT <comp_descr>-name
                                OF STRUCTURE <fs_linea> TO <fs_campo>.
    *       Obtenemos el origen de donde proviene (like). Ej:BKPF-BUDAT
            DESCRIBE FIELD <fs_campo> HELP-ID my_like.
            SPLIT my_like AT '-' INTO nombretabla nombrecampo.
            CALL METHOD get_dataelement_medium_text
              EXPORTING
                im_table_name  = nombretabla
                im_field_name  = nombrecampo
              IMPORTING
                ex_medium_text = texto_mediano.
            IF texto_mediano IS INITIAL.
              CONCATENATE l_string <comp_descr>-name INTO l_string.
            ELSE.
              CONCATENATE l_string texto_mediano INTO l_string.
            ENDIF.
            AT LAST.
              CONCATENATE l_string c_crlf INTO l_string.
              EXIT.
            ENDAT.
            CONCATENATE l_string c_tab INTO l_string.
          ENDLOOP.
          EXIT.
        ENDLOOP.
    *   Contenido de la tabla
        LOOP AT im_table ASSIGNING <fs_linea>.
    *     Toma los atributos del componente
          ref_to_struct  =
                     cl_abap_structdescr=>describe_by_data( <fs_linea> ).
          LOOP AT ref_to_struct->components ASSIGNING <comp_descr>.
    *       Asignamos el componente ue tratamos, para obtener
    *       el valor del mismo
            ASSIGN COMPONENT <comp_descr>-name OF STRUCTURE <fs_linea>
                                            TO <fs_campo>.
            CASE <comp_descr>-type_kind.
              WHEN 'P'. "Packed Number
    *           Convierte a caracter
                WRITE <fs_campo> TO l_valorcampo.
                CONCATENATE l_string l_valorcampo INTO l_string.
              WHEN OTHERS.
                l_long = STRLEN( <fs_campo> ).
                IF l_long > 11 AND <fs_campo> CO ' 0123456789'.
    *             El Excel muestra un número tal como 190000000006
    *             en formato 1,9E+11.
    *             Para eviarlo, los números de más de 11 dígitos los
    *             concatenamos con comillas simples.
                  CONCATENATE l_string c_singlequote
                              <fs_campo> c_singlequote INTO l_string.
                ELSE.
                  CONCATENATE l_string <fs_campo> INTO l_string.
                ENDIF.
            ENDCASE.
            AT LAST.
    *         Añade CRLF
              CONCATENATE l_string c_crlf INTO l_string.
              EXIT.
            ENDAT.
    *       Añade tabulador
            CONCATENATE l_string c_tab INTO l_string.
          ENDLOOP.
        ENDLOOP.
        create_binary_content( ).
      ENDMETHOD.                    "set_attach_table
      METHOD create_binary_content.
        DATA: l_size TYPE so_obj_len.
    *   convert the text string into UTF-16LE binary data including
    *   byte-order-mark. Mircosoft Excel prefers these settings
    *   all this is done by new class cl_bcs_convert (see note 1151257)
        TRY.
            cl_bcs_convert=>string_to_solix(
              EXPORTING
                iv_string   = l_string
                iv_codepage = '4103'  "suitable for MS Excel, leave empty
                iv_add_bom  = 'X'     "for other doc types
              IMPORTING
                et_solix  = binary_content
                ev_size   = size ).
          CATCH cx_bcs.
            MESSAGE e445(so).
        ENDTRY.
      ENDMETHOD.                    "create_binary_content
      METHOD send.
        DATA: l_sent_to_all TYPE os_boolean.
        TRY.
    *       create persistent send request
            send_request = cl_bcs=>create_persistent( ).
    *       create and set document with attachment
    *       create document object
            document = cl_document_bcs=>create_document(
              i_type    = 'RAW'
              i_text    = l_body_text
              i_subject = l_subject ).
    *       add the spread sheet as attachment to document object
            document->add_attachment(
              i_attachment_type    = 'xls'
              i_attachment_subject = l_attach_name
              i_attachment_size    = size
              i_att_content_hex    = binary_content ).
    *       add document object to send request
            send_request->set_document( document ).
    *       add recipient (e-mail address)
            recipient =
               cl_cam_address_bcs=>create_internet_address(
                                          l_recipient_addr ).
    *       add recipient object to send request
            send_request->add_recipient( recipient ).
    *       send document
            l_sent_to_all = send_request->send(
                                 i_with_error_screen = 'X' ).
            COMMIT WORK.
            IF l_sent_to_all IS INITIAL.
              MESSAGE i500(sbcoms) WITH l_recipient_addr.
            ELSE.
              MESSAGE s022(so).
            ENDIF.
          CATCH cx_bcs INTO bcs_exception.
            MESSAGE i865(so) WITH bcs_exception->error_type.
        ENDTRY.
      ENDMETHOD.                    "lcl_mail_xls_attachment
      METHOD get_dataelement_medium_text.
        DATA: lt_fld_info TYPE STANDARD TABLE OF dfies,
          wa_fld_info TYPE dfies.
    *   Busca en el diccionario los datos del campo
        CALL FUNCTION 'DDIF_FIELDINFO_GET'
          EXPORTING
            tabname        = im_table_name
            fieldname      = im_field_name
            langu          = sy-langu
          TABLES
            dfies_tab      = lt_fld_info
          EXCEPTIONS
            not_found      = 1
            internal_error = 2
            OTHERS         = 3.
        CLEAR ex_medium_text.
        IF sy-subrc = 0.
          READ TABLE lt_fld_info INDEX 1 INTO wa_fld_info.
    *     Si lo ha podido tomar del diccionario...
          IF NOT wa_fld_info-scrtext_m IS INITIAL.
    *       Toma el nombre del nombre de campo del diccionario
            ex_medium_text = wa_fld_info-scrtext_m.
          ENDIF.
        ENDIF.
      ENDMETHOD.                    "get_dataelement_medium_text
    ENDCLASS.                    "cl_mail_builder_xls_attach IMPLEMENTATION

Maybe you are looking for

  • Message no R7645 error while activating multiprovider

    Hi, When I activate my multiprovider I get some errors like as follows: "Assignments for InfoObject 0SUBTOTAL_1 have not yet been maintained -> Long text Assignments for InfoObject 0DENOMINTR have not yet been maintained -> Long text" like this some

  • Why is my iPod Touch not being recognized in iTunes, Device Manager, or my entire computer?

    I have had my iPod Touch since christmas and it is now June. The version is 4.1 and it's the one with the camera. My previous cord worked fine and I never had any problems with iTunes or my iPod before. I lost my cord for about a month (actually I ha

  • Captures are too dark

    My Sony DCR-TRV460 camcorder bit the dust a few weeks ago, so I bought a used DCR-TRV103 to continue capturing from the tapes I recorded with the 460. The problem is, the captures are much darker when capturing them using the 103 than they were when

  • How tio debug a background job

    Hello Experts , please tell me is there any way to debug a background job ( a report submitted in a background).

  • Print orientation for Iphoto 9.5

    How do you change print orientation for Iphoto 9.5?