Help on Modeling.

Hi All,
  I am using standard data source 2LIS_11_VAITM. Along with this i am pulling data from the Z table using Generic datasource.
  I am planning to merge these datasources to one ODS. I have the Common key called VBELN.
  If i load the data to ODS, it will be two requests.
I just want to know, how data will reside in ODS.The data in Standard datasource with Z table will come in single row or it will append with each other.
Sample data in 2lIS_11_VAITM :
VBELN_____ERDAT________AEDAT
456_______2-03-2009____2-04-2009
457_______3-03-2009____3-04-2009
Sample data in Generic datasource
VBELN_____STATUS
456_______OPEN
457_______IN PROCESS
I am expecting the Output in ODS
VBELN_____ERDAT________AEDAT_________STATUS
456_______2-03-2009____2-04-2009_____OPEN
457_______3-03-2009____3-04-2009_____IN PROCESS
Please help on this design.
Thanks in advance.
Thanks,
Siva.

Hi Siva,
It depends on the Keyfield you provide in the DSO.
If you give VBELN (document no.) as the key field then the there will be 2 records.
i can give another example.:
Sample data in 2lIS_11_VAITM :
VBELN_____ERDAT________AEDAT
456_______3-03-2009____3-04-2009
457_______3-03-2009____3-04-2009
457_______4-03-2009____4-04-2009
Sample data in Generic datasource
VBELN_____STATUS
456_______OPEN
457_______IN PROCESS
VBELN_____ERDAT________AEDAT_________STATUS
456_______2-03-2009____2-04-2009_____OPEN
457_______3-03-2009____3-04-2009_____IN PROCESS
457_______4-04-2009____4-04-2009_____IN_PROCESS.
If you won't give the ERDAT also as the keyfield then this will be the result (above) or else result (below) will be
VBELN_____ERDAT________AEDAT_________STATUS
456_______2-03-2009____2-04-2009_____OPEN
457_______3-03-2009____3-04-2009_____IN PROCESS
hope you understood ....
I'm not pretty sure about the above one (it may be vice versa) ... it's some wat confusing ...
Regards,
ravi kanth
Edited by: Ravi kanth on May 12, 2009 11:50 AM

Similar Messages

  • My MacBook Air is not charging...any help?Model Name:     MacBook Air   Model Identifier:     MacBookAir4,2   Processor Name:     Intel Core i5   Processor Speed:     1.7 GHz   Number of Processors:     1   Total Number of Cores:     2   L2 Cache (per Cor

    My MacBook Air is not charging...any help?
    Model Name: MacBook Air
      Model Identifier: MacBookAir4,2
      Processor Name: Intel Core i5
      Processor Speed: 1.7 GHz
      Number of Processors: 1
      Total Number of Cores: 2
      L2 Cache (per Core): 256 KB
      L3 Cache: 3 MB
      Memory: 4 GB
      Boot ROM Version: MBA41.0077.B11
    Model Name: MacBook Air
    Model Name: MacBook Air
      Model Identifi
      Total Number of Cores: 2
      L2
      L3 Cache: 3 MB
      Memory: 4 GB
      Boot ROM Ver

    Hi HarmitClaire,
    Welcome to the Apple Support Communities!
    I understand that your MacBook Air is not charging as expected. In this situation there are troubleshooting steps that I would recommend. Please use the attached article as a resource for steps to help you resolve this situation.
    Mac notebooks: All about batteries - Apple Support
    My battery is not charging
    Confirm the correct wattage AC adapter for the computer. A power adapter rated for a lower wattage than is required for the system may not reliably charge the computer. For assistance identifying the proper adapter, review Intel Based Mac notebooks: Identifying the right power adapter and power cord--US. Additional adapter troubleshooting is available in Troubleshooting MagSafe adapters. If issues persist please reset the SMC.
    Best regards,
    Joe

  • Query help with Model clause

    Hi Gurus,
    Can someone please help me out.
    I've a below tables.
    1) tbl_link --> this table contains information at profile level
    2) tbl_summary --> this table contains summary at parent profile level derived from tbl_link table
    One parent profile contains multiple child profiles and each child profile links to a code (which is B, W, G or P) and the code is linked to a category (i.e. ONL and OFL). In this case code B is linked to category 'ONL' and codes W,G,P linked to OFL category.
    ONL category needs 100 points. If it don't have enough points then i need to borrow from OFL category which i'm doing and populating into tbl_summary table at parent profile level.
    Now i need to insert data into tbl_link table at profile level with howmany points used, expired based on tbl_summary table. Rule is at the end of month if we add points for each profile in tbl_link table it should come as 0.
    with
    tbl_SUMMARY as
    select 1 as ppid,'ONL' as catgcode, 53 as earned_points,47 BORROWED_POINTS,100 CERT_POINTS,0 DISCARD_POINTS,100 used from dual
    union
    select 1 as ppid,'OFL' as catgcode, 223 as earned_points,0 BORROWED_POINTS,176 CERT_POINTS,76 DISCARD_POINTS,100 used from dual
    union
    select 2 as ppid,'ONL' as catgcode, 39 as earned_points,61 BORROWED_POINTS,100 CERT_POINTS,0 DISCARD_POINTS,100 used from dual
    union
    select 2 as ppid,'OFL' as catgcode, 90 as earned_points,0 BORROWED_POINTS,29 CERT_POINTS,29 DISCARD_POINTS,100 used from dual
    union
    select 3 as ppid,'ONL' as catgcode, 109 as earned_points,0 BORROWED_POINTS,109 CERT_POINTS,9 DISCARD_POINTS,100 used from dual
    union
    select 3 as ppid,'OFL' as catgcode, 223 as earned_points,0 BORROWED_POINTS,223 CERT_POINTS,23 DISCARD_POINTS,200 used from dual
    union
    select 4 as ppid,'ONL' as catgcode, 109 as earned_points,0 BORROWED_POINTS,109 CERT_POINTS,9 DISCARD_POINTS,100 used from dual
    union
    select 4 as ppid,'OFL' as catgcode, 169 as earned_points,0 BORROWED_POINTS,169 CERT_POINTS,69 DISCARD_POINTS,100 used from dual
    tbl_link as
    select 1 as ppid,1 as pid, 'B' as code,'ONL' as catgcode, 53 as earned_points from dual
    union
    select 1 as ppid,12 as pid, 'W' as code,'OFL' as catgcode, 26 as earned_points from dual
    union
    select 1 as ppid,13 as pid, 'G' as code,'OFL' as catgcode, 87 as earned_points from dual
    union
    select 1 as ppid,14 as pid, 'P' as code,'OFL' as catgcode, 110 as earned_points from dual
    union
    select 2 as ppid,2 as pid, 'B' as code,'ONL' as catgcode, 39 as earned_points from dual
    union
    select 2 as ppid,22 as pid, 'W' ,'OFL' as catgcode, 30 as earned_points from dual
    union
    select 2 as ppid,23 as pid, 'G' ,'OFL' as catgcode, 29 as earned_points from dual
    union
    select 2 as ppid,24 as pid, 'P' ,'OFL' as catgcode, 31 as earned_points from dual
    union
    select 3 as ppid,3 as pid, 'B' as code,'ONL' as tier_catgcode, 109 as earned_points from dual
    union
    select 3 as ppid,32 as pid, 'W' ,'OFL' , 26 as earned_points from dual
    union
    select 3 as ppid,33 as pid, 'G' ,'OFL', 87 as earned_points from dual
    union
    select 3 as ppid,34 as pid, 'P' ,'OFL' , 110 as earned_points from dual
    union
    select 4 as ppid,4 as pid, 'B' as code,'ONL' as catgcode, 109 as earned_points from dual
    union
    select 4 as ppid,42 as pid, 'W' as code,'OFL' , 26 as earned_points from dual
    union
    select 4 as ppid,43 as pid, 'G' as code,'OFL' , 87 as earned_points from dual
    union
    select 4 as ppid,44 as pid, 'P' as code,'OFL' , 56 as earned_points from dual
    final (PARENT_PROFILE_ID,PROFILE_ID,catgcode,EARNED_POINTS,BORROWED_POINTS,CERT_POINTS,DISCARD_POINTS,USED)
    as (
    select A.PPID PARENT_PROFILE_ID,B.PID PROFILE_ID,A.catgcode,B.EARNED_POINTS,BORROWED_POINTS,CERT_POINTS,DISCARD_POINTS,USED
    from tbl_SUMMARY a,tbl_link b where a.ppid=b.ppid AND A.catgcode=B.catgcode
    ORDER BY PROFILE_ID
    select * from final order by 1;
    PARENT_PROFILE_ID  PROFILE_ID  CATGCODE  EARNED_POINTS  BORROWED_POINTS  CERT_POINTS  DISCARD_POINTS  USED
    1                  1           ONL       53             47               100          0               100
    1                  14          OFL       110            0                176          76              100
    1                  13          OFL       87             0                176          76              100
    1                  12          OFL       26             0                176          76              100
    2                  2           ONL       39             61               100          0               100
    2                  24          OFL       31             0                29           29              100
    2                  23          OFL       29             0                29           29              100
    2                  22          OFL       30             0                29           29              100
    3                  32          OFL       26             0                223          23              200
    3                  33          OFL       87             0                223          23              200
    3                  34          OFL       110            0                223          23              200
    3                  3           ONL       109            0                109          9               100
    4                  42          OFL       26             0                169          69              100
    4                  43          OFL       87             0                169          69              100
    4                  44          OFL       56             0                169          69              100
    4                  4           ONL       109            0                109          9               100
    Need Output as below :
    For parent profile 1, whatever i mentioned above is not correct. Borrowed 47 points from OFL to ONL to make ONL and also from OFL category has 176 points remaining after lending to ONL and using only 100 points, remaining 76 points are discarded. Need to deduct these 76 points also from child profiles. Output will be as below.
    PARENT_PROFILE_ID  PROFILE_ID  CATGCODE  EARNED_POINTS  BORROWED_POINTS  CERT_POINTS  DISCARD_POINTS  USED  BURN_PTS  EXPIRE_PTS
    1                  1           ONL       53             47               100          0               100   -53       0
    1                  12          OFL       26             0                176          76              100   -26       0
    1                  13          OFL       87             0                176          76              100   -74       -13
    1                  14          OFL       110            0                176          76              100   -47       -63
    For parent profile id 2 --> ONL category has 39 points, so borrowed 61 points from OFL category to make ONL points 100.
                                Now need to populate tbl_link table at child profile level (i.e. child profiles 22,23,24).
    Borrowed 61 points from OFL and need to deduct this points from the profile which has highest earned points, in this case deduct from profile 24 which has 31 points, from profile 22 which has 30 points. Need output like below
    PARENT_PROFILE_ID  PROFILE_ID  CATGCODE  EARNED_POINTS  BORROWED_POINTS  CERT_POINTS  DISCARD_POINTS  USED  BURN_PTS  EXPIRE_PTS
    2                  2           ONL       39             61               100          0               100   -39       0
    2                  22          OFL       30             0                29           29              100   -30       0
    2                  23          OFL       29             0                29           29              100   0         -29
    2                  24          OFL       31             0                29           29              100   -31       0
    For parent profile id 3 --> ONL category has 109 points, so no need to borrow points from OFL category
                                Now need to populate tbl_link table at child profile level (i.e. child profiles 32,33,34).
    in this case ONL has 100 points, so move the remaining 9 points will be expired. OFL category has 223 points total. need only 200 points (i.e. mutiple of 100) for our process, 23 points will be expired and has to deduct from the profile which has highest earned points, in this case from profile 34. Output :
    PARENT_PROFILE_ID  PROFILE_ID  CATGCODE  EARNED_POINTS  BORROWED_POINTS  CERT_POINTS  DISCARD_POINTS  USED  BURN_PTS  EXPIRE_PTS
    3                  3           ONL       109            0                109          9               100   -100      -9
    3                  32          OFL       26             0                223          23              200   -26       0
    3                  33          OFL       87             0                223          23              200   -87       0
    3                  34          OFL       110            0                223          23              200   -87       -23
    For parent profile id 4 --> ONL category has 109 points, so no need to borrow points from OFL category
                                Now need to populate tbl_link table at child profile level (i.e. child profiles 42,43,44).
    in this case ONL has 100 points, so move the remaining 9 points will be expired. OFL category has 169 points total. need only 100 points (i.e. mutiple of 100) for our process, 69 points will be expired and has to deduct from the profile which has highest earned points, in this case from profile 43. Output :
    PARENT_PROFILE_ID  PROFILE_ID  CATGCODE  EARNED_POINTS  BORROWED_POINTS  CERT_POINTS  DISCARD_POINTS  USED  BURN_PTS  EXPIRE_PTS
    4                  4           ONL       109            0                109          9               100   100       9
    4                  42          OFL       26             0                169          69              100   -26       0
    4                  43          OFL       87             0                169          69              100   -18       -69
    4                  44          OFL       56             0                169          69              100   -56       0
    Can someone help with the query. I googled about looping in sql and came to know that Oracle has a feature MODEL to loop in SQL, but i don't have idea on using MODEL clause.
    Appreciate your help!
    Thanks
    Sri

    Hi Gurus,
    Can someone please help me out.
    I've a below tables.
    1) tbl_link --> this table contains information at profile level
    2) tbl_summary --> this table contains summary at parent profile level derived from tbl_link table
    One parent profile contains multiple child profiles and each child profile links to a code (which is B, W, G or P) and the code is linked to a category (i.e. ONL and OFL). In this case code B is linked to category 'ONL' and codes W,G,P linked to OFL category.
    ONL category needs 100 points. If it don't have enough points then i need to borrow from OFL category which i'm doing and populating into tbl_summary table at parent profile level.
    Now i need to insert data into tbl_link table at profile level with howmany points used, expired based on tbl_summary table. Rule is at the end of month if we add points for each profile in tbl_link table it should come as 0.
    with
    tbl_SUMMARY as
    select 1 as ppid,'ONL' as catgcode, 53 as earned_points,47 BORROWED_POINTS,100 CERT_POINTS,0 DISCARD_POINTS,100 used from dual
    union
    select 1 as ppid,'OFL' as catgcode, 223 as earned_points,0 BORROWED_POINTS,176 CERT_POINTS,76 DISCARD_POINTS,100 used from dual
    union
    select 2 as ppid,'ONL' as catgcode, 39 as earned_points,61 BORROWED_POINTS,100 CERT_POINTS,0 DISCARD_POINTS,100 used from dual
    union
    select 2 as ppid,'OFL' as catgcode, 90 as earned_points,0 BORROWED_POINTS,29 CERT_POINTS,29 DISCARD_POINTS,100 used from dual
    union
    select 3 as ppid,'ONL' as catgcode, 109 as earned_points,0 BORROWED_POINTS,109 CERT_POINTS,9 DISCARD_POINTS,100 used from dual
    union
    select 3 as ppid,'OFL' as catgcode, 223 as earned_points,0 BORROWED_POINTS,223 CERT_POINTS,23 DISCARD_POINTS,200 used from dual
    union
    select 4 as ppid,'ONL' as catgcode, 109 as earned_points,0 BORROWED_POINTS,109 CERT_POINTS,9 DISCARD_POINTS,100 used from dual
    union
    select 4 as ppid,'OFL' as catgcode, 169 as earned_points,0 BORROWED_POINTS,169 CERT_POINTS,69 DISCARD_POINTS,100 used from dual
    tbl_link as
    select 1 as ppid,1 as pid, 'B' as code,'ONL' as catgcode, 53 as earned_points from dual
    union
    select 1 as ppid,12 as pid, 'W' as code,'OFL' as catgcode, 26 as earned_points from dual
    union
    select 1 as ppid,13 as pid, 'G' as code,'OFL' as catgcode, 87 as earned_points from dual
    union
    select 1 as ppid,14 as pid, 'P' as code,'OFL' as catgcode, 110 as earned_points from dual
    union
    select 2 as ppid,2 as pid, 'B' as code,'ONL' as catgcode, 39 as earned_points from dual
    union
    select 2 as ppid,22 as pid, 'W' ,'OFL' as catgcode, 30 as earned_points from dual
    union
    select 2 as ppid,23 as pid, 'G' ,'OFL' as catgcode, 29 as earned_points from dual
    union
    select 2 as ppid,24 as pid, 'P' ,'OFL' as catgcode, 31 as earned_points from dual
    union
    select 3 as ppid,3 as pid, 'B' as code,'ONL' as tier_catgcode, 109 as earned_points from dual
    union
    select 3 as ppid,32 as pid, 'W' ,'OFL' , 26 as earned_points from dual
    union
    select 3 as ppid,33 as pid, 'G' ,'OFL', 87 as earned_points from dual
    union
    select 3 as ppid,34 as pid, 'P' ,'OFL' , 110 as earned_points from dual
    union
    select 4 as ppid,4 as pid, 'B' as code,'ONL' as catgcode, 109 as earned_points from dual
    union
    select 4 as ppid,42 as pid, 'W' as code,'OFL' , 26 as earned_points from dual
    union
    select 4 as ppid,43 as pid, 'G' as code,'OFL' , 87 as earned_points from dual
    union
    select 4 as ppid,44 as pid, 'P' as code,'OFL' , 56 as earned_points from dual
    final (PARENT_PROFILE_ID,PROFILE_ID,catgcode,EARNED_POINTS,BORROWED_POINTS,CERT_POINTS,DISCARD_POINTS,USED)
    as (
    select A.PPID PARENT_PROFILE_ID,B.PID PROFILE_ID,A.catgcode,B.EARNED_POINTS,BORROWED_POINTS,CERT_POINTS,DISCARD_POINTS,USED
    from tbl_SUMMARY a,tbl_link b where a.ppid=b.ppid AND A.catgcode=B.catgcode
    ORDER BY PROFILE_ID
    select * from final order by 1;
    PARENT_PROFILE_ID  PROFILE_ID  CATGCODE  EARNED_POINTS  BORROWED_POINTS  CERT_POINTS  DISCARD_POINTS  USED
    1                  1           ONL       53             47               100          0               100
    1                  14          OFL       110            0                176          76              100
    1                  13          OFL       87             0                176          76              100
    1                  12          OFL       26             0                176          76              100
    2                  2           ONL       39             61               100          0               100
    2                  24          OFL       31             0                29           29              100
    2                  23          OFL       29             0                29           29              100
    2                  22          OFL       30             0                29           29              100
    3                  32          OFL       26             0                223          23              200
    3                  33          OFL       87             0                223          23              200
    3                  34          OFL       110            0                223          23              200
    3                  3           ONL       109            0                109          9               100
    4                  42          OFL       26             0                169          69              100
    4                  43          OFL       87             0                169          69              100
    4                  44          OFL       56             0                169          69              100
    4                  4           ONL       109            0                109          9               100
    Need Output as below :
    For parent profile 1, whatever i mentioned above is not correct. Borrowed 47 points from OFL to ONL to make ONL and also from OFL category has 176 points remaining after lending to ONL and using only 100 points, remaining 76 points are discarded. Need to deduct these 76 points also from child profiles. Output will be as below.
    PARENT_PROFILE_ID  PROFILE_ID  CATGCODE  EARNED_POINTS  BORROWED_POINTS  CERT_POINTS  DISCARD_POINTS  USED  BURN_PTS  EXPIRE_PTS
    1                  1           ONL       53             47               100          0               100   -53       0
    1                  12          OFL       26             0                176          76              100   -26       0
    1                  13          OFL       87             0                176          76              100   -74       -13
    1                  14          OFL       110            0                176          76              100   -47       -63
    For parent profile id 2 --> ONL category has 39 points, so borrowed 61 points from OFL category to make ONL points 100.
                                Now need to populate tbl_link table at child profile level (i.e. child profiles 22,23,24).
    Borrowed 61 points from OFL and need to deduct this points from the profile which has highest earned points, in this case deduct from profile 24 which has 31 points, from profile 22 which has 30 points. Need output like below
    PARENT_PROFILE_ID  PROFILE_ID  CATGCODE  EARNED_POINTS  BORROWED_POINTS  CERT_POINTS  DISCARD_POINTS  USED  BURN_PTS  EXPIRE_PTS
    2                  2           ONL       39             61               100          0               100   -39       0
    2                  22          OFL       30             0                29           29              100   -30       0
    2                  23          OFL       29             0                29           29              100   0         -29
    2                  24          OFL       31             0                29           29              100   -31       0
    For parent profile id 3 --> ONL category has 109 points, so no need to borrow points from OFL category
                                Now need to populate tbl_link table at child profile level (i.e. child profiles 32,33,34).
    in this case ONL has 100 points, so move the remaining 9 points will be expired. OFL category has 223 points total. need only 200 points (i.e. mutiple of 100) for our process, 23 points will be expired and has to deduct from the profile which has highest earned points, in this case from profile 34. Output :
    PARENT_PROFILE_ID  PROFILE_ID  CATGCODE  EARNED_POINTS  BORROWED_POINTS  CERT_POINTS  DISCARD_POINTS  USED  BURN_PTS  EXPIRE_PTS
    3                  3           ONL       109            0                109          9               100   -100      -9
    3                  32          OFL       26             0                223          23              200   -26       0
    3                  33          OFL       87             0                223          23              200   -87       0
    3                  34          OFL       110            0                223          23              200   -87       -23
    For parent profile id 4 --> ONL category has 109 points, so no need to borrow points from OFL category
                                Now need to populate tbl_link table at child profile level (i.e. child profiles 42,43,44).
    in this case ONL has 100 points, so move the remaining 9 points will be expired. OFL category has 169 points total. need only 100 points (i.e. mutiple of 100) for our process, 69 points will be expired and has to deduct from the profile which has highest earned points, in this case from profile 43. Output :
    PARENT_PROFILE_ID  PROFILE_ID  CATGCODE  EARNED_POINTS  BORROWED_POINTS  CERT_POINTS  DISCARD_POINTS  USED  BURN_PTS  EXPIRE_PTS
    4                  4           ONL       109            0                109          9               100   100       9
    4                  42          OFL       26             0                169          69              100   -26       0
    4                  43          OFL       87             0                169          69              100   -18       -69
    4                  44          OFL       56             0                169          69              100   -56       0
    Can someone help with the query. I googled about looping in sql and came to know that Oracle has a feature MODEL to loop in SQL, but i don't have idea on using MODEL clause.
    Appreciate your help!
    Thanks
    Sri

  • HT2499 my dvd player is not working. my macbook is not even a month old. please help. base model 13in running mountain lion. thanks.

    The disc drive works fine, and it reads the dvd, but when DVD Player goes to open it starts the program then immediately terminates. On a side note, some other apps (most notably iPhoto) seem to not even want to start, is this due to mountian lion or something that happened during set up? my macbook is not even a month old, but i know the new OS still needs to work some bugs out. am I the only one experiencing this and do you think this is a result of the new OS? or is it an induvidual problem? here is the crash report for DVD Player, thanks:
    Process:         DVD Player [303]
    Path:            /Applications/DVD Player.app/Contents/MacOS/DVD Player
    Identifier:      com.apple.DVDPlayer
    Version:         5.6 (5500.38)
    Build Info:      DVDPlayer-5500038000000000~34
    Code Type:       X86 (Native)
    Parent Process:  launchd [140]
    User ID:         501
    Date/Time:       2012-08-15 17:59:18.409 -0400
    OS Version:      Mac OS X 10.8 (12A269)
    Report Version:  10
    Interval Since Last Report:          24878 sec
    Crashes Since Last Report:           9
    Per-App Interval Since Last Report:  47 sec
    Per-App Crashes Since Last Report:   8
    Anonymous UUID:                      AF14D76B-5B0A-4263-A264-D8698574B60D
    Crashed Thread:  0  Dispatch queue: com.apple.main-thread
    Exception Type:  EXC_BAD_ACCESS (SIGBUS)
    Exception Codes: KERN_PROTECTION_FAILURE at 0x00000000ac401000
    VM Regions Near 0xac401000:
        __OBJC                 00000000ac400000-00000000ac401000 [    4K] rw-/rwx SM=PRV  /usr/lib/libobjc.A.dylib
    --> Submap                 00000000ac401000-00000000ac402000          r-x/rwx process-only submap
        __IMPORT               00000000ac401000-00000000ac402000 [    4K] rw-/rw- SM=COW  /usr/lib/libobjc.A.dylib
    Application Specific Information:
    TF->from:-1 to:0
    Thread 0 Crashed:: Dispatch queue: com.apple.main-thread
    0   ???                                     0xac401000 objc_assign_ivar + 0
    1   libobjc.A.dylib                         0x935a5d47 object_setIvar + 353
    2   libobjc.A.dylib                         0x935a5bda object_setInstanceVariable + 80
    3   com.apple.AppKit                        0x90f5c461 -[NSNibOutletConnector establishConnection] + 486
    4   com.apple.AppKit                        0x90f2e15f -[NSIBObjectData nibInstantiateWithOwner:topLevelObjects:] + 1002
    5   com.apple.AppKit                        0x90f0c762 loadNib + 373
    6   com.apple.AppKit                        0x90f0bb3a +[NSBundle(NSNibLoading) _loadNibFile:nameTable:withZone:ownerBundle:] + 233
    7   com.apple.AppKit                        0x9105c774 +[NSBundle(NSNibLoading) loadNibFile:externalNameTable:withZone:] + 154
    8   com.apple.AppKit                        0x9109016a -[NSWindowController loadWindow] + 231
    9   com.apple.AppKit                        0x9108fe02 -[NSWindowController window] + 81
    10  com.apple.DVDPlayer                     0x0018f219 0xd000 + 1581593
    11  com.apple.DVDPlayer                     0x0002b01d 0xd000 + 122909
    12  com.apple.DVDPlayer                     0x0002b5f1 0xd000 + 124401
    13  com.apple.DVDPlayer                     0x0003ea18 0xd000 + 203288
    14  com.apple.DVDPlayer                     0x00071adc 0xd000 + 412380
    15  com.apple.DVDPlayer                     0x000492dc 0xd000 + 246492
    16  com.apple.DVDPlayer                     0x00048b8e 0xd000 + 244622
    17  com.apple.HIToolbox                     0x963a60cb _InvokeEventHandlerUPP(OpaqueEventHandlerCallRef*, OpaqueEventRef*, void*, long (*)(OpaqueEventHandlerCallRef*, OpaqueEventRef*, void*)) + 36
    18  com.apple.HIToolbox                     0x9622dcd4 DispatchEventToHandlers(EventTargetRec*, OpaqueEventRef*, HandlerCallRec*) + 1343
    19  com.apple.HIToolbox                     0x9622d0c0 SendEventToEventTargetInternal(OpaqueEventRef*, OpaqueEventTargetRef*, HandlerCallRec*) + 430
    20  com.apple.HIToolbox                     0x9622cf0a SendEventToEventTargetWithOptions + 94
    21  com.apple.HIToolbox                     0x96243387 SendSimpleWindowEvent + 96
    22  com.apple.HIToolbox                     0x964db5ec _HIWindowDidEnterFullScreen + 730
    23  com.apple.AppKit                        0x9172bd4d __block_global_0 + 147
    24  com.apple.AppKit                        0x91725ded __100-[_NSFullScreenTransitionOverlayWindow startEnterFullScreenAnimationWithDuration:completionHandler:]_block_invoke_0 + 46
    25  libdispatch.dylib                       0x93583fe3 _dispatch_call_block_and_release + 15
    26  libdispatch.dylib                       0x9357fd0a _dispatch_client_callout + 46
    27  libdispatch.dylib                       0x93585337 _dispatch_main_queue_callback_4CF + 223
    28  com.apple.CoreFoundation                0x902de905 __CFRunLoopRun + 1845
    29  com.apple.CoreFoundation                0x902ddd6a CFRunLoopRunSpecific + 378
    30  com.apple.CoreFoundation                0x902ddbdb CFRunLoopRunInMode + 123
    31  com.apple.HIToolbox                     0x962518aa RunCurrentEventLoopInMode + 242
    32  com.apple.HIToolbox                     0x96251619 ReceiveNextEventCommon + 374
    33  com.apple.HIToolbox                     0x963b68bd _AcquireNextEvent + 68
    34  com.apple.HIToolbox                     0x963a567a RunApplicationEventLoop + 225
    35  com.apple.DVDPlayer                     0x00077d01 0xd000 + 437505
    36  com.apple.DVDPlayer                     0x00027195 0xd000 + 106901
    37  com.apple.DVDPlayer                     0x00027145 0xd000 + 106821
    38  libdyld.dylib                           0x919e9725 start + 1
    Thread 1:
    0   libsystem_kernel.dylib                  0x935780ee __workq_kernreturn + 10
    1   libsystem_c.dylib                       0x954e804c _pthread_workq_return + 45
    2   libsystem_c.dylib                       0x954e7e19 _pthread_wqthread + 448
    3   libsystem_c.dylib                       0x954cfcca start_wqthread + 30
    Thread 2:: Dispatch queue: com.apple.libdispatch-manager
    0   libsystem_kernel.dylib                  0x935789ae kevent + 10
    1   libdispatch.dylib                       0x93582cc5 _dispatch_mgr_invoke + 993
    2   libdispatch.dylib                       0x935827fd _dispatch_mgr_thread + 53
    Thread 3:
    0   libsystem_kernel.dylib                  0x935780ee __workq_kernreturn + 10
    1   libsystem_c.dylib                       0x954e804c _pthread_workq_return + 45
    2   libsystem_c.dylib                       0x954e7e19 _pthread_wqthread + 448
    3   libsystem_c.dylib                       0x954cfcca start_wqthread + 30
    Thread 4:
    0   libsystem_kernel.dylib                  0x935780ee __workq_kernreturn + 10
    1   libsystem_c.dylib                       0x954e804c _pthread_workq_return + 45
    2   libsystem_c.dylib                       0x954e7e19 _pthread_wqthread + 448
    3   libsystem_c.dylib                       0x954cfcca start_wqthread + 30
    Thread 5:: com.apple.dvdplayback-DVDEventCallbackThread
    0   libsystem_kernel.dylib                  0x9357580e semaphore_wait_trap + 10
    1   com.apple.dvdplayback                   0x003eed08 0x34c000 + 666888
    2   com.apple.dvdplayback                   0x003f5b95 0x34c000 + 695189
    3   com.apple.dvdplayback                   0x003ef26c 0x34c000 + 668268
    4   libsystem_c.dylib                       0x954e9014 _pthread_body + 72
    Thread 6:: com.apple.dvdplayback-TFThread
    0   libsystem_kernel.dylib                  0x935778e2 __psynch_cvwait + 10
    1   libsystem_c.dylib                       0x954ea220 _pthread_cond_wait + 833
    2   libsystem_c.dylib                       0x955700ad pthread_cond_wait$UNIX2003 + 71
    3   com.apple.dvdplayback                   0x0037ef78 0x34c000 + 208760
    4   com.apple.dvdplayback                   0x003a2433 0x34c000 + 353331
    5   com.apple.dvdplayback                   0x003ef26c 0x34c000 + 668268
    6   libsystem_c.dylib                       0x954e9014 _pthread_body + 72
    Thread 7:: com.apple.dvdplayback-OSXMessageThread
    0   libsystem_kernel.dylib                  0x9357580e semaphore_wait_trap + 10
    1   com.apple.dvdplayback                   0x003eed08 0x34c000 + 666888
    2   com.apple.dvdplayback                   0x003f5b95 0x34c000 + 695189
    3   com.apple.dvdplayback                   0x003ef26c 0x34c000 + 668268
    4   libsystem_c.dylib                       0x954e9014 _pthread_body + 72
    Thread 8:: com.apple.dvdplayback-DDPTask
    0   libsystem_kernel.dylib                  0x9357580e semaphore_wait_trap + 10
    1   com.apple.dvdplayback                   0x003eed08 0x34c000 + 666888
    2   com.apple.dvdplayback                   0x003f5b95 0x34c000 + 695189
    3   com.apple.dvdplayback                   0x00459ffa 0x34c000 + 1105914
    4   com.apple.dvdplayback                   0x003ef26c 0x34c000 + 668268
    5   libsystem_c.dylib                       0x954e9014 _pthread_body + 72
    Thread 9:: com.apple.dvdplayback-DVDPlayer
    0   libsystem_kernel.dylib                  0x9357580e semaphore_wait_trap + 10
    1   com.apple.dvdplayback                   0x003eed08 0x34c000 + 666888
    2   com.apple.dvdplayback                   0x003f5b95 0x34c000 + 695189
    3   com.apple.dvdplayback                   0x003ef26c 0x34c000 + 668268
    4   libsystem_c.dylib                       0x954e9014 _pthread_body + 72
    Thread 10:
    0   libsystem_kernel.dylib                  0x935778e2 __psynch_cvwait + 10
    1   libsystem_c.dylib                       0x954ea220 _pthread_cond_wait + 833
    2   libsystem_c.dylib                       0x955700ad pthread_cond_wait$UNIX2003 + 71
    3   com.apple.AppleGVAFramework             0x03c66550 0x3c4b000 + 111952
    4   com.apple.AppleGVAFramework             0x03c6656f 0x3c4b000 + 111983
    5   libsystem_c.dylib                       0x954e5557 _pthread_start + 344
    6   libsystem_c.dylib                       0x954cfcee thread_start + 34
    Thread 11:
    0   libsystem_kernel.dylib                  0x935780ee __workq_kernreturn + 10
    1   libsystem_c.dylib                       0x954e804c _pthread_workq_return + 45
    2   libsystem_c.dylib                       0x954e7e19 _pthread_wqthread + 448
    3   libsystem_c.dylib                       0x954cfcca start_wqthread + 30
    Thread 12:: CVDisplayLink
    0   libsystem_kernel.dylib                  0x935778e2 __psynch_cvwait + 10
    1   libsystem_c.dylib                       0x954ea220 _pthread_cond_wait + 833
    2   libsystem_c.dylib                       0x955700ad pthread_cond_wait$UNIX2003 + 71
    3   com.apple.CoreVideo                     0x94de916d CVDisplayLink::runIOThread() + 903
    4   com.apple.CoreVideo                     0x94de8dce startIOThread(void*) + 160
    5   libsystem_c.dylib                       0x954e5557 _pthread_start + 344
    6   libsystem_c.dylib                       0x954cfcee thread_start + 34
    Thread 0 crashed with X86 Thread State (32-bit):
      eax: 0xac3fa47c  ebx: 0x002d359c  ecx: 0xbfff2138  edx: 0x00000004
      edi: 0x935a5bf4  esi: 0x00000040  ebp: 0xbfff2148  esp: 0xbfff211c
       ss: 0x00000023  efl: 0x00010246  eip: 0xac401000   cs: 0x0000001b
       ds: 0x00000023   es: 0x00000023   fs: 0x00000000   gs: 0x0000000f
      cr2: 0xac401000
    Logical CPU: 2
    Binary Images:
        0xd000 -   0x260ffb  com.apple.DVDPlayer (5.6 - 5500.38) <60000DFD-7A67-3801-905E-5BD6FB062CEF> /Applications/DVD Player.app/Contents/MacOS/DVD Player
      0x2f7000 -   0x329ff7  com.apple.MediaUI (1.1 - 22) <E00A705C-A40B-342D-9854-313CAA64964F> /System/Library/PrivateFrameworks/MediaUI.framework/Versions/A/MediaUI
      0x34c000 -   0x4e7ff3  com.apple.dvdplayback (5.6.0 - 5600.4.7) <5EF017D4-CC64-32F3-8B95-22CB68283080> /System/Library/Frameworks/DVDPlayback.framework/Versions/A/DVDPlayback
      0x6c9000 -   0x6ccfff  com.apple.DVDFramework (4.1.2 - 4.1.2) <11569734-EB62-3163-A17C-F7B77BDF8324> /System/Library/PrivateFrameworks/DVD.framework/DVD
      0x6e2000 -   0x6e3ffc  com.apple.driver.AppleIntelHD4000GraphicsGA (8.0.51 - 8.0.0) <76FB6477-67EE-3EFC-9543-B2548604E785> /System/Library/Extensions/AppleIntelHD4000GraphicsGA.plugin/Contents/MacOS/App leIntelHD4000GraphicsGA
    0x3b1c000 -  0x3b21fff  com.apple.audio.AppleHDAHALPlugIn (2.3.0 - 2.3.0f2) <D971DBC9-B1D6-3F20-A6EA-B165C32A4E69> /System/Library/Extensions/AppleHDA.kext/Contents/PlugIns/AppleHDAHALPlugIn.bun dle/Contents/MacOS/AppleHDAHALPlugIn
    0x3c4b000 -  0x3d96fe3  com.apple.AppleGVAFramework (4.0.20 - 4.0.20) <5343913C-1820-3904-B302-3718F7C043C5> /System/Library/PrivateFrameworks/AppleGVA.framework/Versions/Current/AppleGVA
    0x3e0d000 -  0x3f99ff8  GLEngine (8.5) <23C1BECF-D0EF-339D-B312-EFACB26C5983> /System/Library/Frameworks/OpenGL.framework/Resources/GLEngine.bundle/GLEngine
    0x3fd0000 -  0x4121ff7  libGLProgrammability.dylib (8.5) <27E2DAE2-DECE-364C-A1C2-138735A3869E> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLProgramma bility.dylib
    0x414f000 -  0x45a4fff  com.apple.driver.AppleIntelHD4000GraphicsGLDriver (8.0.51 - 8.0.0) <D7D3CBB5-AABF-32C3-8135-875C175A5612> /System/Library/Extensions/AppleIntelHD4000GraphicsGLDriver.bundle/Contents/Mac OS/AppleIntelHD4000GraphicsGLDriver
    0x46ea000 -  0x46f6ffb  libGPUSupport.dylib (8.5) <DCEDB13E-6E2C-3D14-965E-70522403723B> /System/Library/PrivateFrameworks/GPUSupport.framework/Versions/A/Libraries/lib GPUSupport.dylib
    0x46fd000 -  0x4729ffa  GLRendererFloat (8.5) <1E69D3D7-1782-3FF8-AB52-3F23DC4F617B> /System/Library/Frameworks/OpenGL.framework/Resources/GLRendererFloat.bundle/GL RendererFloat
    0x4732000 -  0x473aff2  libcldcpuengine.dylib (2.1.16) <61717F57-9AAC-31B4-8894-27A1BF7987B9> /System/Library/Frameworks/OpenCL.framework/Versions/A/Libraries/libcldcpuengin e.dylib
    0x4741000 -  0x4743fff  libCoreFSCache.dylib (24.4) <A089ED2E-0156-3937-BE32-5BED76DF4066> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libCoreFSCache .dylib
    0x4755000 -  0x4756ffd  com.apple.ironwoodcore (1.0.25 - 1.0.25) <269200E5-59BC-3B4A-BCB3-4C70746762D4> /System/Library/PrivateFrameworks/SpeechObjects.framework/Versions/A/Frameworks /DictationServicesCore.framework/DictationServicesCore
    0x48a7000 -  0x49a1ff3  com.apple.AppleIntelHD4000GraphicsVADriver (8.0.51 - 8.0.0) <051421E2-D188-31BC-A682-5DD22ED039D7> /System/Library/Extensions/AppleIntelHD4000GraphicsVADriver.bundle/Contents/Mac OS/AppleIntelHD4000GraphicsVADriver
    0x4a34000 -  0x4a3cfff  AppleIntelIVBVA (8.0.51) <B38486D0-BCF4-34D6-B6C0-2D6473108441> /System/Library/Extensions/AppleIntelIVBVA.bundle/Contents/MacOS/AppleIntelIVBV A
    0x4e78000 -  0x4e79ffe +Codec (???) <48EE07BB-290C-F5BA-8266-AF1AC4238166> Codec
    0x51e1000 -  0x51e1ff7 +cl_kernels (???) <65A9C286-A438-4F92-A925-E0A8683A333D> cl_kernels
    0x51e7000 -  0x51e8ffd +cl_kernels (???) <3A288AFC-D311-430E-A81E-7CBDEE50E8A1> cl_kernels
    0x5225000 -  0x5232ffb  com.apple.Librarian (1.1 - 1) <C8D82AA3-AE5E-3B6D-A8D1-847856057186> /System/Library/PrivateFrameworks/Librarian.framework/Versions/A/Librarian
    0x5868000 -  0x58faff7  unorm8_bgra.dylib (2.1.16) <0F63B53F-4A0A-3485-9645-200572D265F5> /System/Library/Frameworks/OpenCL.framework/Versions/A/Libraries/ImageFormats/u norm8_bgra.dylib
    0x70000000 - 0x7015dff7  com.apple.audio.units.Components (1.8 - 1.8) <C24D64A8-9804-3538-8610-B497C69CD89E> /System/Library/Components/CoreAudio.component/Contents/MacOS/CoreAudio
    0x8fe0c000 - 0x8fe3ee57  dyld (210.2.3) <23516BE4-29BE-350C-91C9-F36E7999F0F1> /usr/lib/dyld
    0x90007000 - 0x9000bfff  com.apple.CommonPanels (1.2.5 - 94) <6B3E7E53-7708-3DA2-8C50-59C2B4735DE1> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/CommonPanels. framework/Versions/A/CommonPanels
    0x9000c000 - 0x90288ff7  com.apple.QuickTime (7.7.1 - 2599) <C1EAA16D-C51E-3A85-B114-6C7DDCEC864C> /System/Library/Frameworks/QuickTime.framework/Versions/A/QuickTime
    0x90289000 - 0x902a6ff7  libresolv.9.dylib (51) <B9742A2A-DF15-3F6E-8FCE-778A58214B3A> /usr/lib/libresolv.9.dylib
    0x902a7000 - 0x9048effb  com.apple.CoreFoundation (6.8 - 744) <A2BB4949-264A-302B-897E-713860894FE6> /System/Library/Frameworks/CoreFoundation.framework/Versions/A/CoreFoundation
    0x9048f000 - 0x904a6fff  com.apple.GenerationalStorage (1.1 - 132.1) <4E0F0C47-7796-3152-A77D-F6456287498A> /System/Library/PrivateFrameworks/GenerationalStorage.framework/Versions/A/Gene rationalStorage
    0x904c1000 - 0x90553ffb  libvMisc.dylib (380.6) <6DA3A03F-20BE-300D-A664-B50A7B4E4B1A> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libvMisc.dylib
    0x90554000 - 0x90560ffd  com.apple.CrashReporterSupport (10.8 - 411) <62036837-CFEC-37FD-AEB1-040EF573C2B3> /System/Library/PrivateFrameworks/CrashReporterSupport.framework/Versions/A/Cra shReporterSupport
    0x90561000 - 0x9056dff8  libbz2.1.0.dylib (29) <7031A4C0-784A-3EAA-93DF-EA1F26CC9264> /usr/lib/libbz2.1.0.dylib
    0x9079f000 - 0x90890ffc  libiconv.2.dylib (34) <B096A9B7-83A6-31B3-8D2F-87D91910BF4C> /usr/lib/libiconv.2.dylib
    0x90891000 - 0x909ccff7  libBLAS.dylib (1073.3) <804B5AF7-2646-31D1-8875-FCCF158476D4> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libBLAS.dylib
    0x909cd000 - 0x909f1fff  libJPEG.dylib (843) <04383F74-067F-3E98-882F-21F5B9578984> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libJPEG.dylib
    0x90d22000 - 0x90df6ff7  com.apple.backup.framework (1.4 - 1.4) <12123FB8-B42D-38B0-8463-6BA375C3C643> /System/Library/PrivateFrameworks/Backup.framework/Versions/A/Backup
    0x90df7000 - 0x90dfefff  libsystem_dnssd.dylib (379.27) <4B3700EA-F14D-3994-BAAB-79BBD33D7305> /usr/lib/system/libsystem_dnssd.dylib
    0x90dff000 - 0x90e0afff  libcommonCrypto.dylib (60026) <A6C6EDB8-7E69-3827-81F3-9A74D0935461> /usr/lib/system/libcommonCrypto.dylib
    0x90e0b000 - 0x919c4fff  com.apple.AppKit (6.8 - 1187) <5E13B150-4096-3B61-9DC0-6ABA48F6515B> /System/Library/Frameworks/AppKit.framework/Versions/C/AppKit
    0x919c9000 - 0x919e6fff  libCRFSuite.dylib (33) <C9D72D0C-871A-39A2-8AFB-682D11AE7D0D> /usr/lib/libCRFSuite.dylib
    0x919e7000 - 0x919e9fff  libdyld.dylib (210.2.3) <05D6FF2A-F09B-309D-95F7-7AF10259C707> /usr/lib/system/libdyld.dylib
    0x919ea000 - 0x919f6ff7  com.apple.NetAuth (4.0 - 4.0) <4983C4B8-9D95-3C4D-897E-07743326487E> /System/Library/PrivateFrameworks/NetAuth.framework/Versions/A/NetAuth
    0x91a01000 - 0x91a32ff7  com.apple.DictionaryServices (1.2 - 184) <9199E88F-2477-3596-9F56-B8E317A7164D> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Diction aryServices.framework/Versions/A/DictionaryServices
    0x91a33000 - 0x91a3cffd  com.apple.audio.SoundManager (4.0 - 4.0) <ABC5FE40-B222-36EB-9905-5C8C4BFD8C87> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/CarbonSound.f ramework/Versions/A/CarbonSound
    0x91a3d000 - 0x91a82ff5  com.apple.opencl (2.1.17 - 2.1.17) <921C1549-637A-33D7-A891-834FB9F582C7> /System/Library/Frameworks/OpenCL.framework/Versions/A/OpenCL
    0x91ab4000 - 0x91abefff  libCSync.A.dylib (322) <CD2707A0-48EB-30C5-8431-460663D44A91> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libCSync.A.dylib
    0x91abf000 - 0x91b34ff7  com.apple.ApplicationServices.ATS (332 - 341) <472F564A-BD46-30C3-92F5-87273A512910> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/ATS
    0x91b35000 - 0x91b68ff5  libssl.0.9.8.dylib (47) <3224FBB3-3074-3022-AD9A-187703680C03> /usr/lib/libssl.0.9.8.dylib
    0x91b7d000 - 0x91bbfff7  com.apple.RemoteViewServices (2.0 - 80.3) <EE36AF6C-E574-3F48-9AC3-E8C8295739FF> /System/Library/PrivateFrameworks/RemoteViewServices.framework/Versions/A/Remot eViewServices
    0x91bc3000 - 0x91be7ff2  com.apple.framework.familycontrols (4.0 - 400) <A313D83E-5A03-3174-A213-1F7D379040D1> /System/Library/PrivateFrameworks/FamilyControls.framework/Versions/A/FamilyCon trols
    0x91c36000 - 0x91c38fff  com.apple.securityhi (4.0 - 55002) <62E3AE75-61CB-341E-B2A0-CFC985A2BF7F> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SecurityHI.fr amework/Versions/A/SecurityHI
    0x91c39000 - 0x9207bff3  com.apple.CoreGraphics (1.600.0 - 322) <2E04AAAD-8403-3819-BD6C-9836D42F58B1> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/CoreGraphics
    0x9207c000 - 0x9211cff7  com.apple.QD (3.42 - 285) <1B8307C6-AFA8-312E-BA5B-679070EF2CA1> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ QD.framework/Versions/A/QD
    0x92425000 - 0x92442fff  libxpc.dylib (140.37) <F61095FA-B2CF-3CD8-9088-9D9FC18B38BC> /usr/lib/system/libxpc.dylib
    0x92474000 - 0x924aaffb  com.apple.DebugSymbols (98 - 98) <9A9ADA0A-E487-3C8F-9998-286EE04C235A> /System/Library/PrivateFrameworks/DebugSymbols.framework/Versions/A/DebugSymbol s
    0x924ab000 - 0x92506fff  com.apple.htmlrendering (77 - 1.1.4) <5C0C669F-AE07-3983-B38F-EB829B5CE609> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HTMLRendering .framework/Versions/A/HTMLRendering
    0x92507000 - 0x9265eff7  com.apple.audio.toolbox.AudioToolbox (1.8 - 1.8) <6856CA9B-BF08-341B-AEE9-91CC258D4534> /System/Library/Frameworks/AudioToolbox.framework/Versions/A/AudioToolbox
    0x92660000 - 0x92669ff9  com.apple.CommonAuth (3.0 - 2.0) <A1A6CC3D-AA88-3519-A305-9B5D76C5D63B> /System/Library/PrivateFrameworks/CommonAuth.framework/Versions/A/CommonAuth
    0x9266a000 - 0x926a9ff7  com.apple.bom (12.0 - 192) <0637E52C-D151-37B3-904F-8656B2FD44DD> /System/Library/PrivateFrameworks/Bom.framework/Versions/A/Bom
    0x926aa000 - 0x926acfff  libCVMSPluginSupport.dylib (8.5) <9043B315-4E68-3262-A310-76E64F0409C9> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libCVMSPluginS upport.dylib
    0x926ad000 - 0x926daffe  libsystem_m.dylib (3022.6) <9975D9C3-3B71-38E3-AA21-C5C5F9D9C431> /usr/lib/system/libsystem_m.dylib
    0x926db000 - 0x926dcfff  libremovefile.dylib (23.1) <98622D14-DAAB-3AD8-A5D9-C322BF572A98> /usr/lib/system/libremovefile.dylib
    0x926dd000 - 0x926ffff3  libc++abi.dylib (24.2) <4C064BFE-B8B4-35CA-AB3C-F6A47D47A0F2> /usr/lib/libc++abi.dylib
    0x92703000 - 0x92710fff  libGL.dylib (8.5) <930067EA-F131-336E-BE31-49DD7F6DFB81> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGL.dylib
    0x92711000 - 0x927c4ff7  com.apple.coreui (2.0 - 181) <4F071012-F857-367D-B0B8-EAD088A05740> /System/Library/PrivateFrameworks/CoreUI.framework/Versions/A/CoreUI
    0x927c5000 - 0x9281eff7  com.apple.AE (645 - 645) <D4919967-EF16-36BA-9E8A-DA110DE8BB4A> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/AE.fram ework/Versions/A/AE
    0x9281f000 - 0x92886ff7  com.apple.framework.IOKit (2.0 - 755.9.7) <CB976A7C-2601-3054-BC41-C3AD6896327C> /System/Library/Frameworks/IOKit.framework/Versions/A/IOKit
    0x92887000 - 0x9288affb  com.apple.TCC (1.0 - 1) <C1B2A1EB-9EA2-3340-8611-F788C87A951F> /System/Library/PrivateFrameworks/TCC.framework/Versions/A/TCC
    0x92892000 - 0x928beff7  libsystem_info.dylib (406.17) <AA5611DB-A944-3072-B6BE-ACAB08689547> /usr/lib/system/libsystem_info.dylib
    0x928bf000 - 0x928d1fff  libbsm.0.dylib (32) <DADD385E-FE53-3458-94FB-E316A6345108> /usr/lib/libbsm.0.dylib
    0x928d2000 - 0x928f0ffb  com.apple.Ubiquity (1.2 - 234.2) <BEFF43DE-CF72-3E66-90C8-CAECAFD5F3ED> /System/Library/PrivateFrameworks/Ubiquity.framework/Versions/A/Ubiquity
    0x92900000 - 0x92920ff7  com.apple.ChunkingLibrary (2.0 - 132) <172C3F7F-CB49-323F-932F-35340999979E> /System/Library/PrivateFrameworks/ChunkingLibrary.framework/Versions/A/Chunking Library
    0x92921000 - 0x929dfff3  com.apple.ColorSync (4.8.0 - 4.8.0) <EFEDCB37-4F20-3CEC-A185-5D2976E11BAC> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ColorSync.framework/Versions/A/ColorSync
    0x929e0000 - 0x92a13ff3  com.apple.GSS (3.0 - 2.0) <B1D719C1-B000-3BE3-B747-329D608585DD> /System/Library/Frameworks/GSS.framework/Versions/A/GSS
    0x92a14000 - 0x92a3dfff  libxslt.1.dylib (11.3) <0DE17DAA-66FF-3195-AADB-347BEB5E2EFA> /usr/lib/libxslt.1.dylib
    0x92a3e000 - 0x92a3ffff  libdnsinfo.dylib (453.16) <6441AEC9-3916-3BF6-BE54-9C25E2BE61E1> /usr/lib/system/libdnsinfo.dylib
    0x92aa7000 - 0x92aa8fff  libsystem_sandbox.dylib (220) <4E42390B-25EC-3530-AF01-337E430C16EB> /usr/lib/system/libsystem_sandbox.dylib
    0x92aa9000 - 0x92ba5ff3  com.apple.DiskImagesFramework (10.8 - 344) <98C16F91-9D3E-3FD0-A30B-BD49EE4ED9A4> /System/Library/PrivateFrameworks/DiskImages.framework/Versions/A/DiskImages
    0x92bcc000 - 0x92c0cfff  com.apple.MediaKit (13 - 658) <2CF2116F-EA07-31BB-A702-5B6C77F9D68B> /System/Library/PrivateFrameworks/MediaKit.framework/Versions/A/MediaKit
    0x92c0d000 - 0x92c22fff  com.apple.speech.synthesis.framework (4.1.10 - 4.1.10) <20E394D6-D9BA-3C1D-993A-533B60EF3B63> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ SpeechSynthesis.framework/Versions/A/SpeechSynthesis
    0x92c23000 - 0x92d6fffb  com.apple.CFNetwork (596.0.1 - 596.0.1) <0EC65BE8-5775-37C8-B6C7-8BC7CAECB222> /System/Library/Frameworks/CFNetwork.framework/Versions/A/CFNetwork
    0x92d70000 - 0x92d86fff  com.apple.CFOpenDirectory (10.8 - 151.10) <56C3F276-BD1F-3031-8CF9-8F4F481A534E> /System/Library/Frameworks/OpenDirectory.framework/Versions/A/Frameworks/CFOpen Directory.framework/Versions/A/CFOpenDirectory
    0x92d87000 - 0x92de2ff7  com.apple.AppleVAFramework (5.0.18 - 5.0.18) <4BA2AAEA-4936-375C-B4D8-4BBE2EDC7FF5> /System/Library/PrivateFrameworks/AppleVA.framework/Versions/A/AppleVA
    0x92de3000 - 0x92de3fff  libSystem.B.dylib (169.3) <81C58EAB-0E76-3EAB-BDFD-C5A6FE95536F> /usr/lib/libSystem.B.dylib
    0x92de4000 - 0x92df2ff3  libsystem_network.dylib (77.10) <7FBF5A15-97BA-3721-943E-E77F0C40DBE1> /usr/lib/system/libsystem_network.dylib
    0x92df3000 - 0x93084ffb  com.apple.CoreImage (8.0.17 - 1.0.1) <CE54EC11-1C41-3857-B82D-F8B7D1798F42> /System/Library/Frameworks/QuartzCore.framework/Versions/A/Frameworks/CoreImage .framework/Versions/A/CoreImage
    0x93085000 - 0x93098ff9  com.apple.MultitouchSupport.framework (235.27 - 235.27) <75D9C0FD-6A40-3A9E-8861-C74DBE137CF3> /System/Library/PrivateFrameworks/MultitouchSupport.framework/Versions/A/Multit ouchSupport
    0x93099000 - 0x930a3fff  libsystem_notify.dylib (98.5) <7EEE9475-18F8-3099-B0ED-23A3E528ABE0> /usr/lib/system/libsystem_notify.dylib
    0x930a4000 - 0x930e5ff7  libcups.2.dylib (327) <F46F8703-FEAE-3442-87CB-45C8BF98BEE5> /usr/lib/libcups.2.dylib
    0x930e6000 - 0x93103fff  com.apple.openscripting (1.3.5 - 148) <3460338D-B686-3C33-B322-DC8391668F8A> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/OpenScripting .framework/Versions/A/OpenScripting
    0x93104000 - 0x9315efff  com.apple.Symbolication (1.3 - 93) <684ECF0D-D416-3DF8-8B5B-3902953853A8> /System/Library/PrivateFrameworks/Symbolication.framework/Versions/A/Symbolicat ion
    0x93185000 - 0x931a1ff7  libPng.dylib (843) <43C3DD20-4BB2-3429-A40A-7FF9BC50E5FB> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libPng.dylib
    0x931a2000 - 0x931a2fff  libsystem_blocks.dylib (59) <3A743C5D-CFA5-37D8-80A8-B6795A9DB04F> /usr/lib/system/libsystem_blocks.dylib
    0x931ec000 - 0x93238fff  libcorecrypto.dylib (106) <FAAD1A30-0D84-3A17-AC40-288EF0F529AA> /usr/lib/system/libcorecrypto.dylib
    0x93239000 - 0x934f6ff3  com.apple.security (7.0 - 55163.44) <798A1E51-3030-35BD-B5E6-4B6F65469357> /System/Library/Frameworks/Security.framework/Versions/A/Security
    0x934fd000 - 0x93553ff3  com.apple.HIServices (1.20 - 416) <B23E2C58-A6A5-32B6-811C-0F0551E14483> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ HIServices.framework/Versions/A/HIServices
    0x93554000 - 0x93562fff  com.apple.opengl (1.8.5 - 1.8.5) <AA14FBC0-8AF3-3CCB-A390-C8F9AE81E1E9> /System/Library/Frameworks/OpenGL.framework/Versions/A/OpenGL
    0x93563000 - 0x9357dffc  libsystem_kernel.dylib (2050.7.9) <81E269C6-0F96-3075-9589-D35657D23CDD> /usr/lib/system/libsystem_kernel.dylib
    0x9357e000 - 0x93590ff7  libdispatch.dylib (228.18) <833C83BE-278C-353E-AC6D-9B85FAC50A1D> /usr/lib/system/libdispatch.dylib
    0x93591000 - 0x9359bffc  com.apple.bsd.ServiceManagement (2.0 - 2.0) <D3112172-D3A7-3C9A-825D-5630D47327D1> /System/Library/Frameworks/ServiceManagement.framework/Versions/A/ServiceManage ment
    0x9359c000 - 0x936a915f  libobjc.A.dylib (532) <9663A040-F232-3E2A-8318-AA40B940AF6F> /usr/lib/libobjc.A.dylib
    0x936aa000 - 0x936b6ffc  libkxld.dylib (2050.7.9) <D2892FF5-C00D-3493-8945-5C36733FE9A3> /usr/lib/system/libkxld.dylib
    0x936b7000 - 0x93733ffb  com.apple.Metadata (10.7.0 - 707.1) <E18350AD-CAA9-3323-BDE9-63A688792C6C> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Metadat a.framework/Versions/A/Metadata
    0x93734000 - 0x93798fff  com.apple.datadetectorscore (4.0 - 269.1) <4D155F09-1A60-325A-BCAC-1B858C2C051B> /System/Library/PrivateFrameworks/DataDetectorsCore.framework/Versions/A/DataDe tectorsCore
    0x93799000 - 0x9387afff  libcrypto.0.9.8.dylib (47) <D4EFFCFB-206D-3E3D-ADB5-CBAF04EB8838> /usr/lib/libcrypto.0.9.8.dylib
    0x9387b000 - 0x938bffff  libGLU.dylib (8.5) <E4F932FD-A644-354D-8D4E-F337C93AAFC1> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLU.dylib
    0x93a69000 - 0x93a82fff  com.apple.Kerberos (2.0 - 1) <9BDE8F4D-DBC3-34D1-852C-898D3655A611> /System/Library/Frameworks/Kerberos.framework/Versions/A/Kerberos
    0x93d15000 - 0x94132ff3  FaceCoreLight (2.0.1) <3EF03B25-C361-31A6-8704-3FBFFBD0E10B> /System/Library/PrivateFrameworks/FaceCoreLight.framework/Versions/A/FaceCoreLi ght
    0x94133000 - 0x941a2ffb  com.apple.Heimdal (3.0 - 2.0) <1ABF438B-30E6-3165-968C-E2EA1A9DF1FD> /System/Library/PrivateFrameworks/Heimdal.framework/Versions/A/Heimdal
    0x941a3000 - 0x9421dff7  com.apple.securityfoundation (6.0 - 55115.4) <A959B2F5-9D9D-3C93-A62A-7399594CF238> /System/Library/Frameworks/SecurityFoundation.framework/Versions/A/SecurityFoun dation
    0x9421e000 - 0x94221fff  com.apple.help (1.3.2 - 42) <AD7EB1F0-A068-3A2C-9D59-38E59CEC0D96> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Help.framewor k/Versions/A/Help
    0x94222000 - 0x94228fff  libGFXShared.dylib (8.5) <D2D214E8-A243-3FFD-BA70-D695FF5BD040> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGFXShared.d ylib
    0x94229000 - 0x9422affd  libunc.dylib (25) <58599CBF-E262-3CEA-AFE1-35560E0177DC> /usr/lib/system/libunc.dylib
    0x9461b000 - 0x9465dfff  libcurl.4.dylib (69.2) <8CC566A0-0B25-37E8-A6EC-30074C3CDB8C> /usr/lib/libcurl.4.dylib
    0x9465e000 - 0x94662fff  com.apple.OpenDirectory (10.8 - 151.10) <A1858D81-086F-3BF5-87E3-9B70409FFDF6> /System/Library/Frameworks/OpenDirectory.framework/Versions/A/OpenDirectory
    0x94663000 - 0x94663ffd  libOpenScriptingUtil.dylib (148) <6B34E8E4-EE31-3E2B-AEB3-8714C3102AED> /usr/lib/libOpenScriptingUtil.dylib
    0x94664000 - 0x946a9ff7  com.apple.NavigationServices (3.7 - 200) <F6531764-6E43-3AF3-ACDD-8A5551EF016A> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/NavigationSer vices.framework/Versions/A/NavigationServices
    0x946aa000 - 0x946adffd  libCoreVMClient.dylib (24.4) <C54E8FD0-61EC-3DC8-8631-54288AC66AC8> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libCoreVMClien t.dylib
    0x94737000 - 0x9473aff9  libCGXType.A.dylib (322) <2090D588-49DD-3DB6-A296-8E7B0FF1482A> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libCGXType.A.dylib
    0x9473b000 - 0x948f7ffd  libicucore.A.dylib (491.11.1) <DB04A8FD-9BBE-3CBC-869F-8FA855FB43D2> /usr/lib/libicucore.A.dylib
    0x948f8000 - 0x94906ff7  libz.1.dylib (43) <245F1B61-2276-3BBB-9891-99934116D833> /usr/lib/libz.1.dylib
    0x94907000 - 0x94a64ffb  com.apple.QTKit (7.7.1 - 2599) <78806D5A-A983-3C4C-A151-2AEF28779358> /System/Library/Frameworks/QTKit.framework/Versions/A/QTKit
    0x94a65000 - 0x94a69ff7  libmacho.dylib (829) <5280A013-4F74-3F74-BE0C-7F612C49F1DC> /usr/lib/system/libmacho.dylib
    0x94a76000 - 0x94a77fff  libquarantine.dylib (52) <D526310F-DC77-37EA-8F5F-83928EFA3262> /usr/lib/system/libquarantine.dylib
    0x94a78000 - 0x94cf2ff3  com.apple.RawCamera.bundle (3.14.2 - 644) <3A5383AC-F30A-3674-88F4-DF82ADE8D73E> /System/Library/CoreServices/RawCamera.bundle/Contents/MacOS/RawCamera
    0x94cf3000 - 0x94d55fff  libc++.1.dylib (65.1) <C0CFF9FF-5D52-3EAE-B921-6AE1DA00A135> /usr/lib/libc++.1.dylib
    0x94d82000 - 0x94de6ff3  libstdc++.6.dylib (56) <F8FA490A-8F3C-3645-ABF5-78926CE9C62C> /usr/lib/libstdc++.6.dylib
    0x94de7000 - 0x94e0cff7  com.apple.CoreVideo (1.8 - 99.0) <7A90C337-4493-3393-9C56-75EB52112D75> /System/Library/Frameworks/CoreVideo.framework/Versions/A/CoreVideo
    0x94e0d000 - 0x94e48fe7  libGLImage.dylib (8.5) <E5F2D8DE-3053-361A-982B-9BB2AE73E324> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLImage.dyl ib
    0x94e86000 - 0x94e89ffc  libpam.2.dylib (20) <FCF74195-A99E-3B07-8E49-688D4A6F1E18> /usr/lib/libpam.2.dylib
    0x94e8a000 - 0x94e8afff  com.apple.ApplicationServices (45 - 45) <677C4ACC-9D12-366F-8A87-B898AC806DD9> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Application Services
    0x94e8b000 - 0x94edaff6  libTIFF.dylib (843) <AA81BA16-8026-35DA-8193-2C8715ACD435> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libTIFF.dylib
    0x94edb000 - 0x94ee2ffb  libunwind.dylib (35.1) <E1E8D8B3-3C78-3AB1-B398-C180DC6DCF05> /usr/lib/system/libunwind.dylib
    0x94ee3000 - 0x94ee3fff  com.apple.Accelerate (1.8 - Accelerate 1.8) <4EC0548E-3A3F-310D-A366-47B51D5B6398> /System/Library/Frameworks/Accelerate.framework/Versions/A/Accelerate
    0x94ee4000 - 0x9506dff7  com.apple.vImage (6.0 - 6.0) <1D1F67FE-4F75-3689-BEF6-4A46C8039E70> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vImage.fr amework/Versions/A/vImage
    0x9506e000 - 0x9518bff3  com.apple.MediaControlSender (1.4.1 - 141.23) <D2B3E1AC-AB2B-3811-B1EC-E794ECA81C81> /System/Library/PrivateFrameworks/MediaControlSender.framework/Versions/A/Media ControlSender
    0x9518c000 - 0x95193fff  liblaunch.dylib (442.21) <349330F8-1BBF-3B78-AFB2-4F32413CE971> /usr/lib/system/liblaunch.dylib
    0x95194000 - 0x95198fff  com.apple.IOSurface (86.0.2 - 86.0.2) <BDF93CE4-9F14-3747-9CD5-FFE71D488BDA> /System/Library/Frameworks/IOSurface.framework/Versions/A/IOSurface
    0x95199000 - 0x95199ffd  com.apple.audio.units.AudioUnit (1.8 - 1.8) <B688A998-93B5-3D9B-BAE4-E49947AA82B4> /System/Library/Frameworks/AudioUnit.framework/Versions/A/AudioUnit
    0x9519a000 - 0x9519bfff  liblangid.dylib (116) <E13CC8C5-5034-320A-A210-41A2BDE4F846> /usr/lib/liblangid.dylib
    0x9519c000 - 0x95236fff  com.apple.CoreSymbolication (3.0 - 87) <6A27BBE5-6EF0-3D5D-A485-2145826B9796> /System/Library/PrivateFrameworks/CoreSymbolication.framework/Versions/A/CoreSy mbolication
    0x95237000 - 0x95238ffd  com.apple.TrustEvaluationAgent (2.0 - 23) <E42347C0-2D3C-36A4-9200-757FFA61B388> /System/Library/PrivateFrameworks/TrustEvaluationAgent.framework/Versions/A/Tru stEvaluationAgent
    0x95239000 - 0x9530ffff  com.apple.DiscRecording (7.0 - 7000.2.4) <C14E99B9-DEFA-3812-89E5-464653B729F4> /System/Library/Frameworks/DiscRecording.framework/Versions/A/DiscRecording
    0x95310000 - 0x95351ff7  com.apple.framework.CoreWiFi (1.0 - 100.10) <944B3FAE-F901-3276-A676-9D52295DA817> /System/Library/Frameworks/CoreWiFi.framework/Versions/A/CoreWiFi
    0x95356000 - 0x954ceff5  com.apple.QuartzCore (1.8 - 304.0) <0B0EC55A-9084-3E28-9A84-1813CE3FAA9B> /System/Library/Frameworks/QuartzCore.framework/Versions/A/QuartzCore
    0x954cf000 - 0x9558cffb  libsystem_c.dylib (825.24) <7D90CAC5-EC98-35F8-A52E-81B54F0C7DCC> /usr/lib/system/libsystem_c.dylib
    0x95c95000 - 0x95c9cff3  com.apple.NetFS (5.0 - 4.0) <1F7041F2-4E97-368C-8F5D-24153D81BBDB> /System/Library/Frameworks/NetFS.framework/Versions/A/NetFS
    0x95c9d000 - 0x95ca5fff  libcopyfile.dylib (89) <4963541B-0254-371B-B29A-B6806888949B> /usr/lib/system/libcopyfile.dylib
    0x95ca6000 - 0x95d50ff7  com.apple.LaunchServices (539 - 539) <4C026504-5420-35D7-912E-A584C6F9FFC6> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/LaunchS ervices.framework/Versions/A/LaunchServices
    0x95e62000 - 0x95e86fff  com.apple.PerformanceAnalysis (1.16 - 16) <18DE0F9F-1264-394D-AC56-6B2A1771DFBE> /System/Library/PrivateFrameworks/PerformanceAnalysis.framework/Versions/A/Perf ormanceAnalysis
    0x95e87000 - 0x95eceff3  com.apple.CoreMedia (1.0 - 926.37) <9F458B7C-9F81-3CCF-939D-2E58FE93B86A> /System/Library/Frameworks/CoreMedia.framework/Versions/A/CoreMedia
    0x95ecf000 - 0x95ed3ffe  libcache.dylib (57) <834FDCA7-FE3B-33CC-A12A-E11E202477EC> /usr/lib/system/libcache.dylib
    0x95ed4000 - 0x961f1fff  com.apple.Foundation (6.8 - 945) <B6F00754-C3F7-3E33-B708-CCEA2AA3E969> /System/Library/Frameworks/Foundation.framework/Versions/C/Foundation
    0x961fa000 - 0x965dcff7  com.apple.HIToolbox (2.0 - 624) <04C20B6A-FE3D-396E-BCAF-AC4DBAB3747E> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HIToolbox.fra mework/Versions/A/HIToolbox
    0x965e2000 - 0x96690ff3  com.apple.CoreText (260.0 - 275.14) <3CC31B7F-5560-364A-ADFC-31861C3C2328> /System/Library/Frameworks/CoreText.framework/Versions/A/CoreText
    0x96691000 - 0x96996fff  com.apple.CoreServices.CarbonCore (1037 - 1037) <92494ADA-2ED1-3141-81B9-23F2C27E779C> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CarbonC ore.framework/Versions/A/CarbonCore
    0x96999000 - 0x969f0ff7  com.apple.ScalableUserInterface (1.0 - 1) <2B5E454B-BC49-3E85-B54D-1950397C448C> /System/Library/Frameworks/QuartzCore.framework/Versions/A/Frameworks/ScalableU serInterface.framework/Versions/A/ScalableUserInterface
    0x969f1000 - 0x969f2fff  libDiagnosticMessagesClient.dylib (7) <B2BC685E-C129-3F6B-9222-AF3CF4F186AC> /usr/lib/libDiagnosticMessagesClient.dylib
    0x969f3000 - 0x969f3fff  com.apple.CoreServices (57 - 57) <956C6C6D-A5DD-314F-9C57-4A61D41F30CE> /System/Library/Frameworks/CoreServices.framework/Versions/A/CoreServices
    0x969f4000 - 0x96af2ff7  libFontParser.dylib (84.5) <B3006327-7B2D-3966-A56A-BD85F1D71641> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/Resources/libFontParser.dylib
    0x96af3000 - 0x96afdfff  com.apple.speech.recognition.framework (4.1.5 - 4.1.5) <B855E8B4-2EE3-3BFF-8547-98A0F084F9AF> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SpeechRecogni tion.framework/Versions/A/SpeechRecognition
    0x96d56000 - 0x96d56fff  libkeymgr.dylib (25) <D5E93F7F-9315-3AD6-92C7-941F7B54C490> /usr/lib/system/libkeymgr.dylib
    0x96d57000 - 0x97153fe3  com.apple.VideoToolbox (1.0 - 926.37) <268DD75A-153C-39A0-98B1-439374DA1144> /System/Library/Frameworks/VideoToolbox.framework/Versions/A/VideoToolbox
    0x97154000 - 0x97169fff  com.apple.ImageCapture (8.0 - 8.0) <B8BD421F-D5A9-3FB4-8E89-AD5CFC0D4030> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/ImageCapture. framework/Versions/A/ImageCapture
    0x9716a000 - 0x971b8ffb  libFontRegistry.dylib (100) <3B8350C2-4D8F-38C4-A22E-2F855D7E83D1> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/Resources/libFontRegistry.dylib
    0x971b9000 - 0x97209ff7  com.apple.CoreMediaIO (301.0 - 4147) <F13FA9D4-BD1D-3297-BDD5-5858B231D738> /System/Library/Frameworks/CoreMediaIO.framework/Versions/A/CoreMediaIO
    0x97239000 - 0x97246ff7  com.apple.AppleFSCompression (49 - 1.0) <166AA1F8-E50A-3533-A3B5-8737C5118CC3> /System/Library/PrivateFrameworks/AppleFSCompression.framework/Versions/A/Apple FSCompression
    0x97247000 - 0x97362ff3  com.apple.desktopservices (1.7.0 - 1.7.0) <62495AB3-8FD5-39D0-A881-07BA77139EAA> /System/Library/PrivateFrameworks/DesktopServicesPriv.framework/Versions/A/Desk topServicesPriv
    0x97363000 - 0x973c9fff  com.apple.print.framework.PrintCore (8.0 - 387) <84DFC4F0-3186-3C59-9EBD-9EF2C3561A43> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ PrintCore.framework/Versions/A/PrintCore
    0x973ca000 - 0x974c2ff2  libsqlite3.dylib (138) <AA00F27E-B72D-31DE-8EE4-985227CC9912> /usr/lib/libsqlite3.dylib
    0x974c3000 - 0x9787bffa  libLAPACK.dylib (1073.3) <0F813868-D84F-365D-8A7B-67FDA169F19C> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libLAPACK.dylib
    0x98138000 - 0x98165ffb  com.apple.CoreServicesInternal (153 - 153) <DB105788-CCF5-3678-88C5-65A7267DC581> /System/Library/PrivateFrameworks/CoreServicesInternal.framework/Versions/A/Cor eServicesInternal
    0x98166000 - 0x98168ffb  libRadiance.dylib (843) <6C2B92DB-A537-3618-9E68-F006DF427D2F> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libRadiance.d ylib
    0x98201000 - 0x98243ff7  libauto.dylib (185.1) <B2B5B639-6778-352A-828D-FD8B64A3E8B3> /usr/lib/libauto.dylib
    0x98253000 - 0x98253fff  com.apple.vecLib (3.8 - vecLib 3.8) <83160DD1-5614-3E34-80EB-97041016EF1F> /System/Library/Frameworks/vecLib.framework/Versions/A/vecLib
    0x98254000 - 0x9825cfff  com.apple.CommerceCore (1.0 - 26) <AF0D1990-8CBF-3AB4-99DF-8B7AE14FB0D5> /System/Library/PrivateFrameworks/CommerceKit.framework/Versions/A/Frameworks/C ommerceCore.framework/Versions/A/CommerceCore
    0x9825d000 - 0x985efff3  com.apple.MediaToolbox (1.0 - 926.37) <6B111039-22B1-3ED0-9E1B-E4810B6BC23E> /System/Library/Frameworks/MediaToolbox.framework/Versions/A/MediaToolbox
    0x985f0000 - 0x985fefff  libxar.1.dylib (105) <343E4A3B-1D04-34A3-94C2-8C7C9A8F736B> /usr/lib/libxar.1.dylib
    0x985ff000 - 0x98607fff  com.apple.DiskArbitration (2.5 - 2.5) <E49427B0-5317-3DFD-B12E-117402BB19CB> /System/Library/Frameworks/DiskArbitration.framework/Versions/A/DiskArbitration
    0x98608000 - 0x986a0ff7  com.apple.CoreServices.OSServices (557 - 557) <219C11A8-8446-336E-B518-F52D1571420F> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/OSServi ces.framework/Versions/A/OSServices
    0x986a1000 - 0x987b9ff7  com.apple.coreavchd (5.6.0 - 5600.4.16) <F024C78B-4FAA-38F1-A182-AD0A0A596CBE> /System/Library/PrivateFrameworks/CoreAVCHD.framework/Versions/A/CoreAVCHD
    0x987ba000 - 0x987e4ff9  com.apple.framework.Apple80211 (8.0 - 800.15) <DC1EC5B5-7021-3CFC-8C32-FD515F1F9C58> /System/Library/PrivateFrameworks/Apple80211.framework/Versions/A/Apple80211
    0x987e5000 - 0x9887cfff  com.apple.ink.framework (1.4 - 110) <C01F2572-E7E4-3A6C-B4F2-2F97B4AD43D5> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Ink.framework /Versions/A/Ink
    0x9887d000 - 0x988c6ff3  com.apple.framework.CoreWLAN (3.0 - 300.9) <0C5A2604-2185-3D71-950C-D5E93239419A> /System/Library/Frameworks/CoreWLAN.framework/Versions/A/CoreWLAN
    0x988c7000 - 0x988caff7  libcompiler_rt.dylib (30) <CE5DBDB4-0124-3E2B-9105-989DF98DD108> /usr/lib/system/libcompiler_rt.dylib
    0x988cb000 - 0x988dbff2  com.apple.LangAnalysis (1.7.0 - 1.7.0) <875363E7-6D02-3229-A9DD-E5A5568A7D61> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ LangAnalysis.framework/Versions/A/LangAnalysis
    0x988dc000 - 0x9892affb  com.apple.SystemConfiguration (1.12 - 1.12) <F3C87D17-D5F3-39D3-B6F1-1DF3DBECCBDE> /System/Library/Frameworks/SystemConfiguration.framework/Versions/A/SystemConfi guration
    0x98a98000 - 0x98ba5ffb  com.apple.ImageIO.framework (3.2.0 - 843) <4BFEFB05-3EE3-36A7-891D-CE03D1DF8125> /System/Library/Frameworks/ImageIO.framework/Versions/A/ImageIO
    0x98ba6000 - 0x98bddffa  com.apple.LDAPFramework (2.4.28 - 194.5) <AA8CC981-78EF-38F0-9959-83DEF9E418DC> /System/Library/Frameworks/LDAP.framework/Versions/A/LDAP
    0x98bde000 - 0x9926afeb  com.apple.CoreAUC (6.16.00 - 6.16.00) <654A0AB8-F24F-3489-8F70-F0A22414FE08> /System/Library/PrivateFrameworks/CoreAUC.framework/Versions/A/CoreAUC
    0x992c3000 - 0x992c9fff  com.apple.print.framework.Print (8.0 - 258) <12AEAD24-6924-3923-9E4A-C5D21231E639> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Print.framewo rk/Versions/A/Print
    0x992ca000 - 0x99327fff  com.apple.audio.CoreAudio (4.1.0 - 4.1.0) <9549B81F-4425-34EE-802B-F462068DC0C5> /System/Library/Frameworks/CoreAudio.framework/Versions/A/CoreAudio
    0x99328000 - 0x99528ffb  com.apple.CoreData (106 - 407.5) <B4386286-5C67-3134-A5BD-852447DA696E> /System/Library/Frameworks/CoreData.framework/Versions/A/CoreData
    0x9a262000 - 0x9a28bff7  libRIP.A.dylib (322) <48626D20-EFD2-3F8C-B458-30514DDD7984> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libRIP.A.dylib
    0x9a28c000 - 0x9a2a3ff4  com.apple.CoreMediaAuthoring (2.1 - 914) <37C0A2C7-73B3-39BC-8DE1-4A6B75F115FC> /System/Library/PrivateFrameworks/CoreMediaAuthoring.framework/Versions/A/CoreM ediaAuthoring
    0x9a2a4000 - 0x9a2a7ff3  com.apple.AppleSystemInfo (2.0 - 2) <4639D755-8A68-31C9-95C4-7E7F70C233FA> /System/Library/PrivateFrameworks/AppleSystemInfo.framework/Versions/A/AppleSys temInfo
    0x9a2a8000 - 0x9a391ff7  libxml2.2.dylib (22.3) <015A4FA6-5BB9-3F95-AFB8-B9281E22685B> /usr/lib/libxml2.2.dylib
    0x9a392000 - 0x9a392fff  com.apple.Cocoa (6.7 - 19) <354094F0-F36B-36F9-BF5F-FD60590FBEB9> /System/Library/Frameworks/Cocoa.framework/Versions/A/Cocoa
    0x9a393000 - 0x9a49eff7  libJP2.dylib (843) <D8FE1E1C-D4DC-3465-95C4-AEADD6C2611C> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libJP2.dylib
    0x9a49f000 - 0x9a4afff7  libsasl2.2.dylib (166) <D9080BA2-A365-351E-9FF2-7E0D4E8B1339> /usr/lib/libsasl2.2.dylib
    0x9a4b0000 - 0x9a4b0fff  com.apple.Carbon (154 - 155) <604ADD9D-5835-3294-842E-3A4AEBCCB548> /System/Library/Frameworks/Carbon.framework/Versions/A/Carbon
    0x9a4bc000 - 0x9a524fe7  libvDSP.dylib (380.6) <55780308-4DCA-3B10-9703-EAFC3E13A3FA> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libvDSP.dylib
    0x9a5b2000 - 0x9a5b2fff  com.apple.Accelerate.vecLib (3.8 - vecLib 3.8) <908B8D40-3FB5-3047-B482-3DF95025ECFC> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/vecLib
    0x9a5b3000 - 0x9a5b7ffc  libGIF.dylib (843) <355B672B-D07D-36FE-B6B9-142406ACFBA2> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libGIF.dylib
    0x9a5b8000 - 0x9a63dff7  com.apple.SearchKit (1.4.0 - 1.4.0) <454E950F-291C-3E95-8F35-05CA0AD6B327> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/SearchK it.framework/Versions/A/SearchKit
    External Modification Summary:
      Calls made by other processes targeting this process:
        task_for_pid: 2
        thread_create: 0
        thread_set_state: 0
      Calls made by this process:
        task_for_pid: 0
        thread_create: 0
        thread_set_state: 0
      Calls made by all processes on this machine:
        task_for_pid: 211
        thread_create: 0
        thread_set_state: 0
    VM Region Summary:
    ReadOnly portion of Libraries: Total=160.6M resident=90.8M(57%) swapped_out_or_unallocated=69.8M(43%)
    Writable regions: Total=134.1M written=15.1M(11%) resident=37.1M(28%) swapped_out=0K(0%) unallocated=97.0M(72%)
    REGION TYPE                      VIRTUAL
    ===========                      =======
    CG backing stores                  6620K
    CG image                            272K
    CG raster data                     5936K
    CG shared images                   1184K
    CoreAnimation                       260K
    CoreServices                       1056K
    IOKit                              8648K
    MALLOC                             82.1M
    MALLOC guard page                    48K
    Memory tag=240                        4K
    Memory tag=242                       12K
    Memory tag=35                      5980K
    OpenCL                               20K
    OpenGL GLSL                         896K
    Stack                              70.4M
    VM_ALLOCATE                        19.7M
    __DATA                             7876K
    __DATA/__OBJC                       132K
    __IMAGE                             528K
    __IMPORT                              4K
    __LINKEDIT                         33.5M
    __OBJC                             1788K
    __OBJC/__DATA                        32K
    __PAGEZERO                            4K
    __TEXT                            127.1M
    __UNICODE                           544K
    mapped file                        95.2M
    shared memory                      1396K
    ===========                      =======
    TOTAL                             470.2M
    Model: MacBookPro9,2, BootROM MBP91.00D3.B06, 2 processors, Intel Core i5, 2.5 GHz, 4 GB, SMC 2.2f38
    Graphics: Intel HD Graphics 4000, Intel HD Graphics 4000, Built-In, 384 MB
    Memory Module: BANK 0/DIMM0, 2 GB, DDR3, 1600 MHz, 0x802C, 0x384A54463235363634485A2D3147364D3120
    Memory Module: BANK 1/DIMM0, 2 GB, DDR3, 1600 MHz, 0x802C, 0x384A54463235363634485A2D3147364D3120
    AirPort: spairport_wireless_card_type_airport_extreme (0x14E4, 0xF5), Broadcom BCM43xx 1.0 (5.106.98.81.20)
    Bluetooth: Version 4.0.9f8 10405, 2 service, 11 devices, 1 incoming serial ports
    Network Service: Wi-Fi, AirPort, en1
    Serial ATA Device: TOSHIBA MK5065GSXF, 500.11 GB
    Serial ATA Device: MATSHITADVD-R   UJ-8A8, 7.6 GB
    USB Device: hub_device, 0x8087  (Intel Corporation), 0x0024, 0x1a100000 / 2
    USB Device: FaceTime HD Camera (Built-in), apple_vendor_id, 0x8509, 0x1a110000 / 3
    USB Device: hub_device, 0x8087  (Intel Corporation), 0x0024, 0x1d100000 / 2
    USB Device: hub_device, 0x0424  (SMSC), 0x2513, 0x1d180000 / 3
    USB Device: BRCM20702 Hub, 0x0a5c  (Broadcom Corp.), 0x4500, 0x1d181000 / 6
    USB Device: Bluetooth USB Host Controller, apple_vendor_id, 0x821d, 0x1d181300 / 7
    USB Device: Apple Internal Keyboard / Trackpad, apple_vendor_id, 0x0252, 0x1d183000 / 5
    USB Device: IR Receiver, apple_vendor_id, 0x8242, 0x1d182000 / 4

    In addition to RRFS's advice, please post in the correct forum. This forum is for iMac's, you mentioned you have a MacBook Pro. They're similar but still pretty different hardware.

  • Need help identifying model of a Treo

    I rarely need a PDA, so I didn't replace the old M105 that died.  A friend replaced a Treo she'd been using and gave it to me, but all I got was the device itself, the charger, and the USB cable.  I'm having trouble getting it to load my contacts and calendar (for some reason it did transfer four items in a ToDo list!), and I can't even figure out what model it is, let alone can I find a user's manual.  It is definitely just a PDA and not a phone.
    On the back of the Treo is the following identification:
    GMHED248700FX
    What is it?!  And what version of Palm software is required in order to get it to sync with the Palm software on my computer?  I thought at first it might be a model 700FX, but I can't find that model listed anywhere on the Palm site, so clearly that isn't it.  Is there any other way to identify it?
    Thank you for any help!
    Post relates to: None

    Thank you!  That certainly seems to be the one I have, and the age isn't important for what I need.  Now, though, that leads to the next issue, which is that I can't sync my contacts and calendar, although I think I've figured out why for myself.  Still, it generates another question.
    I am currently using Palm v 4.2.1 on my desktop (Mac 10.4.11)  I bet it's too new, isn't it?  Is it going to be possible for me to back off to Palm 4.0 without losing the information that's currently stored in 4.2.1?  I don't mind installing an older version of the software (and I found the download), but if it means losing my information, I'll just pass this free Treo on to some other unsuspecting person. 

  • Help on model and aggregation

    Hi Experts,
    I am using models to calculate the value of particular members(at leaf level) of a dimensions. The expression is like this
    A=B-C where A is at leaf level and B and C is at second level from top. The values are precomputed for thisdimension so B and C are available after the load itself. After running the model the value is coming correctly for A. The cube is precomputed for all dimensions. All the dimensions are having value based hierarchies except time.
    Now I want to aggregate this value to the all the ancestors of A and for that reason I am running following command:-
    ->aggregate PRTTOPVAR using <default aggmap>
    When I do this, calculated data for A also disappears and shows 0.
    My questions are:-
    1. What should I do to aggregate the calculated data till all level?
    2. Why I m loosing the calculated data after running the default aggmap?
    3. As A,B and C belongs to same dimension I am not using other dimensions in the model dimension clause. Is this right? If yes then how the values will be calculated for different combination of dimensions?
    Any help would be highly appreciated.
    DB: 10.2.0.4
    AWM: 10.2.0.3A
    OLAP patch A applied.
    Thanks
    Brijesh
    Edited by: BGaur on Oct 10, 2008 8:29 PM

    Point # 1 is really only an issue if you are running your model at a different level than your aggregation.
    Considering you are running an aggregation anyway, you don't need to be processing your model over anything other than leaf-levels (summary levels would get overwritten anyway).
    For example, if your other dimensions were limited to the top level only, when your model is run over current status it will only populate values of 'A' against those top level items, leaving child values untouched (most likely NA). When you aggregate up over all hierarchies, these other dimensions will 'total up' your leaf-level NA values and overwrite your values for 'A' at the top level.
    Regarding Point#3, you only need to specify the dimension whose values you are referencing in the model. When you run the model, it calculates over the current status of all other dimensions in your variable.
    I suspect it comes down to the status of your cube at the time the model was run; without knowing the status (or even the dimensionality) of the cube I can only speculate.

  • Need help on model-choicelist of JHeadStart

    Hi All,
    I am very new to ADF and JHeadStart, i have developed HR application using jshtutorial1111.
    my question is:
    In Locations tab we can able to see corresponding countries list of location. Here i need to add Regions model-choicelist also, on selection of Region the countries list should refresh and should show selected region countries list only.
    ex: if i select region as Asia then counties list should display only Asian countries.
    i have tried so many ways but nothing is worked out.
    can any one help me on this.
    Thanks,
    Madhu.

    You should double check that this linked LOV is working in the model prior to using it with JHS.
    Here is a recent example:
    https://blogs.oracle.com/aramamoo/entry/how_to_create_multi_level
    Good luck!
    BradW

  • Could someone please help me model the following circuit in Multisim?

    I have connected a BNC tee adapter to an oscilloscope. At one of the ends of the tee connector I have placed a 50 ohm terminator. At the other end of the tee I have placed a pulse generator with the following specs: a pulse amplitude of -0.8 V (for resistive loads of 50 ohms to 10 kilo ohms) that is 6-10 ns in duration with a 10 kHz repetition rate. The pulse generator also has a risetime of 1.5 ns and a fall time of 5 ns. Thank You    

    Hello,
    Here are some ideas to model this circuit. For the BNC terminator you could simply use a 50 ohm resistor; for the pulse generator I recommend you to take a look of the SIGNAL_VOLTAGE_SOURCES Family, Sources Group in the Multsim Master Database. The PULSE_VOLTAGE source could be an option since it allows you to configure many parameters (rise/fall time, pulse width, period, etc).
    Are you building a circuit to take a specific measurement (for instance: Time Domain Reflectrometry)?
    Hope this helps.
    Fernando D.
    National Instruments

  • Need help: Data modeler (Win7 64 bits) doesnt save screen resize ?

    Hi,
    using datamodeler in sqldevoper, i can create subviews for relational model
    an add tables, but sometimes I want to resize screen (using zoom in, zoom out , or "fit screen" button), and then save datamodeler.
    When model is reopened, all screen sizes are lost.
    could somebody help ?

    Hi,
    All screen size states can not be saved.
    We could add such option in the future.
    Regards,
    Ivan Zahariev

  • HELP CREATIVES MODELS

    I have acquired two sound cards from creative. The problem is that I would like to keep one card, but I don't know which one is better. I try to locate specification on internet of both cards and I was only confused with difrent models. Platinum, regular, Value, SE ...
    So can anybody help me and tell me which of those two card is beter. Which card have better sound quality and less driver problems. Do they both have hardware support for EAX/EAX2.0/ADVANCED HD and so on.
    Thanks in advanced
    .model: SB0060
    chip: EMU0K-SEF
    SoundBlaster Li've!
    SN:TSB0060200753
    2.model: CT4760
    chip: EMU0K-NEF
    SoundBlaster Li've!
    SN:?
    p.s. sorry for my crappy english

    SB0060 = SoundBlaster Li've! 5.
    CT4760 = SoundBlaster Li've! 024
    The SB0060 is a newer and better card, and supports analog 5. output.
    Cat

  • Need help choosing models and upgrades

    Hi guys,
    Basically I am stuck on a air few things with deciding what models along with upgrades to get. I am stuck between getting the MBP 15 inch 2.6GHz or the Retina 15 inch 2.3GHz. For starters I would say I want to use the MBP for general stuff like office and more complex programs like SSPS, surfing the net downloading movies and music and playing games like Rome total War amongst many other games etc. However, I think I have read the Retina display does not even work with all games?
    Due to the relative low price I'm sure I will upgrade to 16 GB worth of RAM  If get the Retina MBP as you can't upgrade them further down the line (*****). I beleive with the Retina MBP there is no disk drive, so i can't directly insert DVD's or Burn files onto disks etc, but this can be overcome by buying the Apple USB Super Drive, am I correct?
    The Retina display only has 256 GB flash storage and that is kinda of low, will it more then enough for what I want to use the MBP for? What would that flash storage not be enough for?
    If I get the normal 15 inch 2.6Hz MBP then I will upgrade the screen Hi-res glossy widescreen display as I like to play games and watch movies. Is it worth upgrading the hardrive the improve seed, efficientcy and power performance?
    Overall what model would you say best suites my needs thanks?

    Actually I have been doing further research and I personally would either go with the 2.6GHz NON RETINA MBP or cough up the cash and go all out on a 2.6GHz RETINA MBP and upgrade the RAM to 16GB  and upgrade to 768GB Flash storage, I am a student as well so will get a discount which will help.
    My fears are that if I get the Retina model I will not be able to upgrade it even further, I want to keep the computer for at least a good 5 years, during those 5 to 8 years will the current upgrades be enough to keep up with the top games and programs etc? Also I have read that repairing the Retina display model is very diffcult  and it can malfunction commonly, so I am guessing I should get apple care on top of it just to be sure with this particular model?
    I am assuming that they they will bring out the new models out next year and all the chinks and bugs of the current Retina model will be fixed so to speak, of which I have read there is a few... Would it be worth buying the NON RETINA MBP and then selling and upgrading to an improved RETINA MBP model next year?
    Finally if i back up my files on a hardrive would I have to use the USP SUPER DRIVE to install files onto the RETINA MBP or can i directly do this without the USP SUPERDRIVE?
    Thanks

  • Help PI Modeling Experts -- cannot generate objects via Model Configurator

    All the SAP documentation I have been reading encourages service integration development to originate using the modeling tools.
    I was creating a custom service interface using the ProComp Interaction Model, but could not generate the configuration objects using the Model Configurator. 
    Integration Builder
    When generating the configuration scenario from the custom ES Repository Model,  my model is found u201C not configurableu201D with the following messages:
    PCIM <MyModel>: Process component <MyProcessComponent> does not contain a reference to a process component from the Enterprise Services Repository
    PCIM <MyModel>: No components assigned to process component <MyProcessComponent>.
    Enterprise Services Builder
    So, I go in the Enterprise Services Builder and try to create <MyProcessComponent> and <MyBusinessObject>. 
    In the u2018Create Objectu2019 pop-up menu,  the objects, Business Object and Process Component,  are u2018deactiveu2019.  When the deactive menu item is chosen (e.g. Process Component), I get the error message, u201CSoftware component version does not support this object type u201C.
    Question
    In another forum thread, a response suggested that SAP does not allow the creation of custom Process Components or custom Business Objects.
    Is this true?  Or is some configuration or authorization missing somewhere in my system?
    Related threads:
    [Error : software component version does not support this object type. |Error : software component version does not support this object type.;
    [Does Model Configurator in ID works for ProComp Interaction model |Does Model Configurator in ID works for ProComp Interaction model;
    Thank you.

    Hi
    We will move this thread to the [Service-Oriented Architecture|Service-Oriented Architecture (SOA) and SAP; forum. I think this is a better forum for what you are attempting to do. Hopefully you will get a better response on that forum.
    Regards
    XI/PI Moderator

  • Looking for help for model # C655-S5543

    I ran my windows 7 upgrade advisor it is telling me that I have hardware set up Version 2.1.0.3 need to update to compatable version. Please haelp, i have no idea how or where to find this
    Solved!
    Go to Solution.

    Satellite C655-S5543
    Downloads here.
    I ran my windows 7 upgrade advisor it is telling me that I have hardware set up Version 2.1.0.3 need to update to compatable version.
    Ignore the advice. That is the current version of the Toshiba HW Setup Utility for your model. Check the downloads site above.
    In any case, I recommend you do not update these things unless there is a good reason.
    -Jerry

  • Value Help for Model in java webdynpro

    I have created an OVS in web dynpro. I would like to query the database(ABAP Table in SAP R/3).
    How do I do it in webdynpro.
    Thanks and Regards,
    Narayani

    Hi Valery ,
    I tried using the ICMIQuery but there seems to be a problem. I am getting the following exception:
    "java.lang.UnsupportedOperationException: Not supported for generic queries"
    This is the code that I tried for query.
    Selectquery is the query model class that I have created.
    I have even tried without the wdcontext also.
    SelectQuery query = new SelectQuery();
    wdContext.nodeSelectQuery().bind(query);
    WDValueServices.addOVSExtension("OVSTEST",attributes,query,listener);
    Thanks.
    Narayani

  • Need help on Modeling

    Hi BW Experts,
    Currently i am using 2 ODS which is having header data and Item data ODS.
    Header data ODS contains all the data related to header information.
    Item ODS contains only the data related to Item (Material)
    Sample data in header ODS.
    Service_No______Created_date
    80001___________10/10/2009
    80002___________11/10/2009
    Sample data in Item ODS.
    Service_No______Material
    80001___________MAT001
    80001___________MAT002
    I have created Infoset on header ODS and Item ODS
    After running the query i am getting the data as
    Service_no________Created_date_______material
    80001_____________10/10/2009_________MAT001
    _____________________________________MAT002
    The Service Order No 80002 is missing in the report.Because service_no 80002 is not available in Item ODS.
    in this Case, If i use multiprovider, i will not get data for material in the report.Because the info object material is not available in Header ODS.
    In this case, how can i proceed further.
    pls help on designing.
    Thanks,
    Siva.

    Hi,
    thanks for ur reply.
    Pls tell which join condition i need to use to get both Service numbers (80001 and 80002)
    Thanks in advance.
    Thanks,
    Siva.

Maybe you are looking for

  • In a loop to put in password into yahoo games even though I am signed into Yahoo for my email

    I deleted some cookies in yahoo. Now when I am signed into yahoo and try to play a Yahoo game I get stuck in a loop where I am being asked to enter my password. I have reset my password. I have even created a new account and password. Nothing is work

  • Problem with WebService to Create Interaction Activity

    Hi everybody, I am currently trying to create a new Interaction Activity using WSNavigator. However, I haven´t managed referencing an existing account. I always get the answer "Enter   Activity partner".  The Interaction Activity can be created, but

  • Prime Infrastructure 1.4 + AVC

    Hi, can somebody help me how to make AVC statistics running in PI 1.4? I've installed assurance license with 50 devices, set monitor and exporter on WLC (running version 7.6) but still I cannot see any application statistics under Detail Dashboards.

  • HT3371 2012 13 Macbook Pro has battery service warning

    I have a 2012 13 Macbook Pro and already got a battery service warning, should I take it to get it check if everything is still good?

  • Updating JVM (using IIS and Coldfusion)

    I recently created my first java class and compiled it using the new java SDK. I Registered my new CFX Tag and now I get this error "500 HelloColdFusion (Unsupported major.minor version 50.0)" when trying to access it in my .cfm test page. I read tha