Join Logic Help

I'm having difficulty with the join logic of a particular query, which is modeled with the following (highly simplified) schema:
create table a(
    a_id number,
    constraint pk_a primary key(a_id));
create table b(
    b_id number,
    a_id number,
    constraint pk_b primary key(b_id),
    constraint fk_b_a foreign key(a_id) references a(a_id));
create table c(
    c_id number,
    b_id number,
    constraint pk_c primary key(c_id),
    constraint fk_c_b foreign key(b_id) references b(b_id));
insert into a values(1);
insert into a values(2);
insert into b values(1,1);
insert into b values(2,1);
insert into b values(3,2);
insert into b values(4,2);
insert into c values(1,1);
insert into c values(2,2);
insert into c values(3,3);There can be 1-many "b" records associated with each "a" record, but "b" and "c" have a 1-1 relationship. What query will select only the "a" records that have ALL associated "b" records contained in "c"? Given the above data, the query should return only "a=1", since both "b=1" and "b=2" are contained in "c". However, it would NOT return "a=2", since both "b=3" and "b=4" are not contained in "c". The results should be:
OUTPUT:
    a_id
    1

Hi,
Here's one way:
SELECT       a.a_id
FROM           a
JOIN           b  ON  a.a_id     = b.a_id
LEFT OUTER JOIN      c  ON     b.b_id     = c.b_id
GROUP BY  a.a_id
HAVING       COUNT (b.b_id)  = COUNT (c.b_id)
;Most things that you can do with IN sub-queries can also be done with joins, or with EXISTS sub-queries. (Most things that can be done with EXISTS sub-queries can also be done wioth joins or IN sub-queries. However, there are lots of things that can be done only with joins.)
If you don't like one, try the others.
Thanks for posting the CREATE TABLE and INSERT statements; that's very helpful.
Don't forget to post the results you want from that data, no matter how simple those results are, and your version of Oracle.

Similar Messages

  • Possible to embed join logic in metadata somewhere?

    Do you know if Oracle Reports and Discovery allow us to create a schema for the end users to use so that they are not wandering around through the whole database when attempting to make reports? I am trying to figure out if we can embed some join logic in metadata some where so that creating reports is simplified and errors are reduced.
    The problem is that we have foreign key that isn’t unique, for the join to work you need to specify additional join criteria. For example to get additional data from table b, I have a portion of the foreign key in table a (column code) , but the other part is hard coded to make the join unique. select …. where a.code = b.code and b.id = “GENDER”. Can I store this join criteria somewhere so that users can just use the join and they don’t need to code this properly?

    Hi Steve,
    Not sure if this will solve your problem completely, but just a thought:
    1. Use a query like this:
    select * from abc &where_clause
    So you are using a user parameter (lexical reference) in your query in every report. Now suppose you have created your where clause (the actual text) and stored in some table in the DB.
    2. You can use a "before report trigger" in every report that picks up this where clause from the DB, and populates the user parameter with it.
    You can perform both these steps in your report template, so that the report developers can just apply this template to get the user param as well as the trigger.
    Hope this helps.
    Navneet.

  • Need Query Logic Help.

    Hello, Experts.
    I am Design a Query, in that i need to do year over year comparison.
    i.e. in the report we have to show data from 2007 - 2012,
    Comparing 2007 fcst data with 2006 FCST data, 2008 fcst data with 2007 fcst like that untill 2012 data with 2011 data.
    in the Col. i have Cal.Year ( range from 2006 -2012 )
    in the Rows i have key fig Struct and i have product Family on top of the key fig struct.
    Product Family Keyfig/calyear      2007    2008  2009  2010  2011  2012
    prod A                             FCST            10        11     11      10     14    15
                          var year over year                 1        0       -1      -4     1
    Is there a way to achieve this, Please i need some suggestions and Logic help.
    sharp deep

    I Did this in one way that is...  Creating 7 FCST key fig  restricting it with Cal year -1 ,calyear  ,  Calyear +1... respectively.....  and then 6 Cal key fig  Sub
    in the Col.  i have this  Keyfig Struct.
    Res Keyfig 2006 ( Key fig FCST and Resctricted with 2006 )
    Res Keyfig 2007 ( Key fig FCST and Resctricted with 2007 )
    Res Keyfig 2008 ( Key fig FCST and Resctricted with 2008 )
    Res Keyfig 2009 ( Key fig FCST and Resctricted with 2009 )
    Res Keyfig 2010 ( Key fig FCST and Resctricted with 2010 )
    Res Keyfig 2011 ( Key fig FCST and Resctricted with 2011 )
    Res Keyfig 2012 ( Key fig FCST and Resctricted with 2012 )
    Var 2007 Cal key fig  ( Res Keyfig 2006 -Res Keyfig 2007)
    Var 2008 Cal key fig  ( Res Keyfig 2007 -Res Keyfig 2008)
    Var 2009 Cal key fig  ( Res Keyfig 2008 -Res Keyfig 2009)
    Var 2010 Cal key fig  ( Res Keyfig 2009 -Res Keyfig 2010)
    Var 2011 Cal key fig  ( Res Keyfig 2010 -Res Keyfig 2011)
    Var 2012 Cal key fig  ( Res Keyfig 2011 -Res Keyfig 2012)
    in the Row i have Product Family.
    if i add any thing like  Stat Fcst again i have to Create this many Fields ....  i am looking for some easy way/other way to achive this
    Thanks
    sharp deep

  • BMM Join logic needed

    Hi,
    In my BMM, I have two dimension tables(Plan Dim, Stage Dim) and one fact table(Combine fact).
    Currently I have all my joins to be an inner join, in the source of my fact. (which is producing wrong results).
    This is what I am trying to accomplish. When I pull columns from Plan Dim and Combine Fact for my report the query should not include Stage Dim tables at all, how can that be done.
    Thanks for the help and your time.

    It has both LTS in fact means you can take any column from both dimensions with the fact table column.....i suppose both are inner joined right.
    Information :- http://peoplesoftbits.wordpress.com/2009/02/26/obiee-logical-table-vs-logical-table-sources-best-practice/
    hi iam very new to OBIEE
    If you dont want that scenerio just go to properties and remove the dimension table your not interested in.
    Cheers,
    KK

  • Outer Join logic

    The following code is an example of how to perform an outer join, in this case with ReportQuery (thanks Doug):
            ExpressionBuilder eb = new ExpressionBuilder();
            ReportQuery rq = new ReportQuery(Employee.class, eb);
            rq.addAttribute("firstName");
            rq.addAttribute("lastName");
            rq.addAttribute("areaCode", eb.anyOfAllowingNone("phoneNumbers").get("areaCode"));
            List<ReportQueryResult> results =  (List<ReportQueryResult>) session.executeQuery(rq);My question is about the logic Toplink uses to generate the outer join statement with the "(+)" in the generated sql.
    Does Toplink only generate the join statement if the same attribute is chosen in the select statement (in the above example "areaCode")?
    Along the same line of questioning, does it matter which attribute was in the get() call? So, in the above example did it have to be areaCode, or could it have been any other attribute of phoneNumber, and it still would have performed the join?
    In my case, because the selection attributes are built up dynamicly, should I add all attributes of my child class (my equivalent PhoneNumber class)?

    Thanks for your reply Doug.
    One last question, hopefully.
    I have a parent table with 2 child tables. When attempting an outer join with both, toplink does not attempt to outer join either. I understand why, sort of - as you get an error when attempting this in sqlplus with "(+)" syntax.
    I understand that you can outer join > 1 other table to a parent with ansi sql syntax:
        select dept.*,emp.*
        from dept left outer join emp
        on dept.deptno = emp.deptnoWill toplink allow > 1 child table outer join to a parent table?

  • Just Upgraded to Snow Leopard and ruined Logic - Help!

    I'm running Logic 8, NI Komplete and Reason 4.0.
    All was dandy under 10.5.8. Upgraded to snow leopard last night and all apps were fine....except logic.
    I opened logic and it went to rescan all the AU. Fine, let it go a few mins but seemed to be hanging, so force quit. It gave me an error that logic encountered an issue with the Rewire plug in. That may be what caused the hanging.
    This happened a few times, so I googled for answers and did the following.
    - Deleted Logic Preferences
    - Tried to start holding control to bypass AU (didn't start)
    - Reinstalled logic (twice, once plain and the second time after trashing receipts)
    Now, logic just bounces in the dock many times, no splash screen and then just stops bouncing and no launch. Have to force quit.
    My instruments, loops etc are on another drive so when i reinstall it's just logic. Also my disks are for a L7-L8 upgrade version.
    I saw another closed thread where beejay had helped someone resolve this, but no real answers there.
    Can anyone think of something I haven't tried (other than full clean install of Snow Leopard) that might work?

    Hey Eriksimon or Bee Jay, need your help! Almost the same problem but worse... I don't have a timed backup
    I'm running Reason 3 through Logic 9, didn't even realize I had melodyne until I searched my hard drive after I installed SL and Logic stopped working... (Logic just bounces in the dock or else crashes on the splash screen)
    I deleted Logic Preferences and most of my AU plugins preferences, and Melodyne completely
    Here's the crash log:
    Process: Logic Pro [1181]
    Path: /Applications/Logic Pro.app/Contents/MacOS/Logic Pro
    Identifier: com.apple.logic.pro
    Version: 9.0.0 (1660.11)
    Build Info: Logic-16601100~1
    Code Type: X86 (Native)
    Parent Process: launchd [95]
    Date/Time: 2010-06-06 09:43:38.158 -0400
    OS Version: Mac OS X 10.6 (10A432)
    Report Version: 6
    Interval Since Last Report: 64601 sec
    Crashes Since Last Report: 8
    Per-App Interval Since Last Report: 5629 sec
    Per-App Crashes Since Last Report: 7
    Anonymous UUID: 0A2A45DA-C3AE-4801-8C84-B9E0F50D0D80
    Exception Type: EXCBADACCESS (SIGBUS)
    Exception Codes: KERNPROTECTIONFAILURE at 0x0000000000000003
    Crashed Thread: 0 Dispatch queue: com.apple.main-thread
    Application Specific Information:
    objc_msgSend() selector name: countByEnumeratingWithState:objects:count:
    Thread 0 Crashed: Dispatch queue: com.apple.main-thread
    0 libobjc.A.dylib 0x9258192c objc_msgSend + 44
    1 com.apple.Foundation 0x93c55253 nsnotecallback + 176
    2 com.apple.CoreFoundation 0x95099c29 __CFXNotificationPost + 905
    3 com.apple.CoreFoundation 0x9509965a _CFXNotificationPostNotification + 186
    4 com.apple.Foundation 0x93c4a120 -[NSNotificationCenter postNotificationName:object:userInfo:] + 128
    5 com.apple.Foundation 0x93c574fd -[NSNotificationCenter postNotificationName:object:] + 56
    6 com.apple.AppKit 0x9009eeb7 -[NSWindow becomeKeyWindow] + 1359
    7 com.apple.AppKit 0x9009e409 -[NSWindow _changeKeyAndMainLimitedOK:] + 810
    8 com.apple.AppKit 0x9009e0c5 -[NSWindow makeKeyWindow] + 72
    9 com.apple.AppKit 0x9009e034 -[NSWindow _makeKeyRegardlessOfVisibility] + 128
    10 com.apple.AppKit 0x9027bc3e -[NSApplication _orderFrontModalWindow:relativeToWindow:] + 500
    11 com.apple.AppKit 0x9027b722 -[NSApplication _commonBeginModalSessionForWindow:relativeToWindow:modalDelegate:didEndSelector :contextInfo:] + 826
    12 com.apple.prokit 0x010b4c8a -[NSProApplication _commonBeginModalSessionForWindow:relativeToWindow:modalDelegate:didEndSelector :contextInfo:] + 141
    13 com.apple.AppKit 0x90319ead -[NSApplication beginModalSessionForWindow:] + 73
    14 com.apple.logic.pro 0x005ea8ad 0x1000 + 6199469
    15 com.apple.AppKit 0x9031f82b -[NSApplication runModalForWindow:] + 115
    16 com.apple.AppKit 0x90314c48 -[NSAlert runModal] + 234
    17 com.apple.logic.pro 0x0028336d 0x1000 + 2630509
    18 com.apple.logic.pro 0x00283a01 0x1000 + 2632193
    19 com.apple.logic.pro 0x0008c324 0x1000 + 570148
    20 com.apple.logic.pro 0x003cfa85 0x1000 + 3992197
    21 com.apple.logic.pro 0x001aa1ee 0x1000 + 1741294
    22 com.apple.logic.pro 0x001add9e 0x1000 + 1756574
    23 com.apple.logic.pro 0x006094f3 0x1000 + 6325491
    24 com.apple.Foundation 0x93c55253 nsnotecallback + 176
    25 com.apple.CoreFoundation 0x95099c29 __CFXNotificationPost + 905
    26 com.apple.CoreFoundation 0x9509965a _CFXNotificationPostNotification + 186
    27 com.apple.Foundation 0x93c4a120 -[NSNotificationCenter postNotificationName:object:userInfo:] + 128
    28 com.apple.Foundation 0x93c574fd -[NSNotificationCenter postNotificationName:object:] + 56
    29 com.apple.AppKit 0x900d97f6 -[NSApplication _postDidFinishNotification] + 125
    30 com.apple.AppKit 0x900d9706 -[NSApplication _sendFinishLaunchingNotification] + 74
    31 com.apple.AppKit 0x9023045d -[NSApplication(NSAppleEventHandling) _handleAEOpen:] + 274
    32 com.apple.AppKit 0x9023007d -[NSApplication(NSAppleEventHandling) _handleCoreEvent:withReplyEvent:] + 101
    33 com.apple.Foundation 0x93c8a46c -[NSAppleEventManager dispatchRawAppleEvent:withRawReply:handlerRefCon:] + 511
    34 com.apple.Foundation 0x93c8a230 _NSAppleEventManagerGenericHandler + 228
    35 com.apple.AE 0x90edede6 aeDispatchAppleEvent(AEDesc const*, AEDesc*, unsigned long, unsigned char*) + 166
    36 com.apple.AE 0x90edece5 dispatchEventAndSendReply(AEDesc const*, AEDesc*) + 43
    37 com.apple.AE 0x90edebf2 aeProcessAppleEvent + 197
    38 com.apple.HIToolbox 0x9319e381 AEProcessAppleEvent + 50
    39 com.apple.AppKit 0x900a9dd6 _DPSNextEvent + 1420
    40 com.apple.AppKit 0x900a940e -[NSApplication nextEventMatchingMask:untilDate:inMode:dequeue:] + 156
    41 com.apple.AppKit 0x9006b5fb -[NSApplication run] + 821
    42 com.apple.prokit 0x010b514c NSProApplicationMain + 325
    43 com.apple.logic.pro 0x000039b6 0x1000 + 10678
    Thread 1: Dispatch queue: com.apple.libdispatch-manager
    0 libSystem.B.dylib 0x917b010a kevent + 10
    1 libSystem.B.dylib 0x917b0824 dispatch_mgrinvoke + 215
    2 libSystem.B.dylib 0x917afce1 dispatch_queueinvoke + 163
    3 libSystem.B.dylib 0x917afa86 dispatch_workerthread2 + 234
    4 libSystem.B.dylib 0x917af511 pthreadwqthread + 390
    5 libSystem.B.dylib 0x917af356 start_wqthread + 30
    Thread 2:
    0 libSystem.B.dylib 0x917a8876 select$DARWIN_EXTSN + 10
    1 com.apple.CoreFoundation 0x950bb04d __CFSocketManager + 1085
    2 libSystem.B.dylib 0x917b6fe1 pthreadstart + 345
    3 libSystem.B.dylib 0x917b6e66 thread_start + 34
    Thread 3:
    0 libSystem.B.dylib 0x917b782a _semwaitsignal + 10
    1 libSystem.B.dylib 0x917b74e6 pthread_condwait + 1191
    2 libSystem.B.dylib 0x917b9178 pthreadcondwait$UNIX2003 + 73
    3 com.apple.music.apps.MAFiles 0x02abd888 CheckNavServices + 54440
    4 com.apple.music.apps.MAFiles 0x02abd951 CheckNavServices + 54641
    5 libSystem.B.dylib 0x917b6fe1 pthreadstart + 345
    6 libSystem.B.dylib 0x917b6e66 thread_start + 34
    Thread 4:
    0 libSystem.B.dylib 0x917b782a _semwaitsignal + 10
    1 libSystem.B.dylib 0x917b74e6 pthread_condwait + 1191
    2 libSystem.B.dylib 0x917b9178 pthreadcondwait$UNIX2003 + 73
    3 com.apple.music.apps.MAFiles 0x02abd888 CheckNavServices + 54440
    4 com.apple.music.apps.MAFiles 0x02abd951 CheckNavServices + 54641
    5 libSystem.B.dylib 0x917b6fe1 pthreadstart + 345
    6 libSystem.B.dylib 0x917b6e66 thread_start + 34
    Thread 0 crashed with X86 Thread State (32-bit):
    eax: 0x00000003 ebx: 0x9016fb12 ecx: 0x9087cdb0 edx: 0x00000004
    edi: 0x04025f50 esi: 0x00000007 ebp: 0xbfffe538 esp: 0xbfffe394
    ss: 0x0000001f efl: 0x00010206 eip: 0x9258192c cs: 0x00000017
    ds: 0x0000001f es: 0x0000001f fs: 0x00000000 gs: 0x00000037
    cr2: 0x00000003
    Binary Images:
    0x1000 - 0xb6dff6 com.apple.logic.pro 9.0.0 (1660.11) <1273C34C-F887-F53E-62E4-3D4A089A38D8> /Applications/Logic Pro.app/Contents/MacOS/Logic Pro
    0xdd8000 - 0xdf2fe7 com.apple.music.apps.MAAudioUnitSupport 9.0.0 (201.7) <6D2A993E-779E-FB31-F90F-3A338966BC31> /Applications/Logic Pro.app/Contents/Frameworks/MAAudioUnitSupport.framework/Versions/A/MAAudioUnit Support
    0xe01000 - 0xe30ff7 +MAAssetSharing ??? (???) /Applications/Logic Pro.app/Contents/Frameworks/MAAssetSharing.framework/Versions/A/MAAssetSharing
    0xe42000 - 0xec1fdf com.apple.DotMacKit 21 (3.0.1L) /Applications/Logic Pro.app/Contents/Frameworks/DotMacKit.framework/Versions/A/DotMacKit
    0xf1e000 - 0xf7afff com.apple.music.apps.MALoopManagement 9.0.0 (195.6) <9C9059FD-BE29-0A5E-6185-B2233AFFC61A> /Applications/Logic Pro.app/Contents/Frameworks/MALoopManagement.framework/Versions/A/MALoopManagem ent
    0xf97000 - 0x104cfe7 libcrypto.0.9.7.dylib ??? (???) <4917E4F2-817F-5AC4-3FBE-54BC96360448> /usr/lib/libcrypto.0.9.7.dylib
    0x1092000 - 0x124dff3 com.apple.prokit 5.1 (917) <423CD2A7-DD73-79DD-D0ED-BAFA77282C85> /System/Library/PrivateFrameworks/ProKit.framework/Versions/A/ProKit
    0x1356000 - 0x13e2fff com.apple.music.apps.MACore 9.0.0 (436.7) <04D11E62-AA06-520A-13D0-9A65D82BC3C5> /Applications/Logic Pro.app/Contents/Frameworks/MACore.framework/Versions/A/MACore
    0x141e000 - 0x146afff com.apple.audio.midi.CoreMIDI 1.7 (42) <670CB7F9-AA00-86F3-6623-E1335F7AEA83> /System/Library/Frameworks/CoreMIDI.framework/Versions/A/CoreMIDI
    0x148f000 - 0x14d1fe7 com.apple.music.apps.MAHarmony 9.0.0 (174.6) <5F47D7A3-0574-13E1-9CAF-EDF89733C4D6> /Applications/Logic Pro.app/Contents/Frameworks/MAHarmony.framework/Versions/A/MAHarmony
    0x14e5000 - 0x18e6ff7 com.apple.music.apps.MAPlugInGUI 9.0.0 (396.8) <A487ACA5-94EF-4791-E7D4-8ED63F48E882> /Applications/Logic Pro.app/Contents/Frameworks/MAPlugInGUI.framework/Versions/A/MAPlugInGUI
    0x1b6e000 - 0x1c50fff com.apple.music.apps.OMF 9.0.0 (98.6) <82D9E964-5848-89EB-6F05-45EAA15CFAF6> /Applications/Logic Pro.app/Contents/Frameworks/OMF.framework/Versions/A/OMF
    0x1c64000 - 0x222cfe3 com.apple.music.apps.MADSP 9.0.0 (550.11) <835026EC-7FD3-D516-2D5D-4213509F2E15> /Applications/Logic Pro.app/Contents/Frameworks/MADSP.framework/Versions/A/MADSP
    0x2916000 - 0x2937fff com.apple.music.apps.LogicFileBrowser 9.0.0 (201.6) <B3E20521-2E57-9C51-A2F7-BD8A908EC82F> /Applications/Logic Pro.app/Contents/Frameworks/LogicFileBrowser.framework/Versions/A/LogicFileBrow ser
    0x2947000 - 0x29b9fff com.apple.music.apps.LogicLoopBrowser 9.0.0 (190.6) <66261E15-D1F5-38E6-4695-A08B4D0333A6> /Applications/Logic Pro.app/Contents/Frameworks/LogicLoopBrowser.framework/Versions/A/LogicLoopBrow ser
    0x29e0000 - 0x2a01ffb com.apple.music.apps.MAApogeeSupport 9.0.0 (284.6) <A43886F9-C126-31F8-6913-006215E98823> /Applications/Logic Pro.app/Contents/Frameworks/MAApogeeSupport.framework/Versions/A/MAApogeeSuppor t
    0x2a0c000 - 0x2a11fff com.apple.music.apps.MAResources 9.0.0 (202.6) <3EEFB4EE-C0D0-5608-1690-D97EE7E2C2AA> /Applications/Logic Pro.app/Contents/Frameworks/MAResources.framework/Versions/A/MAResources
    0x2a16000 - 0x2a3ffef com.apple.audio.CoreAudioKit 1.6 (1.6) <E9D5679D-0F3A-EE19-76F9-559F42E5DF8C> /System/Library/Frameworks/CoreAudioKit.framework/Versions/A/CoreAudioKit
    0x2a50000 - 0x2a57fff com.apple.AEProfiling 1.2 (22) <50FD5623-D2C1-8102-FD41-D8E745E08353> /Applications/Logic Pro.app/Contents/Frameworks/AEProfiling.framework/Versions/A/AEProfiling
    0x2a5f000 - 0x2a6efff com.apple.AERegistration 1.2 (77) <0C4C1300-9E3A-E2A1-4507-380C2544B223> /Applications/Logic Pro.app/Contents/Frameworks/AERegistration.framework/Versions/A/AERegistration
    0x2a81000 - 0x2a8cfff com.apple.music.apps.MAUnitTest 9.0.0 (73.6) <22259358-AE5C-945B-6D62-6E34E5D950D0> /Applications/Logic Pro.app/Contents/Frameworks/MAUnitTest.framework/Versions/A/MAUnitTest
    0x2a94000 - 0x2b43feb com.apple.music.apps.MAFiles 9.0.0 (117.7) <DEB3851C-012E-1B3E-BBB8-7C9821D2FCDF> /Applications/Logic Pro.app/Contents/Frameworks/MAFiles.framework/Versions/A/MAFiles
    0x2b5c000 - 0x2bc9fef com.apple.music.apps.MAAudioEngine 9.0.0 (127.9) <89A97108-13A6-A6F3-86BF-4067D9B1BD32> /Applications/Logic Pro.app/Contents/Frameworks/MAAudioEngine.framework/Versions/A/MAAudioEngine
    0x2c0c000 - 0x2c16ff3 com.apple.music.apps.MAToolKit 9.0.0 (323.6) <8B657E8E-C862-5011-0EC6-D5F73BCFF3D8> /Applications/Logic Pro.app/Contents/Frameworks/MAToolKit.framework/Versions/A/MAToolKit
    0x2c1c000 - 0x2c3afef com.apple.XSKey 1.0.0 (52) <71B94F53-15DB-9012-91F2-211F7C2CD790> /Library/Frameworks/XSKey.framework/Versions/A/XSKey
    0x2c49000 - 0x2c89ff7 com.apple.vmutils 4.2 (106) <834EA6B0-C91B-4CF1-ED3C-229C26459578> /System/Library/PrivateFrameworks/vmutils.framework/Versions/A/vmutils
    0x40542000 - 0x4054fff7 com.apple.iokit.IOHIDLib 1.6.0 (1.6.0) <6341E73C-5776-5D6F-5671-57CA1C63ED9F> /System/Library/Extensions/IOHIDFamily.kext/Contents/PlugIns/IOHIDLib.plugin/Co ntents/MacOS/IOHIDLib
    0x4055f000 - 0x40563ff3 com.apple.audio.AudioIPCPlugIn 1.1.0 (1.1.0) <39CD9296-183C-5603-94A4-0A0EC327BA69> /System/Library/Extensions/AudioIPCDriver.kext/Contents/Resources/AudioIPCPlugI n.bundle/Contents/MacOS/AudioIPCPlugIn
    0x40568000 - 0x4056dffb com.apple.audio.AppleHDAHALPlugIn 1.7.4 (1.7.4a1) <B4217DD8-4BDE-CC1C-70FF-06EA901F376D> /System/Library/Extensions/AppleHDA.kext/Contents/PlugIns/AppleHDAHALPlugIn.bun dle/Contents/MacOS/AppleHDAHALPlugIn
    0x411cf000 - 0x411d7ff7 com.apple.proapps.mrcheckpro 1.4 (359) <353F1A07-BA95-60CD-D083-4537D209BB69> /Applications/Logic Pro.app/Contents/Resources/MRCheckPro.bundle/Contents/MacOS/MRCheckPro
    0x4142e000 - 0x41635fef com.apple.RawCamera.bundle 2.1.1 (508) <2598B382-2441-1E68-6588-8BCC9B96ACC8> /System/Library/CoreServices/RawCamera.bundle/Contents/MacOS/RawCamera
    0x416fd000 - 0x4186eff7 GLEngine ??? (???) <132E6F18-BD3F-53AC-8448-2B68A83B0393> /System/Library/Frameworks/OpenGL.framework/Resources/GLEngine.bundle/GLEngine
    0x4189f000 - 0x41c45ffb libclh.dylib ??? (???) <06EF25BB-7C1C-A2D1-0CB1-0EB9EE613668> /System/Library/Extensions/GeForce8xxxGLDriver.bundle/Contents/MacOS/libclh.dyl ib
    0x41c86000 - 0x41ca2ff7 GLRendererFloat ??? (???) <FE1D4967-5C89-4C0F-FA40-5AF1EB1A742D> /System/Library/Frameworks/OpenGL.framework/Resources/GLRendererFloat.bundle/GL RendererFloat
    0x420c6000 - 0x420c8ff7 com.apple.music.apps.anvil.resources 9.0.0 (269.6) <7617E0AC-6888-4E6C-873C-C2B240C1EA6F> /Applications/Logic Pro.app/Contents/Resources/anvil.res/Contents/MacOS/anvil
    0x420cd000 - 0x420cfff7 com.apple.music.apps.common.resources 9.0.0 (269.6) <5ED5C53C-4EE7-3BB1-42C2-F9F8A457342B> /Applications/Logic Pro.app/Contents/Resources/common.res/Contents/MacOS/common
    0x420d4000 - 0x420d6ff7 com.apple.music.apps.ebp.resources 9.0.0 (269.6) <62711257-6DB2-F7C6-D4E8-A638212FFE74> /Applications/Logic Pro.app/Contents/Resources/ebp.res/Contents/MacOS/ebp
    0x420db000 - 0x420ddff7 com.apple.music.apps.efx.resources 9.0.0 (269.6) <CA047E40-1D9F-4FC0-447B-2435926EDD95> /Applications/Logic Pro.app/Contents/Resources/efx.res/Contents/MacOS/efx
    0x420e2000 - 0x420e4ff7 com.apple.music.apps.egt.resources 9.0.0 (269.6) <8C852C25-5AB3-6110-3002-863FAC7DD041> /Applications/Logic Pro.app/Contents/Resources/egt.res/Contents/MacOS/egt
    0x420e9000 - 0x420ebff7 com.apple.music.apps.emx.resources 9.0.0 (269.6) <9177FCE7-AA8D-D50A-5E07-A73BFAF1A303> /Applications/Logic Pro.app/Contents/Resources/emx.res/Contents/MacOS/emx
    0x420f0000 - 0x420f2ff7 com.apple.music.apps.es1.resources 9.0.0 (269.6) <E4CDF9D6-A03A-CADF-A060-7A638BA9CD85> /Applications/Logic Pro.app/Contents/Resources/es1.res/Contents/MacOS/es1
    0x420f7000 - 0x420f9ff7 com.apple.music.apps.es2.resources 9.0.0 (269.6) <77D71604-32D7-D068-A06F-086A17377CC2> /Applications/Logic Pro.app/Contents/Resources/es2.res/Contents/MacOS/es2
    0x42ac7000 - 0x42ac9ff7 com.apple.music.apps.esp.resources 9.0.0 (269.6) <B91EDC11-D720-4B07-2666-30879042124E> /Applications/Logic Pro.app/Contents/Resources/esp.res/Contents/MacOS/esp
    0x42ace000 - 0x42ad0ff7 com.apple.music.apps.evb3.resources 9.0.0 (269.6) <4FBC844F-915E-3137-D532-0CA378FDD8FC> /Applications/Logic Pro.app/Contents/Resources/evb3.res/Contents/MacOS/evb3
    0x42ad5000 - 0x42ad7ff7 com.apple.music.apps.evd6.resources 9.0.0 (269.6) <CABA89D0-266F-1839-8F92-98C25E4E031F> /Applications/Logic Pro.app/Contents/Resources/evd6.res/Contents/MacOS/evd6
    0x42adc000 - 0x42adeff7 com.apple.music.apps.evoc.resources 9.0.0 (269.6) <C9257521-EFE5-4AD7-0A24-B1FEEF856474> /Applications/Logic Pro.app/Contents/Resources/evoc.res/Contents/MacOS/evoc
    0x42ae3000 - 0x42ae5ff7 com.apple.music.apps.evp88.resources 9.0.0 (269.6) <24594199-E9B2-686B-AC62-4D545CD14018> /Applications/Logic Pro.app/Contents/Resources/evp88.res/Contents/MacOS/evp88
    0x42aea000 - 0x42aecff7 com.apple.music.apps.exs24.resources 9.0.0 (269.6) <C3EDCD43-BC4E-4C86-A5DE-E3F3F5DF3D25> /Applications/Logic Pro.app/Contents/Resources/exs24.res/Contents/MacOS/exs24
    0x42af1000 - 0x42af3fff com.apple.music.apps.guitaramp.resources 9.0.0 (269.6) <B5524840-C847-A2BB-BA5C-C8408B993806> /Applications/Logic Pro.app/Contents/Resources/guitaramp.res/Contents/MacOS/guitaramp
    0x42af8000 - 0x42afaff7 com.apple.music.apps.guitarcontrols.resources 9.0.0 (269.6) <738EEDEB-B471-502A-D718-7F5FE5B96831> /Applications/Logic Pro.app/Contents/Resources/guitarcontrols.res/Contents/MacOS/guitarcontrols
    0x42aff000 - 0x42b01fff com.apple.music.apps.mutapdel.resources 9.0.0 (269.6) <FF701F3F-5D9C-2DD2-4F72-0A9079E7AE39> /Applications/Logic Pro.app/Contents/Resources/mutapdel.res/Contents/MacOS/mutapdel
    0x42b06000 - 0x42b08fff com.apple.music.apps.pedalboard.resources 9.0.0 (269.6) <B0D0243F-0FFB-9E1D-05D6-94C67F09B2F8> /Applications/Logic Pro.app/Contents/Resources/pedalboard.res/Contents/MacOS/pedalboard
    0x42b0d000 - 0x42b0ffff com.apple.music.apps.revolver.resources 9.0.0 (269.6) <7154D20C-7769-E282-0A4B-A7E17407C91C> /Applications/Logic Pro.app/Contents/Resources/revolver.res/Contents/MacOS/revolver
    0x42b14000 - 0x42b16ff7 com.apple.music.apps.sphere.resources 9.0.0 (269.6) <F5882E2C-DA48-96CC-9F10-E481FCEA35AE> /Applications/Logic Pro.app/Contents/Resources/sphere.res/Contents/MacOS/sphere
    0x8f613000 - 0x8fa52ff3 com.apple.GeForce8xxxGLDriver 1.6.0 (6.0.0) <081F6481-9A8E-D52D-744D-CD8114F66263> /System/Library/Extensions/GeForce8xxxGLDriver.bundle/Contents/MacOS/GeForce8xx xGLDriver
    0x8fe00000 - 0x8fe4162b dyld 132.1 (???) <211AF0DD-42D9-79C8-BB6A-1F4BEEF4B4AB> /usr/lib/dyld
    0x90003000 - 0x9005bfe7 com.apple.datadetectorscore 2.0 (80.7) <A40AA74A-9D13-2A6C-5440-B50905923251> /System/Library/PrivateFrameworks/DataDetectorsCore.framework/Versions/A/DataDe tectorsCore
    0x9005c000 - 0x90060ff7 libGFXShared.dylib ??? (???) <ED62E870-E219-C873-88AA-9CE08108F811> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGFXShared.d ylib
    0x90061000 - 0x9093dff7 com.apple.AppKit 6.6 (1038) <25DDEBFC-8A2F-8434-1D97-AEC55B5205F8> /System/Library/Frameworks/AppKit.framework/Versions/C/AppKit
    0x9093e000 - 0x9094fff7 com.apple.LangAnalysis 1.6.5 (1.6.5) <E77440D0-76EE-EB4C-3D00-9EDE417F13CF> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ LangAnalysis.framework/Versions/A/LangAnalysis
    0x90953000 - 0x90a92fe3 com.apple.QTKit 7.6.3 (1584) <18130DA4-7132-CEAF-2137-4925CAC0B585> /System/Library/Frameworks/QTKit.framework/Versions/A/QTKit
    0x90a9e000 - 0x90aefff7 com.apple.HIServices 1.8.0 (???) <B8EC13DB-A81A-91BF-8C82-66E840C64C91> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ HIServices.framework/Versions/A/HIServices
    0x90af0000 - 0x90b97fe7 com.apple.CFNetwork 454.4 (454.4) <7C563385-9893-3B48-8607-5BC81DA2C4CF> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CFNetwo rk.framework/Versions/A/CFNetwork
    0x90b98000 - 0x90c4affb libFontParser.dylib ??? (???) <EB089832-660F-0B34-3AC8-CCDA937987D9> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/Resources/libFontParser.dylib
    0x90c4b000 - 0x90ce8ff3 com.apple.LaunchServices 360.3 (360.3) <C8590D53-E46A-F58A-7CF2-03A8159D8569> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/LaunchS ervices.framework/Versions/A/LaunchServices
    0x90ce9000 - 0x90e6bfe7 libicucore.A.dylib ??? (???) <FBB66376-CBA9-8149-A1AA-10AB8578C3B3> /usr/lib/libicucore.A.dylib
    0x90e6c000 - 0x90eb0fe7 com.apple.Metadata 10.6.0 (507.1) <CBD1B22B-5F10-C784-03A2-35106B97DF3F> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Metadat a.framework/Versions/A/Metadata
    0x90eb1000 - 0x90ed0fe3 libexpat.1.dylib ??? (???) <82E6F83F-9667-2E39-1D9D-4A49C642527D> /usr/lib/libexpat.1.dylib
    0x90edc000 - 0x90f0fff7 com.apple.AE 496 (496) <B638FDD4-7322-F0E4-ACEB-777D8A1399E1> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/AE.fram ework/Versions/A/AE
    0x90f10000 - 0x9110dfeb com.apple.AddressBook.framework 5.0 (862) <BD05B213-46CF-8EFD-B801-CF741408600D> /System/Library/Frameworks/AddressBook.framework/Versions/A/AddressBook
    0x9110e000 - 0x9118efeb com.apple.SearchKit 1.3.0 (1.3.0) <9E18AEA5-F4B4-8BE5-EEA9-818FC4F46FD9> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/SearchK it.framework/Versions/A/SearchKit
    0x9120b000 - 0x9121bff7 com.apple.DSObjCWrappers.Framework 10.6 (134) <81A0B409-3906-A98F-CA9B-A49E75007495> /System/Library/PrivateFrameworks/DSObjCWrappers.framework/Versions/A/DSObjCWra ppers
    0x9121c000 - 0x9125efe7 libvDSP.dylib ??? (???) <8F8FFFB3-81E3-2969-5688-D5B0979182E6> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libvDSP.dylib
    0x9125f000 - 0x91266fff com.apple.print.framework.Print 6.0 (237) <7A06B15C-B835-096E-7D96-C2FE8F0D21E1> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Print.framewo rk/Versions/A/Print
    0x916a3000 - 0x916a7ff7 IOSurface ??? (???) <C11D3FF3-EB51-A07D-EF24-9C2004115724> /System/Library/Frameworks/IOSurface.framework/Versions/A/IOSurface
    0x916a8000 - 0x916abff7 libCGXType.A.dylib ??? (???) <3FB5E457-EABF-B33E-E01B-C695FB2D72EE> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libCGXType.A.dylib
    0x916ac000 - 0x9177dff3 ColorSyncDeprecated.dylib ??? (???) <AFD6DAC8-12EF-B2A0-5322-E902D5B48B0A> /System/Library/Frameworks/ApplicationServices.framework/Frameworks/ColorSync.f ramework/Versions/A/Resources/ColorSyncDeprecated.dylib
    0x91789000 - 0x9192dfeb libSystem.B.dylib ??? (???) <068CC3F2-F867-A231-A16C-CC01C29A9816> /usr/lib/libSystem.B.dylib
    0x9194d000 - 0x919adfe7 com.apple.CoreText 3.0.0 (???) <8F4FCAE2-8E6F-F0DE-A6AA-15D0228B7F13> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreText.framework/Versions/A/CoreText
    0x919ae000 - 0x919e9fe7 com.apple.DebugSymbols 1.1 (70) <05013716-CFCF-801E-5535-D0643869BDCD> /System/Library/PrivateFrameworks/DebugSymbols.framework/Versions/A/DebugSymbol s
    0x91b6c000 - 0x91b84ff7 com.apple.CFOpenDirectory 10.6 (10.6) <1537FB4F-C112-5D12-1E5D-3B1002A4038F> /System/Library/Frameworks/OpenDirectory.framework/Versions/A/Frameworks/CFOpen Directory.framework/Versions/A/CFOpenDirectory
    0x91b85000 - 0x91bc8ff7 com.apple.NavigationServices 3.5.3 (181) <28CDD978-030E-7D4A-5334-874A8EBE6C29> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/NavigationSer vices.framework/Versions/A/NavigationServices
    0x91bc9000 - 0x91be4ff7 libPng.dylib ??? (???) <38DD4AA1-0643-85A0-F2F5-EE9269729975> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libPng.dylib
    0x91be5000 - 0x91be5ff7 com.apple.Carbon 150 (152) <608A04AB-F35D-D2EB-6629-16B88FB32074> /System/Library/Frameworks/Carbon.framework/Versions/A/Carbon
    0x91be6000 - 0x91da2fef com.apple.ImageIO.framework 3.0.0 (3.0.0) <A37E541F-3D6A-2BE9-AB32-F60CCDE13608> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/ImageIO
    0x91da3000 - 0x91f31fff com.apple.JavaScriptCore 6531 (6531.5) <DDDCCE57-42D2-BAA1-63F1-F76458EE0927> /System/Library/Frameworks/JavaScriptCore.framework/Versions/A/JavaScriptCore
    0x91fa1000 - 0x91ff1fe7 libGLU.dylib ??? (???) <55A69DCE-1237-341E-F239-CDFE1F5B19BB> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLU.dylib
    0x91ff2000 - 0x9204cff7 com.apple.framework.IOKit 2.0 (???) <7618DDEC-2E3B-9C6E-FDC9-15169E24B4FB> /System/Library/Frameworks/IOKit.framework/Versions/A/IOKit
    0x9204d000 - 0x92278ff3 com.apple.QuartzComposer 4.0 (156.6) <D1D3A5A8-75BC-4556-85FA-8A9F487106DD> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/QuartzCompose r.framework/Versions/A/QuartzComposer
    0x9227a000 - 0x9228aff7 libsasl2.2.dylib ??? (???) <C8744EA3-0AB7-CD03-E639-C4F2B910BE5D> /usr/lib/libsasl2.2.dylib
    0x9228b000 - 0x92298ff7 com.apple.opengl 1.6.3 (1.6.3) <59D86286-B46F-B0E4-68F8-E5CDCADE393E> /System/Library/Frameworks/OpenGL.framework/Versions/A/OpenGL
    0x92299000 - 0x92348fef com.apple.ColorSync 4.6.0 (4.6.0) <66ABAE86-B0EC-D641-913D-08ACA965F9FA> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ColorSync.framework/Versions/A/ColorSync
    0x92349000 - 0x92365fe3 com.apple.openscripting 1.3 (???) <D2FF4419-FD71-5D4A-F397-B03E82085232> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/OpenScripting .framework/Versions/A/OpenScripting
    0x92366000 - 0x92368fe7 com.apple.ExceptionHandling 1.5 (10) <21F37A49-E63B-121E-D406-1BBC94BEC762> /System/Library/Frameworks/ExceptionHandling.framework/Versions/A/ExceptionHand ling
    0x92369000 - 0x923a6ff7 com.apple.SystemConfiguration 1.10 (1.10) <897AEEAF-CF5D-2843-C33B-31A0A7C98A6A> /System/Library/Frameworks/SystemConfiguration.framework/Versions/A/SystemConfi guration
    0x923d2000 - 0x924acfe7 com.apple.DiscRecording 5.0 (5000.4.6) <8471B33F-5B5A-13EA-04B4-41882AE63C7D> /System/Library/Frameworks/DiscRecording.framework/Versions/A/DiscRecording
    0x924e4000 - 0x92534ff7 com.apple.Symbolication 1.1 (67) <E0C94D8B-4F12-49E6-BAA5-3B00441A047B> /System/Library/PrivateFrameworks/Symbolication.framework/Versions/A/Symbolicat ion
    0x92535000 - 0x9257bff7 libauto.dylib ??? (???) <FAB17F30-A28B-E33D-6E21-C7119C9C83ED> /usr/lib/libauto.dylib
    0x9257c000 - 0x92629fe7 libobjc.A.dylib ??? (???) <410DD065-A18F-F054-0457-65525F4D1039> /usr/lib/libobjc.A.dylib
    0x9262a000 - 0x92662ff7 com.apple.LDAPFramework 2.0 (120.1) <8C7F3F42-6A4D-D37A-4232-685D44E8769E> /System/Library/Frameworks/LDAP.framework/Versions/A/LDAP
    0x926b0000 - 0x926b1ff7 com.apple.TrustEvaluationAgent 1.0 (1) <71E2DA16-83EC-6056-FFEE-862A04B5599F> /System/Library/PrivateFrameworks/TrustEvaluationAgent.framework/Versions/A/Tru stEvaluationAgent
    0x926b2000 - 0x929d1fe7 com.apple.CoreServices.CarbonCore 859.1 (859.1) <2E72AF56-4BE6-294A-7372-19C360688B8B> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CarbonC ore.framework/Versions/A/CarbonCore
    0x929d2000 - 0x929dfff7 com.apple.NetFS 3.2 (3.2) <E6FD80B0-0238-0C42-A3EC-EBDEC107A1C3> /System/Library/Frameworks/NetFS.framework/Versions/A/NetFS
    0x929e5000 - 0x929e8fe7 libmathCommon.A.dylib ??? (???) <1622A54F-1A98-2CBE-B6A4-2122981A500E> /usr/lib/system/libmathCommon.A.dylib
    0x929e9000 - 0x92a85fe7 com.apple.ApplicationServices.ATS 4.0 (???) <81700C90-2614-F7E2-CC6A-B01C24A2BD75> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/ATS
    0x92a86000 - 0x92aa5fe7 com.apple.opencl 11 (11) <372A42E7-FB10-B74D-E1A0-980E94D07021> /System/Library/Frameworks/OpenCL.framework/Versions/A/OpenCL
    0x92aa6000 - 0x92ab4fe7 libz.1.dylib ??? (???) <7B7A02AB-DA99-6180-880E-D28E4F9AA8EB> /usr/lib/libz.1.dylib
    0x92ab5000 - 0x92ac1ff7 libkxld.dylib ??? (???) <152C8DBB-0149-5827-3240-E57CA85CFE5F> /usr/lib/system/libkxld.dylib
    0x92ac2000 - 0x92af6ff7 libcups.2.dylib ??? (???) <9078BA07-DEE1-6597-D15D-7BE3A20CB5A0> /usr/lib/libcups.2.dylib
    0x92b07000 - 0x92b89ffb SecurityFoundation ??? (???) <29C27E0E-B2B3-BF6B-B1F8-5783B8B01535> /System/Library/Frameworks/SecurityFoundation.framework/Versions/A/SecurityFoun dation
    0x92c3a000 - 0x92c4efe7 libbsm.0.dylib ??? (???) <14CB053A-7C47-96DA-E415-0906BA1B78C9> /usr/lib/libbsm.0.dylib
    0x92d6b000 - 0x92d6bff7 com.apple.vecLib 3.5 (vecLib 3.5) <17BEEF92-DF30-CD52-FD65-0B7B43B93617> /System/Library/Frameworks/vecLib.framework/Versions/A/vecLib
    0x92d6c000 - 0x92f4cfff com.apple.imageKit 2.0 (1.0) <A09D802D-DAD8-39D6-B3D1-83931741E387> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/ImageKit.fram ework/Versions/A/ImageKit
    0x92f4d000 - 0x93017fef com.apple.CoreServices.OSServices 352 (352) <D9F21CA4-EED0-705F-8F3C-F1322D114B52> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/OSServi ces.framework/Versions/A/OSServices
    0x93018000 - 0x93021ff7 com.apple.DiskArbitration 2.3 (2.3) <E9C40767-DA6A-6CCB-8B00-2D5706753000> /System/Library/Frameworks/DiskArbitration.framework/Versions/A/DiskArbitration
    0x9304c000 - 0x9305eff7 com.apple.MultitouchSupport.framework 200.20 (200.20) <1D7EE15B-ADDD-1F57-F1FB-FB5252910D5A> /System/Library/PrivateFrameworks/MultitouchSupport.framework/Versions/A/Multit ouchSupport
    0x9305f000 - 0x93161fef com.apple.MeshKitIO 1.0 (49.0) <E4436373-BF5D-9644-F8B7-B72762BEC08B> /System/Library/PrivateFrameworks/MeshKit.framework/Versions/A/Frameworks/MeshK itIO.framework/Versions/A/MeshKitIO
    0x93162000 - 0x93485fef com.apple.HIToolbox 1.6.0 (???) <6F95AF67-678A-D8BC-FFC2-029C9AA2F44A> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HIToolbox.fra mework/Versions/A/HIToolbox
    0x93486000 - 0x934b6ff7 com.apple.MeshKit 1.0 (49.0) <435718C1-ED40-6BCC-F0D8-67FA05CFFF1E> /System/Library/PrivateFrameworks/MeshKit.framework/Versions/A/MeshKit
    0x934b7000 - 0x93530ff3 com.apple.audio.CoreAudio 3.2.0 (3.2) <91AE891E-6015-AABE-3512-2D5EBCA0937B> /System/Library/Frameworks/CoreAudio.framework/Versions/A/CoreAudio
    0x93539000 - 0x93616ff7 com.apple.vImage 4.0 (4.0) <64597E4B-F144-DBB3-F428-0EC3D9A1219E> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vImage.fr amework/Versions/A/vImage
    0x93630000 - 0x93630ff7 com.apple.Accelerate 1.5 (Accelerate 1.5) <F642E7A0-3720-FA19-0190-E6DBD9EF2D9B> /System/Library/Frameworks/Accelerate.framework/Versions/A/Accelerate
    0x93633000 - 0x93667ff7 libssl.0.9.8.dylib ??? (???) <F3402001-EC8D-58E5-4A23-02A979C9E857> /usr/lib/libssl.0.9.8.dylib
    0x93668000 - 0x9369fff7 com.apple.CoreMedia 0.420.17 (420.17) <A45B464A-4E05-8372-C055-974AD5393E03> /System/Library/PrivateFrameworks/CoreMedia.framework/Versions/A/CoreMedia
    0x936a0000 - 0x936d1ff7 libGLImage.dylib ??? (???) <0FB347C7-A579-4E51-4733-39AB28064554> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLImage.dyl ib
    0x937cc000 - 0x93822ff7 com.apple.MeshKitRuntime 1.0 (49.0) <BCB920E3-C567-3F37-D404-F518A256859E> /System/Library/PrivateFrameworks/MeshKit.framework/Versions/A/Frameworks/MeshK itRuntime.framework/Versions/A/MeshKitRuntime
    0x93823000 - 0x93828ff7 com.apple.OpenDirectory 10.6 (10.6) <92582807-E8F3-3DD9-EB42-4195CFB754A1> /System/Library/Frameworks/OpenDirectory.framework/Versions/A/OpenDirectory
    0x93829000 - 0x93899ffb com.apple.AppleVAFramework 4.6.2 (4.6.2) <25381B2A-89A6-0CEB-C159-DFF70C76B881> /System/Library/PrivateFrameworks/AppleVA.framework/Versions/A/AppleVA
    0x9389a000 - 0x938bcff3 com.apple.DirectoryService.Framework 3.6 (621) <61569C79-6567-BE8F-4F76-BAC04E5FBF79> /System/Library/Frameworks/DirectoryService.framework/Versions/A/DirectoryServi ce
    0x938bd000 - 0x938c0ffb com.apple.help 1.3.1 (41) <67F1F424-3983-7A2A-EC21-867BE838E90B> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Help.framewor k/Versions/A/Help
    0x938c1000 - 0x938ffff7 com.apple.QuickLookFramework 2.0 (327.0) <84AF77F0-DAFD-DCED-FBD4-DCF827650F44> /System/Library/Frameworks/QuickLook.framework/Versions/A/QuickLook
    0x93c02000 - 0x93c3efff com.apple.CoreMediaIOServices 101.0 (715) <FD86FB28-9BA1-0993-1172-F10F61EA6344> /System/Library/PrivateFrameworks/CoreMediaIOServices.framework/Versions/A/Core MediaIOServices
    0x93c3f000 - 0x93eafffb com.apple.Foundation 6.6 (751) <A61B645E-1A15-5BCA-3043-C8AB85C6AD30> /System/Library/Frameworks/Foundation.framework/Versions/C/Foundation
    0x93eb0000 - 0x93ebdff7 libbz2.1.0.dylib ??? (???) <495732E1-2AC4-44FC-E633-4CBCC503B924> /usr/lib/libbz2.1.0.dylib
    0x93ebe000 - 0x93f28fe7 libstdc++.6.dylib ??? (???) <411D87F4-B7E1-44EB-F201-F8B4F9227213> /usr/lib/libstdc++.6.dylib
    0x93f30000 - 0x93f3aff7 libGL.dylib ??? (???) <B375A3B6-2983-A4E4-50FB-9087FD606FD6> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGL.dylib
    0x93f3b000 - 0x93f45fe7 com.apple.audio.SoundManager 3.9.3 (3.9.3) <5F494955-7290-2D91-DA94-44B590191771> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/CarbonSound.f ramework/Versions/A/CarbonSound
    0x93f46000 - 0x93f49ff7 libCoreVMClient.dylib ??? (???) <16BB2178-B32D-E57E-F1E4-D177F7754232> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libCoreVMClien t.dylib
    0x93f50000 - 0x93f89fe7 com.apple.bom 10.0 (164) <CC61CCD7-F76C-45DD-6666-C0E0D07C7343> /System/Library/PrivateFrameworks/Bom.framework/Versions/A/Bom
    0x93f8a000 - 0x93fb1ff7 com.apple.quartzfilters 1.6.0 (1.6.0) <879A3B93-87A6-88FE-305D-DF1EAED04756> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/QuartzFilters .framework/Versions/A/QuartzFilters
    0x93fb2000 - 0x93fbcff7 libCSync.A.dylib ??? (???) <A05BB12D-CD51-DE43-323B-3A3E99A3EED5> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libCSync.A.dylib
    0x93fbd000 - 0x94055fe7 edu.mit.Kerberos 6.5.8 (6.5.8) <BA9BD282-FF56-3BFD-E78C-7DBE73B48480> /System/Library/Frameworks/Kerberos.framework/Versions/A/Kerberos
    0x94056000 - 0x94231ff3 libType1Scaler.dylib ??? (???) <BD3674DE-EAD9-C57A-0072-3C18970DCC1C> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/Resources/libType1Scaler.dylib
    0x94232000 - 0x9428cfe7 com.apple.CorePDF 1.0 (1.0) <590244C9-15D7-7A65-13AF-6F597123746B> /System/Library/PrivateFrameworks/CorePDF.framework/Versions/A/CorePDF
    0x9428d000 - 0x9428eff7 com.apple.audio.units.AudioUnit 1.6 (1.6) <68180B96-381C-A09D-5576-606A134FD953> /System/Library/Frameworks/AudioUnit.framework/Versions/A/AudioUnit
    0x9428f000 - 0x9428fff7 com.apple.CoreServices 44 (44) <AC35D112-5FB9-9C8C-6189-5F5945072375> /System/Library/Frameworks/CoreServices.framework/Versions/A/CoreServices
    0x942a1000 - 0x942a3ff7 libRadiance.dylib ??? (???) <0E03CF64-0931-7B9A-F617-4387B809D6D8> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libRadiance.dylib
    0x942a4000 - 0x94506ff3 com.apple.security 6.0 (36910) <F045B57C-054F-F06F-EF7E-EABEC2700274> /System/Library/Frameworks/Security.framework/Versions/A/Security
    0x94507000 - 0x94647ff7 com.apple.syncservices 5.0 (575) <61B36E07-6D14-97DC-122F-41EDE1F6DB03> /System/Library/Frameworks/SyncServices.framework/Versions/A/SyncServices
    0x94e37000 - 0x94e71fe7 libFontRegistry.dylib ??? (???) <EE633CF6-8827-EF05-10A4-5F2937120227> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/Resources/libFontRegistry.dylib
    0x94e72000 - 0x94f9afe7 com.apple.CoreData 102 (246) <E7E6CE39-9B51-13C8-FE31-8FE57CF7BDE1> /System/Library/Frameworks/CoreData.framework/Versions/A/CoreData
    0x94f9b000 - 0x94fbfff7 libJPEG.dylib ??? (???) <265DBF67-994E-E320-4CB1-9C3DE792C3B2> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libJPEG.dylib
    0x94fc0000 - 0x95039ff7 com.apple.PDFKit 2.5 (2.5) <58603BDB-337F-FBE3-EB11-7C31CF261995> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/PDFKit.framew ork/Versions/A/PDFKit
    0x9503f000 - 0x951b6fef com.apple.CoreFoundation 6.6 (550) <193E33D6-2E92-3452-773B-60A1A9CCC573> /System/Library/Frameworks/CoreFoundation.framework/Versions/A/CoreFoundation
    0x951b7000 - 0x952adff7 libGLProgrammability.dylib ??? (???) <B8E40851-3A01-7D01-2F96-537BF7FA63B5> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLProgramma bility.dylib
    0x952ae000 - 0x952aeff7 com.apple.Cocoa 6.6 (???) <EA27B428-5904-B00B-397A-185588698BCC> /System/Library/Frameworks/Cocoa.framework/Versions/A/Cocoa
    0x952b7000 - 0x952e8ff3 libTrueTypeScaler.dylib ??? (???) <F326E053-7425-2F10-F883-CBD56A1E1B72> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/Resources/libTrueTypeScaler.dylib
    0x952e9000 - 0x95aca497 com.apple.CoreGraphics 1.535.5 (???) <0B93D29C-D957-AD00-10F3-94112D75D6D9> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/CoreGraphics
    0x95aec000 - 0x95b39feb com.apple.DirectoryService.PasswordServerFramework 6.0 (6.0) <BF66BA5D-BBC8-78A5-DBE2-F9DE3DD1D775> /System/Library/PrivateFrameworks/PasswordServer.framework/Versions/A/PasswordS erver
    0x95b3a000 - 0x95b47ff7 com.apple.AppleFSCompression 1.0 (1.0) <A348AEAB-D279-68B9-0CF2-3C29FBADBCC4> /System/Library/PrivateFrameworks/AppleFSCompression.framework/Versions/A/Apple FSCompression
    0x95b8f000 - 0x95bfdff7 com.apple.QuickLookUIFramework 2.0 (327.0) <86D7E331-4C25-D360-7316-BA32192686D7> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/QuickLookUI.f ramework/Versions/A/QuickLookUI
    0x95bfe000 - 0x95c47fe7 libTIFF.dylib ??? (???) <6EF87001-6FB4-1405-C588-F6D8042D3534> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libTIFF.dylib
    0x95c48000 - 0x95c6efff com.apple.DictionaryServices 1.1 (1.1) <07694B30-56A9-5C98-B8BC-DA0628715FA8> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Diction aryServices.framework/Versions/A/DictionaryServices
    0x95c6f000 - 0x95cb3ff3 com.apple.coreui 0.2 (112) <A810DFFD-6314-5E2B-93A4-D5626634B1EE> /System/Library/PrivateFrameworks/CoreUI.framework/Versions/A/CoreUI
    0x95cb4000 - 0x95cc9fff com.apple.ImageCapture 6.0 (6.0) <3F31833A-38A9-444E-02B7-17619CA6F2A0> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/ImageCapture. framework/Versions/A/ImageCapture
    0x95cdd000 - 0x95deaff7 com.apple.MediaToolbox 0.420.17 (420.17) <EE843140-C79F-3D8C-B89E-893CD74C3633> /System/Library/PrivateFrameworks/MediaToolbox.framework/Versions/A/MediaToolbo x
    0x95deb000 - 0x95e93ff7 com.apple.QD 3.31 (???) <40FCAC85-4E4F-2290-90D4-F66D550ADFDC> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ QD.framework/Versions/A/QD
    0x95fb3000 - 0x95fb3ff7 com.apple.quartzframework 1.5 (1.5) <CEB78F00-C5B2-3B3F-BF70-DD6D578719C0> /System/Library/Frameworks/Quartz.framework/Versions/A/Quartz
    0x95fb4000 - 0x95fb4ff7 liblangid.dylib ??? (???) <B99607FC-5646-32C8-2C16-AFB5EA9097C2> /usr/lib/liblangid.dylib
    0x95fbc000 - 0x95fdaff7 com.apple.CoreVideo 1.6.0 (43.0) <3A853574-DD9E-08D8-FD2C-6221B55C3E08> /System/Library/Frameworks/CoreVideo.framework/Versions/A/CoreVideo
    0x96056000 - 0x9605cfff com.apple.CommonPanels 1.2.4 (91) <2438AF5D-067B-B9FD-1248-2C9987F360BA> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/CommonPanels. framework/Versions/A/CommonPanels
    0x9610c000 - 0x961feff7 libcrypto.0.9.8.dylib ??? (???) <792B8722-3091-5E9F-E25F-67499CFE0599> /usr/lib/libcrypto.0.9.8.dylib
    0x961ff000 - 0x962b8fe7 libsqlite3.dylib ??? (???) <16CEF8E8-8C9A-94CD-EF5D-05477844C005> /usr/lib/libsqlite3.dylib
    0x962fa000 - 0x96423fe7 com.apple.audio.toolbox.AudioToolbox 1.6 (1.6) <62BEEBE6-68FC-4A48-91CF-39DA2BD793F1> /System/Library/Frameworks/AudioToolbox.framework/Versions/A/AudioToolbox
    0x96445000 - 0x9673efef com.apple.QuickTime 7.6.3 (1584) <687233E1-F428-5224-08D5-5874BEA2300D> /System/Library/Frameworks/QuickTime.framework/Versions/A/QuickTime
    0x9673f000 - 0x96743ff7 libGIF.dylib ??? (???) <51848EBF-27D4-0F85-C22A-D1AE10D328F3> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libGIF.dylib
    0x96744000 - 0x96764fe7 libresolv.9.dylib ??? (???) <A48921CB-3FA7-3071-AF9C-2D86FB493A3A> /usr/lib/libresolv.9.dylib
    0x96765000 - 0x967a4ff7 com.apple.ImageCaptureCore 1.0 (1.0) <D8767350-A10D-B6B5-3A8D-05888A7758ED> /System/Library/Frameworks/ImageCaptureCore.framework/Versions/A/ImageCaptureCo re
    0x967a5000 - 0x968a6fe7 libxml2.2.dylib ??? (???) <C242A74D-280A-90C3-3F79-891624AA45D2> /usr/lib/libxml2.2.dylib
    0x968a7000 - 0x968a8ff7 com.apple.MonitorPanelFramework 1.3.0 (1.3.0) <0EC4EEFF-477E-908E-6F21-ED2C973846A4> /System/Library/PrivateFrameworks/MonitorPanel.framework/Versions/A/MonitorPane l
    0x968a9000 - 0x96cbfff7 libBLAS.dylib ??? (???) <C4FB303A-DB4D-F9E8-181C-129585E59603> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libBLAS.dylib
    0x96cc0000 - 0x97024ff7 com.apple.QuartzCore 1.6.0 (226.0) <7E29DD09-BE04-AA06-5C81-5C093F16901B> /System/Library/Frameworks/QuartzCore.framework/Versions/A/QuartzCore
    0x980bc000 - 0x980c2ff7 com.apple.DisplayServicesFW 2.1 (2.1) <762CC18B-1F71-E9FC-ECB7-7078B4856D6E> /System/Library/PrivateFrameworks/DisplayServices.framework/Versions/A/DisplayS ervices
    0x980c3000 - 0x98154fe3 com.apple.print.framework.PrintCore 6.0 (312) <C588530A-0F2C-DD72-E308-3B8735125189> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ PrintCore.framework/Versions/A/PrintCore
    0x9824a000 - 0x982c1feb com.apple.backup.framework 1.1 (1.0) <73C642BD-A0C5-7D45-79FA-0AA6D96226C0> /System/Library/PrivateFrameworks/Backup.framework/Versions/A/Backup
    0x982c2000 - 0x982c2ff7 com.apple.ApplicationServices 38 (38) <8012B504-3D83-BFBB-DA65-065E061CFE03> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Application Services
    0x982c3000 - 0x9839efef com.apple.DesktopServices 1.5.0 (1.5.0) <5295C246-805B-DBCD-BA61-1AE9A458CF73> /System/Library/PrivateFrameworks/DesktopServicesPriv.framework/Versions/A/Desk topServicesPriv
    0x9839f000 - 0x983a1ff7 com.apple.securityhi 4.0 (36638) <962C66FB-5BE9-634E-0810-036CB340C059> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SecurityHI.fr amework/Versions/A/SecurityHI
    0x983a2000 - 0x98850fe7 com.apple.VideoToolbox 0.420.17 (420.17) <F2812B5D-4C09-EFCC-182E-412257859AB1> /System/Library/PrivateFrameworks/VideoToolbox.framework/Versions/A/VideoToolbo x
    0x98851000 - 0x988b5ffb com.apple.htmlrendering 72 (1.1.4) <4D451A35-FAB6-1288-71F6-F24A4B6E2371> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HTMLRendering .framework/Versions/A/HTMLRendering
    0x988b6000 - 0x98965ff3 com.apple.ink.framework 1.3 (104) <8526D880-D367-3EF9-DBFD-9A6AB240F57A> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Ink.framework /Versions/A/Ink
    0x98acd000 - 0x98ad7ffb com.apple.speech.recognition.framework 3.10.10 (3.10.10) <E106CC3A-7633-5587-0B29-64E19FCBC613> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SpeechRecogni tion.framework/Versions/A/SpeechRecognition
    0x98ad8000 - 0x98b19ff7 libRIP.A.dylib ??? (???) <6DB158C6-A84D-98C9-1D48-868A3DB17D09> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libRIP.A.dylib
    0x98b1a000 - 0x98b1aff7 com.apple.Accelerate.vecLib 3.5 (vecLib 3.5) <3E039E14-2A15-56CC-0074-EE59F9FBB913> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/vecLib
    0x98b1b000 - 0x98b43ff7 libxslt.1.dylib ??? (???) <769EF4B2-C1AD-73D5-AAAD-1564DAEA77AF> /usr/lib/libxslt.1.dylib
    0x98b44000 - 0x98b94ff7 com.apple.framework.familycontrols 2.0 (2.0) <50617342-E578-4C1C-938A-19A37ECA91CA> /System/Library/PrivateFrameworks/FamilyControls.framework/Versions/A/FamilyCon trols
    0x98b95000 - 0x98fcaff7 libLAPACK.dylib ??? (???) <5E2D2283-57DE-9A49-1DB0-CD027FEFA6C2> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libLAPACK.dylib
    0x9904d000 - 0x990bcff7 libvMisc.dylib ??? (???) <59243A8C-2B98-3E71-8032-884D4853E79F> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libvMisc.dylib
    0x9912e000 - 0x991a2fef com.apple.CoreSymbolication 2.0 (23) <8A04EA5F-83F8-5E15-B2E0-8A727C9C4E8B> /System/Library/PrivateFrameworks/CoreSymbolication.framework/Versions/A/CoreSy mbolication
    0x991a3000 - 0x991e3ff3 com.apple.securityinterface 4.0 (36981) <F024C5CA-0762-1599-5BAB-17F785E51075> /System/Library/Frameworks/SecurityInterface.framework/Versions/A/SecurityInter face
    0x991e4000 - 0x991f8ffb com.apple.speech.synthesis.framework 3.10.35 (3.10.35) <57DD5458-4F24-DA7D-0927-C3321A65D743> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ SpeechSynthesis.framework/Versions/A/SpeechSynthesis
    0xffff0000 - 0xffff1fff libSystem.B.dylib ??? (???) <068CC3F2-F867-A231-A16C-CC01C29A9816> /usr/lib/libSystem.B.dylib
    Model: MacBookPro4,1, BootROM MBP41.00C1.B03, 2 processors, Intel Core 2 Duo, 2.4 GHz, 4 GB, SMC 1.27f1
    Graphics: NVIDIA GeForce 8600M GT, GeForce 8600M GT, PCIe, 256 MB
    Memory Module: global_name
    AirPort: spairportwireless_card_type_airportextreme (0x14E4, 0x8C), Broadcom BCM43xx 1.0 (5.10.91.19)
    Bluetooth: Version 2.2.0f18, 2 service, 1 devices, 1 incoming serial ports
    Network Service: AirPort, AirPort, en1
    Serial ATA Device: FUJITSU MHY2200BH, 186.31 GB
    Parallel ATA Device: MATSHITADVD-R UJ-867
    USB Device: Built-in iSight, 0x05ac (Apple Inc.), 0x8502, 0xfd400000
    USB Device: BCM2045B2, 0x0a5c (Broadcom Corp.), 0x4500, 0x1a100000
    USB Device: Bluetooth USB Host Controller, 0x05ac (Apple Inc.), 0x820f, 0x1a110000
    USB Device: Apple Internal Keyboard / Trackpad, 0x05ac (Apple Inc.), 0x0230, 0x5d200000
    USB Device: IR Receiver, 0x05ac (Apple Inc.), 0x8242, 0x5d100000

  • Logic help iMac 10.6.1

    I just got the brand new iMac 3.06GHz intel core 2 duo, 4GB, I put Logic pro on it and it wont let me record anything without the cpu spiking. Ive tried everything I can think of and nothing works. Please Help!!

    My audio interface is a m-audio fast track pro. Midi controller is Axiom 49. I have Logic pro 9.0.2
    My iMac specs are 1067 MHz RAM 4GB 3.06 GHz intel core 2 Duo.
    That info could be very helpful but the problem is that this happens when I only have one track not multiple ones. Just one single software instrument track. The audio settings are buffer size is 512,
    output device-buillt in output, input device- built in microphone. Do you need anymore info? Thank you so much for your help.

  • Problem in logic help

    hi i want to display
    <b>material no  material short description material long description.</b>
    im my output is coming .
    <b>material no   material short description material long description</b>
    but long description is coming in only one line it may be possible that long material should be 2 or 3 lines .
    SELECT A~MATNR A~WERKS B~MAKTX FROM
                EKPO AS A
                    INNER JOIN MAKT AS B ON B~MATNR = A~MATNR
                    INTO CORRESPONDING
                     FIELDS OF TABLE INT_OUT WHERE A~WERKS IN S_WERKS
                    and b~spras = sy-langu.
    sort int_OUT by MATNR WERKS.
    delete adjacent duplicates from INT_OUT comparing matnr .
      DATA: l_index LIKE sy-tabix.
    SELECT
          a~matnr
          a~werks
          b~maktx FROM ekpo AS a
                  INNER JOIN makt AS b
                  ON b~matnr = a~matnr
                  INTO CORRESPONDING FIELDS OF TABLE int_out
                  WHERE
    *              a~matnr = s_matnr and
                  a~werks IN s_werks.
    *SORT int_out BY werks.
    LOOP AT int_out.
      l_index = sy-tabix.
      thread-tdname   = int_out-matnr.
      CALL FUNCTION 'READ_TEXT'
           EXPORTING
                client                  = sy-mandt
                id                      = 'BEST'
                language                = sy-langu
                name                    = thread-tdname
                object                  = 'MATERIAL'
           TABLES
                lines                   = it_tlines
           EXCEPTIONS
                id                      = 1
                language                = 2
                name                    = 3
                not_found               = 4
                object                  = 5
                reference_check         = 6
                wrong_access_to_archive = 7
                OTHERS                  = 8.
    loop at it_tlines.
      IF sy-subrc = 0.
        READ TABLE it_tlines INDEX 1.
        int_out-tdline = it_tlines-tdline.
        MODIFY int_out INDEX l_index.
    *    CLEAR: it_tlines.
        REFRESH: it_tlines.
      ENDIF.
    delete  adjacent  duplicates  from INT_OUT comparing matnr .
      endloop.
    ENDLOOP.
    thanks in advanced.

    hi
    try this code...
    SELECT AMATNR AWERKS B~MAKTX FROM
                EKPO AS A
                    INNER JOIN MAKT AS B ON BMATNR = AMATNR
                    INTO CORRESPONDING
                     FIELDS OF TABLE INT_OUT WHERE A~WERKS IN S_WERKS
                    and b~spras = sy-langu.
    sort int_OUT by MATNR WERKS.
    delete adjacent duplicates from INT_OUT comparing matnr .
      DATA: l_index LIKE sy-tabix.
    SELECT
          a~matnr
          a~werks
          b~maktx FROM ekpo AS a
                  INNER JOIN makt AS b
                  ON bmatnr = amatnr
                  INTO CORRESPONDING FIELDS OF TABLE int_out
                  WHERE
                 a~matnr = s_matnr and
                  a~werks IN s_werks.
    *SORT int_out BY werks.
    LOOP AT int_out.
      l_index = sy-tabix.
      thread-tdname   = int_out-matnr.
      CALL FUNCTION 'READ_TEXT'
           EXPORTING
                client                  = sy-mandt
                id                      = 'BEST'
                language                = sy-langu
                name                    = thread-tdname
                object                  = 'MATERIAL'
           TABLES
                lines                   = it_tlines
           EXCEPTIONS
                id                      = 1
                language                = 2
                name                    = 3
                not_found               = 4
                object                  = 5
                reference_check         = 6
                wrong_access_to_archive = 7
                OTHERS                  = 8.
    loop at it_tlines.
       IF sy-tabix = 1.
         int_out-tdline = it_tlines-tdline.
        MODIFY int_out INDEX l_index.
    ELSE.
         int_out-tdline = it_tlines-tdline.
        APPEND int_out .
      ENDIF.
    endloop.
        REFRESH: it_tlines.
    ENDLOOP.
    Hope it helps you...
    Let me know if u have any more doubt...
    Reward points if useful......
    Suresh.......

  • Internal table logic - help required

    Hi,
    I am working on BSEG table to determine offsetting line count and amount total for a posting line item and need
    a small logic .
    I have a table of currency fields like below and the table is such ( like BSEG ) that each line item will balance
    itself with other line item . For example
    Item
    10      100
    20      100-
    30      200
    40      250
    50      450-
    60      200-
    70      200
    80      600
    90      100
    100     200
    110     300
    If you see 10 & 20 balance out similarly ( 30,40 will balance with line item 50 ) , ( 60 & 70 balance each other ) ,
    ( 90,100, 110 balance with 80 ).
    My requirement - If I loop on item 50 with amount 450- I need to get the posnr of the two items which balance
    this amount ( which is 30 and 40 ).  If I loop on item 80 with amount 600 then I need to get item 90. 100 and 110.
    Please provide me a logic which will provide me the index of ther required item lines.
    Regards
    Praneeth

    Hi, execute this code.. might be helpful to you
    TYPES: BEGIN OF test,
             a TYPE i,
             b TYPE i,
           END OF test.
    DATA: itab TYPE TABLE OF test,
           wa  TYPE test,
           wa1 TYPE test,
           c   TYPE i,
           d   TYPE i,
           n1  TYPE i,
           n2  TYPE i.
    PARAMETERS :  p TYPE i.
    wa-a = 1.
    wa-b = 20.
    APPEND wa TO itab.
    wa-a = 2.
    wa-b = 30.
    APPEND wa TO itab.
    wa-a = 3.
    wa-b = 10.
    APPEND wa TO itab.
    wa-a = 4.
    wa-b = 10.
    APPEND wa TO itab.
    wa-a = 5.
    wa-b = 20.
    APPEND wa TO itab.
    READ TABLE itab INTO wa WITH KEY a = p.
    c = wa-b.
    LOOP AT itab INTO wa WHERE a GT p.
       n1 = wa-a.
       IF c EQ wa-b.
         EXIT.
       ENDIF.
       LOOP AT itab INTO wa1 WHERE a GT wa-a.
         IF wa-a = wa1-a.
           EXIT.
         ENDIF.
         n2 = wa1-a.
         d  = wa-b + wa1-b.
         IF c EQ d.
           EXIT.
         ENDIF.
       ENDLOOP.
       IF wa-a = wa1-a.
         EXIT.
       ELSEIF c EQ d.
         EXIT.
       ELSE.
         CLEAR: n1, n2.
       ENDIF.
    ENDLOOP.
    WRITE: n1 , n2.

  • EXTERNAL HD WONT SHUT DOWN AFTER SHUTTING DOWN LOGIC ,HELP

    When Im done recording in logic and after I close down the session and shut logic down. I then try to shut down my external HD and I get a message saying " LOGIC IS STILL IN USE AND EXTERNAL HD CAN NOT BE SHUT DOWN, TRY QUITTING APPLICATIONS AND THEN SHUT DOWN" Logic is already shut down and there are no other applications running and it wont let me shut down my external HD. I tried to switch HD's and it still wont shut down after I close all applications. PLEASE HELP....
    Message was edited by: philip j

    When you say shut down, you mean "eject" right?
    Will it, incidently, eject during a session when you haven't used Logic at all?
    One thing you should make sure of with your external HD is that it is formatted correctly - it needs to "un" journalled... may not be the problem, but worth checking.
    What kind of external HD is it?

  • Join query help

    hi
    i am encountering error like the values not getting populated in internal table though values are in dbtable...so if u can help me out in the join query it will be of gr8 help
    SELECT a1~guid a1~posting_date a1~process_type
           b1~sales_org b1~division b1~dis_channel
           INTO CORRESPONDING FIELDS OF TABLE it_ordel
           FROM ( ( crmd_orderadm_h AS a1 INNER JOIN crmd_link AS c1 ON a1~guid  = c1~guid_hi )
                    INNER JOIN crmd_orgman AS b1 ON c1~guid_hi = b1~guid )
           WHERE c1~objtype_hi = '05'
           AND   c1~objtype_set = '21'.
        AND   a1~process_type IN so_prst
           AND   a1~posting_date IN so_podt
           AND   b1~division     IN so_div.
    thnx

    SELECT a1~guid a1~posting_date a1~process_type
           b1~sales_org b1~division b1~dis_channel
           INTO CORRESPONDING FIELDS OF TABLE it_ordel
           FROM ( ( crmd_orderadm_h AS a1 INNER JOIN crmd_link AS c1 ON a1~guid  = c1~guid_hi )
                    INNER JOIN crmd_orgman AS b1 ON c1~guid_hi = b1~guid )
           WHERE c1~objtype_hi = '05'
           AND   c1~objtype_set = '21'.
        AND   a1~process_type IN so_prst
           AND   a1~posting_date IN so_podt
           AND   b1~division     IN so_div.
    SELECT a1~guid a1~posting_date a1~process_type
           b1~sales_org b1~division b1~dis_channel
           INTO CORRESPONDING FIELDS OF TABLE it_ordel
           FROM ( ( crmd_orderadm_h AS a1 INNER JOIN crmd_link AS c1 ON a1~guid  = c1~guid_hi )
                    INNER JOIN crmd_orgman AS b1 ON c1~guid_hi = b1~guid )
           WHERE c1~objtype_hi = '05'
           AND   c1~objtype_set = '21'    ".              delete that period its wrong
        AND   a1~process_type IN so_prst
           AND   a1~posting_date IN so_podt
           AND   b1~division     IN so_div.

  • Self join please help

    I would be very grateful if someone would show me show to use the self join, I understand what is does but just don't know how to use it. I have a question from a exercise but no answer so I can't check it the question is - using temporary labels to abbreviate table names, find all the staff that earn more than 'SONG'.
    here is the table
    STAFFID SNAME JOB MGR STARTDATE SAL COMM BRANCHID
    5963 SMITH ADMIN 5209 15-NOV-00 1600 20
    5994 BATES ASSISTANT 5896 20-FEB-01 1800 100 30
    5125 CHAN ASSISTANT 5896 22-FEB-02 1550 150 30
    5665 JONES MANAGER 5938 02-MAR-01 3100 20
    5465 WILSON ASSISTANT 5896 28-OCT-00 1250 140 30
    5896 HAYAT MANAGER 5938 01-MAY-01 3100 30
    5287 CLARK MANAGER 5938 09-JUL-02 3100 10
    5887 COSTA BUYER 5665 18-APR-04 3150 20
    5938 SHAW DIRECTOR 17-NOV-01 7000 10
    5484 TURNER ASSISTANT 5896 08-OCT-01 1550 0 30
    5678 KALIM ADMIN 5887 23-APR-04 1600 20
    5009 JAMES ADMIN 5896 03-DEC-01 1600 30
    5209 SONG BUYER 5665 03-JAN-02 3000 20
    5439 SIMPSON ADMIN 5287 23-FEB-02 1600 10
    Thanks in advanced :)
    Edited by: user11093259 on 01-Dec-2010 10:19

    Hi,
    Welcome to the forum!
    Always post your best attempt at solving the problem. You'll get more specific replies that will help you learn more, and it often clarifies what you're trying to do.
    Here's a typical self-join, using the scott.dept table (which you probably have avaialble).
    SELECT     l.dname          AS lower_dname
    ,     h.dname          AS higher_dname
    FROM     scott.dept     l
    JOIN     scott.dept     h  ON     l.dname     < h.dname
    ;Output:
    LOWER_DNAME    HIGHER_DNAME
    ACCOUNTING     OPERATIONS
    ACCOUNTING     RESEARCH
    ACCOUNTING     SALES
    OPERATIONS     RESEARCH
    OPERATIONS     SALES
    RESEARCH       SALESAs you can see, this pairs every higher_dname with every dname that is less than it.
    This is very similar to your problem. The main difference is, where the query above shows every possible higher_dname (and the lower_dnames related to it), you're interested in a single, specific higher value (and the rolws with lower values related to it). You can restrict the query to show only that one, specific higher values by adding a WHERE clause. Try it. If you get stuck, ask a more specific question, and, remember, post your code.

  • Inner join need help

    hi
    I have following data
    create table test1 (ind int,idd varchar(20), sec int, amt float)
    create table test2 (ind int, id1 varchar(10), id2 varchar(10), sec int, qty float)
    insert into test1 values (11, '1aa',1,100);
    insert into test1 values (12, '1aa',1,200);
    insert into test1 values (13, '2bb',2,500);
    insert into test1 values ( 14,'2bb',2,600);
    insert into test1 values ( 15, '3cc',3,100);
    insert into test1 values ( 16, '4dd',4,100);
    insert into test1 values ( 17, '1aa',5,5100);
    insert into test1 values ( 18, '1aa',6,100);
    insert into test2 values( 1, '1','aa',1, 300);
    insert into test2 values( 2, '1','aa',1, 300);
    insert into test2 values( 3, '2','bb',2, 700);
    insert into test2 values( 4, '2','bb',2, 100);
    insert into test2 values( 5, '3','cc',3, 400);
    insert into test2 values( 6, '1','aa',5, 3100);
    insert into test2 values( 7, '1','aa',6, 7100);
    select test2.ind, idd, id1||id2 , test1.sec, amt, qty from test1 inner join test2 on idd=id1||id2 and test1.sec=test2.sec
    order by indI am getting 11 records
    1     1aa     1aa     1     100     300
         1     1aa     1aa     1     200     300
         2     1aa     1aa     1     100     300
         2     1aa     1aa     1     200     300
         3     2bb     2bb     2     500     700
         3     2bb     2bb     2     600     700
         4     2bb     2bb     2     600     100
         4     2bb     2bb     2     500     100
         5     3cc     3cc     3     100     400
         6     1aa     1aa     5     5100     3100
         7     1aa     1aa     6     100     7100
    and following is my desired output
         1     1aa     1aa     1     100     300
         2     1aa     1aa     1     200     300
         3     2bb     2bb     2     500     700
         4     2bb     2bb     2     600     100
         5     3cc     3cc     3     100     400
         6     1aa     1aa     5     5100     3100
         7     1aa     1aa     6     100     7100
    please help

    Hi,
    Thanks for posting the CREATE TABLE and INSERT statements! That's very helpful.
    It's also helpful if you explain how you get the results you want from that data.
    Why do you want 7 rows of output, not 11?
    Given that you do want 7 rows of output, why do you want the results you posted, and not
    IND  IDD  ID1_ID2  SEC  AMT  QTY
    1    1aa  1aa        1     200  300
    2    1aa  1aa        1     200  300
    ...or
    IND  IDD  ID1_ID2  SEC  AMT  QTY
    1    1aa  1aa         1     100  300
    2    1aa  1aa        1     100  300
    ...or some other combination? Don't force people to spend time guessing, and don't give them a chance to guess wrong.
    It looks like you're getting the output you want now, except when there are multiple rows with the same idd and sec in test1 (or the same id1, id2 and sec in test2). These are the join columns.
    It looks like you only want one row of output for each gropup that has the same join columns.
    Within each of those groups, do you only want
    the row with the lowest test1.ind joined to the row with the lowest test2.ind,
    the row with the 2nd lowest test1.ind joined to the row with the 2nd lowest test2.ind,
    the row with the 3rd lowest test1.ind joined to the row with the 3rd lowest test2.ind,
    and so on?
    If so, use the analytic ROW_NUMBER functions to indicate whihc i the lowest, 2nd lowest, 3rd lowest, and so on:
    WITH   test1_with_r_num  AS
         SELECT     ind, idd, sec, amt
         ,     ROW_NUMBER () OVER ( PARTITION BY  idd, sec
                                   ORDER BY          ind
                           )         AS r_num
         FROM    test1
    ,     test2_with_r_num  AS
         SELECT     ind, id1, id2, sec, qty
         ,     ROW_NUMBER () OVER ( PARTITION BY  id1, id2, sec
                                   ORDER BY          ind
                           )         AS r_num
         FROM     test2
    select    t2.ind
    ,        t1.idd
    ,        t2.id1 || t2.id2     AS id1_id2
    ,       t1.sec
    ,        t1.amt
    ,       t2.qty
    from                 test1_with_r_num     t1
    inner join          test2_with_r_num      t2     on     t1.idd       = t2.id1 || t2.id2
                                            and     t1.sec       = t2.sec
                                  and     t1.r_num  = t2.r_num
    order by  t2.ind
    ;This happens to give the results you requested from the data you posted. It may be purely by coincidence.
    What if there are an unequal number of rows with the same join conditions in the two tables?
    For example, what if we add another row to test1:
    insert into test1 (ind, idd, sec, amt) values (91, '1aa',1,125);but don't add any new rows to test2?
    What if we add a row only to test2
    insert into test2 (ind, id1, id2, sec, ity) values( 9, '1','aa',6, 7199);? What results would you want in these cases?

  • Join-Smooth help please..

    Hello .. as in the photo i'm tring do an cartoon bird
    but that step more that 1 hour i'm searching for soulotion and nothings happen
    please help me :
    http://imgur.com/nCddOyb
    Quickly plz

    Ahmed,
    There seems to be some discrepancy:
    Aaccording to the Layers palette, the beak shape is a linked image with a horizontal colour transition corresponding to a gradient at the top of the stacking order, and the selected path is a horizontal wave shape.
    The appearance on the Artboard seems to correspond to a path with the same beak shape and a solid fill where all Anchor Points but 2 with one sided Handles are Direct Selected.
    Whatever is the case, if the selected path has 8 Anchor Points, it should be closed; if it has more it may be open. You may try to click each Anchor Point with the Direct Selection Tool and move it 1pt or something to the side and see whether there is another one staying in place beneath it; if there is, the path is open there and you should be able to close it, dragging over the set with the Direct Selection Tool and joining.

  • MDX Logic Help Needed

    I have a requirement where I am tracking movement of data from one member of a dimension (ie; "CostCenter", which is the Entity dimension) to another member of the same dimension.
    I accomplish this by using a second dimension as the recipient (ie; "Customer"). The Customer dimension has a property (ie; "CustCC") which indicates which CostCenter member it relates to.
    The (abbreviated) dimensionality looks something like this:
    account,category,timeid,costcenter,customer,CustCC,SignedData
    715000,BUDGET,20090000,CostCenter1,Customer1,CostCenter2,NH702,100.00
    In this example, the one value is not a dimension is "CustCC".
    The requirement is to be able to "get" the value where the "CostCenter" AND the "CustCC" are both descendants of the current view "CostCenter".
    I would greatly appreciate suggestions as to hoew to accomplish this.
    Regards,
    Craig

    No worries about asking lots of questions. Help is appreciated.
    - The account value that you are building; is this from multiple accounts at the required intersection? It will be the value of a single account.
    - Can you build a report that gets the same data? I am not sure how to do that is the result will differ depending on the CostCenter parent selected.
    -Will this run in script logic as part of default logic? I believe a calculated member will work if I can figure out how to do it.
    -Does the Customer dim CostCenter property relate to the parent costcenter?it is a value that represents "another"(clould be any) base level costcenter member.
    So the calculation is going to be dynamic depending on which CostCenter parent is selected. For example, I want to show the value of another account (a single account) for the descendants of the current CostCenter member WHERE the Customer.CostCenter values are also descendants of the current CostCenter member.
    I want to say give me a specific account (ie; [Account].[Chargesin]) and the Sum of the Descendants of the current CostCenter member ONLY when the Customer.CostCenter value is also a Descendant of the current CostCenter member.
    Let me know if that helps. Thanks! Craig

Maybe you are looking for