Trigger query not executed and havenot any exception

Hello all,
I am using oracle 10g lite database, and i m firing a create trigger query, but it is not executed on console, when i try at console at this trigger query after that no one query will fire,
Plzzzzzzzzzzzzzzzzzzz help me
my used table is
1. create table t1 ( c1 int, c2 int);
2. create table t2 (c1 int, c2 int);
3. Create trigger System.check after insert on system.t1 For each Row begin Insert Into system.t2 ( c1,c2 ) Values (1,1) ;end ;
Thankx in advance
Pankaj

Triggers are supported on the client side in newer versions:
11.2.1 Creating Java Stored Procedures
To create a stored procedure, perform the following:
1.
Create the class that you want to store in Oracle Database Lite. You can use any Java IDE to write the procedure, or you can simply reuse an existing procedure that meets your needs.
When creating the class, consider the following restrictions on calling Java stored procedures from SQL DML statements:
When called from an INSERT, UPDATE, or DELETE statement, the method cannot query or modify any database tables modified by that statement.
When called from a SELECT, INSERT, UPDATE, or DELETE statement, the method cannot execute SQL transaction control statements, such as COMMIT or ROLLBACK.
Note:
Any SQL statement in a stored procedure that violates a restriction produces an error at run time.
2.
Provide your class with a unique name for its deployment environment, since only one Java Virtual Machine is loaded for each Oracle Database Lite application. If the application executes methods from multiple databases, then the Java classes from these databases are loaded into the same Java Virtual Machine. We recommend that you prefix the Java class name with the database name to ensure that the Java class names are unique across multiple databases.
3.
If you are executing any DML statements in your Java stored procedure, then—in order for these statements to exist within the same transaction—you must pass an argument of type java.sql.Connection as the first argument in the method. You must have the Connection object in order to prepare and execute any statements. Oracle Database Lite supplies the appropriate argument value of the Oracle Lite database Connection object for you; the application executing the method does not need to provide a value for this parameter.

Similar Messages

  • If image file not exist in image path crystal report not open and give me exception error problem

    Hi guys my code below show pictures for all employees
    code is working but i have proplem
    if image not exist in path
    crystal report not open and give me exception error image file not exist in path
    although the employee no found in database but if image not exist in path when loop crystal report will not open
    how to ignore image files not exist in path and open report this is actually what i need
    my code below as following
    DataTable dt = new DataTable();
    string connString = "data source=192.168.1.105; initial catalog=hrdata;uid=sa; password=1234";
    using (SqlConnection con = new SqlConnection(connString))
    con.Open();
    SqlCommand cmd = new SqlCommand("ViewEmployeeNoRall", con);
    cmd.CommandType = CommandType.StoredProcedure;
    SqlDataAdapter da = new SqlDataAdapter();
    da.SelectCommand = cmd;
    da.Fill(dt);
    foreach (DataRow dr in dt.Rows)
    FileStream fs = null;
    fs = new FileStream("\\\\192.168.1.105\\Personal Pictures\\" + dr[0] + ".jpg", FileMode.Open);
    BinaryReader br = new BinaryReader(fs);
    byte[] imgbyte = new byte[fs.Length + 1];
    imgbyte = br.ReadBytes(Convert.ToInt32((fs.Length)));
    dr["Image"] = imgbyte;
    fs.Dispose();
    ReportDocument objRpt = new Reports.CrystalReportData2();
    objRpt.SetDataSource(dt);
    crystalReportViewer1.ReportSource = objRpt;
    crystalReportViewer1.Refresh();
    and exception error as below

    First: I created a New Column ("Image") in a datatable of the dataset and change the DataType to System.Byte()
    Second : Drag And drop this image Filed Where I want.
    private void LoadReport()
    frmCheckWeigher rpt = new frmCheckWeigher();
    CryRe_DailyBatch report = new CryRe_DailyBatch();
    DataSet1TableAdapters.DataTable_DailyBatch1TableAdapter ta = new CheckWeigherReportViewer.DataSet1TableAdapters.DataTable_DailyBatch1TableAdapter();
    DataSet1.DataTable_DailyBatch1DataTable table = ta.GetData(clsLogs.strStartDate_rpt, clsLogs.strBatchno_Rpt, clsLogs.cmdeviceid); // Data from Database
    DataTable dt = GetImageRow(table, "Footer.Jpg");
    report.SetDataSource(dt);
    crv1.ReportSource = report;
    crv1.Refresh();
    By this Function I merge My Image data into dataTable
    private DataTable GetImageRow(DataTable dt, string ImageName)
    try
    FileStream fs;
    BinaryReader br;
    if (File.Exists(AppDomain.CurrentDomain.BaseDirectory + ImageName))
    fs = new FileStream(AppDomain.CurrentDomain.BaseDirectory + ImageName, FileMode.Open);
    else
    // if photo does not exist show the nophoto.jpg file
    fs = new FileStream(AppDomain.CurrentDomain.BaseDirectory + ImageName, FileMode.Open);
    // initialise the binary reader from file streamobject
    br = new BinaryReader(fs);
    // define the byte array of filelength
    byte[] imgbyte = new byte[fs.Length + 1];
    // read the bytes from the binary reader
    imgbyte = br.ReadBytes(Convert.ToInt32((fs.Length)));
    dt.Rows[0]["Image"] = imgbyte;
    br.Close();
    // close the binary reader
    fs.Close();
    // close the file stream
    catch (Exception ex)
    // error handling
    MessageBox.Show("Missing " + ImageName + "or nophoto.jpg in application folder");
    return dt;
    // Return Datatable After Image Row Insertion
    Mark as answer or vote as helpful if you find it useful | Ammar Zaied [MCP]

  • QBE style(Find-Execute) Query not executing when VO has bind parameter

    I have an Entity Based ViewObject that is composed of 3 Entities so the entities are related through an Assoc. Then the ViewObject also has a bind paremeter defined and used in the WHERE clause.
    In my page everything is fine until when I use/click on the Find operation on the JSF page. When the Find operation is executed the page/form goes blank so I can enter by QBE query. Now when I Execute my search by executing the ExecuteWith params operation. Nothing is happening to the screen, it seems that query was not executed. Although there was no errors or exceptions displayed.
    However if I remove the bind parameter, and execute the Execute operation instead after going to Find mode, the query is executed properly and I get expected results.
    My problem is a bit general, but are there anyone who had a similar problem like this? Im still in the process of creating a test case.
    regards,
    Anton

    Hi Frank,
    But the "ExecuteWithParams" operation provides the bind variable right? (i had the value hardcoded on the pagedef). So it must have supplied a value. I also noticed that this is happening only when if the VIewObject contains two or more Entities. If the Viewobject has only 1 entity, the ViewObject queries properly.
    Anyway Frank, I had found a fix for this. I set an InvokeAction on the pagedef that binds to the ExecuteWithParams that is invoked during page load only(!postback condition). and then I just use the Find-Execute operations instead of the Find-ExecuteWithParams operations that I used previously.
    I will try to replicate the issue again to investigate what's really going on. I just want to know if its a bug or just an expected behavior or i just made a mistake.
    regards,
    Anton

  • Database migration query not executing in database

    We moved over our SQL database to another server. We have a few .cfm template files that have queries to get 'content' from our database. These queries in the .cfm template files work fine and execute properly. However, for some reason, since we moved over our database, the queries in the actual database don't execute/run anymore. In the old server we didn't have this problem. Our queries in the database would run properly then. The data would display correctly on the webpages.
    Is there some kind of properties setup that was overlooked when migrating over our database?
    The output we now see when viewing our pages is the actual query code.
    Example:
    SELECT lname
    FROM table
    This is actually displayed on the website and therefore the query is not executing/running. Our code was never changed. So why is it not outputting the same?
    Thanks for any help provided.

    Sorry for the confusion.
    The coldfusion templates and database queries both worked fine on the previous old server.
    Now since the migration onto the new server, only the coldfusion templates work fine, but not the queries in the database.
    So for example, a query in the coldfusion template will run fine, and execute the intial pull of data. But once the content is pulled from the database, the queries inside the database (including stored procedures) don't execute.
    We do get the expected results when we run our stored procedure in Management Studio and if we put the stored procedure on a standalone web page we do see the records. 
    We only see the sql code when we have the stored procedure inside of our w_content table of our database, and its being called by the first query in the template.  For some odd reason the stored procedure does not execute if it is inside the database.  
    Hopefully that clarifies our problem.
    Thank you for helping!

  • Query not executing for one particular value

    Hi
    I have query on multi provider. and this multi provider is combination of Info objects only but not any ODS or cubes. I have one key figure in this multi provider.while executing the query i need to give input for variabl which has 7 different values. Query is executing fine for 6 values but not for one particular value.
    query executed in listcube transaction and it is executed fine here for the same selection. then what might be the reason?
    Please advise as soon as possible.
    Thanks

    Hi Kiran,
    are you maintaining any filters in the query? or is there any logic in the exit for this variable.
    regards.

  • ABAP query not executing

    Dear all,
    I have created ABAP query on purchasing. But in SQ1, when I executed " TEST", it throws message "List is wider than 255 characters (generation not possible) ". please let me know what changes I need for successful execution of query?
    thanks and regards,
    Prashanth

    Hi Prashanth,
    It seems that the output that you generate is wider than 255 char. try with lesser fields in the output and check.
    Hope it helps.
    Thanks,
    Anju

  • Logic 9 will not bounce and crashes any ideas?

    Help Logic pro 9 will not bounce and or save and crashes upon doing so..any ideas?
    Process:    
    Logic Pro [364]
    Path:       
    /Applications/Logic Pro.app/Contents/MacOS/Logic Pro
    Identifier: 
    com.apple.logic.pro
    Version:    
    9.1.8 (1700.67)
    Build Info: 
    Logic-17006700~1
    Code Type:  
    X86-64 (Native)
    Parent Process:  launchd [149]
    Date/Time:  
    2013-05-16 17:03:17.532 -0400
    OS Version: 
    Mac OS X 10.7.5 (11G63)
    Report Version:  9
    Interval Since Last Report:     
    361181 sec
    Crashes Since Last Report:      
    15
    Per-App Interval Since Last Report:  138144 sec
    Per-App Crashes Since Last Report:   15
    Anonymous UUID:                 
    9B3DFB01-5401-4A1E-AD58-F4C0D6197227
    Crashed Thread:  0  Dispatch queue: com.apple.main-thread
    Exception Type:  EXC_BAD_ACCESS (SIGABRT)
    Exception Codes: KERN_INVALID_ADDRESS at 0x0000000000000000
    VM Regions Near 0:
    -->
    __TEXT            
    0000000100000000-0000000100c19000 [ 12.1M] r-x/rwx SM=COW  /Applications/Logic Pro.app/Contents/MacOS/Logic Pro
    Application Specific Information:
    objc[364]: garbage collection is OFF
    abort() called
    Thread 0 Crashed:: Dispatch queue: com.apple.main-thread
    0   libsystem_kernel.dylib   
    0x00007fff8721cce2 __pthread_kill + 10
    1   libsystem_c.dylib        
    0x00007fff89ef77d2 pthread_kill + 95
    2   libsystem_c.dylib        
    0x00007fff89ee8b4a __abort + 159
    3   libsystem_c.dylib        
    0x00007fff89ee8aab abort + 192
    4   com.apple.logic.pro      
    0x00000001003b3226 std::_Rb_tree<short, std::pair<short const, CGRect>, std::_Select1st<std::pair<short const, CGRect> >, std::less<short>, std::allocator<std::pair<short const, CGRect> > >::_M_erase(std::_Rb_tree_node<std::pair<short const, CGRect> >*) + 98486
    5   libsystem_c.dylib        
    0x00007fff89f49cfa _sigtramp + 26
    6   com.apple.logic.pro      
    0x0000000100570a25 std::vector<TOSCService, std::allocator<TOSCService> >::erase(__gnu_cxx::__normal_iterator<TOSCService*, std::vector<TOSCService, std::allocator<TOSCService> > >, __gnu_cxx::__normal_iterator<TOSCService*, std::vector<TOSCService, std::allocator<TOSCService> > >) + 139797
    7   com.apple.logic.pro      
    0x000000010054f058 std::vector<TOSCService, std::allocator<TOSCService> >::erase(__gnu_cxx::__normal_iterator<TOSCService*, std::vector<TOSCService, std::allocator<TOSCService> > >, __gnu_cxx::__normal_iterator<TOSCService*, std::vector<TOSCService, std::allocator<TOSCService> > >) + 2120
    8   com.apple.logic.pro      
    0x00000001003dd3b2 std::list<std::string, std::allocator<std::string> >::sort() + 68482
    9   com.apple.logic.pro      
    0x0000000100528fd5 std::vector<unsigned int, std::allocator<unsigned int> >::reserve(unsigned long) + 278325
    10  com.apple.logic.pro      
    0x000000010051740a std::vector<unsigned int, std::allocator<unsigned int> >::reserve(unsigned long) + 205674
    11  com.apple.logic.pro      
    0x00000001001b011d std::vector<TTempoWarpMerge, std::allocator<TTempoWarpMerge> >::reserve(unsigned long) + 167853
    12  com.apple.logic.pro      
    0x00000001005de46f std::_Rb_tree<std::string, std::pair<std::string const, TOSCMessageData>, std::_Select1st<std::pair<std::string const, TOSCMessageData> >, std::less<std::string>, std::allocator<std::pair<std::string const, TOSCMessageData> > >::insert_unique(std::_Rb_tree_iterator<std::pair<std::string const, TOSCMessageData> >, std::pair<std::string const, TOSCMessageData> const&) + 418447
    13  com.apple.logic.pro      
    0x00000001001b3bf8 std::vector<TTempoWarpMerge, std::allocator<TTempoWarpMerge> >::reserve(unsigned long) + 182920
    14  com.apple.logic.pro      
    0x00000001005c152d std::_Rb_tree<std::string, std::pair<std::string const, TOSCMessageData>, std::_Select1st<std::pair<std::string const, TOSCMessageData> >, std::less<std::string>, std::allocator<std::pair<std::string const, TOSCMessageData> > >::insert_unique(std::_Rb_tree_iterator<std::pair<std::string const, TOSCMessageData> >, std::pair<std::string const, TOSCMessageData> const&) + 299853
    15  com.apple.logic.pro      
    0x00000001005bdbb3 std::_Rb_tree<std::string, std::pair<std::string const, TOSCMessageData>, std::_Select1st<std::pair<std::string const, TOSCMessageData> >, std::less<std::string>, std::allocator<std::pair<std::string const, TOSCMessageData> > >::insert_unique(std::_Rb_tree_iterator<std::pair<std::string const, TOSCMessageData> >, std::pair<std::string const, TOSCMessageData> const&) + 285139
    16  com.apple.Foundation     
    0x00007fff8dbddf40 __NSFireTimer + 102
    17  com.apple.CoreFoundation 
    0x00007fff9267c934 __CFRUNLOOP_IS_CALLING_OUT_TO_A_TIMER_CALLBACK_FUNCTION__ + 20
    18  com.apple.CoreFoundation 
    0x00007fff9267c486 __CFRunLoopDoTimer + 534
    19  com.apple.CoreFoundation 
    0x00007fff9265ce11 __CFRunLoopRun + 1617
    20  com.apple.CoreFoundation 
    0x00007fff9265c486 CFRunLoopRunSpecific + 230
    21  com.apple.HIToolbox      
    0x00007fff888e02bf RunCurrentEventLoopInMode + 277
    22  com.apple.HIToolbox      
    0x00007fff888e756d ReceiveNextEventCommon + 355
    23  com.apple.HIToolbox      
    0x00007fff888e73fa BlockUntilNextEventMatchingListInMode + 62
    24  com.apple.AppKit         
    0x00007fff8df61779 _DPSNextEvent + 659
    25  com.apple.AppKit         
    0x00007fff8df6107d -[NSApplication nextEventMatchingMask:untilDate:inMode:dequeue:] + 135
    26  com.apple.AppKit         
    0x00007fff8e215735 -[NSApplication _realDoModalLoop:peek:] + 610
    27  com.apple.AppKit         
    0x00007fff8e215369 -[NSApplication runModalForWindow:] + 120
    28  com.apple.AppKit         
    0x00007fff8e498579 -[NSSavePanel runModal] + 300
    29  com.apple.AppKit         
    0x00007fff8e300ce0 __-[NSDocument runModalSavePanelForSaveOperation:delegate:didSaveSelector:contextInfo:]_block_ invoke_2 + 969
    30  com.apple.AppKit         
    0x00007fff8e30f4d9 -[NSDocument _commitEditingThenContinue:] + 337
    31  com.apple.AppKit         
    0x00007fff8e30b1a6 -[NSDocument _commitEditingWithDelegate:didSomethingSelector:contextInfo:thenContinue:] + 91
    32  com.apple.AppKit         
    0x00007fff8e3008af __-[NSDocument runModalSavePanelForSaveOperation:delegate:didSaveSelector:contextInfo:]_block_ invoke_1 + 208
    33  com.apple.AppKit         
    0x00007fff8e3185f1 -[NSDocument performActivityWithSynchronousWaiting:usingBlock:] + 82
    34  com.apple.AppKit         
    0x00007fff8e3007d9 -[NSDocument runModalSavePanelForSaveOperation:delegate:didSaveSelector:contextInfo:] + 96
    35  com.apple.logic.pro      
    0x00000001005a2b10 std::_Rb_tree<std::string, std::pair<std::string const, TOSCMessageData>, std::_Select1st<std::pair<std::string const, TOSCMessageData> >, std::less<std::string>, std::allocator<std::pair<std::string const, TOSCMessageData> > >::insert_unique(std::_Rb_tree_iterator<std::pair<std::string const, TOSCMessageData> >, std::pair<std::string const, TOSCMessageData> const&) + 174384
    36  com.apple.logic.pro      
    0x00000001005a2079 std::_Rb_tree<std::string, std::pair<std::string const, TOSCMessageData>, std::_Select1st<std::pair<std::string const, TOSCMessageData> >, std::less<std::string>, std::allocator<std::pair<std::string const, TOSCMessageData> > >::insert_unique(std::_Rb_tree_iterator<std::pair<std::string const, TOSCMessageData> >, std::pair<std::string const, TOSCMessageData> const&) + 171673
    37  com.apple.CoreFoundation 
    0x00007fff926b770d -[NSObject performSelector:withObject:] + 61
    38  com.apple.AppKit         
    0x00007fff8e0648ca -[NSApplication sendAction:to:from:] + 139
    39  com.apple.prokit         
    0x00000001012127e9 -[NSProApplication sendAction:to:from:] + 100
    40  com.apple.logic.pro      
    0x00000001005a05af std::_Rb_tree<std::string, std::pair<std::string const, TOSCMessageData>, std::_Select1st<std::pair<std::string const, TOSCMessageData> >, std::less<std::string>, std::allocator<std::pair<std::string const, TOSCMessageData> > >::insert_unique(std::_Rb_tree_iterator<std::pair<std::string const, TOSCMessageData> >, std::pair<std::string const, TOSCMessageData> const&) + 164815
    41  com.apple.AppKit         
    0x00007fff8e1517ff -[NSMenuItem _corePerformAction] + 399
    42  com.apple.AppKit         
    0x00007fff8e151536 -[NSCarbonMenuImpl performActionWithHighlightingForItemAtIndex:] + 125
    43  com.apple.AppKit         
    0x00007fff8e3f0b08 -[NSMenu _internalPerformActionForItemAtIndex:] + 38
    44  com.apple.AppKit         
    0x00007fff8e27f6f9 -[NSCarbonMenuImpl _carbonCommandProcessEvent:handlerCallRef:] + 138
    45  com.apple.AppKit         
    0x00007fff8e0cb9bb NSSLMMenuEventHandler + 339
    46  com.apple.HIToolbox      
    0x00007fff888e6234 _ZL23DispatchEventToHandlersP14EventTargetRecP14OpaqueEventRefP14HandlerCallRec + 1263
    47  com.apple.HIToolbox      
    0x00007fff888e5840 _ZL30SendEventToEventTargetInternalP14OpaqueEventRefP20OpaqueEventTargetRefP14H andlerCallRec + 446
    48  com.apple.HIToolbox      
    0x00007fff888fc6db SendEventToEventTarget + 76
    49  com.apple.HIToolbox      
    0x00007fff889427b5 _ZL18SendHICommandEventjPK9HICommandjjhPKvP20OpaqueEventTargetRefS5_PP14OpaqueE ventRef + 398
    50  com.apple.HIToolbox      
    0x00007fff88a29e2d SendMenuCommandWithContextAndModifiers + 56
    51  com.apple.HIToolbox      
    0x00007fff88a715b5 SendMenuItemSelectedEvent + 253
    52  com.apple.HIToolbox      
    0x00007fff8893b883 _ZL19FinishMenuSelectionP13SelectionDataP10MenuResultS2_ + 101
    53  com.apple.HIToolbox      
    0x00007fff88932fc9 _ZL14MenuSelectCoreP8MenuData5PointdjPP13OpaqueMenuRefPt + 600
    54  com.apple.HIToolbox      
    0x00007fff88932592 _HandleMenuSelection2 + 580
    55  com.apple.AppKit         
    0x00007fff8dfcc1da _NSHandleCarbonMenuEvent + 250
    56  com.apple.AppKit         
    0x00007fff8df61cc9 _DPSNextEvent + 2019
    57  com.apple.AppKit         
    0x00007fff8df6107d -[NSApplication nextEventMatchingMask:untilDate:inMode:dequeue:] + 135
    58  com.apple.AppKit         
    0x00007fff8df5d9b9 -[NSApplication run] + 470
    59  com.apple.prokit         
    0x0000000101212be1 NSProApplicationMain + 387
    60  com.apple.logic.pro      
    0x000000010002aa58 DummyConnection::DummyConnection() + 86
    Thread 1:: Dispatch queue: com.apple.libdispatch-manager
    0   libsystem_kernel.dylib   
    0x00007fff8721d7e6 kevent + 10
    1   libdispatch.dylib        
    0x00007fff91bf3786 _dispatch_mgr_invoke + 923
    2   libdispatch.dylib        
    0x00007fff91bf2316 _dispatch_mgr_thread + 54
    Thread 2:: com.apple.NSURLConnectionLoader
    0   libsystem_kernel.dylib   
    0x00007fff8721b67a mach_msg_trap + 10
    1   libsystem_kernel.dylib   
    0x00007fff8721ad71 mach_msg + 73
    2   com.apple.CoreFoundation 
    0x00007fff9265450c __CFRunLoopServiceMachPort + 188
    3   com.apple.CoreFoundation 
    0x00007fff9265cc74 __CFRunLoopRun + 1204
    4   com.apple.CoreFoundation 
    0x00007fff9265c486 CFRunLoopRunSpecific + 230
    5   com.apple.Foundation     
    0x00007fff8dbebfd7 +[NSURLConnection(NSURLConnectionReallyInternal) _resourceLoadLoop:] + 335
    6   com.apple.Foundation     
    0x00007fff8dbe072a -[NSThread main] + 68
    7   com.apple.Foundation     
    0x00007fff8dbe06a2 __NSThread__main__ + 1575
    8   libsystem_c.dylib        
    0x00007fff89ef58bf _pthread_start + 335
    9   libsystem_c.dylib        
    0x00007fff89ef8b75 thread_start + 13
    Thread 3:
    0   libsystem_kernel.dylib   
    0x00007fff8721cbca __psynch_cvwait + 10
    1   libsystem_c.dylib        
    0x00007fff89ef9274 _pthread_cond_wait + 840
    2   com.apogee.SymphonyPlugin
    0x000000010d7da9f3 apogeeDriverPlugInMessageQueue::WaitForNextMessageInList() + 59
    3   com.apogee.SymphonyPlugin
    0x000000010d7dacb3 ClientBiDirConnection::HandlePropertyChanges() + 33
    4   com.apogee.SymphonyPlugin
    0x000000010d7daf74 PthreadHandlingPropertyChanges(void*) + 14
    5   libsystem_c.dylib        
    0x00007fff89ef58bf _pthread_start + 335
    6   libsystem_c.dylib        
    0x00007fff89ef8b75 thread_start + 13
    Thread 4:
    0   libsystem_kernel.dylib   
    0x00007fff8721cbca __psynch_cvwait + 10
    1   libsystem_c.dylib        
    0x00007fff89ef9274 _pthread_cond_wait + 840
    2   com.apogee.SymphonyPlugin
    0x000000010d7da636 MessageTX::TXThread() + 136
    3   com.apogee.SymphonyPlugin
    0x000000010d7da910 TransmitThread(void*) + 14
    4   libsystem_c.dylib        
    0x00007fff89ef58bf _pthread_start + 335
    5   libsystem_c.dylib        
    0x00007fff89ef8b75 thread_start + 13
    Thread 5:
    0   libsystem_kernel.dylib   
    0x00007fff8721cd7a __recvfrom + 10
    1   com.apogee.SymphonyPlugin
    0x000000010d7db26f ClientBiDirLocalSocketConnection::ReceiveData(void*, int) + 37
    2   com.apogee.SymphonyPlugin
    0x000000010d7d9b81 MessageRX::RXThread() + 147
    3   com.apogee.SymphonyPlugin
    0x000000010d7da01a ReceiveThread(void*) + 14
    4   libsystem_c.dylib        
    0x00007fff89ef58bf _pthread_start + 335
    5   libsystem_c.dylib        
    0x00007fff89ef8b75 thread_start + 13
    Thread 6:: com.apple.CFSocket.private
    0   libsystem_kernel.dylib   
    0x00007fff8721cdf2 __select + 10
    1   com.apple.CoreFoundation 
    0x00007fff926a5c8b __CFSocketManager + 1355
    2   libsystem_c.dylib        
    0x00007fff89ef58bf _pthread_start + 335
    3   libsystem_c.dylib        
    0x00007fff89ef8b75 thread_start + 13
    Thread 7:
    0   libsystem_kernel.dylib   
    0x00007fff8721cbca __psynch_cvwait + 10
    1   libsystem_c.dylib        
    0x00007fff89ef9274 _pthread_cond_wait + 840
    2   com.apple.music.apps.MAAudioEngine
    0x0000000103129cd0 CAudioFileBlockManager::GetBlock(MDFile const*, long, int) + 2064
    3   libsystem_c.dylib        
    0x00007fff89ef58bf _pthread_start + 335
    4   libsystem_c.dylib        
    0x00007fff89ef8b75 thread_start + 13
    Thread 8:
    0   libsystem_kernel.dylib   
    0x00007fff8721b67a mach_msg_trap + 10
    1   libsystem_kernel.dylib   
    0x00007fff8721ad71 mach_msg + 73
    2   com.apple.audio.midi.CoreMIDI
    0x00000001016e15be XServerMachPort::ReceiveMessage(int&, void*, int&) + 96
    3   com.apple.audio.midi.CoreMIDI
    0x0000000101702653 MIDIProcess::RunMIDIInThread() + 207
    4   com.apple.audio.midi.CoreMIDI
    0x00000001016e296a XThread::RunHelper(void*) + 10
    5   com.apple.audio.midi.CoreMIDI
    0x00000001016e2396 CAPThread::Entry(CAPThread*) + 98
    6   libsystem_c.dylib        
    0x00007fff89ef58bf _pthread_start + 335
    7   libsystem_c.dylib        
    0x00007fff89ef8b75 thread_start + 13
    Thread 9:
    0   libsystem_kernel.dylib   
    0x00007fff8721cbca __psynch_cvwait + 10
    1   libsystem_c.dylib        
    0x00007fff89ef92a6 _pthread_cond_wait + 890
    2   com.apple.CoreServices.CarbonCore
    0x00007fff8c743ec4 TSWaitOnConditionTimedRelative + 157
    3   com.apple.CoreServices.CarbonCore
    0x00007fff8c743c9b TSWaitOnSemaphoreCommon + 358
    4   com.apple.CoreServices.CarbonCore
    0x00007fff8c7996dc TimerThread + 332
    5   libsystem_c.dylib        
    0x00007fff89ef58bf _pthread_start + 335
    6   libsystem_c.dylib        
    0x00007fff89ef8b75 thread_start + 13
    Thread 10:
    0   libsystem_kernel.dylib   
    0x00007fff8721d192 __workq_kernreturn + 10
    1   libsystem_c.dylib        
    0x00007fff89ef7594 _pthread_wqthread + 758
    2   libsystem_c.dylib        
    0x00007fff89ef8b85 start_wqthread + 13
    Thread 11:: com.apple.appkit-heartbeat
    0   libsystem_kernel.dylib   
    0x00007fff8721ce42 __semwait_signal + 10
    1   libsystem_c.dylib        
    0x00007fff89eabdea nanosleep + 164
    2   libsystem_c.dylib        
    0x00007fff89eabbb5 usleep + 53
    3   com.apple.AppKit         
    0x00007fff8e19611b -[NSUIHeartBeat _heartBeatThread:] + 1727
    4   com.apple.Foundation     
    0x00007fff8dbe072a -[NSThread main] + 68
    5   com.apple.Foundation     
    0x00007fff8dbe06a2 __NSThread__main__ + 1575
    6   libsystem_c.dylib        
    0x00007fff89ef58bf _pthread_start + 335
    7   libsystem_c.dylib        
    0x00007fff89ef8b75 thread_start + 13
    Thread 12:
    0   libsystem_kernel.dylib   
    0x00007fff8721d192 __workq_kernreturn + 10
    1   libsystem_c.dylib        
    0x00007fff89ef7594 _pthread_wqthread + 758
    2   libsystem_c.dylib        
    0x00007fff89ef8b85 start_wqthread + 13
    Thread 13:
    0   libsystem_kernel.dylib   
    0x00007fff8721d192 __workq_kernreturn + 10
    1   libsystem_c.dylib        
    0x00007fff89ef7594 _pthread_wqthread + 758
    2   libsystem_c.dylib        
    0x00007fff89ef8b85 start_wqthread + 13
    Thread 14:
    0   libsystem_kernel.dylib   
    0x00007fff8721d192 __workq_kernreturn + 10
    1   libsystem_c.dylib        
    0x00007fff89ef7594 _pthread_wqthread + 758
    2   libsystem_c.dylib        
    0x00007fff89ef8b85 start_wqthread + 13
    Thread 15:
    0   libsystem_kernel.dylib   
    0x00007fff8721d192 __workq_kernreturn + 10
    1   libsystem_c.dylib        
    0x00007fff89ef7594 _pthread_wqthread + 758
    2   libsystem_c.dylib        
    0x00007fff89ef8b85 start_wqthread + 13
    Thread 0 crashed with X86 Thread State (64-bit):
      rax: 0x0000000000000000  rbx: 0x0000000000000006  rcx: 0x00007fff5fbfc558  rdx: 0x0000000000000000
      rdi: 0x0000000000001c03  rsi: 0x0000000000000006  rbp: 0x00007fff5fbfc580  rsp: 0x00007fff5fbfc558
       r8: 0x00007fff776affb8   r9: 0x0000000000989680  r10: 0x00007fff8721cd0a  r11: 0xffffff80002dad60
      r12: 0x00007fff5fbfc67f  r13: 0x00007fff5fbfc600  r14: 0x00007fff776b2960  r15: 0x00000001a8b088a0
      rip: 0x00007fff8721cce2  rfl: 0x0000000000000246  cr2: 0x00007ffc2e052000
    Logical CPU: 0
    Binary Images:
    0x100000000 -   
    0x100c18fef  com.apple.logic.pro (9.1.8 - 1700.67) <5CBBDF7C-6505-0A14-61F1-483839F57524> /Applications/Logic Pro.app/Contents/MacOS/Logic Pro
    0x101086000 -   
    0x1010a4fef  com.apple.XSKey (1.0.0 - 52) <800DD908-E341-2BCD-11D9-DEAC7E8197E9> /Library/Frameworks/XSKey.framework/Versions/A/XSKey
    0x1010b6000 -   
    0x1010f0ff7  com.apple.music.apps.MAAudioUnitSupport (9.1.8 - 233.53) <B5939861-E5F9-3218-0989-4ED074B1323D> /Applications/Logic Pro.app/Contents/Frameworks/MAAudioUnitSupport.framework/Versions/A/MAAudioUnit Support
    0x101113000 -   
    0x101141ff7  com.apple.musicaudiodataservices (1.1 - 251.4) <93B2F8C3-E091-C1CA-8932-91840CC968BC> /Applications/Logic Pro.app/Contents/Frameworks/MAAssetSharing.framework/Versions/A/MAAssetSharing
    0x101153000 -   
    0x101155fff  com.apple.ExceptionHandling (1.5 - 10) <A6413B9F-331B-3D80-A86C-07DEA9888841> /System/Library/Frameworks/ExceptionHandling.framework/Versions/A/ExceptionHand ling
    0x10115a000 -   
    0x1011bdff7  com.apple.music.apps.MALoopManagement (9.1.8 - 219.66) <FE447B07-89A4-E025-DFB8-4C71A0EFEBF0> /Applications/Logic Pro.app/Contents/Frameworks/MALoopManagement.framework/Versions/A/MALoopManagem ent
    0x1011f4000 -   
    0x10146fff7  com.apple.prokit (7.2.3 - 1823) <0D6BA804-8262-3942-B84D-B4886082242F> /System/Library/PrivateFrameworks/ProKit.framework/Versions/A/ProKit
    0x1015f2000 -   
    0x101688fe7  com.apple.music.apps.MACore (9.1.8 - 477.58) <3E8020EA-9B42-63A5-613D-FD2D7675546F> /Applications/Logic Pro.app/Contents/Frameworks/MACore.framework/Versions/A/MACore
    0x1016d2000 -   
    0x101723ff7  com.apple.audio.midi.CoreMIDI (1.8 - 42) <10BAC42F-ACFE-3EBC-869A-2847A0770CE8> /System/Library/Frameworks/CoreMIDI.framework/Versions/A/CoreMIDI
    0x101749000 -   
    0x1017a7fef  com.apple.music.apps.MAHarmony (9.1.8 - 199.72) <EE991E63-1236-765D-3C95-4AE3494B295C> /Applications/Logic Pro.app/Contents/Frameworks/MAHarmony.framework/Versions/A/MAHarmony
    0x1017cf000 -   
    0x101c10fff  com.apple.music.apps.MAPlugInGUI (9.1.8 - 424.79) <6FEA2031-69A3-9209-54EF-36BA3DAD1883> /Applications/Logic Pro.app/Contents/Frameworks/MAPlugInGUI.framework/Versions/A/MAPlugInGUI
    0x101ed4000 -   
    0x101fb0fff  com.apple.music.apps.OMF (9.1.8 - 109.7) <F72235D0-517D-CCCB-3B91-78396786EB34> /Applications/Logic Pro.app/Contents/Frameworks/OMF.framework/Versions/A/OMF
    0x101fcf000 -   
    0x1025fffef  com.apple.music.apps.MADSP (9.1.8 - 588.98) <D794D156-112C-29E3-EB9D-62604A9807DE> /Applications/Logic Pro.app/Contents/Frameworks/MADSP.framework/Versions/A/MADSP
    0x102e5d000 -   
    0x102e82ff7  com.apple.music.apps.LogicFileBrowser (9.1.8 - 1700.67) <8E130979-83FB-56BD-DE18-A723A94B7530> /Applications/Logic Pro.app/Contents/Frameworks/LogicFileBrowser.framework/Versions/A/LogicFileBrow ser
    0x102e95000 -   
    0x102f13fff  com.apple.music.apps.LogicLoopBrowser (9.1.8 - 1700.67) <47AF47CE-F6A1-E025-96FA-5C30EAFA13BC> /Applications/Logic Pro.app/Contents/Frameworks/LogicLoopBrowser.framework/Versions/A/LogicLoopBrow ser
    0x102f42000 -   
    0x102f66ff7  com.apple.music.apps.MAApogeeSupport (9.1.8 - 313.26) <6384895C-60D4-CE0B-0E86-673A20A34D36> /Applications/Logic Pro.app/Contents/Frameworks/MAApogeeSupport.framework/Versions/A/MAApogeeSuppor t
    0x102f74000 -   
    0x102f79fff  com.apple.music.apps.MAResources (9.1.8 - 212.66) <0E66AB42-6F37-9AE7-8766-264DAE455688> /Applications/Logic Pro.app/Contents/Frameworks/MAResources.framework/Versions/A/MAResources
    0x102f7c000 -   
    0x102faaff7  com.apple.audio.CoreAudioKit (1.6.3 - 1.6.3) <FF3E72F7-8076-3FCA-A7B9-6A8D869520C9> /System/Library/Frameworks/CoreAudioKit.framework/Versions/A/CoreAudioKit
    0x102fc4000 -   
    0x102fd7ff7  com.apple.AERegistration (1.2 - 401) <A424BA9F-0DD7-BE25-2738-4BCD22F0BB2A> /Applications/Logic Pro.app/Contents/Frameworks/AERegistration.framework/Versions/A/AERegistration
    0x102ff0000 -   
    0x102ffdfff  com.apple.music.apps.MAUnitTest (9.1.8 - 97.27) <8AF973F8-CBB2-931B-6BFC-D4BCB8A434F6> /Applications/Logic Pro.app/Contents/Frameworks/MAUnitTest.framework/Versions/A/MAUnitTest
    0x103006000 -   
    0x1030c1fe7  com.apple.music.apps.MAFiles (9.1.8 - 144.87) <F9F3C7E2-46F5-0EC3-7297-096AEB83BFD6> /Applications/Logic Pro.app/Contents/Frameworks/MAFiles.framework/Versions/A/MAFiles
    0x1030fa000 -   
    0x103176fe7  com.apple.music.apps.MAAudioEngine (9.1.8 - 158.42) <6944C1FC-7ACD-53A2-5095-E017C39D8CBA> /Applications/Logic Pro.app/Contents/Frameworks/MAAudioEngine.framework/Versions/A/MAAudioEngine
    0x1031ea000 -   
    0x1031f5fff  com.apple.music.apps.MAToolKit (9.1.8 - 359.28) <B9729EDA-E5DB-C831-E473-EED9C906AAA0> /Applications/Logic Pro.app/Contents/Frameworks/MAToolKit.framework/Versions/A/MAToolKit
    0x1031fc000 -   
    0x10320aff7  com.apple.music.apps.MAVideo (9.1.8 - 12.70) <19D30553-8BFE-4F8C-D13E-0D3139AAC22B> /Applications/Logic Pro.app/Contents/Frameworks/MAVideo.framework/Versions/A/MAVideo
    0x103212000 -   
    0x1032f5fff  libcrypto.0.9.7.dylib (0.9.7 - compatibility 0.9.7) <358B5B40-43B2-3F92-9FD3-DAA68806E1FF> /usr/lib/libcrypto.0.9.7.dylib
    0x10334b000 -   
    0x1033f9fec  com.apple.MobileMe (9 - 1.01) <F322542E-D3BB-7861-602A-3F405F2BD61B> /Applications/Logic Pro.app/Contents/Frameworks/MobileMe.framework/Versions/A/MobileMe
    0x104603000 -   
    0x10463efff  com.apple.prokit.LionPanels (7.2.3 - 1823) <6C6CE47C-0693-35B7-AA7D-D80200D31FE1> /System/Library/PrivateFrameworks/ProKit.framework/Versions/A/Resources/LionPan els.bundle/Contents/MacOS/LionPanels
    0x1046d2000 -   
    0x1046daff7  com.apple.proapps.mrcheckpro (1.4 - 397) <9B320059-8D28-D7DA-8CD4-B42796969065> /Applications/Logic Pro.app/Contents/Resources/MRCheckPro.bundle/Contents/MacOS/MRCheckPro
    0x10473a000 -   
    0x104748fff  libGPUSupport.dylib (??? - ???) <9FF8DDA2-7CB1-3888-8AAE-227C7691CB98> /System/Library/PrivateFrameworks/GPUSupport.framework/Versions/A/Libraries/lib GPUSupport.dylib
    0x1047ed000 -   
    0x1047f1fff  com.apple.audio.AudioIPCPlugIn (1.2.3 - 1.2.3) <F94D690D-3196-3B01-B798-09708367D28D> /System/Library/Extensions/AudioIPCDriver.kext/Contents/Resources/AudioIPCPlugI n.bundle/Contents/MacOS/AudioIPCPlugIn
    0x1047f6000 -   
    0x1047fbfff  com.apple.audio.AppleHDAHALPlugIn (2.2.5 - 2.2.5a5) <4EC4981B-68AE-357E-960F-3D4603A61E9F> /System/Library/Extensions/AppleHDA.kext/Contents/PlugIns/AppleHDAHALPlugIn.bun dle/Contents/MacOS/AppleHDAHALPlugIn
    0x10d7cb000 -   
    0x10d7e9fff  com.apogee.SymphonyPlugin (1.14.51 - 1.14.51) <F655E73D-327E-AF69-3D28-9328B1CCA08F> /System/Library/Extensions/SymphonyPlugin.bundle/Contents/MacOS/SymphonyPlugin
    0x10e973000 -   
    0x10ea28fff +com.plugin-alliance.plugins.au.SPLTransientDesigner (1.4.2 - 1.4.2) <E9696825-2ABC-82A9-AB2F-4465B678CED0> /Library/Audio/Plug-Ins/Components/SPL Transient Designer.component/Contents/MacOS/SPL Transient Designer
    0x10eb28000 -   
    0x10eb48fff +com.WavesAudio.REQ.9.0.0 (9.0.0 - 9.0.020) <08DE931F-EED5-AAF9-2122-DB75BD322460> /Applications/Waves/*/REQ.bundle/Contents/MacOS/REQ
    0x10eb83000 -   
    0x10eb85fff  com.apple.textencoding.unicode (2.4 - 2.4) <FD4695F4-6110-36C6-AC06-86453E30FF6E> /System/Library/TextEncodings/Unicode Encodings.bundle/Contents/MacOS/Unicode Encodings
    0x10ec98000 -   
    0x10ecc3fff +com.digidesign.digidesign.DigiCoreAudioPlugIn (9.0.6 - 9.0.6f82) <6AEA8E05-9E8F-5DA7-CB99-2EC3E55FC6AC> /Library/Audio/Plug-Ins/HAL/Digidesign CoreAudio.plugin/Contents/MacOS/Digidesign CoreAudio
    0x10efd4000 -   
    0x10efdefef  libcldcpuengine.dylib (2.0.19 - compatibility 1.0.0) <4572AD1E-D1D1-3412-AFCC-D37037B1FAB5> /System/Library/Frameworks/OpenCL.framework/Versions/A/Libraries/libcldcpuengin e.dylib
    0x10efe4000 -   
    0x10efe7ff7  libCoreFSCache.dylib (??? - ???) <0D155750-7910-32C5-8327-924FC1089442> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libCoreFSCache .dylib
    0x10efeb000 -   
    0x10efedff7  com.apple.music.apps.anvil.resources (9.1.8 - 280.4) <F74756AB-FAB6-3914-5F1C-04FCB54C350A> /Applications/Logic Pro.app/Contents/PlugIns/anvil.res/Contents/MacOS/anvil
    0x10eff2000 -   
    0x10eff4ff7  com.apple.music.apps.common.resources (9.1.8 - 280.4) <9FC76C8D-3763-4E4A-DB35-391B07A6FFA8> /Applications/Logic Pro.app/Contents/PlugIns/common.res/Contents/MacOS/common
    0x10eff9000 -   
    0x10effbff7  com.apple.music.apps.ebp.resources (9.1.8 - 280.4) <2DEA037D-ABCE-771A-618B-091741F6CA7B> /Applications/Logic Pro.app/Contents/PlugIns/ebp.res/Contents/MacOS/ebp
    0x110a83000 -   
    0x110a85ff7  com.apple.music.apps.efx.resources (9.1.8 - 280.4) <EB5DB45A-C432-2C90-C708-27D5F5EC236A> /Applications/Logic Pro.app/Contents/PlugIns/efx.res/Contents/MacOS/efx
    0x110a8a000 -   
    0x110a8cff7  com.apple.music.apps.egt.resources (9.1.8 - 280.4) <FAB354A9-88A1-619A-1ECA-A351EADB5A2E> /Applications/Logic Pro.app/Contents/PlugIns/egt.res/Contents/MacOS/egt
    0x110a91000 -   
    0x110a93ff7  com.apple.music.apps.emx.resources (9.1.8 - 280.4) <19FD59CE-314B-6B4B-CEE8-C7BF9DF7F4EB> /Applications/Logic Pro.app/Contents/PlugIns/emx.res/Contents/MacOS/emx
    0x110dc3000 -   
    0x110df1ff7  GLRendererFloat (??? - ???) <06CA5D0B-BC5F-3CC7-836D-A02F7DB92BE8> /System/Library/Frameworks/OpenGL.framework/Resources/GLRendererFloat.bundle/GL RendererFloat
    0x11172d000 -   
    0x11172fff7  com.apple.music.apps.es1.resources (9.1.8 - 280.4) <4BD052E1-1BD4-3C73-93D6-D63493167CB6> /Applications/Logic Pro.app/Contents/PlugIns/es1.res/Contents/MacOS/es1
    0x111734000 -   
    0x111736ff7  com.apple.music.apps.es2.resources (9.1.8 - 280.4) <31CBF3C9-AD64-1A86-1F99-D362B594F840> /Applications/Logic Pro.app/Contents/PlugIns/es2.res/Contents/MacOS/es2
    0x11173b000 -   
    0x11173dff7  com.apple.music.apps.esp.resources (9.1.8 - 280.4) <0EA44B59-2772-F013-CF49-B66EE4C77EEB> /Applications/Logic Pro.app/Contents/PlugIns/esp.res/Contents/MacOS/esp
    0x111742000 -   
    0x111744ff7  com.apple.music.apps.evb3.resources (9.1.8 - 280.4) <F0F73B5A-E44A-FF5C-4C54-0F5B677BFB18> /Applications/Logic Pro.app/Contents/PlugIns/evb3.res/Contents/MacOS/evb3
    0x111749000 -   
    0x11174bff7  com.apple.music.apps.evd6.resources (9.1.8 - 280.4) <45B1F3EB-45CB-418F-A408-C42F7F93802A> /Applications/Logic Pro.app/Contents/PlugIns/evd6.res/Contents/MacOS/evd6
    0x111750000 -   
    0x111752ff7  com.apple.music.apps.evoc.resources (9.1.8 - 280.4) <91478393-E7C9-5292-FCA9-83559B588E6E> /Applications/Logic Pro.app/Contents/PlugIns/evoc.res/Contents/MacOS/evoc
    0x111757000 -   
    0x111759ff7  com.apple.music.apps.evp88.resources (9.1.8 - 280.4) <9FAC293E-E8B9-C2D9-F102-D5BFC0AA1DC5> /Applications/Logic Pro.app/Contents/PlugIns/evp88.res/Contents/MacOS/evp88
    0x11175e000 -   
    0x111760ff7  com.apple.music.apps.exs24.resources (9.1.8 - 280.4) <E79F0236-D02B-D3E7-B929-701CEDE000F6> /Applications/Logic Pro.app/Contents/PlugIns/exs24.res/Contents/MacOS/exs24
    0x111765000 -   
    0x111767ff7  com.apple.music.apps.guitaramp.resources (9.1.8 - 280.4) <73AC87D5-215E-2FAC-05A2-28A7E9574F5C> /Applications/Logic Pro.app/Contents/PlugIns/guitaramp.res/Contents/MacOS/guitaramp
    0x11176c000 -   
    0x11176eff7  com.apple.music.apps.guitarcontrols.resources (9.1.8 - 280.4) <B005E199-DCEE-5935-8E34-48FA59352663> /Applications/Logic Pro.app/Contents/PlugIns/guitarcontrols.res/Contents/MacOS/guitarcontrols
    0x111773000 -   
    0x111775ff7  com.apple.music.apps.mutapdel.resources (9.1.8 - 280.4) <392017D1-219B-4AA4-71CF-BAAC4D574FE1> /Applications/Logic Pro.app/Contents/PlugIns/mutapdel.res/Contents/MacOS/mutapdel
    0x113784000 -   
    0x11378efff +com.Waves.Waveshell-AU-CocoaView (??? - ???) <342AA537-0E3C-B4C1-D435-F4F622323E53> /Library/Audio/Plug-Ins/Components/WaveShell-AU 9.0.component/Contents/Resources/WaveShell-AU-CocoaView.bundle/Contents/MacOS/W aveShell-AU-CocoaView
    0x11379d000 -   
    0x11379fff7  com.apple.music.apps.pedalboard.resources (9.1.8 - 280.4) <F95D6A0D-0179-F17B-59A5-B3B0007E426D> /Applications/Logic Pro.app/Contents/PlugIns/pedalboard.res/Contents/MacOS/pedalboard
    0x1137a4000 -   
    0x1137a6ff7  com.apple.music.apps.revolver.resources (9.1.8 - 280.4) <77102719-1007-5153-B8B3-9EC9FAC4C0BD> /Applications/Logic Pro.app/Contents/PlugIns/revolver.res/Contents/MacOS/revolver
    0x1137ab000 -   
    0x1137adff7  com.apple.music.apps.sphere.resources (9.1.8 - 280.4) <3579177A-C2D5-E746-2E48-29F69B7ACDC0> /Applications/Logic Pro.app/Contents/PlugIns/sphere.res/Contents/MacOS/sphere
    0x1137b2000 -   
    0x1137c0ff7  com.apple.Librarian (1.0.1 - 1) <4DECA656-CFBA-352F-AEC8-1169BB9578E9> /System/Library/PrivateFrameworks/Librarian.framework/Librarian
    0x1137ce000 -   
    0x1137eeff7  com.apple.ChunkingLibrary (1.0 - 127.2) <EDF32155-7CFE-3831-949B-80A56E991B68> /System/Library/PrivateFrameworks/ChunkingLibrary.framework/Versions/A/Chunking Library
    0x114c79000 -   
    0x114e31fff  GLEngine (??? - ???) <59179FEC-D0E2-38B3-BD49-765506A645AC> /System/Library/Frameworks/OpenGL.framework/Resources/GLEngine.bundle/GLEngine
    0x114e68000 -   
    0x114fc2fff  libGLProgrammability.dylib (??? - ???) <90390984-70BC-365C-AB3E-16C35C4240CB> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLProgramma bility.dylib
    0x114ff7000 -   
    0x114ff8ff2 +cl_kernels (??? - ???) <54796F66-3FD9-44E7-844D-EA00C456396C> cl_kernels
    0x115100000 -   
    0x1153bbff7  com.apple.ATIRadeonX2000GLDriver (7.32.12 - 7.3.2) <C894DE28-1B2F-37BE-88FC-1E66D7828B77> /System/Library/Extensions/ATIRadeonX2000GLDriver.bundle/Contents/MacOS/ATIRade onX2000GLDriver
    0x1157dd000 -   
    0x1157e3fff  com.apple.agl (3.2.0 - AGL-3.2.0) <C98394A8-305D-3904-BEAE-8340FF988F15> /System/Library/Frameworks/AGL.framework/Versions/A/AGL
    0x116b83000 -   
    0x116bc1fff  com.apple.Ubiquity (1.1 - 210.2) <81A9973A-730B-308A-80A1-F5D042CB790C> /System/Library/PrivateFrameworks/Ubiquity.framework/Versions/A/Ubiquity
    0x118d00000 -   
    0x118dc0fe7 +com.xfer.LFOTool (1.0 - 1.0) <B4E6828F-65FC-23C4-7FE0-F9254A4EB653> /Library/Audio/Plug-Ins/Components/LFOTool.component/Contents/MacOS/LFOTool
    0x118efb000 -   
    0x118efbff9 +cl_kernels (??? - ???) <54D7FCE5-EF78-4986-8324-2B823805EC73> cl_kernels
    0x11f0bf000 -   
    0x11f147fff +se.propellerheads.rewire.library (1.8.1 build 124 - 1.8.1) <1A7E56A6-03B2-53BE-F5CC-2D4DA86017F8> /Library/Application Support/Propellerhead Software/*/ReWire.bundle/Contents/MacOS/ReWire
    0x120c9f000 -   
    0x120ca2fff  libLatinSuppConverter.dylib (54.0.0 - compatibility 1.0.0) <AE9374F3-9A80-37B1-97F9-E5E952CE1D61> /System/Library/CoreServices/Encodings/libLatinSuppConverter.dylib
    0x128426000 -   
    0x1288a5fef +com.ValhallaDSP.ValhallaRoom (1.1.0 - 1.1.0) <15CA5386-11E5-21F2-ED7C-6D7DF2466B38> /Library/Audio/Plug-Ins/Components/ValhallaRoomAU64.component/Contents/MacOS/Va lhallaRoomAU64
    0x128a64000 -   
    0x128a9aff7 +se.propellerheads.rex.library (1.7.0 - 1.7.0) <55A4808A-FF69-8A7F-B907-32627CC33D78> /Library/Application Support/Native Instruments/*/REX Shared Library.bundle/Contents/MacOS/REX Shared Library
    0x128fa4000 -   
    0x1290bcfff +com.WavesAudio.WaveShell-AU.9.0.0 (9.0.0 - 9.0.021) <9E455AF7-7FCA-88CA-434F-4DEC98A6836F> /Library/Audio/Plug-Ins/Components/WaveShell-AU 9.0.component/Contents/MacOS/WaveShell-AU
    0x12b000000 -   
    0x12b1c4fff +com.WavesAudio.WavesLib_9.0.9.0.0 (9.0.0 - 9.0.020) <6C65A64D-7DF1-C2B1-4E0B-1A09136545A3> /Applications/Waves/*/WavesLib_9.0.framework/Versions/A/WavesLib
    0x12b319000 -   
    0x12ca26ff7 +Battery 4.MusicDevice.component (4.0.2.2254 - 4.0.2. [R2254], Copyright © 2013 Native Instruments) <97F9109C-3A15-3604-9406-0EDF8C253428> /Library/Audio/Plug-Ins/Components/Battery 4.component/Contents/MacOS/Battery 4
    0x131e48000 -   
    0x131ee6ff7  unorm8_argb.dylib (2.0.19 - compatibility 1.0.0) <936B4155-1C6B-3928-9FFA-F72E7163872E> /System/Library/Frameworks/OpenCL.framework/Versions/A/Libraries/ImageFormats/u norm8_argb.dylib
    0x131f05000 -   
    0x131f9fff7  unorm8_rgba.dylib (2.0.19 - compatibility 1.0.0) <8CA67399-44BB-35F8-94EF-EB57CD3AA542> /System/Library/Frameworks/OpenCL.framework/Versions/A/Libraries/ImageFormats/u norm8_rgba.dylib
    0x131fe2000 -   
    0x133526ff7 +Kontakt 5.MusicDevice.component (5.1.0.6066 - 5.1.0, Copyright © 2012 Native Instruments) <8FCB8D24-5ACF-3446-A3D4-8FA6C8BFB853> /Library/Audio/Plug-Ins/Components/Kontakt 5.component/Contents/MacOS/Kontakt 5
    0x149ea6000 -   
    0x149ebbfff +com.wavesfactory.audiounit.trackpacer64 (??? - 1.0) <9E912762-B0E5-E242-1649-BFB3669AB94B> /Library/Audio/Plug-Ins/Components/TrackSpacerx64.component/Contents/MacOS/Trac kSpacerx64
    0x15aa03000 -   
    0x15ab44fe7 +wavesfactory.trackspacer (??? - 1.0) <44995606-92A7-D696-2402-9554EC56C787> /Library/Application Support/Wavesfactory/*/TrackSpacer
    0x15abcb000 -   
    0x15b2a0fe7 +com.kush.UBK1j (1.0.8, Copyright 2012, All Rights Reserved - 1.0.8) <0E155AA6-0066-06FD-A167-EEBDAA8B2AEA> /Library/Audio/Plug-Ins/Components/Kush UBK-1 x64.component/Contents/MacOS/Kush UBK-1
    0x15b2f9000 -   
    0x15becefff +Massive.MusicDevice.component (1.3.1 [R129] - 1.3.1 [R129], Copyright © 2011 Native Instruments) <36B23006-544B-3DEA-9022-8C0DA1142402> /Library/Audio/Plug-Ins/Components/Massive.component/Contents/MacOS/Massive
    0x15fe10000 -   
    0x15fe44fff  com.apple.security.csparser (3.0 - 55148.6) <CAA9817C-3D70-369D-894D-AA8034EEF2DD> /System/Library/Frameworks/Security.framework/PlugIns/csparser.bundle/Contents/ MacOS/csparser
    0x160800000 -   
    0x1613c2fef +at.co.vsl.viennainstruments (5.3.11859 - 5.3.11859) <FC9C3928-A287-15C7-7024-E0784AACAC1D> /Library/Audio/Plug-Ins/Components/Vienna Instruments.component/Contents/MacOS/Vienna Instruments
    0x1657ea000 -   
    0x165873ff2 +com.eLicenser.POSAccess-DLL (??? - 1.12.1.0) <66A02345-5109-F38C-1262-D00D8189324C> /Library/Application Support/eLicenser/*/Synsoacc.bundle/Contents/MacOS/Synsoacc
    0x185281000 -   
    0x1852aafef +com.WavesAudio.H-Delay.9.0.0 (9.0.0 - 9.0.020) <7E58030F-7DE2-C5C9-61F0-097C5CCF9243> /Applications/Waves/*/H-Delay.bundle/Contents/MacOS/H-Delay
    0x192118000 -   
    0x192141fef +com.WavesAudio.C1.9.0.0 (9.0.0 - 9.0.020) <92F423FC-48CE-06A9-182C-64CFFC6DCF76> /Applications/Waves/*/C1.bundle/Contents/MacOS/C1
    0x1995fc000 -   
    0x1995fcff1 +cl_kernels (??? - ???) <6EA0699C-8604-4A78-B0FC-BC856F269B99> cl_kernels
    0x199ff8000 -   
    0x199ff9ff3 +cl_kernels (??? - ???) <A6247A0C-A9BA-4809-AC5E-2E3050EE50E4> cl_kernels
    0x19b800000 -   
    0x19bd2ffe7 +com.ValhallaDSP.ValhallaShimmerAU64 (1.0.2 - 1.0.2) <457FCA9E-7A7B-03B3-E795-4B2085C6A87F> /Library/Audio/Plug-Ins/Components/ValhallaShimmerAU64.component/Contents/MacOS /ValhallaShimmerAU64
    0x19c09e000 -   
    0x19c7acff7 +com.ValhallaDSP.ValhallaVintageVerb (1.0.1 - 1.0.1) <E972E337-A4E0-2DD6-2718-7FE2AAE6882D> /Library/Audio/Plug-Ins/Components/ValhallaVintageVerbAU64.component/Contents/M acOS/ValhallaVintageVerbAU64
    0x19c87a000 -   
    0x19d810fe7 +com.slate-digital.VirtualMixBuss (1.5.2 - ???) <1FAD3437-C4D6-C577-4DF1-6C282D456853> /Library/Audio/Plug-Ins/Components/Slate Digital Virtual MixBuss.component/Contents/MacOS/Slate Digital Virtual MixBuss
    0x19edfa000 -   
    0x19ee19fe7 +com.WavesAudio.RComp.9.0.0 (9.0.0 - 9.0.020) <E5456F77-BEA8-9F9A-4372-BC1232EB5F3C> /Applications/Waves/*/RComp.bundle/Contents/MacOS/RComp
    0x1a1876000 -   
    0x1a18a7fe7 +com.WavesAudio.PAZ.9.0.0 (9.0.0 - 9.0.020) <57AC2162-7F18-0557-A952-65347B8C4463> /Applications/Waves/*/PAZ.bundle/Contents/MacOS/PAZ
    0x1a1a00000 -   
    0x1a1cc9fef +com.Sonnox.audiounit.Native.OxfordInflator (2.0.1 - 8057) <F9E7C4CD-05EC-CAC3-FE1A-77F526C78FCA> /Library/Audio/Plug-Ins/Components/NAU_OxfordInflator.component/Contents/MacOS/ NAU_OxfordInflator
    0x1a252a000 -   
    0x1a254aff7 +com.WavesAudio.S1.9.0.0 (9.0.0 - 9.0.020) <EBE6A079-121B-2D3F-0CBE-E7C429C072E4> /Applications/Waves/*/S1.bundle/Contents/MacOS/S1
    0x1a25a6000 -   
    0x1a25c4fff +com.WavesAudio.L1.9.0.0 (9.0.0 - 9.0.020) <158C5887-B406-6260-ED49-8FFF1DCD90E1> /Applications/Waves/*/L1.bundle/Contents/MacOS/L1
    0x1a2700000 -   
    0x1a3258ff7 +com.slate-digital.VirtualTapeMachines (1.0.1.4 - 1.0.1) <3CE80DD8-57B3-4590-DA9D-B59668C20C0E> /Library/Audio/Plug-Ins/Components/Slate Digital Virtual Tape Machines.component/Contents/MacOS/Slate Digital Virtual Tape Machines
    0x1a4500000 -   
    0x1a53e0ff7 +com.slate-digital.VirtualChannel (1.5.2 - ???) <2C82C388-D5D1-3199-04F7-D42E26677764> /Library/Audio/Plug-Ins/Components/Slate Digital Virtual Channel.component/Contents/MacOS/Slate Digital Virtual Channel
    0x1a7e00000 -   
    0x1a80dffef +com.Sonnox.audiounit.Native.OxfordLimiter (2.0.0 - 7311) <46F86245-7C6C-5B1A-A91C-5720A33CD1E6> /Library/Audio/Plug-Ins/Components/NAU_OxfordLimiter.component/Contents/MacOS/N AU_OxfordLimiter
    0x1aa26f000 -   
    0x1aa295fef +com.WavesAudio.H-Comp.9.0.0 (9.0.0 - 9.0.020) <6F8AE1D5-1531-88C6-C34C-6431CAA93FF7> /Applications/Waves/*/H-Comp.bundle/Contents/MacOS/H-Comp
    0x1abf03000 -   
    0x1abf1ffff +com.ikmultimedia.effects.TRackS3 Metering (3.5 - 3.5) <CEB88DE5-8D4D-4F2D-F354-49E82B1268DF> /Library/Audio/Plug-Ins/Components/TRackS3 Metering.component/Contents/MacOS/TRackS3 Metering
    0x1ac862000 -   
    0x1aca43ff7  com.apple.audio.codecs.Components (2.3 - 2.3) <9FF1C1F7-F049-3CE0-AE2A-E3D220A7031B> /System/Library/Components/AudioCodecs.component/Contents/MacOS/AudioCodecs
    0x1afb35000 -   
    0x1afbd4ff7  unorm8_bgra.dylib (2.0.19 - compatibility 1.0.0) <47DA7D73-C52D-322F-A08F-4DB320A65373> /System/Library/Frameworks/OpenCL.framework/Versions/A/Libraries/ImageFormats/u norm8_bgra.dylib
    0x7fff610a8000 -
    0x7fff610dcbaf  dyld (195.6 - ???) <C58DAD8A-4B00-3676-8637-93D6FDE73147> /usr/lib/dyld
    0x7fff87205000 -
    0x7fff87205fff  com.apple.vecLib (3.7 - vecLib 3.7) <9A58105C-B36E-35B5-812C-4ED693F2618F> /System/Library/Frameworks/vecLib.framework/Versions/A/vecLib
    0x7fff87206000 -
    0x7fff87226fff  libsystem_kernel.dylib (1699.32.7 - compatibility 1.0.0) <66C9F9BD-C7B3-30D4-B1A0-03C8A6392351> /usr/lib/system/libsystem_kernel.dylib
    0x7fff87227000 -
    0x7fff875d1fe7  com.apple.MediaToolbox (1.0 - 705.94) <0719E69C-3275-3BD9-AD04-27DBADEB6E03> /System/Library/PrivateFrameworks/MediaToolbox.framework/Versions/A/MediaToolbo x
    0x7fff876a0000 -
    0x7fff87700fff  libvDSP.dylib (325.4.0 - compatibility 1.0.0) <3A7521E6-5510-3FA7-AB65-79693A7A5839> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libvDSP.dylib
    0x7fff87703000 -
    0x7fff87712fff  com.apple.opengl (1.8.1 - 1.8.1) <51B34133-CEE3-3FC6-82AC-ADF567AE673C> /System/Library/Frameworks/OpenGL.framework/Versions/A/OpenGL
    0x7fff8779c000 -
    0x7fff877c5ff7  com.apple.framework.Apple80211 (7.4.1 - 741.1) <F60DA830-84ED-3473-8DE8-611A9D9B56FF> /System/Library/PrivateFrameworks/Apple80211.framework/Versions/A/Apple80211
    0x7fff877c6000 -
    0x7fff877edfff  com.apple.framework.internetaccounts (1.2 - 3) <28D44E21-54F2-366B-B9D9-1DB788EF0278> /System/Library/PrivateFrameworks/InternetAccounts.framework/Versions/A/Interne tAccounts
    0x7fff87814000 -
    0x7fff8783dfff  com.apple.CoreVideo (1.7 - 70.3) <9A9D4058-9935-3B0A-B1A6-27EB78D02249> /System/Library/Frameworks/CoreVideo.framework/Versions/A/CoreVideo
    0x7fff87896000 -
    0x7fff8789bfff  com.apple.OpenDirectory (10.7 - 146) <7960A302-F9AC-3F72-838E-3A382032DCA6> /System/Library/Frameworks/OpenDirectory.framework/Versions/A/OpenDirectory
    0x7fff8789c000 -
    0x7fff8789cfff  com.apple.Accelerate (1.7 - Accelerate 1.7) <82DDF6F5-FBC3-323D-B71D-CF7ABC5CF568> /System/Library/Frameworks/Accelerate.framework/Versions/A/Accelerate
    0x7fff8789d000 -
    0x7fff8799efff  com.apple.QuickLookUIFramework (3.2 - 500.18) <56A13D40-9A61-3B98-85ED-B1C7075A88FB> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/QuickLookUI.f ramework/Versions/A/QuickLookUI
    0x7fff87ba7000 -
    0x7fff87bacfff  libcompiler_rt.dylib (6.0.0 - compatibility 1.0.0) <98ECD5F6-E85C-32A5-98CD-8911230CB66A> /usr/lib/system/libcompiler_rt.dylib
    0x7fff87bad000 -
    0x7fff87beefff  com.apple.QD (3.40 - ???) <47674D2C-BE88-388E-B1B0-03F08BFFE5FD> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ QD.framework/Versions/A/QD
    0x7fff87bef000 -
    0x7fff87c43fff  libFontRegistry.dylib (??? - ???) <60FF9C2C-5E44-3C49-8A08-F26101898F21> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/Resources/libFontRegistry.dylib
    0x7fff87c44000 -
    0x7fff87cafff7  com.apple.framework.IOKit (2.0 - ???) <FE838BB6-D42E-3291-A1A0-6F53FC970261> /System/Library/Frameworks/IOKit.framework/Versions/A/IOKit
    0x7fff87cb0000 -
    0x7fff87cb6fff  IOSurface (??? - ???) <77C6757B-D35

    I noticed that there seem to be menu selections prior to the crash. Do you suffer the same crash when you use key commands to save or bounce instead of using file drop lists? Or are you already using key commands (which then invoke menu selections presumably).

  • Query not executing with "Insufficient Shared Objects Memory Available"

    Hi ,
    We have few Reports on a Multi provider, which are working fine earlier both in Web Analyzer and  Bex Analyzer.
    Now we have created an Entry in the MULTIPROVIDER  Hint table  as we have data based on Fiscal Year in 3 different cubes.
    This went fine in our quality system and even it is working now. The reports worked fine  in Production earlier.
    After the change( moving HInt tables entries) queries are not working and givig an error message.
    But if I exeute the reports in Production I get the above mentioned error message.
    1. Have regenerated the Queries already  in Production.
    2. No changes to the Reports.
    3. No changes to the Multi provider.
    Only change is introduction of an entry in Hint table.The same functaionality which is working in quality system is not working in Production.
    We have same amount of data both in our quality and Production for some set of selections.
    Please share your thoughts/experineces if anyone have worked on this.
    Regards,
    Ganesh Thota.

    Hi,
    Try to inrcrease paramenter abap/shared_objects_size_MB as described in SAP Note 972757.
    BR,
    Walter Oliveira

  • Query not executing any results

    Hi,
    I have created a Custom Virtual Cube with a custom function module. This Cube displays data when i check it through the transaction code - LISTCUBE.
    I have a query which has to be executed on this Virtual Cube. When i execute this Query , it does not display any data at all. It always displays "No applicable data found".
    I have tried with the combination of inputs for which the data is available in the cube. but still it gives "No applicable data found".
    Can someone suggest me what i have to do to correct this problem.
    Thanks
    Maddy

    Hi Maddy,
    I also encountered similar problem in BI 7.0, which doesn't happen in BW 3.5, though I was using Basic Cube, not Virtual Cube. I could finally work it out. Here are the steps I used:
    - Right click on the InfoCube > choose "Manage".
    - In the "Requests" tab, click the traffic light button in the "Request Status" column, set it to "Status OK".
    - The "Request for Reporting Available" column will show the "Request is available for reporting" icon automatically.
    - Try to execute your query again.
    Hope this might be relevant to your situation as well.
    Regards,
    arie

  • Query not executing all columns

    Hi Experts
    My client is running a query. they have been using it for a little while now with no issues. I have attached the query as a formatted search on the item master data form. when one of their users runs the queriy through the formatted search, it doesnt show the last column. but when running it through the query manager, it works fine.
    its only giving this problem for the one user (doesnt matter if we log in as that user on his PC or any other PC) therefore it is user related.
    why could this be happening?

    OK below is the query:
    declare @CurUser as nvarchar(10)
    set @CurUser = $[user]
    if(@CurUser in (1,5,8,9,22,44
    begin
    with req as
    select [item number] as 'item',[required qty] as 'required', [forecast current month] as 'forecast', [sq] as 'SQ', [on hand]
    FROM VPP_2006SBO_GARSINLIVE.DBO.VLGX_GetPlannedItemDetails()
    Invoices AS  --Get invoices per item
    *(SELECT T0.[ItemCode], T0.[FrgnName], SUM(I1.[Quantity]) AS Qty,*
            *DATEDIFF(month, T0.CreateDate,getdate()) AS ItemMonths*            
       *FROM OITM T0  full outer join inv1 i1 on T0.ItemCode = I1.ItemCode*
                     *left join OINV I0 ON I0.DocEntry = I1.DocEntry*
      *WHERE I0.[DocDate] >= '2006-06-01'*
        *AND I0.DocType <> 'S'*
      *GROUP BY T0.[ItemCode], T0.[FrgnName], T0.CreateDate*
    *Credit AS               -- Get credit notes per item*
    (      SELECT C1.[ItemCode],
    *                C1.[Dscription],*
    *                SUM(C1.[Quantity]) AS Qty*
    *          FROM ORIN C0  INNER JOIN RIN1 C1 ON C0.DocEntry = C1.DocEntry*
           WHERE C0.[DocDate] >= '2006-06-01'
                 AND C0.DocType <> 'S'
          GROUP BY C1.[ItemCode], C1.[Dscription]
    ItemInfo As
    (SELECT T0.ItemCode[SearchCode], t0.ItemName,T0.FRGNName[Description], cast (cast ((T0.OnHand- T0.IsCommited) as decimal (5,0)) as nvarchar (10))[Available], cast (cast (T0.OnOrder as decimal (5,0)) as nvarchar (10))[Expected],
    (case when (T0.U_IMP is null or T0.U_IMP = '')  then '0' else T0.U_IMP end )as 'InputTube',
    *(T0.U_Wieghtm * T0.BLength1)[KgLength], T0.ValidComm[-], T2.Price[PriceL],  T0.SWW[Spec],T0.U_ManStd, T0.U_MaterialSpec,T0.U_WIEGHTM[KgMetre],* 
    (T2.Price/(CASE WHEN T0.BLength1 = 0 THEN 0.0001 ELSE T0.BLength1 END))[PriceM]
    FROM OITM T0  INNER JOIN ITM1 T2 ON T0.ItemCode = T2.ItemCode,
    OCRD T3
    WHERE T3.CardName = '[%1]'
    and LEFT(T0.ITEMCODE,1)<>'L'
    and t0.itmsgrpcod <> '105'
    and t0.itmsgrpcod <> '101'
    and t0.itmsgrpcod <> '112'
    and t0.itmsgrpcod <> '113'
    and t0.itmsgrpcod <> '111'
    and t0.itmsgrpcod<>'114'
    and T2.[PriceList] = T3.[ListNum]
    and T3.CardType = 'C'        
    --order by T0.ITEMNAME
    SELECT
    ITEMINFO.SearchCode,
    --iteminfo.itemname,
    ITEMINFO.Description,
    ITEMINFO.Available,
    (case when ITEMINFO.Expected is null then '0' else ITEMINFO.Expected end ) as 'Expected',
    (case when req.forecast is null then 0 when req.forecast = 0 then 0 when req.forecast > 0 then (iteminfo.available + (case when ITEMINFO.Expected is null then 0 else ITEMINFO.Expected end)) / (case when req.FORECAST is null then 0 else req.FORECAST end)end) as 'Months Left of Stock',
    --(case when Inv.[Qty] is null then Inv.[Qty]  else Inv.[Qty] end) as 'i qty',
    --(case when Crn.[Qty] is null then Crn.[Qty]  else Crn.[Qty] end) as 'c qty',
    --(case when Inv.ItemMonths is null then Inv.ItemMonths else Inv.ItemMonths end) as 'Invoice ItemMonths',
    (case when  (Inv.[Qty] is null or Crn.[Qty] is null) and Inv.ItemMonths is null then '0' when Inv.[Qty] is null then '0' when Inv.ItemMonths ='0' then Inv.[Qty] when Crn.[Qty] is null and Inv.[Qty] >=0 then (Inv.[Qty] / Inv.ItemMonths) ELSE ((Inv.[Qty] - Crn.[Qty]) / Inv.ItemMonths) END) AS 'Garsin Avg Sales Per Month',
    (case when req.FORECAST is null then '0' else req.FORECAST end) as 'Valogix Avg Sales Per Month',
    (case when ITEMINFO.InputTube is null then '0' else ITEMINFO.InputTube end) as 'Input Tube',
    (case when ITEMINFO.KgLength is null then '0' else ITEMINFO.KgLength end) as 'Kg Length',
    (case when ITEMINFO.PriceL is null then '0' else ITEMINFO.PriceL end) as 'Price L' ,
    (case when ITEMINFO.Spec is null then '0' else ITEMINFO.Spec end) as 'Standard/Non-Standard', Iteminfo.U_MaterialSpec as 'Material Grade',
    (case when iteminfo.U_manstd is null then ' ' else iteminfo.U_manstd end) as 'Manufacturing Standard' ,
    (case when ITEMINFO.KgMetre is null then '0' else ITEMINFO.KgMetre end) as 'Kg Metre',
    (case when Iteminfo.PriceM is null then '0' else Iteminfo.PriceM end) as 'Price M'
    FROM Invoices Inv left outer JOIN Credit Crn ON Inv.[ItemCode] = Crn.[ItemCode]
                      full outer join ItemInfo  ON Inv.[ItemCode] =ItemInfo.[SearchCode]
    *                         left outer join req on req.item =  iteminfo.searchcode collate SQL_Latin1_general_CP850_CI_AS     *
    where Iteminfo.SearchCode is not null
    GROUP BY iteminfo.itemname , ItemInfo.[SearchCode], ItemInfo.[Description],Iteminfo.Available, Inv.Qty, Crn.Qty, Inv.ItemMonths, Iteminfo.Expected, ItemInfo.InputTube, ItemInfo.KgLength, Iteminfo.PriceL, ItemInfo.Spec,iteminfo.U_manstd,Iteminfo.Kgmetre, Iteminfo.U_MaterialSpec,ItemInfo.PriceM,req.FORECAST
    order by iteminfo.itemname
    end
    else
    begin
    WITH Invoices AS  --Get invoices per item
    *(SELECT T0.[ItemCode], T0.[FrgnName], SUM(I1.[Quantity]) AS Qty,*
            *DATEDIFF(month, T0.CreateDate,getdate()) AS ItemMonths*            
       *FROM OITM T0  full outer join inv1 i1 on T0.ItemCode = I1.ItemCode*
                     *left join OINV I0 ON I0.DocEntry = I1.DocEntry*
      *WHERE I0.[DocDate] >= '2006-06-01'*
        *AND I0.DocType <> 'S'*
      *GROUP BY T0.[ItemCode], T0.[FrgnName], T0.CreateDate*
    *Credit AS               -- Get credit notes per item*
    (      SELECT C1.[ItemCode],
    *                C1.[Dscription],*
    *                SUM(C1.[Quantity]) AS Qty*
    *          FROM ORIN C0  INNER JOIN RIN1 C1 ON C0.DocEntry = C1.DocEntry*
           WHERE C0.[DocDate] >= '2006-06-01'
                 AND C0.DocType <> 'S'
          GROUP BY C1.[ItemCode], C1.[Dscription]
    ItemInfo As
    (SELECT T0.ItemCode[SearchCode], t0.ItemName,T0.FRGNName[Description], cast (cast ((T0.OnHand- T0.IsCommited) as decimal (5,0)) as nvarchar (10))[Available], cast (cast (T0.OnOrder as decimal (5,0)) as nvarchar (10))[Expected],
    (case when (T0.U_IMP is null or T0.U_IMP = '')  then '0' else T0.U_IMP end )as 'InputTube',
    *(T0.U_Wieghtm * T0.BLength1)[KgLength], T0.ValidComm[-], T2.Price[PriceL],  T0.SWW[Spec], T0.U_MaterialSpec,T0.U_WIEGHTM[KgMetre],* 
    (T2.Price/(CASE WHEN T0.BLength1 = 0 THEN 0.0001 ELSE T0.BLength1 END))[PriceM]
    FROM OITM T0  INNER JOIN ITM1 T2 ON T0.ItemCode = T2.ItemCode,
    OCRD T3
    WHERE T3.CardName = '[%1]'
    and LEFT(T0.ITEMCODE,1)<>'L'
    and t0.itmsgrpcod <> '105'
    and t0.itmsgrpcod <> '101'
    and t0.itmsgrpcod <> '112'
    and t0.itmsgrpcod <> '113'
    and t0.itmsgrpcod <> '111'
    and t0.itmsgrpcod<>'114'
    and T2.[PriceList] = T3.[ListNum]
    and T3.CardType = 'C'        
    --order by T0.ITEMNAME
    SELECT
    ITEMINFO.SearchCode,
    --iteminfo.itemname,
    ITEMINFO.Description,
    ITEMINFO.Available,
    (case when ITEMINFO.Expected is null then '0' else ITEMINFO.Expected end ) as 'Expected',
    (case when ITEMINFO.InputTube is null then '0' else ITEMINFO.InputTube end) as 'Input Tube',
    (case when ITEMINFO.KgLength is null then '0' else ITEMINFO.KgLength end) as 'Kg Length',
    (case when ITEMINFO.PriceL is null then '0' else ITEMINFO.PriceL end) as 'Price L' ,
    (case when ITEMINFO.Spec is null then '0' else ITEMINFO.Spec end) as 'Standard/Non-Standard', Iteminfo.U_MaterialSpec as 'Material Spec',
    (case when ITEMINFO.KgMetre is null then '0' else ITEMINFO.KgMetre end) as 'Kg Metre',
    (case when Iteminfo.PriceM is null then '0' else Iteminfo.PriceM end) as 'Price M'
    FROM Invoices Inv left outer JOIN Credit Crn ON Inv.[ItemCode] = Crn.[ItemCode]
                      full outer join ItemInfo  ON Inv.[ItemCode] =ItemInfo.[SearchCode]
    where Iteminfo.SearchCode is not null
    GROUP BY iteminfo.itemname , ItemInfo.[SearchCode], ItemInfo.[Description],Iteminfo.Available, Inv.Qty, Crn.Qty, Inv.ItemMonths, Iteminfo.Expected, ItemInfo.InputTube, ItemInfo.KgLength, Iteminfo.PriceL, ItemInfo.Spec,Iteminfo.Kgmetre, Iteminfo.U_MaterialSpec,ItemInfo.PriceM
    order by iteminfo.itemname
    end
    >>BASICALLY THERE ARE 2 QUERIES BUILT INTO ONE. IF THE USERCODE IS 1,5,8,9,22, OR 44 THEN IT WILL EXECUTE THE FIRST PART OTHERWISE IT EXECUTES THE OTHER PART. THIS ISNT THE ISSUE WTH MY QUERY AS I HAVE CHECKED THE USERCODE.

  • Sql query not executed using recordset

    Hi All,
    I am trying to first format and then execute SQL query statement using recordset object with DI API. the issue is with vb.net's string formatting. I want to use 'USE [DB_Name]' statement in SQL and then 'Alter Procedure ..' statement. as this has to be the first statement in sql , I am using 'GO' in between and seperating each sentence with following syntax.
      Dim AltProc  as string
      AltProc = " USE [DB_name]" & Environment.NewLine
      AltProc = AltProc & " GO " &  Environment.NewLine
      AltProc = AltProc & " ALTER proc [proc_name] " &  Environment.NewLine
    '---------------------and so on
    Orec.DoQuery(AltProc)
    this formatting does not recognize new line and gives 'incorrect syntax near 'Go'' error.  strange thing is, if I take this query in SQL, it runs perfectly and I can see it getting formatted with each new line created. I tried even VbcrLf but it didnt work.
    any one has any idea?
    thanks in advance,
    Binita

    HI Binita
    The reason:
    GO is the "command" delimiter of MS Query Editor.
    It is not working with RecordSet Object.
    In MS SQL 2008 version you can define the schema before the procedure name but in SQL server 2000/2005 it is not possible.
    IN SQL 2008 use the Fully Qualified name instead of GO:
    Dim AltProc  as string
      AltProc = " ALTER proc [DB_name].[dbo].[proc_name] "  + vbcrlf
    '---------------------and so on
    Orec.DoQuery(AltProc)
    it is not working on MS SQL 2008 i have tried.
    'CREATE/ALTER PROCEDURE' does not allow specifying the database name as a prefix to the object name.'
    Regards,
    J.
    Edited by: Janos  Nagy on Jun 22, 2009 2:55 PM

  • Sql query not execute

    Hi Forum
    i made an application which run on JRun server.
    In many of my jsps i used sql query like this:
    " select id, name, rollno from student where add = 'jj';"
    and retrieve the record from resultset like this:
    rs.getString("id");
    rs.getString("name");
    rs.getString("rollno");
    I got no error.
    BUT WHEN I RETRIEVE THE RECORDS LIKE THIS
    rs.getString("name");
    rs.getString("id");
    rs.getString("rollno");
    i got the error:
    java.sql.SQLException: [Oracle][ODBC]Invalid column number <1>.
    I can not understand what is the problem ?
    all the datatypes are correct.
    all coding is correct.
    and everything is correct.
    pls help me & suggest a solution.
    is there any problem of jdbc API OR of JRUN SERVER SETTINGS?
    thanks
    mail me at [email protected]
    Arvind Goel

    I would advise against ever using SELECT * - the order of the columns is undetermined so you're bound to hit this problem sooner or later. Besides, it assumes the column names and you know what happens when you assume things...
    I would recommend retrieving only the columns you need, in the order you want them and to call ResultSet.getXXX for each of the columns, in order.

  • Query not executing the results

    Hi,
    I have created a Custom Virtual Cube with a custom function module. This Cube displays data when i check it through the transaction code - LISTCUBE.
    I have a query which has to be executed on this Virtual Cube. When i execute this Query , it does not display any data at all. It always displays "No applicable data found".
    I have tried with the combination of inputs for which the data is available in the cube. but still it gives "No applicable data found".
    Can someone suggest me what i have to do to correct this problem.
    Thanks
    Maddy

    Hi Maddy,
    I also encountered similar problem in BI 7.0, which doesn't happen in BW 3.5, though I was using Basic Cube, not Virtual Cube. I could finally work it out. Here are the steps I used:
    - Right click on the InfoCube > choose "Manage".
    - In the "Requests" tab, click the traffic light button in the "Request Status" column, set it to "Status OK".
    - The "Request for Reporting Available" column will show the "Request is available for reporting" icon automatically.
    - Try to execute your query again.
    Hope this might be relevant to your situation as well.
    Regards,
    arie

  • URGENT (sql query not execute)

    Hi Forum
    i made an application which run on JRun server.
    In many of my jsps i used sql query like this:
    " select id, name, rollno from student where add = 'jj';"
    and retrieve the record from resultset like this:
    rs.getString("id");
    rs.getString("name");
    rs.getString("rollno");
    I got no error.
    BUT WHEN I RETRIEVE THE RECORDS LIKE THIS
    rs.getString("name");
    rs.getString("id");
    rs.getString("rollno");
    i got the error:
    java.sql.SQLException: [Oracle][ODBC]Invalid column number <1>.
    I can not understand what is the problem ?
    all the datatypes are correct.
    all coding is correct.
    and everything is correct.
    pls help me & suggest a solution.
    is there any problem of jdbc API OR of JRUN SERVER SETTINGS?
    thanks
    mail me at [email protected]
    Arvind Goel

    " select id, name, rollno from student where add =
    'jj';"
    BUT WHEN I RETRIEVE THE RECORDS LIKE THIS
    rs.getString("name");
    rs.getString("id");
    rs.getString("rollno");
    You are retrieving the fields in a different order than what is specified in the select statement.
    Some drivers don't allow that (I don't believe it matters what version of the driver you have.)

  • BIC7.0.3 Level4 BCT-CO Query not executing

    BI7.0 SP10
    BI Content 7.0.3 Level 4
    Hello All,
    I have installed the Business Content Controlling Analysis scenario.  I have loaded the master and transactional data.  I am now trying to execute business content queries (0CCA_C11_Q00XX).  When trying to execute queries for 0CCA_C11 via Query Designer (BI7.0), I am getting the following error:
    "Variable 0P_FVAEX could not be replaced"
    This error occurs after I have entered fields for the selection screen then attempted to execute the query.
    All help is appreciated!
    Thanks,
    -B

    0P_FVAEX is an SAP Exit variable for the fiscal year variant characteristic

Maybe you are looking for

  • While recording videos in iPhone 5, I am not getting sound playback.

    While recording videos in iPhone 5, I am not getting sound while playing it. How to resolve this issue? Please help. Thank you.

  • Delivery, Read Receipts

    Hello, I'm new to this forum and am hoping someone can help me with a few issues I'm having with my tmoile curve. I seem to remember when I first used it that I would get an email message telling me the message I'd sent earlier had been read.  I no l

  • Photoshop CS3 and illustrator won't let me save

    I have photoshop and illistrator cs3 for Windows XP.  Both of the programs were running fine for over 1-2 years, but last week when I try to save something, the save dialog pops up for less than 1/2 a second, disappears and then freezes the program. 

  • RMAN backup from another DB server

    Hi all, I would like to know Can we take a rman backup from another DB server in oracle 9.2... i.e suppose that we have two server 1. main server 2. dup server I want to take a backup of main server throeugh dup server..... if it is poosible then wha

  • How to recover contact list ?

    how can i recover contact list?