BI Plugin Issues - Report refresh

I have a requirement to download all the reports of a dashboard in Excel using 'BI plugin' and Excel should be refreshed on daily basis. When I am using BI Plugin, each report comes in different tabs.Plugin cannot place more than one report in single tab. Like when first report is choosed it is displayed in first tab and the second one will be automatically displayed in second tab & same with the 3rd,4th....So I copy the data of all the tabs in one Excel tab.But issue is when I copy all the reports in one tab, refresh is not working for copied ones. How can I overcome this issue.I have this issue in both Excel 2007 & 2010 versions.

Hi User9360169,
I am new to BI Publisher. Trying to find out appropriate material to know how to:
1) Convert Oracle BD into XML data
2) How to call a BIP report from a customised OAF page.
If you know any suitable material that would help me, kindly let me know.
Regards

Similar Messages

  • SSRS 2012 report integrated with SharePoint 2013 issue :Report refreshing after some idle time

    we have SSRS 2012 report integrated with SharePoint 2013  , when we click on any toggle item after some idle time of 60 secs and try again to expand
    another toggle item then  complete report is getting refreshed and  if we are in child report it is redirecting to parent report. . we didn’t set any refreshing property at report level. I hope there will be some idle time setting at sharepoint site
    level.
    what we observed.
    1. there is no problem when we expand toggle items without any idle time.
    2. when we open the report and expand few toggles and keep idle for 60 seconds and try
    again to expand another toggle item then  complete report is getting refreshed (all toggle items are collapsing).
    3. If you keep idle for 60 minutes and if you didn’t do any action like expanding toggle
    items it is not refreshing.
    why it is happening and how to stop that complete refresh.
    Surendra Thota

    Hi Surendra,
    I have tested on my local environment and the issue can be caused by the session time out ,the time out of the report precessing, database timeout,DataSet query execution timeout and so on.
    I would like to confirm that the refresh you have mentioned is the page refresh or the report reloading?
    Please reference to the setting below to don't limit the timeout values if you got the report reloading:
    Point to a report in the library.
    Click the down arrow, and select Manage processing options.
    In Processing Time-out, select Do not time out report processing or
    Limit report processing in seconds if you want to override that value with no time-out or different time-out values.
    If you got the session timeout that refresh the page, please reference to the setting in below article:
    http://msdn.microsoft.com/en-us/library/gg492284.aspx#bkmk_session_settings_section
    Details information in the article below about the timeout setting for your reference:
    Set Processing Options (Reporting Services in SharePoint Integrated Mode)
    If you still have any problem, please feel free to ask.
    Regards
    Vicky Liu
    If you have any feedback on our support, please click
    here.
    Vicky Liu
    TechNet Community Support

  • Crystal Reports refresh issue

    Hello,
    I created some report's in CR2008 using MySQL database. I use (.udl) file to create a connection and connect to MySQL Server. I want to give the flexibility of refreshing this report on SQL Server, I created a (.udl) data source file for SQL Server and used it to connect to a SQL Server, by setting database location for the report, the refreshes works properly. But every time I open the report , it displays a new connection string, The Data Source name is only supposed to be "AAGARWAL-PC\MSSQL", but when I open a new report and refresh it, cr2008 creates a new connection string "AAGARWAL-PC\MSSQL_1". I dont understand the reason for this.
    When I refresh a MySQL report on MsSql the report refreshes properly and creates a new connection string. But when I try to refresh a MsSQL report on MySQL the report does not refresh. I shows an error saying it cannot access the database objects, I guess the reason for that could be "dbo.tablename" for for MsSQL will not be supported on MySQL, is there a workaround for this?
    Any ideas or thoughts on these issues?
    Thanks

    No work around other than setting location manually to SQL Server. Both DB's require different SQL being generated therefore you can't assume CR will just work without giving it a chance to "fix" the connection info.
    Easiest way is to have one report for each DB if you don't wnat to manage them through an application.

  • Report Refresh Issue coming in 3.1

    Hi,
    We had BO migration to 3.1 recently from 2.0 and started facing one issue
    I am trying to pass parameter 2 date parameter through Hyperlink called through a BO Java SDK but does not want the report to get refreshed but want the prompt screen to show up having these 2 dates to come up.
    The below hyperlink was working fine in 2.0 and the prompt screen was coming up fine and we can modify the report dates
    to choose another date
    /OpenDocument/opendoc/openDocument.jsp?iDocID=234436&sType=wid&sWindow=Same&token=(server address)&sRefresh=Y&lsSStartDate:=01/01/2006 12:00:00 AM&lsSEndDate:=09/29/2010 10:00:00 PM
    But when for this hyperlink now in 3.1, the report gets refreshed and prompt window does not come.
    I tried to give refresh=N, but still the report refreshs without displaying the prompt screen
    Is there some settings changes in the new BO SDK which needs to be done to stop the report to refresh even when we pass the parameters?
    Thanks,
    Rahul

    Hi Rahul,
    Which SP is? In 3.1 SP3 sWindow parameter is obsolete, I´m not sure it is your problem, but maybe you can try without sWindow.
    Another question:
    Do you have any default value in the prompts?
    Is it a webi prompt or a universe prompt?
    Here you have the OpenDocument reference for 3.1 SP3: http://help.sap.com/businessobject/product_guides/boexir31SP3/en/xi31_sp3_opendocument_en.pdf
    Hope that helps.
    Regards,
    Liliana

  • AJAX Report Refresh  a_report- Condition for display not being validated

    Hi ,
    I have a report which has the following condition for dispaly:
    Exists(SQL query returs atleast one row) - SELECT * from temp1The query for the report is : select * from temp1 Now I have a button on the page and on click of the button I call the below Javascript :
    function f_insert_Temp_table(pTrans){
          var l_Return = null;
          var get = new htmldb_Get(null,$x('pFlowId').value,
                  'APPLICATION_PROCESS=temp_table_insert',206);       // ODP to insert into temp1
          get.add('TRANS_ID_ITEM',pTrans);
          gReturn = get.get('');
         //alert(gReturn);
         //$x_Show('6342610690289435');
         $a_report('6342610690289435','1','15','15');
    }Everything executes fine and the report refreshes the rows but the condition used for display doesn't get checked when I call $a_report() ...
    I can see the ODP execute successfully and row gets inserted into temp1 which means report condition is satisfied .
    If I remove the condition for the report, I can see the report getting refreshed and showing new rows through the $a_Report() call.
    Is there something that needs to be added to the script or $a_report call to validate the condition too ?Is there a way I can validate the region condition too ?
    Appreciate any suggestions/pointers here. I really do not want to refresh the whole page.
    Thanks,
    Dippy
    Edited by: Dippy on Feb 5, 2010 11:05 AM

    Hi Flavio,
    Thanks for your support.I figured where I was going completely wrong.
    Its just that when the page loads for the first time the temp table is empty and hence the report is not being displayed which simply
    means that the report id Im passing into the a_report function is not rendered on the page. Hence no matter what the temp table contains the report id is absent from the page.
    I fixed it as follows :
    Remove the condition for the report.
    Added and item and computed(P_Compute) its value using select count(*) from temp.
    Added an onload JS function which does a $x_Show('Report_Region') if P_Compute > 0 or $x_Hide('Report_Region') if P_Compute <0 .
    Now in my JS function which has an AJAX call to an ODP does an $x_Show('Report_Region').
    Flavioc : the query for my report is simple
    select * from tempIt finally dawned upon me that I'm trying to catch hold of an ID that's not rendered.
    So one issue is solved now the other part would be figuring out how to make $a_report work with pagination etc .

  • Safari won't open, claims webcore plugin issue?

    Hello, for some reason, the safari on my macbook won't open. Claims it is some sort of webcore plugin issue. I'll post the problem details here in case it helps. Thank you in advance!
    Process:    
    Safari [751]
    Path:       
    /Applications/Safari.app/Contents/MacOS/Safari
    Identifier: 
    com.apple.Safari
    Version:    
    7.0.3 (9537.75.14)
    Build Info: 
    WebBrowser-7537075014000000~3
    Code Type:  
    X86-64 (Native)
    Parent Process:  launchd [158]
    Responsible:
    Safari [751]
    User ID:    
    501
    PlugIn Path:  
    /System/Library/StagedFrameworks/Safari/WebCore.framework/Versions/A/WebCore
    PlugIn Identifier: com.apple.WebCore
    PlugIn Version:
    9537 (9537.75.14)
    Date/Time:  
    2014-04-23 12:55:20.618 +1000
    OS Version: 
    Mac OS X 10.9.2 (13C64)
    Report Version:  11
    Anonymous UUID:  B28C173F-43B0-5E19-BDEA-AAA483CA061B
    Crashed Thread:  3  Dispatch queue: com.apple.WebKit.StorageManager
    Exception Type:  EXC_BAD_ACCESS (Code Signature Invalid)
    Exception Codes: 0x0000000000000032, 0x0000000102de5358
    VM Regions Near 0x102de5358:
    VM_ALLOCATE       
    0000000102042000-0000000102043000 [
    4K] rw-/rwx SM=ALI 
    --> __TEXT            
    0000000102047000-0000000102e9a000 [ 14.3M] r-x/rwx SM=COW  /System/Library/StagedFrameworks/Safari/WebCore.framework/Versions/A/WebCore
    __DATA            
    0000000102e9a000-0000000103058000 [ 1784K] rw-/rwx SM=COW  /System/Library/StagedFrameworks/Safari/WebCore.framework/Versions/A/WebCore
    Thread 0:: Dispatch queue: com.apple.main-thread
    0   dyld                     
    0x00007fff6c9159d0 ImageLoaderMachOCompressed::doBindFastLazySymbol(unsigned int, ImageLoader::LinkContext const&, void (*)(), void (*)()) + 592
    1   dyld                     
    0x00007fff6c900da5 dyld::fastBindLazySymbol(ImageLoader**, unsigned long) + 90
    2   libdyld.dylib            
    0x00007fff9a8ad2dd dyld_stub_binder_ + 13
    3   ???                      
    0x00000001011d9b28 0 + 4313684776
    4   com.apple.Safari.framework
    0x0000000100cdb7e3 +[AppController initialize] + 310
    5   libobjc.A.dylib          
    0x00007fff92ba5371 _class_initialize + 645
    6   libobjc.A.dylib          
    0x00007fff92bb1254 lookUpImpOrForward + 170
    7   libobjc.A.dylib          
    0x00007fff92ba4169 objc_msgSend + 233
    8   com.apple.AppKit         
    0x00007fff9085276d -[NSCustomObject nibInstantiate] + 89
    9   com.apple.AppKit         
    0x00007fff908526b0 -[NSIBObjectData instantiateObject:] + 309
    10  com.apple.AppKit         
    0x00007fff908519a5 -[NSIBObjectData nibInstantiateWithOwner:topLevelObjects:] + 413
    11  com.apple.AppKit         
    0x00007fff9084675e loadNib + 327
    12  com.apple.AppKit         
    0x00007fff90845cfc +[NSBundle(NSNibLoading) _loadNibFile:nameTable:withZone:ownerBundle:] + 288
    13  com.apple.AppKit         
    0x00007fff90845aec -[NSBundle(NSNibLoading) loadNibNamed:owner:topLevelObjects:] + 197
    14  com.apple.AppKit         
    0x00007fff908458db +[NSBundle(NSNibLoading) loadNibNamed:owner:] + 357
    15  com.apple.AppKit         
    0x00007fff90841727 NSApplicationMain + 448
    16  com.apple.Safari.framework
    0x0000000100f00c8d SafariMain + 267
    17  libdyld.dylib            
    0x00007fff9a8af5fd start + 1
    Thread 1:
    0   libsystem_kernel.dylib   
    0x00007fff98677e6a __workq_kernreturn + 10
    1   libsystem_pthread.dylib  
    0x00007fff93212f08 _pthread_wqthread + 330
    2   libsystem_pthread.dylib  
    0x00007fff93215fb9 start_wqthread + 13
    Thread 2:: Dispatch queue: com.apple.libdispatch-manager
    0   libsystem_kernel.dylib   
    0x00007fff98678662 kevent64 + 10
    1   libdispatch.dylib        
    0x00007fff9a59b43d _dispatch_mgr_invoke + 239
    2   libdispatch.dylib        
    0x00007fff9a59b152 _dispatch_mgr_thread + 52
    Thread 3 Crashed:: Dispatch queue: com.apple.WebKit.StorageManager
    0   com.apple.WebKit2        
    0x0000000101c6fb42 WebKit::LocalStorageDatabaseTracker::importOriginIdentifiers() + 124
    1   com.apple.WebKit2        
    0x0000000101c6f884 ___ZN9WorkQueue8dispatchERKN3***8FunctionIFvvEEE_block_invoke + 20
    2   libdispatch.dylib        
    0x00007fff9a59c1d7 _dispatch_call_block_and_release + 12
    3   libdispatch.dylib        
    0x00007fff9a5992ad _dispatch_client_callout + 8
    4   libdispatch.dylib        
    0x00007fff9a59b68f _dispatch_queue_drain + 451
    5   libdispatch.dylib        
    0x00007fff9a59c9dd _dispatch_queue_invoke + 110
    6   libdispatch.dylib        
    0x00007fff9a59afa3 _dispatch_root_queue_drain + 75
    7   libdispatch.dylib        
    0x00007fff9a59c193 _dispatch_worker_thread2 + 40
    8   libsystem_pthread.dylib  
    0x00007fff93212ef8 _pthread_wqthread + 314
    9   libsystem_pthread.dylib  
    0x00007fff93215fb9 start_wqthread + 13
    Thread 4:
    0   libsystem_kernel.dylib   
    0x00007fff98677e6a __workq_kernreturn + 10
    1   libsystem_pthread.dylib  
    0x00007fff93212f08 _pthread_wqthread + 330
    2   libsystem_pthread.dylib  
    0x00007fff93215fb9 start_wqthread + 13
    Thread 5:: WebCore: IconDatabase
    0   com.apple.WebCore        
    0x0000000102797900 WebCore::IconDatabase::checkIntegrity() + 96
    1   com.apple.WebCore        
    0x000000010204d721 WebCore::IconDatabase::performOpenInitialization() + 65
    2   com.apple.WebCore        
    0x000000010204d033 WebCore::IconDatabase::iconDatabaseSyncThread() + 259
    3   com.apple.JavaScriptCore 
    0x00000001015d153f ***::wtfThreadEntryPoint(void*) + 15
    4   libsystem_pthread.dylib  
    0x00007fff93211899 _pthread_body + 138
    5   libsystem_pthread.dylib  
    0x00007fff9321172a _pthread_start + 137
    6   libsystem_pthread.dylib  
    0x00007fff93215fc9 thread_start + 13
    Thread 3 crashed with X86 Thread State (64-bit):
      rax: 0x0000000000000000  rbx: 0x00000001039c7dd8  rcx: 0x0000000102de5358  rdx: 0x00000001039c7e48
      rdi: 0x0000040000000503  rsi: 0x0000050000000500  rbp: 0x000000010398add0  rsp: 0x000000010398ad60
       r8: 0x0000000000000040   r9: 0x000000010398ac00  r10: 0x00000000bcfdf583  r11: 0x0000000068fde2a0
      r12: 0x00006100000ca1a4  r13: 0x0000000000000000  r14: 0x000000010398ad88  r15: 0x0000000000000000
      rip: 0x0000000101c6fb42  rfl: 0x0000000000010206  cr2: 0x0000000102de5358
    Logical CPU:
    2
    Error Code: 
    0x00000004
    Trap Number:
    14
    Binary Images:
    0x100cc6000 -   
    0x100cc6ffd  com.apple.Safari (7.0.3 - 9537.75.14) <170ED2F7-108B-326D-96B6-D54CCA40AA85> /Applications/Safari.app/Contents/MacOS/Safari
    0x100cd2000 -   
    0x1011d8ffb  com.apple.Safari.framework (9537 - 9537.75.14) <4803DE3D-4606-3B70-A537-6D12F172665A> /System/Library/StagedFrameworks/Safari/Safari.framework/Versions/A/Safari
    0x1015c8000 -   
    0x10193fff6  com.apple.JavaScriptCore (9537 - 9537.75.12) <8018AEEE-9FAB-34DE-AF60-97B2F221747A> /System/Library/StagedFrameworks/Safari/JavaScriptCore.framework/Versions/A/Jav aScriptCore
    0x101a3a000 -   
    0x101b70ffc  com.apple.WebKit (9537 - 9537.75.14) <CBAF76C6-E6F7-390A-A21D-CBCAF4A6896A> /System/Library/StagedFrameworks/Safari/WebKit.framework/Versions/A/WebKit
    0x101c6a000 -   
    0x101e5bff3  com.apple.WebKit2 (9537 - 9537.75.14) <B3511A1C-A7E7-3F81-9EDB-2602C4EFAF19> /System/Library/StagedFrameworks/Safari/WebKit2.framework/Versions/A/WebKit2
    0x102047000 -   
    0x102e99ffb  com.apple.WebCore (9537 - 9537.75.14) <99715507-9651-3DCE-831B-BF815FB3DE44> /System/Library/StagedFrameworks/Safari/WebCore.framework/Versions/A/WebCore
    0x7fff6c8fd000 -
    0x7fff6c930817  dyld (239.4) <2B17750C-ED1B-3060-B64E-21897D08B28B> /usr/lib/dyld
    0x7fff8d5ef000 -
    0x7fff8d75fff8  com.apple.CFNetwork (673.2.1 - 673.2.1) <AE407146-CCF2-33DD-AAEA-6887FD6F45BA> /System/Library/Frameworks/CFNetwork.framework/Versions/A/CFNetwork
    0x7fff8d7fe000 -
    0x7fff8e11daf3  com.apple.CoreGraphics (1.600.0 - 599.20.11) <06212100-8069-31A1-9C44-F6C4B1695230> /System/Library/Frameworks/CoreGraphics.framework/Versions/A/CoreGraphics
    0x7fff8e1b1000 -
    0x7fff8e40aff9  com.apple.security (7.0 - 55471.14) <3F7100A0-FE46-333D-9A4B-396580F1B4FE> /System/Library/Frameworks/Security.framework/Versions/A/Security
    0x7fff8e40b000 -
    0x7fff8e426ff7  libCRFSuite.dylib (34) <FFAE75FA-C54E-398B-AA97-18164CD9789D> /usr/lib/libCRFSuite.dylib
    0x7fff8ea1c000 -
    0x7fff8ea57fff  com.apple.bom (14.0 - 193.1) <EF24A562-6D3C-379E-8B9B-FAE0E4A0EF7C> /System/Library/PrivateFrameworks/Bom.framework/Versions/A/Bom
    0x7fff8f903000 -
    0x7fff8f921ff7  com.apple.Accounts (113 - 113) <FEB37642-C973-3CD2-B279-142492266A16> /System/Library/Frameworks/Accounts.framework/Versions/A/Accounts
    0x7fff8f922000 -
    0x7fff8f995fff  com.apple.securityfoundation (6.0 - 55122.1) <1939DE0B-BC38-3E50-8A8C-3471C8AC4CD6> /System/Library/Frameworks/SecurityFoundation.framework/Versions/A/SecurityFoun dation
    0x7fff8f996000 -
    0x7fff8fa5aff7  com.apple.backup.framework (1.5.2 - 1.5.2) <A3C552F0-670B-388F-93FA-D917F96ACE1B> /System/Library/PrivateFrameworks/Backup.framework/Versions/A/Backup
    0x7fff8fa7e000 -
    0x7fff8fa81fff  com.apple.help (1.3.3 - 46) <AE763646-D07A-3F9A-ACD4-F5CBD734EE36> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Help.framewor k/Versions/A/Help
    0x7fff8fcb3000 -
    0x7fff8fcb3fff  com.apple.Accelerate (1.9 - Accelerate 1.9) <509BB27A-AE62-366D-86D8-0B06D217CF56> /System/Library/Frameworks/Accelerate.framework/Versions/A/Accelerate
    0x7fff8fdeb000 -
    0x7fff8fe2dff7  libauto.dylib (185.5) <F45C36E8-B606-3886-B5B1-B6745E757CA8> /usr/lib/libauto.dylib
    0x7fff8feac000 -
    0x7fff8ff19fff  com.apple.SearchKit (1.4.0 - 1.4.0) <B9B8D510-A27E-36B0-93E9-17146D9E9045> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/SearchK it.framework/Versions/A/SearchKit
    0x7fff8ff1a000 -
    0x7fff8ff1bffb  libremovefile.dylib (33) <3543F917-928E-3DB2-A2F4-7AB73B4970EF> /usr/lib/system/libremovefile.dylib
    0x7fff8ff1c000 -
    0x7fff8ff37ff7  libsystem_malloc.dylib (23.10.1) <A695B4E4-38E9-332E-A772-29D31E3F1385> /usr/lib/system/libsystem_malloc.dylib
    0x7fff8ff38000 -
    0x7fff901e2ff5  com.apple.HIToolbox (2.1 - 697.4) <DF5635DD-C255-3A8E-8B49-F6D2FB61FF95> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HIToolbox.fra mework/Versions/A/HIToolbox
    0x7fff906d2000 -
    0x7fff906f6ff7  libJPEG.dylib (1042) <33648F26-A1DA-3C30-B15B-E9FFD41DB25C> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libJPEG.dylib
    0x7fff90775000 -
    0x7fff9083efff  com.apple.LaunchServices (572.26 - 572.26) <EF8A4A15-0861-35C5-9744-5E1BC5C26DD9> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/LaunchS ervices.framework/Versions/A/LaunchServices
    0x7fff9083f000 -
    0x7fff913b5fff  com.apple.AppKit (6.9 - 1265.19) <12647F2F-3FE2-3D77-B3F0-33EFAFF2CEA7> /System/Library/Frameworks/AppKit.framework/Versions/C/AppKit
    0x7fff913f5000 -
    0x7fff913f9ff7  libsystem_stats.dylib (93.90.3) <1A55AF8A-B6C4-3163-B557-3AD25DA643A8> /usr/lib/system/libsystem_stats.dylib
    0x7fff916c3000 -
    0x7fff916c7ff7  libcache.dylib (62) <BDC1E65B-72A1-3DA3-A57C-B23159CAAD0B> /usr/lib/system/libcache.dylib
    0x7fff916c8000 -
    0x7fff916d6fff  com.apple.opengl (9.6.0 - 9.6.0) <709F4A02-73A0-303C-86B5-85C596C8B707> /System/Library/Frameworks/OpenGL.framework/Versions/A/OpenGL
    0x7fff916d7000 -
    0x7fff916e1ff7  com.apple.ProtocolBuffer (1 - 182.1.3) <82E68598-A8AA-3AF1-843E-2A64F19472D4> /System/Library/PrivateFrameworks/ProtocolBuffer.framework/Versions/A/ProtocolB uffer
    0x7fff916e2000 -
    0x7fff916e7fff  com.apple.DiskArbitration (2.6 - 2.6) <A4165553-770E-3D27-B217-01FC1F852B87> /System/Library/Frameworks/DiskArbitration.framework/Versions/A/DiskArbitration
    0x7fff918b8000 -
    0x7fff918c0ff7  com.apple.speech.recognition.framework (4.2.4 - 4.2.4) <98BBB3E4-6239-3EF1-90B2-84EA0D3B8D61> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SpeechRecogni tion.framework/Versions/A/SpeechRecognition
    0x7fff918c1000 -
    0x7fff918c7ff7  libsystem_platform.dylib (24.90.1) <3C3D3DA8-32B9-3243-98EC-D89B9A1670B3> /usr/lib/system/libsystem_platform.dylib
    0x7fff91c40000 -
    0x7fff91c79ff7  com.apple.QD (3.50 - 298) <C1F20764-DEF0-34CF-B3AB-AB5480D64E66> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ QD.framework/Versions/A/QD
    0x7fff91d12000 -
    0x7fff91d13fff  liblangid.dylib (117) <9546E641-F730-3AB0-B3CD-E0E2FDD173D9> /usr/lib/liblangid.dylib
    0x7fff91da3000 -
    0x7fff91da5fff  libCVMSPluginSupport.dylib (9.6) <FFDA2811-060E-3591-A280-4A726AA82436> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libCVMSPluginS upport.dylib
    0x7fff91e73000 -
    0x7fff91ee2ff1  com.apple.ApplicationServices.ATS (360 - 363.3) <546E89D9-2AE7-3111-B2B8-2366650D22F0> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/ATS
    0x7fff91ee3000 -
    0x7fff91f36fff  com.apple.ScalableUserInterface (1.0 - 1) <CF745298-7373-38D2-B3B1-727D5A569E48> /System/Library/Frameworks/QuartzCore.framework/Versions/A/Frameworks/ScalableU serInterface.framework/Versions/A/ScalableUserInterface
    0x7fff91f59000 -
    0x7fff91f71ff7  com.apple.GenerationalStorage (2.0 - 160.2) <79629AC7-896F-3302-8AC1-4939020F08C3> /System/Library/PrivateFrameworks/GenerationalStorage.framework/Versions/A/Gene rationalStorage
    0x7fff9202e000 -
    0x7fff9203aff7  com.apple.OpenDirectory (10.9 - 173.90.1) <E5EF8E1A-7214-36D0-AF0D-8D030DF6C2FC> /System/Library/Frameworks/OpenDirectory.framework/Versions/A/OpenDirectory
    0x7fff920a1000 -
    0x7fff920aeff7  libxar.1.dylib (202) <5572AA71-E98D-3FE1-9402-BB4A84E0E71E> /usr/lib/libxar.1.dylib
    0x7fff920af000 -
    0x7fff920c8ff7  com.apple.Kerberos (3.0 - 1) <F108AFEB-198A-3BAF-BCA5-9DFCE55EFF92> /System/Library/Frameworks/Kerberos.framework/Versions/A/Kerberos
    0x7fff9211b000 -
    0x7fff92137fff  libresolv.9.dylib (54) <11C2C826-F1C6-39C6-B4E8-6E0C41D4FA95> /usr/lib/libresolv.9.dylib
    0x7fff92138000 -
    0x7fff92226fff  libJP2.dylib (1042) <01D988D4-E36F-3120-8BA4-EF6282ECB010> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libJP2.dylib
    0x7fff92227000 -
    0x7fff92228ff7  libsystem_blocks.dylib (63) <FB856CD1-2AEA-3907-8E9B-1E54B6827F82> /usr/lib/system/libsystem_blocks.dylib
    0x7fff92286000 -
    0x7fff922d7ff3  com.apple.audio.CoreAudio (4.2.0 - 4.2.0) <BF4C2FE3-8BC8-30D1-8347-2A7221268794> /System/Library/Frameworks/CoreAudio.framework/Versions/A/CoreAudio
    0x7fff92b9c000 -
    0x7fff92b9eff7  libquarantine.dylib (71) <7A1A2BCB-C03D-3A25-BFA4-3E569B2D2C38> /usr/lib/system/libquarantine.dylib
    0x7fff92b9f000 -
    0x7fff92d4cf27  libobjc.A.dylib (551.1) <AD7FD984-271E-30F4-A361-6B20319EC73B> /usr/lib/libobjc.A.dylib
    0x7fff92d58000 -
    0x7fff92da5ff2  com.apple.print.framework.PrintCore (9.0 - 428) <8D8253E3-302F-3DB2-9C5C-572CB974E8B3> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ PrintCore.framework/Versions/A/PrintCore
    0x7fff92dfa000 -
    0x7fff92ee4fff  libsqlite3.dylib (158) <00269BF9-43BE-39E0-9C85-24585B9923C8> /usr/lib/libsqlite3.dylib
    0x7fff92f31000 -
    0x7fff930effff  com.apple.GeoServices (1.0 - 702.15.12) <5A4D463F-689F-3822-BF26-A19D51503019> /System/Library/PrivateFrameworks/GeoServices.framework/Versions/A/GeoServices
    0x7fff930f0000 -
    0x7fff93101ff7  libsystem_asl.dylib (217.1.4) <655FB343-52CF-3E2F-B14D-BEBF5AAEF94D> /usr/lib/system/libsystem_asl.dylib
    0x7fff931ab000 -
    0x7fff9320ffff  com.apple.datadetectorscore (5.0 - 354.3) <B92E87D1-2045-3AB2-AE3F-8F948B30518A> /System/Library/PrivateFrameworks/DataDetectorsCore.framework/Versions/A/DataDe tectorsCore
    0x7fff93210000 -
    0x7fff93217ff7  libsystem_pthread.dylib (53.1.4) <AB498556-B555-310E-9041-F67EC9E00E2C> /usr/lib/system/libsystem_pthread.dylib
    0x7fff93409000 -
    0x7fff9341aff7  libz.1.dylib (53) <42E0C8C6-CA38-3CA4-8619-D24ED5DD492E> /usr/lib/libz.1.dylib
    0x7fff9341b000 -
    0x7fff93425ff7  com.apple.bsd.ServiceManagement (2.0 - 2.0) <2D27B498-BB9C-3D88-B05A-76908A8A26F3> /System/Library/Frameworks/ServiceManagement.framework/Versions/A/ServiceManage ment
    0x7fff934b1000 -
    0x7fff9353afff  com.apple.ColorSync (4.9.0 - 4.9.0) <B756B908-9AD1-3F5D-83F9-7A0B068387D2> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ColorSync.framework/Versions/A/ColorSync
    0x7fff936a8000 -
    0x7fff936d9ff7  libtidy.A.dylib (15.12) <BF757E3C-733A-3B6B-809A-A3949D46466E> /usr/lib/libtidy.A.dylib
    0x7fff936da000 -
    0x7fff936e7ff4  com.apple.Librarian (1.2 - 1) <F1A2744D-8536-32C7-8218-9972C6300DAE> /System/Library/PrivateFrameworks/Librarian.framework/Versions/A/Librarian
    0x7fff9371d000 -
    0x7fff9371ffff  libRadiance.dylib (1042) <B91D4B97-7BF3-3285-BCB7-4948BAAC23EE> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libRadiance.d ylib
    0x7fff939b2000 -
    0x7fff93aa3ff9  libiconv.2.dylib (41) <BB44B115-AC32-3877-A0ED-AEC6232A4563> /usr/lib/libiconv.2.dylib
    0x7fff93ff0000 -
    0x7fff93ff2ff7  com.apple.securityhi (9.0 - 55005) <38784C88-AA07-350E-97A3-FCC24C97FC82> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SecurityHI.fr amework/Versions/A/SecurityHI
    0x7fff9435f000 -
    0x7fff94517ff3  libicucore.A.dylib (511.31) <167DDD0A-A935-31AF-B5B9-940268EC3A3C> /usr/lib/libicucore.A.dylib
    0x7fff9454f000 -
    0x7fff9461afff  libvDSP.dylib (423.32) <3BF732BE-DDE0-38EB-8C54-E4E3C64F77A7> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libvDSP.dylib
    0x7fff94621000 -
    0x7fff9463eff7  com.apple.framework.Apple80211 (9.3.1 - 931.58) <D5B2DD15-3DCC-31F6-9320-3A20A887C5D5> /System/Library/PrivateFrameworks/Apple80211.framework/Versions/A/Apple80211
    0x7fff9463f000 -
    0x7fff94643ff7  libGIF.dylib (1042) <C57840F6-1C11-3273-B4FC-956950B94034> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libGIF.dylib
    0x7fff94644000 -
    0x7fff9464bff3  libcopyfile.dylib (103) <5A881779-D0D6-3029-B371-E3021C2DDA5E> /usr/lib/system/libcopyfile.dylib
    0x7fff9464c000 -
    0x7fff94a2dffe  libLAPACK.dylib (1094.5) <7E7A9B8D-1638-3914-BAE0-663B69865986> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libLAPACK.dylib
    0x7fff94a75000 -
    0x7fff94adaff5  com.apple.Heimdal (4.0 - 2.0) <523EC6C4-BD9B-3840-9376-E617BA627F59> /System/Library/PrivateFrameworks/Heimdal.framework/Versions/A/Heimdal
    0x7fff94b32000 -
    0x7fff94e30fff  com.apple.Foundation (6.9 - 1056.13) <2EE9AB07-3EA0-37D3-B407-4A520F2CB497> /System/Library/Frameworks/Foundation.framework/Versions/C/Foundation
    0x7fff94f3f000 -
    0x7fff94f6dff7  com.apple.securityinterface (9.0 - 55047) <0346D8A9-2CAA-38F3-A741-5FBA5E9F1E7C> /System/Library/Frameworks/SecurityInterface.framework/Versions/A/SecurityInter face
    0x7fff95042000 -
    0x7fff95042ffd  libOpenScriptingUtil.dylib (157) <19F0E769-0989-3062-9AFB-8976E90E9759> /usr/lib/libOpenScriptingUtil.dylib
    0x7fff9506e000 -
    0x7fff95080ff7  com.apple.MultitouchSupport.framework (245.13 - 245.13) <4A5857F9-E249-3FA6-ADBB-410606AEC8CE> /System/Library/PrivateFrameworks/MultitouchSupport.framework/Versions/A/Multit ouchSupport
    0x7fff95081000 -
    0x7fff95082fff  com.apple.TrustEvaluationAgent (2.0 - 25) <334A82F4-4AE4-3719-A511-86D0B0723E2B> /System/Library/PrivateFrameworks/TrustEvaluationAgent.framework/Versions/A/Tru stEvaluationAgent
    0x7fff95083000 -
    0x7fff950edff7  com.apple.framework.IOKit (2.0.1 - 907.90.2) <A779DE46-BB7E-36FD-9348-694F9B09718F> /System/Library/Frameworks/IOKit.framework/Versions/A/IOKit
    0x7fff9514c000 -
    0x7fff95193ff7  libcups.2.dylib (372.2) <37802F24-BCC2-3721-8E12-82B29B61B2AA> /usr/lib/libcups.2.dylib
    0x7fff9532b000 -
    0x7fff953a2fff  com.apple.CoreServices.OSServices (600.4 - 600.4) <DAF9AF17-0AC5-364C-B0BF-B1AF3FB4A07F> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/OSServi ces.framework/Versions/A/OSServices
    0x7fff953a3000 -
    0x7fff953a4ff7  libSystem.B.dylib (1197.1.1) <5292BF21-9406-32D5-8BB3-7DD02C672FA0> /usr/lib/libSystem.B.dylib
    0x7fff956ac000 -
    0x7fff956c7ff7  libPng.dylib (1042) <36FF1DDA-9804-33C5-802E-3FCA9879F0E6> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libPng.dylib
    0x7fff956e7000 -
    0x7fff956f2ff7  com.apple.NetAuth (5.0 - 5.0) <C811E662-9EC3-3B74-808A-A75D624F326B> /System/Library/PrivateFrameworks/NetAuth.framework/Versions/A/NetAuth
    0x7fff956f3000 -
    0x7fff956ffff3  com.apple.AppleFSCompression (56 - 1.0) <5652B0D0-EB08-381F-B23A-6DCF96991FB5> /System/Library/PrivateFrameworks/AppleFSCompression.framework/Versions/A/Apple FSCompression
    0x7fff95700000 -
    0x7fff95701ff7  com.apple.print.framework.Print (9.0 - 260) <EE00FAE1-DA03-3EC2-8571-562518C46994> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Print.framewo rk/Versions/A/Print
    0x7fff957fa000 -
    0x7fff95996ff3  com.apple.QuartzCore (1.8 - 332.3) <80F1068F-4A34-34FB-9E05-A2DC0700D2F2> /System/Library/Frameworks/QuartzCore.framework/Versions/A/QuartzCore
    0x7fff95997000 -
    0x7fff9599bfff  libpam.2.dylib (20) <B93CE8F5-DAA8-30A1-B1F6-F890509513CB> /usr/lib/libpam.2.dylib
    0x7fff959e5000 -
    0x7fff959edff3  libCGCMS.A.dylib (599.20.11) <BB1E8D63-9FA1-3588-AC5D-1980576ED62C> /System/Library/Frameworks/CoreGraphics.framework/Versions/A/Resources/libCGCMS .A.dylib
    0x7fff959ee000 -
    0x7fff95ad2fff  com.apple.coreui (2.1 - 231) <432DB40C-6B7E-39C8-9FB5-B95917930056> /System/Library/PrivateFrameworks/CoreUI.framework/Versions/A/CoreUI
    0x7fff95adf000 -
    0x7fff95b09ff7  libpcap.A.dylib (42) <91D3FF51-D6FE-3C05-98C9-1182E0EC3D58> /usr/lib/libpcap.A.dylib
    0x7fff95b0a000 -
    0x7fff95ceffff  com.apple.CoreFoundation (6.9 - 855.14) <617B8A7B-FAB2-3271-A09B-C542E351C532> /System/Library/Frameworks/CoreFoundation.framework/Versions/A/CoreFoundation
    0x7fff95cf0000 -
    0x7fff95d20fff  com.apple.IconServices (25 - 25.17) <4751127E-FBD5-3ED5-8510-08D4E4166EFE> /System/Library/PrivateFrameworks/IconServices.framework/Versions/A/IconService s
    0x7fff95d74000 -
    0x7fff95ee2ff7  libBLAS.dylib (1094.5) <DE93A590-5FA5-32A2-A16C-5D7D7361769F> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libBLAS.dylib
    0x7fff95ee3000 -
    0x7fff95eecffb  com.apple.CommonAuth (4.0 - 2.0) <70FDDA03-7B44-37EC-B78E-3EC3C8505C76> /System/Library/PrivateFrameworks/CommonAuth.framework/Versions/A/CommonAuth
    0x7fff95eed000 -
    0x7fff95efdfff  libbsm.0.dylib (33) <2CAC00A2-1352-302A-88FA-C567D4D69179> /usr/lib/libbsm.0.dylib
    0x7fff95efe000 -
    0x7fff95f07ff3  libsystem_notify.dylib (121) <52571EC3-6894-37E4-946E-064B021ED44E> /usr/lib/system/libsystem_notify.dylib
    0x7fff95f08000 -
    0x7fff95f08fff  com.apple.CoreServices (59 - 59) <7A697B5E-F179-30DF-93F2-8B503CEEEFD5> /System/Library/Frameworks/CoreServices.framework/Versions/A/CoreServices
    0x7fff95f09000 -
    0x7fff95f14fff  libkxld.dylib (2422.90.20) <EF476345-7A69-3AC0-95ED-0196FB8910CB> /usr/lib/system/libkxld.dylib
    0x7fff95f6e000 -
    0x7fff95f80fff  com.apple.ImageCapture (9.0 - 9.0) <BE0B65DA-3031-359B-8BBA-B9803D4ADBF4> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/ImageCapture. framework/Versions/A/ImageCapture
    0x7fff96060000 -
    0x7fff96122ff5  com.apple.CoreText (352.0 - 367.19) <24848DF1-67EC-3D41-9548-1F14C6DFBBF9> /System/Library/Frameworks/CoreText.framework/Versions/A/CoreText
    0x7fff96132000 -
    0x7fff96157ff7  com.apple.CoreVideo (1.8 - 117.2) <4674339E-26D0-35FA-9958-422832B39B12> /System/Library/Frameworks/CoreVideo.framework/Versions/A/CoreVideo
    0x7fff96158000 -
    0x7fff96165ff0  libbz2.1.0.dylib (29) <0B98AC35-B138-349C-8063-2B987A75D24C> /usr/lib/libbz2.1.0.dylib
    0x7fff96166000 -
    0x7fff961adfff  libFontRegistry.dylib (127) <A77A0480-AA5D-3CC8-8B68-69985CD546DC> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/Resources/libFontRegistry.dylib
    0x7fff961ae000 -
    0x7fff96237ff7  libsystem_c.dylib (997.90.3) <6FD3A400-4BB2-3B95-B90C-BE6E9D0D78FA> /usr/lib/system/libsystem_c.dylib
    0x7fff9624c000 -
    0x7fff9637cff7  com.apple.desktopservices (1.8.2 - 1.8.2) <76D6ED93-9D5A-3941-8B88-A1773290AE74> /System/Library/PrivateFrameworks/DesktopServicesPriv.framework/Versions/A/Desk topServicesPriv
    0x7fff963d5000 -
    0x7fff963d6ff7  libsystem_sandbox.dylib (278.11) <5E5A6E09-33A9-391A-AB34-E57D93BB1551> /usr/lib/system/libsystem_sandbox.dylib
    0x7fff96410000 -
    0x7fff96414ff7  libheimdal-asn1.dylib (323.15) <B8BF2B7D-E913-3544-AA6D-CAC119F81C7C> /usr/lib/libheimdal-asn1.dylib
    0x7fff96415000 -
    0x7fff966fffff  com.apple.CoreServices.CarbonCore (1077.17 - 1077.17) <3A2E92FD-DEE2-3D45-9619-11500801A61C> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CarbonC ore.framework/Versions/A/CarbonCore
    0x7fff96700000 -
    0x7fff969d4fc7  com.apple.vImage (7.0 - 7.0) <D241DBFA-AC49-31E2-893D-EAAC31890C90> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vImage.fr amework/Versions/A/vImage
    0x7fff96bec000 -
    0x7fff96c14ffb  libxslt.1.dylib (13) <C9794936-633C-3F0C-9E71-30190B9B41C1> /usr/lib/libxslt.1.dylib
    0x7fff96c15000 -
    0x7fff96c1efff  com.apple.speech.synthesis.framework (4.7.1 - 4.7.1) <383FB557-E88E-3239-82B8-15F9F885B702> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ SpeechSynthesis.framework/Versions/A/SpeechSynthesis
    0x7fff96c1f000 -
    0x7fff96c71fff  libc++.1.dylib (120) <4F68DFC5-2077-39A8-A449-CAC5FDEE7BDE> /usr/lib/libc++.1.dylib
    0x7fff96cca000 -
    0x7fff970fdffb  com.apple.vision.FaceCore (3.0.0 - 3.0.0) <F42BFC9C-0B16-35EF-9A07-91B7FDAB7FC5> /System/Library/PrivateFrameworks/FaceCore.framework/Versions/A/FaceCore
    0x7fff970fe000 -
    0x7fff9713ffff  com.apple.PerformanceAnalysis (1.47 - 47) <B5B491F2-EF86-3382-B23B-EA78AC40AF25> /System/Library/PrivateFrameworks/PerformanceAnalysis.framework/Versions/A/Perf ormanceAnalysis
    0x7fff97142000 -
    0x7fff97169ff7  libsystem_network.dylib (241.3) <8B1E1F1D-A5CC-3BAE-8B1E-ABC84337A364> /usr/lib/system/libsystem_network.dylib
    0x7fff971e5000 -
    0x7fff971e6fff  libquit.dylib (161.2) <54B83D99-F84C-35E1-87D5-FCCB2F200FBD> /usr/lib/libquit.dylib
    0x7fff971e7000 -
    0x7fff971e7fff  com.apple.ApplicationServices (48 - 48) <3E3F01A8-314D-378F-835E-9CC4F8820031> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Application Services
    0x7fff97331000 -
    0x7fff97358ffb  libsystem_info.dylib (449.1.3) <7D41A156-D285-3849-A2C3-C04ADE797D98> /usr/lib/system/libsystem_info.dylib
    0x7fff97359000 -
    0x7fff97360ff8  liblaunch.dylib (842.90.1) <38D1AB2C-A476-385F-8EA8-7AB604CA1F89> /usr/lib/system/liblaunch.dylib
    0x7fff97484000 -
    0x7fff974a8fff  libxpc.dylib (300.90.2) <AB40CD57-F454-3FD4-B415-63B3C0D5C624> /usr/lib/system/libxpc.dylib
    0x7fff974a9000 -
    0x7fff974aafff  libunc.dylib (28) <62682455-1862-36FE-8A04-7A6B91256438> /usr/lib/system/libunc.dylib
    0x7fff974ab000 -
    0x7fff974d4fff  com.apple.DictionaryServices (1.2 - 208) <A539A058-BA57-35EE-AA08-D0B0E835127D> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Diction aryServices.framework/Versions/A/DictionaryServices
    0x7fff974d5000 -
    0x7fff97561ff7  com.apple.ink.framework (10.9 - 207) <8A50B893-AD03-3826-8555-A54FEAF08F47> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Ink.framework /Versions/A/Ink
    0x7fff97562000 -
    0x7fff97569fff  com.apple.NetFS (6.0 - 4.0) <8E26C099-CE9D-3819-91A2-64EA929C6137> /System/Library/Frameworks/NetFS.framework/Versions/A/NetFS
    0x7fff97cca000 -
    0x7fff97cf6fff  com.apple.CoreServicesInternal (184.9 - 184.9) <4DEA54F9-81D6-3EDB-AA3C-1F9C497B3379> /System/Library/PrivateFrameworks/CoreServicesInternal.framework/Versions/A/Cor eServicesInternal
    0x7fff97d03000 -
    0x7fff97d69fff  com.apple.framework.CoreWiFi (2.0 - 200.21.1) <5491896D-78C5-30B6-96E9-D8DDECF3BE73> /System/Library/Frameworks/CoreWiFi.framework/Versions/A/CoreWiFi
    0x7fff97d9c000 -
    0x7fff97e1cfff  com.apple.CoreSymbolication (3.0 - 141) <DC9F84AA-9BD0-322B-83C3-FDC1FA771F37> /System/Library/PrivateFrameworks/CoreSymbolication.framework/Versions/A/CoreSy mbolication
    0x7fff97e8e000 -
    0x7fff97ebdfff  com.apple.DebugSymbols (106 - 106) <E1BDED08-523A-36F4-B2DA-9D5C712F0AC7> /System/Library/PrivateFrameworks/DebugSymbols.framework/Versions/A/DebugSymbol s
    0x7fff97ee6000 -
    0x7fff97efeff7  com.apple.openscripting (1.4 - 157) <B3B037D7-1019-31E6-9D17-08E699AF3701> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/OpenScripting .framework/Versions/A/OpenScripting
    0x7fff97f02000 -
    0x7fff97f0affc  libGFXShared.dylib (9.6) <E276D384-3616-3511-B5F2-92621D6372D6> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGFXShared.d ylib
    0x7fff97f65000 -
    0x7fff97faaffe  com.apple.HIServices (1.22 - 467.2) <B7FCF008-C241-3862-BC63-E6EF4006A6E4> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ HIServices.framework/Versions/A/HIServices
    0x7fff985cc000 -
    0x7fff9861afff  com.apple.opencl (2.3.59 - 2.3.59) <8C2ACCC6-B0BA-3FE7-98A1-5C67284DEA4E> /System/Library/Frameworks/OpenCL.framework/Versions/A/OpenCL
    0x7fff9861b000 -
    0x7fff9861cff7  libDiagnosticMessagesClient.dylib (100) <4CDB0F7B-C0AF-3424-BC39-495696F0DB1E> /usr/lib/libDiagnosticMessagesClient.dylib
    0x7fff9861d000 -
    0x7fff9861dfff  com.apple.Cocoa (6.8 - 20) <E90E99D7-A425-3301-A025-D9E0CD11918E> /System/Library/Frameworks/Cocoa.framework/Versions/A/Cocoa
    0x7fff98622000 -
    0x7fff98661fff  libGLU.dylib (9.6) <EE4907CA-219C-34BD-A84E-B85695F64C05> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLU.dylib
    0x7fff98662000 -
    0x7fff9867eff7  libsystem_kernel.dylib (2422.90.20) <20E00C54-9222-359F-BD98-CB79ABED769A> /usr/lib/system/libsystem_kernel.dylib
    0x7fff9867f000 -
    0x7fff987d2ff7  com.apple.audio.toolbox.AudioToolbox (1.10 - 1.10) <3511ABFE-22E1-3B91-B86A-5E3A78CE33FD> /System/Library/Frameworks/AudioToolbox.framework/Versions/A/AudioToolbox
    0x7fff987d3000 -
    0x7fff987d7fff  com.apple.CommonPanels (1.2.6 - 96) <6B434AFD-50F8-37C7-9A56-162C17E375B3> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/CommonPanels. framework/Versions/A/CommonPanels
    0x7fff987d8000 -
    0x7fff987d8fff  com.apple.Accelerate.vecLib (3.9 - vecLib 3.9) <F8D0CC77-98AC-3B58-9FE6-0C25421827B6> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/vecLib
    0x7fff987d9000 -
    0x7fff98832fff  libTIFF.dylib (1042) <51D02EEC-0D0C-34C1-91C8-D316473A3FEA> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libTIFF.dylib
    0x7fff98833000 -
    0x7fff9883afff  libcompiler_rt.dylib (35) <4CD916B2-1B17-362A-B403-EF24A1DAC141> /usr/lib/system/libcompiler_rt.dylib
    0x7fff98862000 -
    0x7fff988baff7  com.apple.Symbolication (1.4 - 129) <6D47983E-9B8E-38A0-9503-099601CF118E> /System/Library/PrivateFrameworks/Symbolication.framework/Versions/A/Symbolicat ion
    0x7fff98c43000 -
    0x7fff98c46fff  com.apple.TCC (1.0 - 1) <32A075D9-47FD-3E71-95BC-BFB0D583F41C> /System/Library/PrivateFrameworks/TCC.framework/Versions/A/TCC
    0x7fff98c47000 -
    0x7fff98e8fff7  com.apple.CoreData (107 - 481.01) <DA339795-5D97-35B5-9B04-629830013720> /System/Library/Frameworks/CoreData.framework/Versions/A/CoreData
    0x7fff98ed3000 -
    0x7fff98f36ff7  com.apple.SystemConfiguration (1.13 - 1.13) <63B985ED-E7E4-3095-8D12-63C9F1DB0F3D> /System/Library/Frameworks/SystemConfiguration.framework/Versions/A/SystemConfi guration
    0x7fff98f37000 -
    0x7fff98f39fff  com.apple.OAuth (25 - 25) <22D42C60-CA67-31D7-A4A4-AFD8F35408D7> /System/Library/PrivateFrameworks/OAuth.framework/Versions/A/OAuth
    0x7fff98f3a000 -
    0x7fff98f3dfff  libCoreVMClient.dylib (58.1) <EBC36C69-C896-3C3D-8589-3E9023E7E56F> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libCoreVMClien t.dylib
    0x7fff98faa000 -
    0x7fff990b0ff7  com.apple.ImageIO.framework (3.3.0 - 1042) <6101F33E-CACC-3070-960A-9A2EA4BC5F44> /System/Library/Frameworks/ImageIO.framework/Versions/A/ImageIO
    0x7fff990b1000 -
    0x7fff990c0ff8  com.apple.LangAnalysis (1.7.0 - 1.7.0) <8FE131B6-1180-3892-98F5-C9C9B79072D4> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ LangAnalysis.framework/Versions/A/LangAnalysis
    0x7fff990c1000 -
    0x7fff990ffff7  libGLImage.dylib (9.6) <DCF2E131-A65E-33B2-B32D-28FF01605AB1> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLImage.dyl ib
    0x7fff9916b000 -
    0x7fff991a3ff7  com.apple.RemoteViewServices (2.0 - 94) <3F34D630-3DDB-3411-BC28-A56A9B55EBDA> /System/Library/PrivateFrameworks/RemoteViewServices.framework/Versions/A/Remot eViewServices
    0x7fff991a4000 -
    0x7fff991cdff7  libc++abi.dylib (49.1) <21A807D3-6732-3455-B77F-743E9F916DF0> /usr/lib/libc++abi.dylib
    0x7fff9935c000 -
    0x7fff99369fff  com.apple.Sharing (132.2 - 132.2) <F983394A-226D-3244-B511-FA51FDB6ADDA> /System/Library/PrivateFrameworks/Sharing.framework/Versions/A/Sharing
    0x7fff9936a000 -
    0x7fff993c9fff  com.apple.framework.CoreWLAN (4.3.2 - 432.47) <AE6FAE44-918C-301C-A0AA-C65CAB6B5668> /System/Library/Frameworks/CoreWLAN.framework/Versions/A/CoreWLAN
    0x7fff993ca000 -
    0x7fff9945afff  com.apple.Metadata (10.7.0 - 800.23) <BFEE576F-D779-300B-B685-26A3A008710A> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Metadat a.framework/Versions/A/Metadata
    0x7fff998ae000 -
    0x7fff998c5ff7  com.apple.CFOpenDirectory (10.9 - 173.90.1) <38A25261-C622-3F11-BFD3-7AFFC44D57B8> /System/Library/Frameworks/OpenDirectory.framework/Versions/A/Frameworks/CFOpen Directory.framework/Versions/A/CFOpenDirectory
    0x7fff998cb000 -
    0x7fff99929ff7  com.apple.corelocation (1486.17 - 1486.24) <9FBB29F0-E000-3190-A96C-9EAA5CCCA2A0> /System/Library/Frameworks/CoreLocation.framework/Versions/A/CoreLocation
    0x7fff9992a000 -
    0x7fff9992afff  com.apple.Carbon (154 - 157) <EFC1A1C0-CB07-395A-B038-CFA2E71D3E69> /System/Library/Frameworks/Carbon.framework/Versions/A/Carbon
    0x7fff9997f000 -
    0x7fff99989ff7  com.apple.CrashReporterSupport (10.9 - 538) <DD7669BA-78A6-3BEA-8410-17F556ACAA18> /System/Library/PrivateFrameworks/CrashReporterSupport.framework/Versions/A/Cra shReporterSupport
    0x7fff99ec6000 -
    0x7fff99ef5ff5  com.apple.GSS (4.0 - 2.0) <62046C17-5D09-346C-B08E-A664DBC18411> /System/Library/Frameworks/GSS.framework/Versions/A/GSS
    0x7fff99f2a000 -
    0x7fff99f85ffb  com.apple.AE (665.5 - 665.5) <BBA230F9-144C-3CAB-A77A-0621719244CD> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/AE.fram ework/Versions/A/AE
    0x7fff99f89000 -
    0x7fff9a259ffc  com.apple.CoreImage (9.2.7) <BF88A02E-994E-3970-AC62-04248CA8DC46> /System/Library/Frameworks/QuartzCore.framework/Versions/A/Frameworks/CoreImage .framework/Versions/A/CoreImage
    0x7fff9a25a000 -
    0x7fff9a349fff  libFontParser.dylib (111.1) <835A8253-6AB9-3AAB-9CBF-171440DEC486> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/Resources/libFontParser.dylib
    0x7fff9a34a000 -
    0x7fff9a363ff7  com.apple.Ubiquity (1.3 - 289) <C7F1B734-CE81-334D-BE41-8B20D95A1F9B> /System/Library/PrivateFrameworks/Ubiquity.framework/Versions/A/Ubiquity
    0x7fff9a364000 -
    0x7fff9a414ff7  libvMisc.dylib (423.32) <049C0735-1808-39B9-943F-76CB8021744F> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libvMisc.dylib
    0x7fff9a448000 -
    0x7fff9a52fff7  libxml2.2.dylib (26) <A1DADD11-89E5-3DE4-8802-07186225967F> /usr/lib/libxml2.2.dylib
    0x7fff9a572000 -
    0x7fff9a597ff7  com.apple.ChunkingLibrary (2.0 - 155.1) <B845DC7A-D1EA-31E2-967C-D1FE0C628036> /System/Library/PrivateFrameworks/ChunkingLibrary.framework/Versions/A/Chunking Library
    0x7fff9a598000 -
    0x7fff9a5b2fff  libdispatch.dylib (339.90.1) <F3CBFE1B-FCE8-3F33-A53D-9092AB382DBB> /usr/lib/system/libdispatch.dylib
    0x7fff9a5b9000 -
    0x7fff9a5c3fff  libcommonCrypto.dylib (60049) <8C4F0CA0-389C-3EDC-B155-E62DD2187E1D> /usr/lib/system/libcommonCrypto.dylib
    0x7fff9a876000 -
    0x7fff9a87bff7  libunwind.dylib (35.3) <78DCC358-2FC1-302E-B395-0155B47CB547> /usr/lib/system/libunwind.dylib
    0x7fff9a87c000 -
    0x7fff9a8abfd2  libsystem_m.dylib (3047.16) <B7F0E2E4-2777-33FC-A787-D6430B630D54> /usr/lib/system/libsystem_m.dylib
    0x7fff9a8ac000 -
    0x7fff9a8afff7  libdyld.dylib (239.4) <CF03004F-58E4-3BB6-B3FD-BE4E05F128A0> /usr/lib/system/libdyld.dylib
    0x7fff9a95a000 -
    0x7fff9a9a8fff  libcorecrypto.dylib (161.1) <F3973C28-14B6-3006-BB2B-00DD7F09ABC7> /usr/lib/system/libcorecrypto.dylib
    0x7fff9a9a9000 -
    0x7fff9a9aefff  libmacho.dylib (845) <1D2910DF-C036-3A82-A3FD-44FF73B5FF9B> /usr/lib/system/libmacho.dylib
    0x7fff9a9af000 -
    0x7fff9a9afffd  com.apple.audio.units.AudioUnit (1.10 - 1.10) <486A97CD-C1F7-324D-87BC-B07F7A415B68> /System/Library/Frameworks/AudioUnit.framework/Versions/A/AudioUnit
    0x7fff9a9b0000 -
    0x7fff9a9bbfff  libGL.dylib (9.6) <A2EF4E15-EA08-396D-A1D4-29E1CED6876A> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGL.dylib
    0x7fff9ad99000 -
    0x7fff9ada1fff  libsystem_dnssd.dylib (522.90.2) <A0B7CF19-D9F2-33D4-8107-A62184C9066E> /usr/lib/system/libsystem_dnssd.dylib
    0x7fff9b185000 -
    0x7fff9b185ff7  libkeymgr.dylib (28) <3AA8D85D-CF00-3BD3-A5A0-E28E1A32A6D8> /usr/lib/system/libkeymgr.dylib
    0x7fff9b1c5000 -
    0x7fff9b1c8ffc  com.apple.IOSurface (91 - 91) <07CA8A59-1E32-3FB6-B506-18DAF58A8CE0> /System/Library/Frameworks/IOSurface.framework/Versions/A/IOSurface
    0x7fff9b1c9000 -
    0x7fff9b1cbff3  libsystem_configuration.dylib (596.13) <B51C8C22-C455-36AC-952D-A319B6545884> /usr/lib/system/libsystem_configuration.dylib
    External Modification Summary:
      Calls made by other processes targeting this process:
    task_for_pid: 1
    thread_create: 0
    thread_set_state: 0
      Calls made by this process:
    task_for_pid: 0
    thread_create: 0
    thread_set_state: 0
      Calls made by all processes on this machine:
    task_for_pid: 903
    thread_create: 0
    thread_set_state: 0
    VM Region Summary:
    ReadOnly portion of Libraries: Total=196.5M resident=113.6M(58%) swapped_out_or_unallocated=82.9M(42%)
    Writable regions: Total=1.1G written=2652K(0%) resident=3540K(0%) swapped_out=0K(0%) unallocated=1.1G(100%)
    REGION TYPE                   
    VIRTUAL
    ===========                   
    =======
    CG shared images                 
    140K
    JS JIT generated code              
    8K
    JS JIT generated code (reserved) 
    1.0G   
    reserved VM address space (unallocated)
    Kernel Alloc Once                  
    8K
    MALLOC                          
    71.6M
    MALLOC (admin)                    
    32K
    SQLite page cache                
    256K
    STACK GUARD                     
    56.0M
    Stack                           
    10.1M
    VM_ALLOCATE                      
    348K
    WebKit Malloc                   
    1232K
    __DATA                          
    23.3M
    __IMAGE                          
    528K
    __LINKEDIT                      
    79.4M
    __TEXT                         
    117.1M
    __UNICODE                        
    544K
    mapped file                     
    32.6M
    shared memory                      
    4K
    ===========                   
    =======
    TOTAL                            
    1.4G
    TOTAL, minus reserved VM space 
    393.1M
    Model: MacBookPro8,2, BootROM MBP81.0047.B27, 4 processors, Intel Core i7, 2.2 GHz, 8 GB, SMC 1.69f4
    Graphics: Intel HD Graphics 3000, Intel HD Graphics 3000, Built-In, 512 MB
    Graphics: AMD Radeon HD 6750M, AMD Radeon HD 6750M, PCIe, 512 MB
    Memory Module: BANK 0/DIMM0, 4 GB, DDR3, 1333 MHz, 0x0198, 0x393930353432382D3035312E4130304C4620
    Memory Module: BANK 1/DIMM0, 4 GB, DDR3, 1333 MHz, 0x0198, 0x393930353432382D3035312E4130304C4620
    AirPort: spairport_wireless_card_type_airport_extreme (0x14E4, 0xD6), Broadcom BCM43xx 1.0 (5.106.98.100.22)
    Bluetooth: Version 4.2.3f10 13477, 3 services, 23 devices, 1 incoming serial ports
    Network Service: Wi-Fi, AirPort, en1
    Serial ATA Device: ST9500325ASG, 500.11 GB
    Serial ATA Device: HL-DT-ST DVDRW  GS31N
    USB Device: FaceTime HD Camera (Built-in)
    USB Device: Hub
    USB Device: Apple Internal Keyboard / Trackpad
    USB Device: BRCM2070 Hub
    USB Device: Bluetooth USB Host Controller
    USB Device: Hub
    USB Device: USB2.0 Hub
    USB Device: USB OPTICAL MOUSE
    USB Device: Dell USB Keyboard
    USB Device: IR Receiver
    Thunderbolt Bus: MacBook Pro, Apple Inc., 22.1

    Try repairing permissions.
    Launch Disk Utility located in Applications > Utilities
    Select the startup disk on the left then select the First Aid tab.
    Click:   Repair Disk Permissions.
    Restart your Mac when it's finished then try Safari.

  • Auto report refresh on v2.2

    I'm following an old thread on how to auto refresh a region. I followed the steps but
    the page/region is not refreshing... Could anybody help me whats wrong? I copied
    the colde from Carl's page. Im still stuck with 2.2.
    thanks.

    are you talking about the database table caching? if so we are using OLAP cubes and I am not sure if caching is disabled. Is my issue related to caching? also another updated if I have just one dashboard prompt for example just year  only report 1 refreshes and the report 2 doesn't disappear. But when I add state dashboard prompt, which ever prompt I change state or year  both reports refreshes. The problem is when I add more than one prompt on the dashboard all the reports refreshes when the dashboard prompt selection changes. Any ideas.
    Thanks

  • Group Tree issue when refreshing- Crystal for Visual Studio 2010 WPF Viewer

    Hello,
    We've run into an issue when refreshing reports with the WPF viewer for Visual Studio 2010. After the report is refreshed, the Group Tree is blank and it should have values. For example, you run a report and see values in the Group Tree. If you refresh the report with the same parameter values the Group Tree is blank.
    Has anyone run into this yet?
    Thanks,
    Tyler

    That is correct.
    I just did a quick test and was not able to reproduce the issue.
    Details of test:
    1) Create a new app;
    File | New | Project
    Visual Basic | reporting -> Crystal Reports WPF Application
    2) Add the "Open File" button to the viewer (ShowOpenFileButton off of the WPF viewer properties)
    3) Run app
    4) Browse to a report that has a number of groups >250
    5) Refresh report using the Refresh button on the viewer
    I'll work on this a bit later today, see if I can repro it another way. Meanwhile, can you provide mode details (code) on how you repro the issue?
    - Ludek

  • Unnecessary Report refresh on the dashboard when changing the dashboard prompts

    Hello All
    I have two reports on a dashboard with two dashboard prompts for example Report 1) Year, State, Count; Filter: Year is prompted 2) Year, State, Count; FIlter: State is prompted. On the dashboard we have two reports Report1) and Report 2) with Year and State dashboard prompts.
    The issue is when you change year prompt both the reports gets refreshed even though nothing changes on report 2 but it still dissapears and appears as it is refreshing and  the same happens with report 1 when i change the state prompt it refreshes that report.
    Please letme know how i can limit the dashboard prompt to refresh only the report where it is prompted.
    Thanks
    Ravi

    are you talking about the database table caching? if so we are using OLAP cubes and I am not sure if caching is disabled. Is my issue related to caching? also another updated if I have just one dashboard prompt for example just year  only report 1 refreshes and the report 2 doesn't disappear. But when I add state dashboard prompt, which ever prompt I change state or year  both reports refreshes. The problem is when I add more than one prompt on the dashboard all the reports refreshes when the dashboard prompt selection changes. Any ideas.
    Thanks

  • PO and Goods Issue report

    Dear All,
    I want a PO report for which Import purchase and Local purchases Goods receipt done.(spares and accesories)
    I also want a Goods issue report for which Imports and Local - stocked material or direct consumption material (eg cost center)
    Please advice
    Regards

    I want a PO report for which Import purchase and Local purchases Goods receipt done.(spares and accesories)
    In MB51,Enter GR Movement type,Enter plant,vendor no,purchase order no.,valuation type(if customized,seperate valuation type for import & local then you can get seperate reports),batch(if customized),posting date,transaction type.
    In report,Click details list,modify layout to include vendor,p.o no,material doc.no,posting date,gr material,gr qty,uom,valuation type.
    I also want a Goods issue report for which Imports and Local - stocked material or direct consumption material (eg cost center)
    In MB51Enter goods issue movement type(261,201(against cost centere),etc.,,),plant,posting date,batch etc.,

  • PO wise issue report

    dear all,
    Please let me know any standard report available to track 541 movement type for suncontractiong PO wise issue report
    Thanks

    Hi,
    You can see the same through MB51 itself. Go to MB51 and put the mvt 541 and plant.
    After running the report you can choose your own layout with Po No etc.,
    Regards,
    Mohd Ali.

  • DeskI report refreshable on the web

    I am attempting to make a DeskI report available on the web.  That part was easy, i saved as HTML, and was able to view it on a web page.  But we need a step further,  i need to be able to make this report refreshable, it has 4 prompts.  We want the user to be able to enter info into prompts and get the report.  I know this can be done,  but cannot figure out why i can't make it work, any help is appreciated.

    When saving the Deski report as HTML set the "Automatic Reload Every"
    The browser reloads the document according to the frequency specified in the box, which ensures that the HTML document is kept up-to-date with changes made to the original document in BusinessObjects. This is similar to the document refresh feature.

  • Crystal report refresh based on document ID

    Hi All,
    i am able to do webi report refresf based on document id but i am not able to find crystal report refresh based on document ID BO SDK API on JAVA.
    please help me on this?
    the below code is for webi report refresh :
    ReportEngines engines = (ReportEngines) Esession.getService("ReportEngines");
    ReportEngine widocRepEngine = (ReportEngine) engines.getService(ReportEngines.ReportEngineType.WI_REPORT_ENGINE);
    widocRepEngine.setLocale("en_US");
    DocumentInstance doc = widocRepEngine.openDocument(documentId);               
    doc.refresh();

    Well, first, the ReportEngine code you are using is only for Webi and Deski.  You may want to start by looking at the RAS and Enterprise sections of the this [wiki|http://wiki.sdn.sap.com/wiki/display/BOBJ/BusinessObjectsSDKSampleApplications]

  • Any known issue reported for "Rollup 8 for Exchange Server 2010 Service Pack 2"

    Hello,
    Currently our servers are running with "Exchange 2010 SP2 RU7", we are planning to update the Rollup version to RU8 for SP2.
    Is there any knows issues reported for "Rollup 8 for Exchange Server 2010 Service Pack 2" till now ? is it safe to update the RU8 ?
    http://www.microsoft.com/en-us/download/details.aspx?id=41394

    (1)  I had to roll it back:
    The rollup released Tuesday the 9th caused random problems with systems ranging from general slow down to operation failed errors.  It didn’t impact everyone at once and seemed to take 48hrs for everyone to have a problem.  Rolling
    back the update and rebooting the server seemed to resolve the issue.
    Issues reported before the general mailflow stopping for everyone:
    Nothing major … an occasional operation failed when I hit send but, it will go thru after I hit the send button a couple of times.
    A MICROSOFT OUTLOOK BOX APPEARS WITH A TRIANGLE WITH A ! INSIDE IT. THE MESSAGE SAYS THE OPERATION FAILED.
    (2)   
    ANOTHER CODE APPEARED WHEN I TRIED TO SEND THIS E-MAIL SO I CLOSED OUTLOOK AND RE-STARTED OUTLOOK. THE MESSAGE READ, CANNOT CREATE THE E-MAIL MESSAGE BECAUSE A DATA FILE TO SEND AND RECEIVE MESSAGE CANNOT BE FOUND. CHECK YOUR SETTINGS IN THIS MICROSOFT
    OUTLOOK PROFILE. IN MICROSOFT WINDOWS, CLICK CONTROL PANEL.CLICK USER ACCOUNTS AND THEN CLICK MAIL. CLICK SHOW PROFILE, AND THEN CLICK PROPERTIES.
    When he tries to open an e-mail, he gets an error message.
    If he tries to mark an e-mail unread, he gets a different message.
    Thanks Ben

  • OBI Report Refresh automation

    Hi All
    I am having Oracle Data Integrator as ELT tool and Oracle Business Intelligence as reporting tool. Both are in Linux servers.
    I want to automate the report refreshal. My plan for this automation is as below:
    When ODI load gets completed, touch a file in my ODI server which will be FTPed to my OBI Server and let the report refresh starts.
    However, I have doubt about how to make OBI report refreshing as event based/file based?
    Any help/Sugesstion is most welcome as I am stuck up in this point.
    Thanks
    Karthik

    Hi
    The problem with this soultion is that what happens if the ETL was not completed at that time?.
    For example,
    i am scheduling Report A to be refreshed by 0400 assuming the ETL gets completed by 0345 or atleast by 0359. If at some unavoidable circumstances if my ETL load got failed or it gets completed by say 0430, then as per my scheduling the report will be refreshed by 0400 which is not correct.
    So I want to have something like, once my ETL load gets completed, I will touch a file/make an entry in table. I want the OBI refresh to be like event based such that only when that file is made/entry is made my report refresh should be initiated.
    Its something like event based trigger as we have in BO. Kindly suggest your soultion.
    Thanks

Maybe you are looking for

  • Payment Term -- From where it is getting defaulted

    hi, i want to default the payment term from customer in AR to order management while creating the order? i want some one in this forum to explain the sequence of payment term getting defaulted, i see the payment term defined in release r12 in many pl

  • Change item order in Muse CC Quick info widget

    Hi, haven´t figured out yet how to change the items order from the Muse CC "Quick Info" widget. When I have f.i. 5 items how do I insert one at position 2. When I click f.i. the "+" at position 2 the new item will regardless be at position #6 (at the

  • Error "No Receiver Found"

    hi, I have designed a simple scenario wherein a file is picked up from SAP directory and transfered to an FTP server. Used weblog # 4383 to design the scenario. Now when i execute, getting the message "No receiver found; message stopped but has no er

  • N97 Mini headphone port

    I have an N97 MIni, only about 5 months old. I have been using the headphones that came with it, and they work fine. I recieved a new set of headphones but when I plug the jack in, the phone registers it as a 'TV-Out Cable.'  Is there any way to fix

  • Can't load sql file from inside jar file?

    hi all i have a sql file inside my jar file and i want to get the path of the sql file to use it in runtime command to restore a sql dump file i used the following but it doesn't work: the path contains invalid characters such %20% instead of and? UR