2 Layout's for 2 screens different F4 Help needed for same program

Hi Friends,
I have 2 layouts in the selection screen the first layout is for screen 1 and the second layout is for screen 2.
I save the layouts when I run the report.
Now when I do F4 Help for the first layout it shows me all the layouts available for the program and the same thing
for Second layout too.
Is there a way for the first layout I need to get only the layouts for the first screen when I hit the F4 button
and for the second layout I need to get only the layouts for the second screen when I hit the F4 button. in order to choose
I am using REUSE_ALV_VARIANT_F4 and passing report name to is_variant and i_save = 'X'.
Thanks,
chaithanya.

I think this is not possible.
Variant names get stored on Report Name as key.

Similar Messages

  • Screen broken. Help needed to retrieve data.

    Hello.
    I hate to be a pain, however recently I broke the screen of my Nokia N97 Mini (both display and touch are broken. completely buggered I'm afraid)
    The keypad still works, however, I just can't see anything.
    Now I've just ordered a Lumia 900, however before it arrives I want to figure out how to transfer all my text messages, contacts and so on from the old phone to the new one. Does anyone have any suggestions? Places I should go or accessories I could buy?
    I know that when I moved from my E72 to the N97 there was a program which did it all for me, does the Lumia come with the same program, and if so, how do I access the N97 side of things without a screen? Thanks again for any help.
    Jess.
    Solved!
    Go to Solution.

    Hi Essjay32,
    Welcome to Nokia Support Discussions!
    What you could do is to install the latest Nokia Suite beta, which can upload your contacts to Skydrive. When you get your Lumia 900, you can just use that Microsoft account as your main account and the contact data should be there waiting for you. Unfortunately, it is not possible to transfer your messages to a Lumia phone, you can however store your existing messages on Nokia Suite. 
    When connecting your phone to your computer (using a USB cable), press the menu button, as it will set up your phone in Nokia Suite mode. After this you should be able to access your phone data and upload it to Skydrive.
    Hope this helps!
    Puigchild
    If you find this post helpful, a click upon the white star at bottom would always be appreciated.
    If it also solves your problem, clicking ACCEPT AS SOLUTION below it will benefit other users!

  • How to create second transport request for same programe

    Hello ,
    I created workbench transport request. The changes are done and still in development system.
    Now I have to do another change on the same program that has to be in different transport request,
    but whenever I  change something, and activate it, the changes are saved in first transport. How I can
    create another transport request for the same program without releasing the first one.
    Thanks

    Ask your basis team to provide you with a "Transport of Copies" request.
    Once you get it, add your object in this request and transport. your object will be transported and the original request will not be released. Do note that the changes will still be saved in the original request but you can still transport your object without releasing the original request.
    Edited by: Priyank Jain on Aug 12, 2010 4:12 AM

  • Error: No batch input data for screen SAPMZVKDIALOGDEMO 1000 Help Needed

    Hi Experts!
    I wrote a program for BDC. I am attaching the code herewith. When i am trying to process the session in SM35, i was getting the error: No batch input data for screen SAPMZVKDIALOGDEMO 1000. Can anyone please tell me, what am i doing wrong.
    Thanks.
    REPORT  zvkbdcdemo01.
    DATA: bdc_tab LIKE bdcdata OCCURS 6 WITH HEADER LINE.
    DATA: session LIKE apqi-groupid VALUE 'Session #1'.
    CALL FUNCTION 'BDC_OPEN_GROUP'
      EXPORTING
        client                    = sy-mandt
    *   DEST                      = FILLER8
        group                     = session
    *   HOLDDATE                  = FILLER8
    *   KEEP                      = FILLER1
        user                      = sy-uname
    *   RECORD                    = FILLER1
    *   PROG                      = SY-CPROG
    * IMPORTING
    *   QID                       =
    * EXCEPTIONS
    *   CLIENT_INVALID            = 1
    *   DESTINATION_INVALID       = 2
    *   GROUP_INVALID             = 3
    *   GROUP_IS_LOCKED           = 4
    *   HOLDDATE_INVALID          = 5
    *   INTERNAL_ERROR            = 6
    *   QUEUE_ERROR               = 7
    *   RUNNING                   = 8
    *   SYSTEM_LOCK_ERROR         = 9
    *   USER_INVALID              = 10
    *   OTHERS                    = 11
    IF sy-subrc <> 0.
    * MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
    *         WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
    ENDIF.
    PERFORM fill_bdc_tab.
    CALL FUNCTION 'BDC_INSERT'
      EXPORTING
        tcode                  = 'ZVKTR001'
    *   POST_LOCAL             = NOVBLOCAL
    *   PRINTING               = NOPRINT
    *   SIMUBATCH              = ' '
    *   CTUPARAMS              = ' '
      TABLES
        dynprotab              = bdc_tab
    * EXCEPTIONS
    *   INTERNAL_ERROR         = 1
    *   NOT_OPEN               = 2
    *   QUEUE_ERROR            = 3
    *   TCODE_INVALID          = 4
    *   PRINTING_INVALID       = 5
    *   POSTING_INVALID        = 6
    *   OTHERS                 = 7
    IF sy-subrc <> 0.
    * MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
    *         WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
    ENDIF.
    CALL FUNCTION 'BDC_CLOSE_GROUP'
    * EXCEPTIONS
    *   NOT_OPEN          = 1
    *   QUEUE_ERROR       = 2
    *   OTHERS            = 3
    IF sy-subrc <> 0.
    * MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
    *         WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
    ENDIF.
    *&      Form  fill_bdc_tab
    *       text
    FORM fill_bdc_tab.
      REFRESH bdc_tab.
      PERFORM populate_bdc_tab USING:
      '1' 'SAPMZVKDIALOGDEMO' '1000',
      ' ' 'SFLIGHT-CARRID' 'LH',
      ' ' 'SFLIGHT-CONNID' '0400',
      ' ' 'SFLIGHT-FLDATE' '07/07/2007',
      ' ' 'SFLIGHT-PRICE' '1982',
      ' ' 'SFLIGHT-CURRENCY' 'EUR',
      ' ' 'SFLIGHT-PLANETYPE' 'A310-300',
      ' ' 'BDC_OKCODE' 'CREA'.
    ENDFORM.                    "fill_bdc_tab
    *&      Form  POPULATE_BDC_TAB
    *       text
    *      -->FLAG       text
    *      -->VAR1       text
    *      -->VAR2       text
    FORM populate_bdc_tab USING flag var1 var2.
      CLEAR bdc_tab.
      IF flag = '1'.
        bdc_tab-program = var1.
        bdc_tab-dynpro = var2.
        bdc_tab-dynbegin = 'X'.
      ELSE.
        bdc_tab-fnam = var1.
        bdc_tab-fval = var2.
      ENDIF.
      APPEND bdc_tab.
    ENDFORM.                    "POPULATE_BDC_TAB

    This normally means that you are trying to insert data on a screen for which a particular field is not available.
    So check screen number, screen fields and report name. In case of screen fields, use F1, F9 (technical information), and check the name of the screen field for batch processing (all the way at th bottom of the pop-up). This can differ from actual name of the screen field.
    If all this is ok, try to create a recording of the transaction with SM37.

  • Blue screen of death help needed for MSI PM8PM-V motherboard

    I am having sudden pc hang up (BSOD) and have failed to troubleshoot by myself after searching through internet resources on this topic. Will greatly appreciate any help with this.
    The recent changes to my PC are:
    -changed the PSU
    -flashed my BIOS
    -updated my drivers.
    That is when the BSOD problem started. I tried drivers from MSI and VIA but both gave BSOD problems.
    My PC specs are:
    -Windows XP Pro Ver 2002 (SP3)
    -PM8PM-V motherboard
    -Intel Pentium D CPU 2.80 GHz
    -960 MB RAM
    -CoolerMaster 460W PSU
    -Pheonix AwardBIOS v6.00PG
    -153.38 GB IDE HardDisk
    -BenQ DVD-RW
    -Buffalo wireless LAN
    -Onboard graphics and sound
    Drivers (in chronological order):
    -Installed from MSI
    --P4M800_V30003
    --VIA4in1_MB
    --Realtek_AC97_MB
    --Realtek_Gigabit_LAN_MB
    --VIA8237_LAN_Driver_MB
    -Installed from VIA
    --VIA_HyperionPro_V524A
    --VIA_FalconIDE_V280C
    --wIShld
    --Vinyl_V700b
    I removed unused drivers from my hardware profile after this.
    Below is my minidump log:-
    *                        Bugcheck Analysis                                    *
    IRQL_NOT_LESS_OR_EQUAL (a)
    An attempt was made to access a pageable (or completely invalid) address at an
    interrupt request level (IRQL) that is too high.  This is usually
    caused by drivers using improper addresses.
    If a kernel debugger is available get the stack backtrace.
    Arguments:
    Arg1: 47585142, memory referenced
    Arg2: 00000002, IRQL
    Arg3: 00000001, bitfield :
       bit 0 : value 0 = read operation, 1 = write operation
       bit 3 : value 0 = not an execute operation, 1 = execute operation (only on chips which support this level of status)
    Arg4: 806e6a2a, address which referenced memory
    Debugging Details:
    WRITE_ADDRESS:  47585142
    CURRENT_IRQL:  2
    FAULTING_IP:
    hal!KeAcquireInStackQueuedSpinLock+3a
    806e6a2a 8902            mov     dword ptr [edx],eax
    CUSTOMER_CRASH_COUNT:  4
    DEFAULT_BUCKET_ID:  COMMON_SYSTEM_FAULT
    BUGCHECK_STR:  0xA
    PROCESS_NAME:  System
    LAST_CONTROL_TRANSFER:  from f714aa08 to 806e6a2a
    STACK_TEXT: 
    f78f3cdc f714aa08 01c9ce6b 00000001 f78f3d48 hal!KeAcquireInStackQueuedSpinLock+0x3a
    f78f3cf8 804e47d3 e8395938 00000001 80559690 Ntfs!NtfsAcquireScbForLazyWrite+0x84
    f78f3d34 804e70db 861c01e0 80564820 861c2020 nt!CcWriteBehind+0x27
    f78f3d7c 8053877d 861c01e0 00000000 861c2020 nt!CcWorkerThread+0x12f
    f78f3dac 805cff72 861c01e0 00000000 00000000 nt!ExpWorkerThread+0xef
    f78f3ddc 805460ee 8053868e 00000000 00000000 nt!PspSystemThreadStartup+0x34
    00000000 00000000 00000000 00000000 00000000 nt!KiThreadStartup+0x16
    STACK_COMMAND:  kb
    FOLLOWUP_IP:
    Ntfs!NtfsAcquireScbForLazyWrite+84
    f714aa08 8ad8            mov     bl,al
    SYMBOL_STACK_INDEX:  1
    SYMBOL_NAME:  Ntfs!NtfsAcquireScbForLazyWrite+84
    FOLLOWUP_NAME:  MachineOwner
    MODULE_NAME: Ntfs
    IMAGE_NAME:  Ntfs.sys
    DEBUG_FLR_IMAGE_TIMESTAMP:  48025be5
    FAILURE_BUCKET_ID:  0xA_Ntfs!NtfsAcquireScbForLazyWrite+84
    BUCKET_ID:  0xA_Ntfs!NtfsAcquireScbForLazyWrite+84
    Followup: MachineOwner
    eax=f78f3cd0 ebx=00000000 ecx=01c9ce9f edx=47585142 esi=01c9ce6b edi=861c2020
    eip=806e6a2a esp=f78f3cc0 ebp=f78f3cdc iopl=0         nv up ei pl nz na pe nc
    cs=0008  ss=0010  ds=0023  es=0023  fs=0030  gs=0000             efl=00010206
    hal!KeAcquireInStackQueuedSpinLock+0x3a:
    806e6a2a 8902            mov     dword ptr [edx],eax  ds:0023:47585142=????????
    ChildEBP RetAddr  Args to Child             
    f78f3cdc f714aa08 01c9ce6b 00000001 f78f3d48 hal!KeAcquireInStackQueuedSpinLock+0x3a (FPO: [0,1,0])
    f78f3cf8 804e47d3 e8395938 00000001 80559690 Ntfs!NtfsAcquireScbForLazyWrite+0x84 (FPO: [2,0,4])
    f78f3d34 804e70db 861c01e0 80564820 861c2020 nt!CcWriteBehind+0x27 (FPO: [0,8,4])
    f78f3d7c 8053877d 861c01e0 00000000 861c2020 nt!CcWorkerThread+0x12f (FPO: [Non-Fpo])
    f78f3dac 805cff72 861c01e0 00000000 00000000 nt!ExpWorkerThread+0xef (FPO: [1,6,0])
    f78f3ddc 805460ee 8053868e 00000000 00000000 nt!PspSystemThreadStartup+0x34 (FPO: [Non-Fpo])
    00000000 00000000 00000000 00000000 00000000 nt!KiThreadStartup+0x16
    start    end        module name
    804d7000 806e4000   nt       ntkrpamp.exe Tue Aug 04 22:20:04 2009 (4A784394)
    806e4000 80704d00   hal      halmacpi.dll Mon Apr 14 02:31:27 2008 (4802517F)
    bf000000 bf011600   dxg      dxg.sys      Mon Apr 14 02:38:27 2008 (48025323)
    bf012000 bf37a880   vtdisp   vtdisp.dll   Fri Sep 28 10:44:21 2007 (46FC6A85)
    bf800000 bf9c3d00   win32k   win32k.sys   Fri Aug 14 21:21:11 2009 (4A8564C7)
    bffa0000 bffe5c00   ATMFD    ATMFD.DLL    Mon Apr 14 08:09:55 2008 (4802A0D3)
    ef28a000 ef294000   mxopswd  mxopswd.sys  Sat Jan 06 09:37:29 2007 (459EFD59)
    ef45a000 ef49ae00   HTTP     HTTP.sys     Wed Oct 21 00:20:15 2009 (4ADDE33F)
    ef49b000 ef4b7dc0   SYMEVENT SYMEVENT.SYS Sat Sep 16 13:48:19 2006 (450B9023)
    ef5a0000 ef5a8780   NPDRIVER NPDRIVER.SYS Wed Sep 10 18:12:08 2003 (3F5EF8F8)
    ef6c0000 ef6d7c00   tmcomm   tmcomm.sys   Wed Aug 01 16:46:56 2007 (46B04880)
    ef97e000 ef992480   wdmaud   wdmaud.sys   Mon Apr 14 03:17:18 2008 (48025C3E)
    efb23000 efb79600   srv      srv.sys      Fri Jan 01 00:50:02 2010 (4B3CD63A)
    efba2000 efc27000   CVPNDRVA CVPNDRVA.sys Sat Nov 05 01:20:39 2005 (436B9867)
    efd8f000 efd92ee0   Aspi32   Aspi32.SYS   Tue May 07 00:43:02 2002 (3CD6B296)
    efdb7000 efde3180   mrxdav   mrxdav.sys   Mon Apr 14 02:32:42 2008 (480251CA)
    f0064000 f0067900   ndisuio  ndisuio.sys  Mon Apr 14 02:55:57 2008 (4802573D)
    f0068000 f006b760   mdc8021x mdc8021x.sys Fri Nov 21 23:54:18 2003 (3FBE352A)
    f010c000 f011ad80   sysaudio sysaudio.sys Mon Apr 14 03:15:55 2008 (48025BEB)
    f459c000 f45b3900   dump_atapi dump_atapi.sys Mon Apr 14 02:40:29 2008 (4802539D)
    f45dc000 f462bb80   avgldx86 avgldx86.sys Sun Sep 20 23:03:04 2009 (4AB64428)
    f462c000 f469b300   mrxsmb   mrxsmb.sys   Sat Dec 05 02:22:20 2009 (4B19535C)
    f469c000 f46c6e80   rdbss    rdbss.sys    Mon Apr 14 03:28:38 2008 (48025EE6)
    f46c7000 f46e8d00   afd      afd.sys      Thu Aug 14 18:04:35 2008 (48A40333)
    f46e9000 f4710c00   netbt    netbt.sys    Mon Apr 14 03:20:59 2008 (48025D1B)
    f4711000 f4736500   ipnat    ipnat.sys    Mon Apr 14 02:57:10 2008 (48025786)
    f4737000 f478d680   avgtdix  avgtdix.sys  Mon Nov 02 21:25:10 2009 (4AEEDDB6)
    f478e000 f47e6480   tcpip    tcpip.sys    Fri Jun 20 19:51:09 2008 (485B99AD)
    f47e7000 f47f9600   ipsec    ipsec.sys    Mon Apr 14 03:19:42 2008 (48025CCE)
    f64ea000 f6547f00   update   update.sys   Mon Apr 14 02:39:46 2008 (48025372)
    f6548000 f6577e80   rdpdr    rdpdr.sys    Mon Apr 14 02:32:50 2008 (480251D2)
    f6578000 f6588e00   psched   psched.sys   Mon Apr 14 02:56:36 2008 (48025764)
    f6589000 f659f580   ndiswan  ndiswan.sys  Mon Apr 14 03:20:41 2008 (48025D09)
    f65a0000 f65bae00   dne2000  dne2000.sys  Thu Jun 30 10:42:24 2005 (42C35C10)
    f65bb000 f65ce900   parport  parport.sys  Mon Apr 14 02:40:09 2008 (48025389)
    f6602000 f664c000   vaxscsi  vaxscsi.sys  Tue Jan 10 05:20:27 2006 (43C2D39B)
    f664c000 f666fa80   portcls  portcls.sys  Mon Apr 14 03:19:40 2008 (48025CCC)
    f6670000 f66a2a80   vinyl97  vinyl97.sys  Wed Jun 27 14:41:59 2007 (468206B7)
    f66a3000 f66c6200   USBPORT  USBPORT.SYS  Mon Apr 14 02:45:34 2008 (480254CE)
    f66c7000 f66e9700   ks       ks.sys       Mon Apr 14 03:16:34 2008 (48025C12)
    f66ea000 f6744f00   bcmwl5   bcmwl5.sys   Tue Jul 12 05:43:30 2005 (42D2E802)
    f6745000 f6758f00   VIDEOPRT VIDEOPRT.SYS Mon Apr 14 02:44:39 2008 (48025497)
    f6759000 f679e180   vtmini   vtmini.sys   Fri Sep 28 10:44:26 2007 (46FC6A8A)
    f6ad0000 f6ad2280   rasacd   rasacd.sys   Sat Aug 18 04:55:39 2001 (3B7D84CB)
    f709b000 f709ec80   mssmbios mssmbios.sys Mon Apr 14 02:36:45 2008 (480252BD)
    f70b3000 f70b5780   ndistapi ndistapi.sys Mon Apr 14 02:57:27 2008 (48025797)
    f70bb000 f70bed80   serenum  serenum.sys  Mon Apr 14 02:40:12 2008 (4802538C)
    f70e3000 f70fcb80   Mup      Mup.sys      Mon Apr 14 03:17:05 2008 (48025C31)
    f70fd000 f7129980   NDIS     NDIS.sys     Mon Apr 14 03:20:35 2008 (48025D03)
    f712a000 f71b6600   Ntfs     Ntfs.sys     Mon Apr 14 03:15:49 2008 (48025BE5)
    f71b7000 f71c9b00   WudfPf   WudfPf.sys   Sat Sep 16 13:29:49 2006 (450B8BCD)
    f71ca000 f71e0b00   KSecDD   KSecDD.sys   Wed Jun 24 19:18:40 2009 (4A420B90)
    f71e1000 f7200b00   fltmgr   fltmgr.sys   Mon Apr 14 02:32:58 2008 (480251DA)
    f7201000 f7218880   SCSIPORT SCSIPORT.SYS Mon Apr 14 02:40:29 2008 (4802539D)
    f7219000 f7232200   viamraid viamraid.sys Wed Nov 08 14:23:49 2006 (455177F5)
    f7233000 f724a900   atapi    atapi.sys    Mon Apr 14 02:40:29 2008 (4802539D)
    f724b000 f7270700   dmio     dmio.sys     Mon Apr 14 02:44:45 2008 (4802549D)
    f7271000 f728f880   ftdisk   ftdisk.sys   Sat Aug 18 04:52:41 2001 (3B7D8419)
    f7290000 f72a0a80   pci      pci.sys      Mon Apr 14 02:36:43 2008 (480252BB)
    f72a1000 f72ced80   ACPI     ACPI.sys     Mon Apr 14 02:36:33 2008 (480252B1)
    f72cf000 f72e6880   SPTDDRV1 SPTDDRV1.SYS Mon Apr 14 02:40:29 2008 (4802539D)
    f72e7000 f73af000   sptd     sptd.sys     Thu Sep 21 20:27:25 2006 (4512852D)
    f74b0000 f74b9180   isapnp   isapnp.sys   Mon Apr 14 02:36:40 2008 (480252B8)
    f74c0000 f74ca580   MountMgr MountMgr.sys Mon Apr 14 02:39:45 2008 (48025371)
    f74d0000 f74dcc80   VolSnap  VolSnap.sys  Mon Apr 14 02:41:00 2008 (480253BC)
    f74e0000 f74e8e00   disk     disk.sys     Mon Apr 14 02:40:46 2008 (480253AE)
    f74f0000 f74fc180   CLASSPNP CLASSPNP.SYS Mon Apr 14 03:16:21 2008 (48025C05)
    f7500000 f750e100   Lbd      Lbd.sys      Fri Aug 28 17:02:18 2009 (4A979D1A)
    f7510000 f7518de0   PxHelp20 PxHelp20.sys Thu Jun 21 06:26:00 2007 (4679A978)
    f7570000 f7578e00   intelppm intelppm.sys Mon Apr 14 02:31:31 2008 (48025183)
    f7580000 f758a480   imapi    imapi.sys    Mon Apr 14 02:40:57 2008 (480253B9)
    f7590000 f759f600   cdrom    cdrom.sys    Mon Apr 14 02:40:45 2008 (480253AD)
    f75a0000 f75ae100   redbook  redbook.sys  Mon Apr 14 02:40:27 2008 (4802539B)
    f75b0000 f75beb00   drmk     drmk.sys     Mon Apr 14 02:45:12 2008 (480254B8)
    f75c0000 f75cfc00   serial   serial.sys   Mon Apr 14 03:15:44 2008 (48025BE0)
    f75d0000 f75dcd00   i8042prt i8042prt.sys Mon Apr 14 03:17:59 2008 (48025C67)
    f75e0000 f75ec880   rasl2tp  rasl2tp.sys  Mon Apr 14 03:19:43 2008 (48025CCF)
    f75f0000 f75fa200   raspppoe raspppoe.sys Mon Apr 14 02:57:31 2008 (4802579B)
    f7600000 f760bd00   raspptp  raspptp.sys  Mon Apr 14 03:19:47 2008 (48025CD3)
    f7610000 f7618900   msgpc    msgpc.sys    Mon Apr 14 02:56:32 2008 (48025760)
    f7620000 f7629f00   termdd   termdd.sys   Mon Apr 14 02:38:36 2008 (4802532C)
    f7630000 f7639e80   NDProxy  NDProxy.SYS  Mon Apr 14 02:57:28 2008 (48025798)
    f7640000 f764e880   usbhub   usbhub.sys   Mon Apr 14 02:45:36 2008 (480254D0)
    f7660000 f7668700   wanarp   wanarp.sys   Mon Apr 14 02:57:20 2008 (48025790)
    f7670000 f7678780   netbios  netbios.sys  Mon Apr 14 02:56:01 2008 (48025741)
    f7690000 f769ae00   Fips     Fips.SYS     Mon Apr 14 02:33:27 2008 (480251F7)
    f76b0000 f76bf900   Cdfs     Cdfs.SYS     Mon Apr 14 03:14:21 2008 (48025B8D)
    f76c0000 f76cbe80   fssfltr_tdi fssfltr_tdi.sys Thu Aug 06 13:47:45 2009 (4A7A6E81)
    f7730000 f7736180   PCIIDEX  PCIIDEX.SYS  Mon Apr 14 02:40:29 2008 (4802539D)
    f7738000 f773cd00   PartMgr  PartMgr.sys  Mon Apr 14 02:40:48 2008 (480253B0)
    f7740000 f7748000   videX32  videX32.sys  Mon Apr 13 14:19:55 2009 (49E2D98B)
    f7748000 f774ed00   viaagp1  viaagp1.sys  Wed Jul 02 18:08:01 2003 (3F02AF01)
    f7780000 f7784500   watchdog watchdog.sys Mon Apr 14 02:44:59 2008 (480254AB)
    f7790000 f7794d80   bwcdrv   bwcdrv.sys   Sun Dec 21 16:21:02 2003 (3FE557EE)
    f77f8000 f77fe700   USBSTOR  USBSTOR.SYS  Mon Apr 14 02:45:37 2008 (480254D1)
    f7828000 f7830000   Afc      Afc.sys      Wed Feb 23 14:58:55 2005 (421C29AF)
    f7830000 f7835300   pfc      pfc.sys      Sat Sep 20 07:45:46 2003 (3F6B952A)
    f7838000 f783d080   usbuhci  usbuhci.sys  Mon Apr 14 02:45:34 2008 (480254CE)
    f7840000 f7847600   usbehci  usbehci.sys  Mon Apr 14 02:45:34 2008 (480254CE)
    f7848000 f7849000   fdc      fdc.sys      unavailable (00000000)
    f7850000 f7855a00   mouclass mouclass.sys Mon Apr 14 02:39:47 2008 (48025373)
    f7858000 f785e000   kbdclass kbdclass.sys Mon Apr 14 02:39:46 2008 (48025372)
    f7860000 f7864a80   TDI      TDI.SYS      Mon Apr 14 03:00:04 2008 (48025834)
    f7870000 f7874580   ptilink  ptilink.sys  Sat Aug 18 04:49:53 2001 (3B7D8371)
    f7878000 f787c080   raspti   raspti.sys   Sat Aug 18 04:55:32 2001 (3B7D84C4)
    f7888000 f788e000   crlscsi  crlscsi.SYS  Tue Nov 07 21:57:15 1995 (309F65BB)
    f7898000 f789d200   vga      vga.sys      Mon Apr 14 02:44:40 2008 (48025498)
    f78a0000 f78a4a80   Msfs     Msfs.SYS     Mon Apr 14 02:32:38 2008 (480251C6)
    f78a8000 f78af880   Npfs     Npfs.SYS     Mon Apr 14 02:32:38 2008 (480251C6)
    f78b0000 f78b6000   StarOpen StarOpen.SYS Wed Jun 28 03:15:56 2006 (44A183EC)
    f78b8000 f78bd500   avgmfx86 avgmfx86.sys Tue Oct 13 15:24:03 2009 (4AD42B13)
    f78c0000 f78c3000   BOOTVID  BOOTVID.dll  Sat Aug 18 04:49:09 2001 (3B7D8345)
    f797c000 f797e580   BUFADPT  BUFADPT.SYS  Wed Jul 06 12:52:20 2005 (42CB6384)
    f79a0000 f79a2900   Dxapi    Dxapi.sys    Sat Aug 18 04:53:19 2001 (3B7D843F)
    f79ac000 f79ae500   GEARAspiWDM GEARAspiWDM.sys Wed Jan 30 01:00:57 2008 (479F5BC9)
    f79b0000 f79b1b80   kdcom    kdcom.dll    Sat Aug 18 04:49:10 2001 (3B7D8346)
    f79b2000 f79b3100   WMILIB   WMILIB.SYS   Sat Aug 18 05:07:23 2001 (3B7D878B)
    f79b4000 f79b5500   viaide   viaide.sys   Mon Apr 14 02:40:30 2008 (4802539E)
    f79b6000 f79b7700   dmload   dmload.sys   Sat Aug 18 04:58:15 2001 (3B7D8567)
    f79ea000 f79eb100   swenum   swenum.sys   Mon Apr 14 02:39:52 2008 (48025378)
    f79ee000 f79ef280   USBD     USBD.SYS     Sat Aug 18 05:02:58 2001 (3B7D8682)
    f79f0000 f79f1f00   Fs_Rec   Fs_Rec.SYS   Sat Aug 18 04:49:37 2001 (3B7D8361)
    f79f2000 f79f3080   mnmdd    mnmdd.SYS    Sat Aug 18 04:57:28 2001 (3B7D8538)
    f79f4000 f79f5080   RDPCDD   RDPCDD.sys   Sat Aug 18 04:46:56 2001 (3B7D82C0)
    f79f6000 f79f7100   dump_WMILIB dump_WMILIB.SYS Sat Aug 18 05:07:23 2001 (3B7D878B)
    f7a38000 f7a39a80   ParVdm   ParVdm.SYS   Sat Aug 18 04:49:49 2001 (3B7D836D)
    f7ab8000 f7ab87a0   symlcbrd symlcbrd.sys Wed Oct 16 14:50:27 2002 (3DAD0C33)
    f7acd000 f7acdc00   audstub  audstub.sys  Sat Aug 18 04:59:40 2001 (3B7D85BC)
    f7b43000 f7b43d00   dxgthk   dxgthk.sys   Sat Aug 18 04:53:12 2001 (3B7D8438)
    f7bf9000 f7bf9b80   Null     Null.SYS     Sat Aug 18 04:47:39 2001 (3B7D82EB)
    Unloaded modules:
    eebe4000 eec0f000   kmixer.sys
        Timestamp: unavailable (00000000)
        Checksum:  00000000
    eebe4000 eec0f000   kmixer.sys
        Timestamp: unavailable (00000000)
        Checksum:  00000000
    eeedf000 eef0a000   kmixer.sys
        Timestamp: unavailable (00000000)
        Checksum:  00000000
    f7b98000 f7b99000   drmkaud.sys
        Timestamp: unavailable (00000000)
        Checksum:  00000000
    ef818000 ef843000   kmixer.sys
        Timestamp: unavailable (00000000)
        Checksum:  00000000
    ef95b000 ef97e000   aec.sys
        Timestamp: unavailable (00000000)
        Checksum:  00000000
    eff4c000 eff59000   DMusic.sys
        Timestamp: unavailable (00000000)
        Checksum:  00000000
    eff5c000 eff6a000   swmidi.sys
        Timestamp: unavailable (00000000)
        Checksum:  00000000
    f7a66000 f7a68000   splitter.sys
        Timestamp: unavailable (00000000)
        Checksum:  00000000
    f7680000 f7689000   processr.sys
        Timestamp: unavailable (00000000)
        Checksum:  00000000
    f7890000 f7895000   Cdaudio.SYS
        Timestamp: unavailable (00000000)
        Checksum:  00000000
    f6ad4000 f6ad7000   Sfloppy.SYS
        Timestamp: unavailable (00000000)
        Checksum:  00000000
    Closing open log file c:\debuglog3.txt

    I've done the 20x Memtest. No errors...
    Meanwhile, my pc gave the BSOD again when I pressed the shutdown button.
    Btw, is the minidump text of any use? I read elsewhere that this can pinpoint to the problem, but I don't know how to read it.
    Anyway, here's the latest minidump text, if this is of use.
    Thanks!
    *                        Bugcheck Analysis                                    *
    IRQL_NOT_LESS_OR_EQUAL (a)
    An attempt was made to access a pageable (or completely invalid) address at an
    interrupt request level (IRQL) that is too high.  This is usually
    caused by drivers using improper addresses.
    If a kernel debugger is available get the stack backtrace.
    Arguments:
    Arg1: 000000b2, memory referenced
    Arg2: 0000001c, IRQL
    Arg3: 00000000, bitfield :
       bit 0 : value 0 = read operation, 1 = write operation
       bit 3 : value 0 = not an execute operation, 1 = execute operation (only on chips which support this level of status)
    Arg4: 804fa276, address which referenced memory
    Debugging Details:
    ADDITIONAL_DEBUG_TEXT: 
    Use '!findthebuild' command to search for the target build information.
    If the build information is available, run '!findthebuild -s ; .reload' to set symbol path and load symbols.
    MODULE_NAME: nt
    FAULTING_MODULE: 804d7000 nt
    DEBUG_FLR_IMAGE_TIMESTAMP:  4b1e9e60
    READ_ADDRESS: unable to get nt!MmSpecialPoolStart
    unable to get nt!MmSpecialPoolEnd
    unable to get nt!MmPoolCodeStart
    unable to get nt!MmPoolCodeEnd
     000000b2
    CURRENT_IRQL:  1c
    FAULTING_IP:
    nt+23276
    804fa276 66394616        cmp     word ptr [esi+16h],ax
    CUSTOMER_CRASH_COUNT:  1
    DEFAULT_BUCKET_ID:  DRIVER_FAULT
    BUGCHECK_STR:  0xA
    LAST_CONTROL_TRANSFER:  from 8050a892 to 804fa276
    STACK_TEXT: 
    WARNING: Stack unwind information not available. Following frames may be wrong.
    eea76b14 8050a892 e298a580 00000000 00000000 nt+0x23276
    eea76b48 8050b432 e26420e8 856d9c18 856ac580 nt+0x33892
    eea76b6c 8051a21f 856ac580 856da7b0 856d9c01 nt+0x34432
    eea76c18 8051356f 856da7b0 856d9c18 856da8e8 nt+0x4321f
    eea76c50 805d2714 016da7b0 85706d28 40010004 nt+0x3c56f
    eea76cf0 805d27f7 40010004 eea76d4c 804ff94f nt+0xfb714
    eea76cfc 804ff94f 85706d28 eea76d48 eea76d3c nt+0xfb7f7
    eea76d4c 805416a7 00000001 00000000 eea76d64 nt+0x2894f
    eea76d64 7c90e514 badb0d00 0199fe6c 00000000 nt+0x6a6a7
    eea76d68 badb0d00 0199fe6c 00000000 00000000 0x7c90e514
    eea76d6c 0199fe6c 00000000 00000000 00000000 0xbadb0d00
    eea76d70 00000000 00000000 00000000 00000000 0x199fe6c
    STACK_COMMAND:  kb
    FOLLOWUP_IP:
    nt+23276
    804fa276 66394616        cmp     word ptr [esi+16h],ax
    SYMBOL_STACK_INDEX:  0
    SYMBOL_NAME:  nt+23276
    FOLLOWUP_NAME:  MachineOwner
    IMAGE_NAME:  ntoskrnl.exe
    BUCKET_ID:  WRONG_SYMBOLS
    Followup: MachineOwner
    eax=00000001 ebx=806e6a01 ecx=e298a580 edx=00000000 esi=0000009c edi=e1e0f728
    eip=804fa276 esp=eea76b08 ebp=eea76b14 iopl=0         nv up ei ng nz na po nc
    cs=0008  ss=0010  ds=0023  es=0023  fs=0030  gs=0000             efl=00010282
    nt+0x23276:
    804fa276 66394616        cmp     word ptr [esi+16h],ax    ds:0023:000000b2=????
    ChildEBP RetAddr  Args to Child             
    WARNING: Stack unwind information not available. Following frames may be wrong.
    eea76b14 8050a892 e298a580 00000000 00000000 nt+0x23276
    eea76b48 8050b432 e26420e8 856d9c18 856ac580 nt+0x33892
    eea76b6c 8051a21f 856ac580 856da7b0 856d9c01 nt+0x34432
    eea76c18 8051356f 856da7b0 856d9c18 856da8e8 nt+0x4321f
    eea76c50 805d2714 016da7b0 85706d28 40010004 nt+0x3c56f
    eea76cf0 805d27f7 40010004 eea76d4c 804ff94f nt+0xfb714
    eea76cfc 804ff94f 85706d28 eea76d48 eea76d3c nt+0xfb7f7
    eea76d4c 805416a7 00000001 00000000 eea76d64 nt+0x2894f
    eea76d64 7c90e514 badb0d00 0199fe6c 00000000 nt+0x6a6a7
    eea76d68 badb0d00 0199fe6c 00000000 00000000 0x7c90e514
    eea76d6c 0199fe6c 00000000 00000000 00000000 0xbadb0d00
    eea76d70 00000000 00000000 00000000 00000000 0x199fe6c
    start    end        module name
    804d7000 806e4000   nt       ntoskrnl.exe Wed Dec 09 02:43:44 2009 (4B1E9E60)
    806e4000 80704d00   hal      halmacpi.dll Mon Apr 14 02:31:27 2008 (4802517F)
    bf000000 bf011600   dxg      dxg.sys      Mon Apr 14 02:38:27 2008 (48025323)
    bf012000 bf37a880   vtdisp   vtdisp.dll   Fri Sep 28 10:44:21 2007 (46FC6A85)
    bf800000 bf9c3d00   win32k   win32k.sys   Fri Aug 14 21:21:11 2009 (4A8564C7)
    bffa0000 bffe5c00   ATMFD    ATMFD.DLL    Mon Apr 14 08:09:55 2008 (4802A0D3)
    ee5fa000 ee624180   kmixer   kmixer.sys   Mon Apr 14 02:45:07 2008 (480254B3)
    eeb2b000 eeb6be00   HTTP     HTTP.sys     Wed Oct 21 00:20:15 2009 (4ADDE33F)
    eed4c000 eed68dc0   SYMEVENT SYMEVENT.SYS Sat Sep 16 13:48:19 2006 (450B9023)
    eee07000 eee0f780   NPDRIVER NPDRIVER.SYS Wed Sep 10 18:12:08 2003 (3F5EF8F8)
    eeea7000 eeebb480   wdmaud   wdmaud.sys   Mon Apr 14 03:17:18 2008 (48025C3E)
    eef34000 eef57180   Fastfat  Fastfat.SYS  Mon Apr 14 03:14:28 2008 (48025B94)
    ef070000 ef087c00   tmcomm   tmcomm.sys   Wed Aug 01 16:46:56 2007 (46B04880)
    ef290000 ef2e6600   srv      srv.sys      Fri Jan 01 00:50:02 2010 (4B3CD63A)
    ef30f000 ef394000   CVPNDRVA CVPNDRVA.sys Sat Nov 05 01:20:39 2005 (436B9867)
    ef4c8000 ef4cbee0   Aspi32   Aspi32.SYS   Tue May 07 00:43:02 2002 (3CD6B296)
    ef524000 ef550180   mrxdav   mrxdav.sys   Mon Apr 14 02:32:42 2008 (480251CA)
    ef579000 ef587d80   sysaudio sysaudio.sys Mon Apr 14 03:15:55 2008 (48025BEB)
    ef7c9000 ef7cc900   ndisuio  ndisuio.sys  Mon Apr 14 02:55:57 2008 (4802573D)
    ef7cd000 ef7d0760   mdc8021x mdc8021x.sys Fri Nov 21 23:54:18 2003 (3FBE352A)
    ef8b9000 ef8c4e80   fssfltr_tdi fssfltr_tdi.sys Thu Aug 06 13:47:45 2009 (4A7A6E81)
    f3d09000 f3d20900   dump_atapi dump_atapi.sys Mon Apr 14 02:40:29 2008 (4802539D)
    f3d49000 f3d98b80   avgldx86 avgldx86.sys Sun Sep 20 23:03:04 2009 (4AB64428)
    f3d99000 f3e08300   mrxsmb   mrxsmb.sys   Sat Dec 05 02:22:20 2009 (4B19535C)
    f3e09000 f3e33e80   rdbss    rdbss.sys    Mon Apr 14 03:28:38 2008 (48025EE6)
    f3e34000 f3e55d00   afd      afd.sys      Thu Aug 14 18:04:35 2008 (48A40333)
    f3e56000 f3e7dc00   netbt    netbt.sys    Mon Apr 14 03:20:59 2008 (48025D1B)
    f3e7e000 f3ea3500   ipnat    ipnat.sys    Mon Apr 14 02:57:10 2008 (48025786)
    f3ea4000 f3efa680   avgtdix  avgtdix.sys  Mon Nov 02 21:25:10 2009 (4AEEDDB6)
    f3efb000 f3f53480   tcpip    tcpip.sys    Fri Jun 20 19:51:09 2008 (485B99AD)
    f3f54000 f3f66600   ipsec    ipsec.sys    Mon Apr 14 03:19:42 2008 (48025CCE)
    f3f8b000 f3f8d900   Dxapi    Dxapi.sys    Sat Aug 18 04:53:19 2001 (3B7D843F)
    f6499000 f64f6f00   update   update.sys   Mon Apr 14 02:39:46 2008 (48025372)
    f64f7000 f6526e80   rdpdr    rdpdr.sys    Mon Apr 14 02:32:50 2008 (480251D2)
    f6527000 f6537e00   psched   psched.sys   Mon Apr 14 02:56:36 2008 (48025764)
    f6538000 f654e580   ndiswan  ndiswan.sys  Mon Apr 14 03:20:41 2008 (48025D09)
    f654f000 f6569e00   dne2000  dne2000.sys  Thu Jun 30 10:42:24 2005 (42C35C10)
    f656a000 f657d900   parport  parport.sys  Mon Apr 14 02:40:09 2008 (48025389)
    f65b1000 f65fb000   vaxscsi  vaxscsi.sys  Tue Jan 10 05:20:27 2006 (43C2D39B)
    f65fb000 f661ea80   portcls  portcls.sys  Mon Apr 14 03:19:40 2008 (48025CCC)
    f661f000 f6651a80   vinyl97  vinyl97.sys  Wed Jun 27 14:41:59 2007 (468206B7)
    f6652000 f6675200   USBPORT  USBPORT.SYS  Mon Apr 14 02:45:34 2008 (480254CE)
    f6676000 f6698700   ks       ks.sys       Mon Apr 14 03:16:34 2008 (48025C12)
    f6699000 f66f3f00   bcmwl5   bcmwl5.sys   Tue Jul 12 05:43:30 2005 (42D2E802)
    f66f4000 f6707f00   VIDEOPRT VIDEOPRT.SYS Mon Apr 14 02:44:39 2008 (48025497)
    f6708000 f674d180   vtmini   vtmini.sys   Fri Sep 28 10:44:26 2007 (46FC6A8A)
    f7083000 f7086c80   mssmbios mssmbios.sys Mon Apr 14 02:36:45 2008 (480252BD)
    f70a3000 f70a5780   ndistapi ndistapi.sys Mon Apr 14 02:57:27 2008 (48025797)
    f70ab000 f70aed80   serenum  serenum.sys  Mon Apr 14 02:40:12 2008 (4802538C)
    f70bb000 f70bd500   GEARAspiWDM GEARAspiWDM.sys Wed Jan 30 01:00:57 2008 (479F5BC9)
    f70e3000 f70fcb80   Mup      Mup.sys      Mon Apr 14 03:17:05 2008 (48025C31)
    f70fd000 f7129980   NDIS     NDIS.sys     Mon Apr 14 03:20:35 2008 (48025D03)
    f712a000 f71b6600   Ntfs     Ntfs.sys     Mon Apr 14 03:15:49 2008 (48025BE5)
    f71b7000 f71c9b00   WudfPf   WudfPf.sys   Sat Sep 16 13:29:49 2006 (450B8BCD)
    f71ca000 f71e0b00   KSecDD   KSecDD.sys   Wed Jun 24 19:18:40 2009 (4A420B90)
    f71e1000 f7200b00   fltmgr   fltmgr.sys   Mon Apr 14 02:32:58 2008 (480251DA)
    f7201000 f7218880   SCSIPORT SCSIPORT.SYS Mon Apr 14 02:40:29 2008 (4802539D)
    f7219000 f7232200   viamraid viamraid.sys Wed Nov 08 14:23:49 2006 (455177F5)
    f7233000 f724a900   atapi    atapi.sys    Mon Apr 14 02:40:29 2008 (4802539D)
    f724b000 f7270700   dmio     dmio.sys     Mon Apr 14 02:44:45 2008 (4802549D)
    f7271000 f728f880   ftdisk   ftdisk.sys   Sat Aug 18 04:52:41 2001 (3B7D8419)
    f7290000 f72a0a80   pci      pci.sys      Mon Apr 14 02:36:43 2008 (480252BB)
    f72a1000 f72ced80   ACPI     ACPI.sys     Mon Apr 14 02:36:33 2008 (480252B1)
    f72cf000 f72e6880   SPTDDRV1 SPTDDRV1.SYS Mon Apr 14 02:40:29 2008 (4802539D)
    f72e7000 f73af000   sptd     sptd.sys     Thu Sep 21 20:27:25 2006 (4512852D)
    f74b0000 f74b9180   isapnp   isapnp.sys   Mon Apr 14 02:36:40 2008 (480252B8)
    f74c0000 f74ca580   MountMgr MountMgr.sys Mon Apr 14 02:39:45 2008 (48025371)
    f74d0000 f74dcc80   VolSnap  VolSnap.sys  Mon Apr 14 02:41:00 2008 (480253BC)
    f74e0000 f74e8e00   disk     disk.sys     Mon Apr 14 02:40:46 2008 (480253AE)
    f74f0000 f74fc180   CLASSPNP CLASSPNP.SYS Mon Apr 14 03:16:21 2008 (48025C05)
    f7500000 f750e100   Lbd      Lbd.sys      Fri Aug 28 17:02:18 2009 (4A979D1A)
    f7510000 f7518de0   PxHelp20 PxHelp20.sys Thu Jun 21 06:26:00 2007 (4679A978)
    f7570000 f7578e00   intelppm intelppm.sys Mon Apr 14 02:31:31 2008 (48025183)
    f7580000 f758a480   imapi    imapi.sys    Mon Apr 14 02:40:57 2008 (480253B9)
    f7590000 f759f600   cdrom    cdrom.sys    Mon Apr 14 02:40:45 2008 (480253AD)
    f75a0000 f75ae100   redbook  redbook.sys  Mon Apr 14 02:40:27 2008 (4802539B)
    f75b0000 f75beb00   drmk     drmk.sys     Mon Apr 14 02:45:12 2008 (480254B8)
    f75d0000 f75dfc00   serial   serial.sys   Mon Apr 14 03:15:44 2008 (48025BE0)
    f75e0000 f75ecd00   i8042prt i8042prt.sys Mon Apr 14 03:17:59 2008 (48025C67)
    f75f0000 f75fc880   rasl2tp  rasl2tp.sys  Mon Apr 14 03:19:43 2008 (48025CCF)
    f7600000 f760a200   raspppoe raspppoe.sys Mon Apr 14 02:57:31 2008 (4802579B)
    f7610000 f761bd00   raspptp  raspptp.sys  Mon Apr 14 03:19:47 2008 (48025CD3)
    f7620000 f7628900   msgpc    msgpc.sys    Mon Apr 14 02:56:32 2008 (48025760)
    f7630000 f7639f00   termdd   termdd.sys   Mon Apr 14 02:38:36 2008 (4802532C)
    f7640000 f7649e80   NDProxy  NDProxy.SYS  Mon Apr 14 02:57:28 2008 (48025798)
    f7650000 f765e880   usbhub   usbhub.sys   Mon Apr 14 02:45:36 2008 (480254D0)
    f7670000 f7678700   wanarp   wanarp.sys   Mon Apr 14 02:57:20 2008 (48025790)
    f7680000 f7688780   netbios  netbios.sys  Mon Apr 14 02:56:01 2008 (48025741)
    f76a0000 f76aae00   Fips     Fips.SYS     Mon Apr 14 02:33:27 2008 (480251F7)
    f7720000 f772f900   Cdfs     Cdfs.SYS     Mon Apr 14 03:14:21 2008 (48025B8D)
    f7730000 f7736180   PCIIDEX  PCIIDEX.SYS  Mon Apr 14 02:40:29 2008 (4802539D)
    f7738000 f773cd00   PartMgr  PartMgr.sys  Mon Apr 14 02:40:48 2008 (480253B0)
    f7740000 f7748000   videX32  videX32.sys  Mon Apr 13 14:19:55 2009 (49E2D98B)
    f7748000 f774ed00   viaagp1  viaagp1.sys  Wed Jul 02 18:08:01 2003 (3F02AF01)
    f7778000 f777d500   avgmfx86 avgmfx86.sys Tue Oct 13 15:24:03 2009 (4AD42B13)
    f77e8000 f77ec500   watchdog watchdog.sys Mon Apr 14 02:44:59 2008 (480254AB)
    f7800000 f7804d80   bwcdrv   bwcdrv.sys   Sun Dec 21 16:21:02 2003 (3FE557EE)
    f7818000 f7820000   Afc      Afc.sys      Wed Feb 23 14:58:55 2005 (421C29AF)
    f7820000 f7825300   pfc      pfc.sys      Sat Sep 20 07:45:46 2003 (3F6B952A)
    f7828000 f782d080   usbuhci  usbuhci.sys  Mon Apr 14 02:45:34 2008 (480254CE)
    f7830000 f7837600   usbehci  usbehci.sys  Mon Apr 14 02:45:34 2008 (480254CE)
    f7838000 f7839000   fdc      fdc.sys      unavailable (00000000)
    f7840000 f7845a00   mouclass mouclass.sys Mon Apr 14 02:39:47 2008 (48025373)
    f7848000 f784e000   kbdclass kbdclass.sys Mon Apr 14 02:39:46 2008 (48025372)
    f7850000 f7854a80   TDI      TDI.SYS      Mon Apr 14 03:00:04 2008 (48025834)
    f7860000 f7864580   ptilink  ptilink.sys  Sat Aug 18 04:49:53 2001 (3B7D8371)
    f7868000 f786c080   raspti   raspti.sys   Sat Aug 18 04:55:32 2001 (3B7D84C4)
    f7880000 f7885000   flpydisk flpydisk.sys Mon Apr 14 02:40:24 2008 (48025398)
    f7888000 f788e000   crlscsi  crlscsi.SYS  Tue Nov 07 21:57:15 1995 (309F65BB)
    f7898000 f789d200   vga      vga.sys      Mon Apr 14 02:44:40 2008 (48025498)
    f78a0000 f78a4a80   Msfs     Msfs.SYS     Mon Apr 14 02:32:38 2008 (480251C6)
    f78a8000 f78af880   Npfs     Npfs.SYS     Mon Apr 14 02:32:38 2008 (480251C6)
    f78b0000 f78b6000   StarOpen StarOpen.SYS Wed Jun 28 03:15:56 2006 (44A183EC)
    f78c0000 f78c3000   BOOTVID  BOOTVID.dll  Sat Aug 18 04:49:09 2001 (3B7D8345)
    f7984000 f7986280   rasacd   rasacd.sys   Sat Aug 18 04:55:39 2001 (3B7D84CB)
    f79a4000 f79a6580   BUFADPT  BUFADPT.SYS  Wed Jul 06 12:52:20 2005 (42CB6384)
    f79b0000 f79b1b80   kdcom    kdcom.dll    Sat Aug 18 04:49:10 2001 (3B7D8346)
    f79b2000 f79b3100   WMILIB   WMILIB.SYS   Sat Aug 18 05:07:23 2001 (3B7D878B)
    f79b4000 f79b5500   viaide   viaide.sys   Mon Apr 14 02:40:30 2008 (4802539E)
    f79b6000 f79b7700   dmload   dmload.sys   Sat Aug 18 04:58:15 2001 (3B7D8567)
    f79f2000 f79f3100   swenum   swenum.sys   Mon Apr 14 02:39:52 2008 (48025378)
    f79fa000 f79fb280   USBD     USBD.SYS     Sat Aug 18 05:02:58 2001 (3B7D8682)
    f7a06000 f7a07f00   Fs_Rec   Fs_Rec.SYS   Sat Aug 18 04:49:37 2001 (3B7D8361)
    f7a08000 f7a09080   mnmdd    mnmdd.SYS    Sat Aug 18 04:57:28 2001 (3B7D8538)
    f7a0a000 f7a0b080   RDPCDD   RDPCDD.sys   Sat Aug 18 04:46:56 2001 (3B7D82C0)
    f7a4e000 f7a4fa80   ParVdm   ParVdm.SYS   Sat Aug 18 04:49:49 2001 (3B7D836D)
    f7a60000 f7a61100   dump_WMILIB dump_WMILIB.SYS Sat Aug 18 05:07:23 2001 (3B7D878B)
    f7b03000 f7b03c00   audstub  audstub.sys  Sat Aug 18 04:59:40 2001 (3B7D85BC)
    f7b26000 f7b267a0   symlcbrd symlcbrd.sys Wed Oct 16 14:50:27 2002 (3DAD0C33)
    f7bc8000 f7bc8d00   dxgthk   dxgthk.sys   Sat Aug 18 04:53:12 2001 (3B7D8438)
    f7beb000 f7bebb80   Null     Null.SYS     Sat Aug 18 04:47:39 2001 (3B7D82EB)
    Unloaded modules:
    ee6c5000 ee6f0000   kmixer.sys
        Timestamp: unavailable (00000000)
        Checksum:  00000000
    ee7e0000 ee80b000   kmixer.sys
        Timestamp: unavailable (00000000)
        Checksum:  00000000
    f7bbc000 f7bbd000   drmkaud.sys
        Timestamp: unavailable (00000000)
        Checksum:  00000000
    eed69000 eed94000   kmixer.sys
        Timestamp: unavailable (00000000)
        Checksum:  00000000
    eefc8000 eefd5000   DMusic.sys
        Timestamp: unavailable (00000000)
        Checksum:  00000000
    eefd8000 eefe6000   swmidi.sys
        Timestamp: unavailable (00000000)
        Checksum:  00000000
    eedbc000 eeddf000   aec.sys
        Timestamp: unavailable (00000000)
        Checksum:  00000000
    f79c6000 f79c8000   splitter.sys
        Timestamp: unavailable (00000000)
        Checksum:  00000000
    f7690000 f7699000   processr.sys
        Timestamp: unavailable (00000000)
        Checksum:  00000000
    f7890000 f7895000   Cdaudio.SYS
        Timestamp: unavailable (00000000)
        Checksum:  00000000
    f7980000 f7983000   Sfloppy.SYS
        Timestamp: unavailable (00000000)
        Checksum:  00000000
    Closing open log file c:\debuglog4.txt

  • Screen compatabil​ity help needed

    Hi,
    I have used the T400 for last 4 years and still like it as my laptop.  I like it so much in fact that I have just about worn mine out (usb's don't work, keys are wearing out, etc).  I recently purchased a very lightly used one on ebay and would like to migrate all my stuff over there and have the joy of a fully functioning computer.  
    One problem - the newer T400's LED screen just is not very bright - not nearly as bright as my older T400.  So I would like to switch screens.  I have watched a video on youtube and it seems manageable to do myself, but it is slightly risky that I can end up really breaking something.  So before I do it, I want to try to verify that the screens are compatable.  I have noticed that the upper bezel (I think that is what it is called - it is the part of the screen frame that hold the thinklight and camera) is slightly wider than mine.  Strange.
    I have measured the screens and they appear identical.  My current computer is a type 7417 and the new one is a 2768.  Can anyone tell me if my screens can be switched without issues?
    Thanks for any help!
    Jason

    @jasvid...
    you should edit your serial numbers out of your last post.
    English Community   Deutsche Community   Comunidad en Español   Русскоязычное Сообщество
    Community Resources: Participation Rules • Images in posts • Search (Advanced) • Private Messaging
    PM requests for individual support are not answered. If a post solves your issue, please mark it so.
    X1C3 Helix X220 X301 X200T T61p T60p Y3P • T520 T420 T510 T400 R400 T61 Y2P Y13
    I am not a Lenovo employee.

  • ITunes charged twice for same program on 2 ipads

    I purchased GarageBand on my new ipad2. Then my old iPad went to my wife and she wanted GarageBand. So I downloaded it again on my old iPad. We only have one iTunes acct. which stated some where I could put purchases on up to three devices. What am I doing wrong or am I misunderstanding how it works?

    You shouldn't be charged for downloading an app with an account that has already purchased that app, however it is only after you click the link to "Buy" that you will be told that you have already purchased it, but can download again if you want.
    If you have been charged twice, and didn't inadvertently use a separate account for each purchase then open your account history in iTunes and use the "Report a problem" link attached to the purchase.
    BTW You can authorize up to five different computers at any one time for each account. Each iDevice can hold protected content from up to five different accounts at any one time. The number of different iDevices that hold content from any given account is not restricted.
    tt2

  • Gray screen at startup - Help needed

    Last night during a boot-up on my MacBook Pro, I powered the system down by holding down the power button. (I had wanted to boot to Windows and had forgotten to hold down option) When I restarted with the option key pressed, all I saw was a gray screen.
    I've tried seemingly everything - putting in install CD and holding down C; install CD and holding down D; safe mode, verbose mode, single user mode; SMC reset; NVRAM reset.
    All of these just give me a gray screen. The only two exceptions: holding down option upon startup does put a moveable mouse arrow on the screen. Also, when trying to reset the NVRAM, I never heard the two beeps -- the computer just started turning itself off and on (over and over until I released the keys).
    Any suggestions for other things to try?
    thanks!

    I recently had the same problem. I was playing a certain MMO, when it suddenly froze. I was in fullscreen mode, and none of the key-combos would exit or minimize, so I held down the power button to shut it off. When I tried to turn it back on, it made the "ding" noise and got stuck at a gray screen, no apple logo.
    I did everything I could think of, even tried booting from the CD, even plugging the HD into another computer(which failed to recognize it).
    Anyway, what I wanted to say was, I got frustrated and left the CD in the drive when it was stuck on the gray screen for about 5 minutes, and when I came back, it had booted from the CD. Why it took so long, I have no idea.
    I managed to run the disk utility and did a "verify disk." Here's what it said:
    Verify and Repair disk "disk0s2"
    Checking HFS Plus volume.
    Invalid node structure
    Invalid B-tree node size
    Invalid node structure
    Invalid B-tree node size
    Volume check failed.
    Error: The underlying task reported failure on exit
    1 HFS volume checked
    1 volume could not be repaired because of an error
    Sounds like a messed up HD to me. Is there any way to salvage the info on it? Or is the file structure too messed up for that? Also, I'm hoping this isn't a physical problem...
    I'll postpone reformatting and reinstalling until I try to salvage what I can.

  • Logic pro x keeps crashing when loading different projects, help needed if poss...

    Hi guys, hope someone can help. Logic pro x keeps crashing but only when loading up certain projects. It's getting pretty annoying. I've tried to update everything that i can think of to it's newest update. I bought the macbook pro 15" retina 2.3 a couple of months ago. I run quite alot of different plugins. I have no idea about crash logs but i can put one up in another post if that helps?
    Any ideas would be apprreciated!!!
    I'm running logic pro x and pro tools 11 with mostly waves and komplete ultimate 9 but tons of other stuff too and it is a macbook pro 2013 15" retina display with 16gig of ram, 512 hard drive

    Process:         Logic Pro X [420]
    Path:            /Applications/Logic Pro X.app/Contents/MacOS/Logic Pro X
    Identifier:      com.apple.logic10
    Version:         10.0.5 (3130.19)
    Build Info:      MALogic-3130019000000000~1
    App Item ID:     634148309
    App External ID: 86112663
    Code Type:       X86-64 (Native)
    Parent Process:  launchd [163]
    Responsible:     Logic Pro X [420]
    User ID:         501
    Date/Time:       2014-01-06 16:54:12.357 +0000
    OS Version:      Mac OS X 10.9.1 (13B3116)
    Report Version:  11
    Anonymous UUID:  884CD79A-EF10-23F5-7AFA-0406D7D6E990
    Crashed Thread:  13  ProcessThread4/1024
    Exception Type:  EXC_BAD_ACCESS (SIGSEGV)
    Exception Codes: KERN_INVALID_ADDRESS at 0x0000000000000122
    VM Regions Near 0x122:
    -->
        __TEXT                 00000001072b3000-0000000108331000 [ 16.5M] r-x/rwx SM=COW  /Applications/Logic Pro X.app/Contents/MacOS/Logic Pro X
    Thread 0:: Dispatch queue: com.apple.main-thread
    0   libsystem_kernel.dylib                  0x00007fff8ae06a1a mach_msg_trap + 10
    1   libsystem_kernel.dylib                  0x00007fff8ae05d18 mach_msg + 64
    2   com.apple.CoreGraphics                  0x00007fff8cccffc8 _CGSReenableUpdateForConnection + 91
    3   com.apple.CoreGraphics                  0x00007fff8cccfcbf CGSUpdateManager::enable_update(unsigned long long) + 267
    4   com.apple.AppKit                        0x00007fff8c0d4553 NSPerformWithScreenUpdatesDisabled + 76
    5   com.apple.AppKit                        0x00007fff8c3075e0 -[NSWindow _setModalWindowLevel] + 113
    6   com.apple.AppKit                        0x00007fff8c2fe965 -[NSWindow _setModal:] + 285
    7   com.apple.AppKit                        0x00007fff8c2fdfd4 -[NSApplication _orderFrontModalWindow:relativeToWindow:] + 614
    8   com.apple.AppKit                        0x00007fff8c2fda61 -[NSApplication _commonBeginModalSessionForWindow:relativeToWindow:modalDelegate:didEndSelector :contextInfo:] + 793
    9   com.apple.AppKit                        0x00007fff8c307438 -[NSApplication beginModalSessionForWindow:] + 37
    10  com.apple.logic10                       0x000000010776f099 0x1072b3000 + 4964505
    11  com.apple.logic10                       0x0000000107a0f77d 0x1072b3000 + 7718781
    12  com.apple.logic10                       0x0000000107a0ee6d 0x1072b3000 + 7716461
    13  com.apple.logic10                       0x0000000107a359ae 0x1072b3000 + 7874990
    14  com.apple.logic10                       0x00000001072b73bb 0x1072b3000 + 17339
    15  com.apple.logic10                       0x0000000107448e40 0x1072b3000 + 1662528
    16  com.apple.logic10                       0x0000000107497807 0x1072b3000 + 1984519
    17  com.apple.logic10                       0x00000001077a60d9 0x1072b3000 + 5189849
    18  com.apple.logic10                       0x0000000107770a0c 0x1072b3000 + 4971020
    19  com.apple.logic10                       0x0000000107775c48 0x1072b3000 + 4992072
    20  com.apple.logic10                       0x0000000107775da0 0x1072b3000 + 4992416
    21  com.apple.AppKit                        0x00007fff8c2804c1 -[NSDocument _initWithContentsOfURL:ofType:error:] + 178
    22  com.apple.AppKit                        0x00007fff8c280176 -[NSDocument initWithContentsOfURL:ofType:error:] + 239
    23  com.apple.AppKit                        0x00007fff8c45929b -[NSDocumentController makeDocumentWithContentsOfURL:ofType:error:] + 772
    24  com.apple.logic10                       0x0000000107883ea7 0x1072b3000 + 6098599
    25  com.apple.AppKit                        0x00007fff8c466e62 -[NSDocumentController(NSDeprecated) openDocumentWithContentsOfURL:display:error:] + 820
    26  com.apple.logic10                       0x000000010779a68c 0x1072b3000 + 5142156
    27  com.apple.AppKit                        0x00007fff8c347f65 __69-[NSApplication(NSAppleEventHandling) _handleAEOpenDocumentsForURLs:]_block_invoke + 1651
    28  com.apple.AppKit                        0x00007fff8bfae935 -[NSApplication _reopenWindowsAsNecessaryIncludingRestorableState:registeringAsReady:completion Handler:] + 125
    29  com.apple.AppKit                        0x00007fff8c347869 -[NSApplication(NSAppleEventHandling) _handleAEOpenDocumentsForURLs:] + 306
    30  com.apple.AppKit                        0x00007fff8bfae2bb -[NSApplication(NSAppleEventHandling) _handleCoreEvent:withReplyEvent:] + 450
    31  com.apple.Foundation                    0x00007fff9171feaa -[NSAppleEventManager dispatchRawAppleEvent:withRawReply:handlerRefCon:] + 294
    32  com.apple.Foundation                    0x00007fff9171fd1d _NSAppleEventManagerGenericHandler + 106
    33  com.apple.AE                            0x00007fff8fd60e1f aeDispatchAppleEvent(AEDesc const*, AEDesc*, unsigned int, unsigned char*) + 381
    34  com.apple.AE                            0x00007fff8fd60c32 dispatchEventAndSendReply(AEDesc const*, AEDesc*) + 31
    35  com.apple.AE                            0x00007fff8fd60b36 aeProcessAppleEvent + 315
    36  com.apple.HIToolbox                     0x00007fff8e2385f1 AEProcessAppleEvent + 56
    37  com.apple.AppKit                        0x00007fff8bfaa0f6 _DPSNextEvent + 1026
    38  com.apple.AppKit                        0x00007fff8bfa98db -[NSApplication nextEventMatchingMask:untilDate:inMode:dequeue:] + 122
    39  com.apple.AppKit                        0x00007fff8bf9d9cc -[NSApplication run] + 553
    40  com.apple.AppKit                        0x00007fff8bf88803 NSApplicationMain + 940
    41  com.apple.logic10                       0x000000010776f655 0x1072b3000 + 4965973
    42  libdyld.dylib                           0x00007fff845595fd start + 1
    Thread 1:: Dispatch queue: com.apple.libdispatch-manager
    0   libsystem_kernel.dylib                  0x00007fff8ae0b662 kevent64 + 10
    1   libdispatch.dylib                       0x00007fff872ab43d _dispatch_mgr_invoke + 239
    2   libdispatch.dylib                       0x00007fff872ab152 _dispatch_mgr_thread + 52
    Thread 2:: com.apple.NSURLConnectionLoader
    0   libsystem_kernel.dylib                  0x00007fff8ae06a1a mach_msg_trap + 10
    1   libsystem_kernel.dylib                  0x00007fff8ae05d18 mach_msg + 64
    2   com.apple.CoreFoundation                0x00007fff8ba61315 __CFRunLoopServiceMachPort + 181
    3   com.apple.CoreFoundation                0x00007fff8ba60939 __CFRunLoopRun + 1161
    4   com.apple.CoreFoundation                0x00007fff8ba60275 CFRunLoopRunSpecific + 309
    5   com.apple.Foundation                    0x00007fff91765907 +[NSURLConnection(Loader) _resourceLoadLoop:] + 348
    6   com.apple.Foundation                    0x00007fff9176570b __NSThread__main__ + 1318
    7   libsystem_pthread.dylib                 0x00007fff849fa899 _pthread_body + 138
    8   libsystem_pthread.dylib                 0x00007fff849fa72a _pthread_start + 137
    9   libsystem_pthread.dylib                 0x00007fff849fefc9 thread_start + 13
    Thread 3:: com.apple.CFSocket.private
    0   libsystem_kernel.dylib                  0x00007fff8ae0a9aa __select + 10
    1   com.apple.CoreFoundation                0x00007fff8baacd43 __CFSocketManager + 867
    2   libsystem_pthread.dylib                 0x00007fff849fa899 _pthread_body + 138
    3   libsystem_pthread.dylib                 0x00007fff849fa72a _pthread_start + 137
    4   libsystem_pthread.dylib                 0x00007fff849fefc9 thread_start + 13
    Thread 4:
    0   libsystem_kernel.dylib                  0x00007fff8ae06a1a mach_msg_trap + 10
    1   libsystem_kernel.dylib                  0x00007fff8ae05d18 mach_msg + 64
    2   com.apple.CoreFoundation                0x00007fff8ba61315 __CFRunLoopServiceMachPort + 181
    3   com.apple.CoreFoundation                0x00007fff8ba60939 __CFRunLoopRun + 1161
    4   com.apple.CoreFoundation                0x00007fff8ba60275 CFRunLoopRunSpecific + 309
    5   com.apple.Foundation                    0x00007fff91767a7c -[NSRunLoop(NSRunLoop) runMode:beforeDate:] + 253
    6   com.apple.Foundation                    0x00007fff917b002b -[NSRunLoop(NSRunLoop) runUntilDate:] + 78
    7   com.apple.logic10                       0x00000001074af349 0x1072b3000 + 2081609
    8   libsystem_pthread.dylib                 0x00007fff849fa899 _pthread_body + 138
    9   libsystem_pthread.dylib                 0x00007fff849fa72a _pthread_start + 137
    10  libsystem_pthread.dylib                 0x00007fff849fefc9 thread_start + 13
    Thread 5:: SeqTimer
    0   libsystem_kernel.dylib                  0x00007fff8ae0a716 __psynch_cvwait + 10
    1   libsystem_pthread.dylib                 0x00007fff849fcc77 _pthread_cond_wait + 787
    2   com.apple.CoreServices.CarbonCore          0x00007fff8829ec37 TSWaitOnConditionTimedRelative + 148
    3   com.apple.CoreServices.CarbonCore          0x00007fff8829e859 TSWaitOnSemaphoreCommon + 424
    4   com.apple.CoreServices.CarbonCore          0x00007fff88280e09 TimerThread + 87
    5   libsystem_pthread.dylib                 0x00007fff849fa899 _pthread_body + 138
    6   libsystem_pthread.dylib                 0x00007fff849fa72a _pthread_start + 137
    7   libsystem_pthread.dylib                 0x00007fff849fefc9 thread_start + 13
    Thread 6:
    0   libsystem_kernel.dylib                  0x00007fff8ae06a1a mach_msg_trap + 10
    1   libsystem_kernel.dylib                  0x00007fff8ae05d18 mach_msg + 64
    2   com.apple.audio.midi.CoreMIDI           0x0000000108fff5a7 XServerMachPort::ReceiveMessage(int&, void*, int&) + 125
    3   com.apple.audio.midi.CoreMIDI           0x000000010901a1c1 MIDIProcess::RunMIDIInThread() + 121
    4   com.apple.audio.midi.CoreMIDI           0x000000010900063c XThread::RunHelper(void*) + 10
    5   com.apple.audio.midi.CoreMIDI           0x00000001090002a1 CAPThread::Entry(CAPThread*) + 109
    6   libsystem_pthread.dylib                 0x00007fff849fa899 _pthread_body + 138
    7   libsystem_pthread.dylib                 0x00007fff849fa72a _pthread_start + 137
    8   libsystem_pthread.dylib                 0x00007fff849fefc9 thread_start + 13
    Thread 7:: ExtendedAudioFileScheduler::WorkerThreadProc
    0   libsystem_kernel.dylib                  0x00007fff8ae0a716 __psynch_cvwait + 10
    1   libsystem_pthread.dylib                 0x00007fff849fcc3b _pthread_cond_wait + 727
    2   com.apple.music.apps.MAFiles            0x000000010acb99bb ExtendedAudioFileScheduler::WorkerThreadProc() + 123
    3   com.apple.music.apps.MAFiles            0x000000010acb9659 ExtendedAudioFileScheduler::WorkerThreadProc(void*) + 9
    4   libsystem_pthread.dylib                 0x00007fff849fa899 _pthread_body + 138
    5   libsystem_pthread.dylib                 0x00007fff849fa72a _pthread_start + 137
    6   libsystem_pthread.dylib                 0x00007fff849fefc9 thread_start + 13
    Thread 8:: ExtendedAudioFileScheduler::WorkerThreadProc
    0   libsystem_kernel.dylib                  0x00007fff8ae0a716 __psynch_cvwait + 10
    1   libsystem_pthread.dylib                 0x00007fff849fcc3b _pthread_cond_wait + 727
    2   com.apple.music.apps.MAFiles            0x000000010acb99bb ExtendedAudioFileScheduler::WorkerThreadProc() + 123
    3   com.apple.music.apps.MAFiles            0x000000010acb9659 ExtendedAudioFileScheduler::WorkerThreadProc(void*) + 9
    4   libsystem_pthread.dylib                 0x00007fff849fa899 _pthread_body + 138
    5   libsystem_pthread.dylib                 0x00007fff849fa72a _pthread_start + 137
    6   libsystem_pthread.dylib                 0x00007fff849fefc9 thread_start + 13
    Thread 9:: com.apple.audio.IOThread.client
    0   libsystem_kernel.dylib                  0x00007fff8ae06a1a mach_msg_trap + 10
    1   libsystem_kernel.dylib                  0x00007fff8ae05d18 mach_msg + 64
    2   com.apple.audio.CoreAudio               0x00007fff8b27e918 HALB_MachPort::SendMessageWithReply(unsigned int, unsigned int, unsigned int, unsigned int, mach_msg_header_t*, bool, unsigned int) + 98
    3   com.apple.audio.CoreAudio               0x00007fff8b27e8a6 HALB_MachPort::SendSimpleMessageWithSimpleReply(unsigned int, unsigned int, int, int&, bool, unsigned int) + 42
    4   com.apple.audio.CoreAudio               0x00007fff8b27d02e HALC_ProxyIOContext::IOWorkLoop() + 950
    5   com.apple.audio.CoreAudio               0x00007fff8b27cbcd HALC_ProxyIOContext::IOThreadEntry(void*) + 97
    6   com.apple.audio.CoreAudio               0x00007fff8b27ca8d HALB_IOThread::Entry(void*) + 75
    7   libsystem_pthread.dylib                 0x00007fff849fa899 _pthread_body + 138
    8   libsystem_pthread.dylib                 0x00007fff849fa72a _pthread_start + 137
    9   libsystem_pthread.dylib                 0x00007fff849fefc9 thread_start + 13
    Thread 10:: ProcessThread1/1024
    0   GenericMacIntel.dylib                   0x000000011113eab7 void RVerbProcess<float>(WPAPI_1::WavesSoundBuf*, WPAPI_1::WavesSoundBuf*, int, int, int, char*, char*, WPAPI_1::ExternStruct*) + 5543
    1   GenericMacIntel.dylib                   0x000000011113b903 RRVSproc + 83
    2   GenericMacIntel.dylib                   0x0000000121ba099b MultiParallelProcessType<float, 1, 2>::NoneGeneric_ProcessFunc(WPAPI_1::WavesSoundBuf*, int, int, int, WPAPI_1::WavesSoundBuf*, char*, char*, WPAPI_1::ExternStruct*, WPAPI_1::sNativeShellInfo*) + 4923
    3   GenericMacIntel.dylib                   0x0000000121b8fe07 MuiltiParallelProcessTypeFunc + 4583
    4   com.WavesAudio.WaveShell-AU.9.2.80          0x00000001205170c1 WCWaveShell_AU_Base::BaseProcessBufferLists(unsigned int&, AudioBufferList const*, AudioBufferList const*, AudioBufferList*, unsigned int) + 1285
    5   com.WavesAudio.WaveShell-AU.9.2.80          0x00000001205172bc WCWaveShell_AU_Base::BaseRender(unsigned int&, AudioTimeStamp const&, unsigned int) + 464
    6   com.WavesAudio.WaveShell-AU.9.2.80          0x0000000120504978 AUBase::DoRenderBus(unsigned int&, AudioTimeStamp const&, unsigned int, AUOutputElement*, unsigned int, AudioBufferList&) + 128
    7   com.WavesAudio.WaveShell-AU.9.2.80          0x0000000120502031 AUBase::DoRender(unsigned int&, AudioTimeStamp const&, unsigned int, unsigned int, AudioBufferList&) + 377
    8   com.WavesAudio.WaveShell-AU.9.2.80          0x00000001205053cf AUBase::ComponentEntryDispatch(ComponentParameters*, AUBase*) + 819
    9   com.WavesAudio.WaveShell-AU.9.2.80          0x000000012050ad5c ComponentEntryPoint<WCWaveShell_AU_Plugin>::Dispatch(ComponentParameters*, WCWaveShell_AU_Plugin*) + 110
    10  com.apple.audio.toolbox.AudioToolbox          0x00007fff898c8c47 _AT_AudioUnitRender + 204
    11  com.apple.music.apps.MAAudioEngine          0x000000010ae3fd7f CMDAudioUnit::Process(MDPlugInputBusList const*, MDPlugOutputBusList const*, long, long, long, float const*, eProcessLevel) + 3519
    12  com.apple.music.apps.MAAudioEngine          0x000000010adcf37a MDPlug::_Process(MDPlugInputBusList const*, MDPlugOutputBusList const*, long, long, long, float const*, eProcessLevel) + 1370
    13  com.apple.music.apps.MAAudioEngine          0x000000010ada3801 MD::PluginProcess(MDProcInfo*, MDPlug*, float const*, long, long, long, eProcessLevel) + 3921
    14  com.apple.music.apps.MAAudioEngine          0x000000010ada6f23 MD::StreamProcessing(eProcessLevel, long, long, long) + 10163
    15  com.apple.music.apps.MAAudioEngine          0x000000010ada86b1 MD::Process(eProcessLevel) + 2289
    16  com.apple.music.apps.MAAudioEngine          0x000000010adaea58 MD::CallProcessThread1(void*) + 248
    17  libsystem_pthread.dylib                 0x00007fff849fa899 _pthread_body + 138
    18  libsystem_pthread.dylib                 0x00007fff849fa72a _pthread_start + 137
    19  libsystem_pthread.dylib                 0x00007fff849fefc9 thread_start + 13
    Thread 11:: ProcessThread2/1024
    0   libsystem_kernel.dylib                  0x00007fff8ae06a56 semaphore_wait_trap + 10
    1   com.apple.music.apps.MAAudioEngine          0x000000010adaed40 MD::CallProcessThread2(void*) + 448
    2   libsystem_pthread.dylib                 0x00007fff849fa899 _pthread_body + 138
    3   libsystem_pthread.dylib                 0x00007fff849fa72a _pthread_start + 137
    4   libsystem_pthread.dylib                 0x00007fff849fefc9 thread_start + 13
    Thread 12:: ProcessThread3/1024
    0   com.xlnaudio.addictivedrumsvstau          0x000000013f1b406b cAESamplePlayer::RenderMono(float, float const*, float*, float, float, float) + 587
    1   com.xlnaudio.addictivedrumsvstau          0x000000013f1b4333 cAEDirectChain::RenderMix(float, float const*, float, float, bool, bool, float const*, float, float, float*) + 259
    2   com.xlnaudio.addictivedrumsvstau          0x000000013f1b5983 cAEVoice::RenderForMixer(bool*, float* restrict*, float*, float*, float*, float*) + 211
    3   com.xlnaudio.addictivedrumsvstau          0x000000013f1b6e89 cAEVoiceManager::RenderForMixer(bool*, float* restrict*, float*, float*, float*, float*) + 1033
    4   com.xlnaudio.addictivedrumsvstau          0x000000013f1b976d cXDAudioEngine::RenderOneBatch() + 1229
    5   com.xlnaudio.addictivedrumsvstau          0x000000013f1ba3bd cXDAudioEngine::RenderAudio(int, float**, bool*) + 221
    6   com.xlnaudio.addictivedrumsvstau          0x000000013f16094d cXDVST::processReplacing(float**, float**, int) + 93
    7   com.xlnaudio.addictivedrumsvstau          0x000000013f2942bc SymbiosisComponent::renderOutput(int, float const* const*, float**, bool) + 188
    8   com.xlnaudio.addictivedrumsvstau          0x000000013f29452b SymbiosisComponent::render(unsigned int*, AudioTimeStamp const*, unsigned int, unsigned int, AudioBufferList*) + 491
    9   com.xlnaudio.addictivedrumsvstau          0x000000013f296b74 SymbiosisComponent::dispatch(ComponentParameters*) + 1124
    10  com.xlnaudio.addictivedrumsvstau          0x000000013f2970ce SymbiosisEntry + 430
    11  com.apple.audio.toolbox.AudioToolbox          0x00007fff898c8c47 _AT_AudioUnitRender + 204
    12  com.apple.music.apps.MAAudioEngine          0x000000010ae3fd7f CMDAudioUnit::Process(MDPlugInputBusList const*, MDPlugOutputBusList const*, long, long, long, float const*, eProcessLevel) + 3519
    13  com.apple.music.apps.MAAudioEngine          0x000000010adcf37a MDPlug::_Process(MDPlugInputBusList const*, MDPlugOutputBusList const*, long, long, long, float const*, eProcessLevel) + 1370
    14  com.apple.music.apps.MAAudioEngine          0x000000010ada3801 MD::PluginProcess(MDProcInfo*, MDPlug*, float const*, long, long, long, eProcessLevel) + 3921
    15  com.apple.music.apps.MAAudioEngine          0x000000010ada6f23 MD::StreamProcessing(eProcessLevel, long, long, long) + 10163
    16  com.apple.music.apps.MAAudioEngine          0x000000010ada86b1 MD::Process(eProcessLevel) + 2289
    17  com.apple.music.apps.MAAudioEngine          0x000000010adaee8e MD::CallProcessThread3(void*) + 254
    18  libsystem_pthread.dylib                 0x00007fff849fa899 _pthread_body + 138
    19  libsystem_pthread.dylib                 0x00007fff849fa72a _pthread_start + 137
    20  libsystem_pthread.dylib                 0x00007fff849fefc9 thread_start + 13
    Thread 13 Crashed:: ProcessThread4/1024
    0   com.apple.music.apps.MAAudioEngine          0x000000010ada2ac3 MD::PluginProcess(MDProcInfo*, MDPlug*, float const*, long, long, long, eProcessLevel) + 531
    1   com.apple.music.apps.MAAudioEngine          0x000000010ada6f23 MD::StreamProcessing(eProcessLevel, long, long, long) + 10163
    2   com.apple.music.apps.MAAudioEngine          0x000000010ada86b1 MD::Process(eProcessLevel) + 2289
    3   com.apple.music.apps.MAAudioEngine          0x000000010adaf09e MD::CallProcessThread4(void*) + 254
    4   libsystem_pthread.dylib                 0x00007fff849fa899 _pthread_body + 138
    5   libsystem_pthread.dylib                 0x00007fff849fa72a _pthread_start + 137
    6   libsystem_pthread.dylib                 0x00007fff849fefc9 thread_start + 13
    Thread 14:: ProcessThread5/1024
    0   libsystem_kernel.dylib                  0x00007fff8ae06a56 semaphore_wait_trap + 10
    1   com.apple.music.apps.MAAudioEngine          0x000000010adaf370 MD::CallProcessThread5(void*) + 448
    2   libsystem_pthread.dylib                 0x00007fff849fa899 _pthread_body + 138
    3   libsystem_pthread.dylib                 0x00007fff849fa72a _pthread_start + 137
    4   libsystem_pthread.dylib                 0x00007fff849fefc9 thread_start + 13
    Thread 15:: ProcessThread6/1024
    0   libsystem_kernel.dylib                  0x00007fff8ae06a56 semaphore_wait_trap + 10
    1   com.apple.music.apps.MAAudioEngine          0x000000010adaf580 MD::CallProcessThread6(void*) + 448
    2   libsystem_pthread.dylib                 0x00007fff849fa899 _pthread_body + 138
    3   libsystem_pthread.dylib                 0x00007fff849fa72a _pthread_start + 137
    4   libsystem_pthread.dylib                 0x00007fff849fefc9 thread_start + 13
    Thread 16:: ProcessThread7/1024
    0   libsystem_kernel.dylib                  0x00007fff8ae06a56 semaphore_wait_trap + 10
    1   com.apple.music.apps.MAAudioEngine          0x000000010adaf790 MD::CallProcessThread7(void*) + 448
    2   libsystem_pthread.dylib                 0x00007fff849fa899 _pthread_body + 138
    3   libsystem_pthread.dylib                 0x00007fff849fa72a _pthread_start + 137
    4   libsystem_pthread.dylib                 0x00007fff849fefc9 thread_start + 13
    Thread 17:: ProcessThread15/1024
    0   libsystem_kernel.dylib                  0x00007fff8ae06a56 semaphore_wait_trap + 10
    1   com.apple.music.apps.MAAudioEngine          0x000000010adb0810 MD::CallProcessThread15(void*) + 448
    2   libsystem_pthread.dylib                 0x00007fff849fa899 _pthread_body + 138
    3   libsystem_pthread.dylib                 0x00007fff849fa72a _pthread_start + 137
    4   libsystem_pthread.dylib                 0x00007fff849fefc9 thread_start + 13
    Thread 18:: FileIOThread
    0   libsystem_kernel.dylib                  0x00007fff8ae06a56 semaphore_wait_trap + 10
    1   com.apple.music.apps.MAAudioEngine          0x000000010adcb42c 0x10ad9d000 + 189484
    2   libsystem_pthread.dylib                 0x00007fff849fa899 _pthread_body + 138
    3   libsystem_pthread.dylib                 0x00007fff849fa72a _pthread_start + 137
    4   libsystem_pthread.dylib                 0x00007fff849fefc9 thread_start + 13
    Thread 19:
    0   libsystem_kernel.dylib                  0x00007fff8ae0a9aa __select + 10
    1   com.apple.logic10                       0x0000000107b40b7e 0x1072b3000 + 8969086
    2   com.apple.logic10                       0x000000010774faed 0x1072b3000 + 4836077
    3   libsystem_pthread.dylib                 0x00007fff849fa899 _pthread_body + 138
    4   libsystem_pthread.dylib                 0x00007fff849fa72a _pthread_start + 137
    5   libsystem_pthread.dylib                 0x00007fff849fefc9 thread_start + 13
    Thread 20:
    0   libsystem_kernel.dylib                  0x00007fff8ae06a1a mach_msg_trap + 10
    1   libsystem_kernel.dylib                  0x00007fff8ae05d18 mach_msg + 64
    2   com.apple.CoreFoundation                0x00007fff8ba61315 __CFRunLoopServiceMachPort + 181
    3   com.apple.CoreFoundation                0x00007fff8ba60939 __CFRunLoopRun + 1161
    4   com.apple.CoreFoundation                0x00007fff8ba60275 CFRunLoopRunSpecific + 309
    5   com.apple.AppKit                        0x00007fff8c14a1ce _NSEventThread + 144
    6   libsystem_pthread.dylib                 0x00007fff849fa899 _pthread_body + 138
    7   libsystem_pthread.dylib                 0x00007fff849fa72a _pthread_start + 137
    8   libsystem_pthread.dylib                 0x00007fff849fefc9 thread_start + 13
    Thread 21:: Dispatch queue: com.apple.root.default-priority
    0   libsystem_kernel.dylib                  0x00007fff8ae06a1a mach_msg_trap + 10
    1   libsystem_kernel.dylib                  0x00007fff8ae05d18 mach_msg + 64
    2   com.apple.CoreFoundation                0x00007fff8ba61315 __CFRunLoopServiceMachPort + 181
    3   com.apple.CoreFoundation                0x00007fff8ba60939 __CFRunLoopRun + 1161
    4   com.apple.CoreFoundation                0x00007fff8ba60275 CFRunLoopRunSpecific + 309
    5   com.apple.Foundation                    0x00007fff91767a7c -[NSRunLoop(NSRunLoop) runMode:beforeDate:] + 253
    6   com.apple.AppKit                        0x00007fff8c259f06 -[NSAnimation(NSInternal) _runBlocking] + 366
    7   com.apple.AppKit                        0x00007fff8c259d76 -[NSAnimation(NSInternal) _animationThread] + 73
    8   libdispatch.dylib                       0x00007fff872ac1d7 _dispatch_call_block_and_release + 12
    9   libdispatch.dylib                       0x00007fff872a92ad _dispatch_client_callout + 8
    10  libdispatch.dylib                       0x00007fff872ab09e _dispatch_root_queue_drain + 326
    11  libdispatch.dylib                       0x00007fff872ac193 _dispatch_worker_thread2 + 40
    12  libsystem_pthread.dylib                 0x00007fff849fbef8 _pthread_wqthread + 314
    13  libsystem_pthread.dylib                 0x00007fff849fefb9 start_wqthread + 13
    Thread 22:
    0   libsystem_kernel.dylib                  0x00007fff8ae06a1a mach_msg_trap + 10
    1   libsystem_kernel.dylib                  0x00007fff8ae05d18 mach_msg + 64
    2   com.apple.CoreFoundation                0x00007fff8ba61315 __CFRunLoopServiceMachPort + 181
    3   com.apple.CoreFoundation                0x00007fff8ba60939 __CFRunLoopRun + 1161
    4   com.apple.CoreFoundation                0x00007fff8ba60275 CFRunLoopRunSpecific + 309
    5   com.apple.CoreFoundation                0x00007fff8bb159d1 CFRunLoopRun + 97
    6   com.spectrasonics.Ruby                  0x0000000128daaa8d std::vector<char*, std::allocator<char*> >::_M_insert_aux(__gnu_cxx::__normal_iterator<char**, std::vector<char*, std::allocator<char*> > >, char* const&) + 4267
    7   libsystem_pthread.dylib                 0x00007fff849fa899 _pthread_body + 138
    8   libsystem_pthread.dylib                 0x00007fff849fa72a _pthread_start + 137
    9   libsystem_pthread.dylib                 0x00007fff849fefc9 thread_start + 13
    Thread 23:
    0   libsystem_kernel.dylib                  0x00007fff8ae0a716 __psynch_cvwait + 10
    1   libsystem_pthread.dylib                 0x00007fff849fcc3b _pthread_cond_wait + 727
    2   com.spectrasonics.Ruby                  0x0000000128e7f1d4 non-virtual thunk to GOTextList::~GOTextList() + 146602
    3   com.spectrasonics.Ruby                  0x0000000128e7e3eb non-virtual thunk to GOTextList::~GOTextList() + 143041
    4   libsystem_pthread.dylib                 0x00007fff849fa899 _pthread_body + 138
    5   libsystem_pthread.dylib                 0x00007fff849fa72a _pthread_start + 137
    6   libsystem_pthread.dylib                 0x00007fff849fefc9 thread_start + 13
    Thread 24:
    0   libsystem_kernel.dylib                  0x00007fff8ae0a716 __psynch_cvwait + 10
    1   libsystem_pthread.dylib                 0x00007fff849fcc3b _pthread_cond_wait + 727
    2   com.spectrasonics.Ruby                  0x0000000128e7f1d4 non-virtual thunk to GOTextList::~GOTextList() + 146602
    3   com.spectrasonics.Ruby                  0x0000000128e7e3eb non-virtual thunk to GOTextList::~GOTextList() + 143041
    4   libsystem_pthread.dylib                 0x00007fff849fa899 _pthread_body + 138
    5   libsystem_pthread.dylib                 0x00007fff849fa72a _pthread_start + 137
    6   libsystem_pthread.dylib                 0x00007fff849fefc9 thread_start + 13
    Thread 25:
    0   libsystem_kernel.dylib                  0x00007fff8ae0a716 __psynch_cvwait + 10
    1   libsystem_pthread.dylib                 0x00007fff849fcc3b _pthread_cond_wait + 727
    2   com.spectrasonics.Ruby                  0x0000000128e7f1d4 non-virtual thunk to GOTextList::~GOTextList() + 146602
    3   com.spectrasonics.Ruby                  0x0000000128e7e3eb non-virtual thunk to GOTextList::~GOTextList() + 143041
    4   libsystem_pthread.dylib                 0x00007fff849fa899 _pthread_body + 138
    5   libsystem_pthread.dylib                 0x00007fff849fa72a _pthread_start + 137
    6   libsystem_pthread.dylib                 0x00007fff849fefc9 thread_start + 13
    Thread 26:
    0   libsystem_kernel.dylib                  0x00007fff8ae0a716 __psynch_cvwait + 10
    1   libsystem_pthread.dylib                 0x00007fff849fcc3b _pthread_cond_wait + 727
    2   com.spectrasonics.Ruby                  0x0000000128e7f1d4 non-virtual thunk to GOTextList::~GOTextList() + 146602
    3   com.spectrasonics.Ruby                  0x0000000128e7e3eb non-virtual thunk to GOTextList::~GOTextList() + 143041
    4   libsystem_pthread.dylib                 0x00007fff849fa899 _pthread_body + 138
    5   libsystem_pthread.dylib                 0x00007fff849fa72a _pthread_start + 137
    6   libsystem_pthread.dylib                 0x00007fff849fefc9 thread_start + 13
    Thread 27:
    0   libsystem_kernel.dylib                  0x00007fff8ae0a716 __psynch_cvwait + 10
    1   libsystem_pthread.dylib                 0x00007fff849fcc3b _pthread_cond_wait + 727
    2   com.spectrasonics.Ruby                  0x0000000128e7f1d4 non-virtual thunk to GOTextList::~GOTextList() + 146602
    3   com.spectrasonics.Ruby                  0x0000000128e7e3eb non-virtual thunk to GOTextList::~GOTextList() + 143041
    4   libsystem_pthread.dylib                 0x00007fff849fa899 _pthread_body + 138
    5   libsystem_pthread.dylib                 0x00007fff849fa72a _pthread_start + 137
    6   libsystem_pthread.dylib                 0x00007fff849fefc9 thread_start + 13
    Thread 28:
    0   libsystem_kernel.dylib                  0x00007fff8ae0a716 __psynch_cvwait + 10
    1   libsystem_pthread.dylib                 0x00007fff849fcc3b _pthread_cond_wait + 727
    2   com.spectrasonics.Ruby                  0x0000000128e7f1d4 non-virtual thunk to GOTextList::~GOTextList() + 146602
    3   com.spectrasonics.Ruby                  0x0000000128e7e3eb non-virtual thunk to GOTextList::~GOTextList() + 143041
    4   libsystem_pthread.dylib                 0x00007fff849fa899 _pthread_body + 138
    5   libsystem_pthread.dylib                 0x00007fff849fa72a _pthread_start + 137
    6   libsystem_pthread.dylib                 0x00007fff849fefc9 thread_start + 13
    Thread 29:
    0   libsystem_kernel.dylib                  0x00007fff8ae0a716 __psynch_cvwait + 10
    1   libsystem_pthread.dylib                 0x00007fff849fcc3b _pthread_cond_wait + 727
    2   com.spectrasonics.Ruby                  0x0000000128e7f1d4 non-virtual thunk to GOTextList::~GOTextList() + 146602
    3   com.spectrasonics.Ruby                  0x0000000128e7e3eb non-virtual thunk to GOTextList::~GOTextList() + 143041
    4   libsystem_pthread.dylib                 0x00007fff849fa899 _pthread_body + 138
    5   libsystem_pthread.dylib                 0x00007fff849fa72a _pthread_start + 137
    6   libsystem_pthread.dylib                 0x00007fff849fefc9 thread_start + 13
    Thread 30:
    0   libsystem_kernel.dylib                  0x00007fff8ae0a716 __psynch_cvwait + 10
    1   libsystem_pthread.dylib                 0x00007fff849fcc3b _pthread_cond_wait + 727
    2   com.spectrasonics.Ruby                  0x0000000128e7f1d4 non-virtual thunk to GOTextList::~GOTextList() + 146602
    3   com.spectrasonics.Ruby                  0x0000000128e7e3eb non-virtual thunk to GOTextList::~GOTextList() + 143041
    4   libsystem_pthread.dylib                 0x00007fff849fa899 _pthread_body + 138
    5   libsystem_pthread.dylib                 0x00007fff849fa72a _pthread_start + 137
    6   libsystem_pthread.dylib                 0x00007fff849fefc9 thread_start + 13
    Thread 31:
    0   libsystem_kernel.dylib                  0x00007fff8ae0a716 __psynch_cvwait + 10
    1   libsystem_pthread.dylib                 0x00007fff849fcc3b _pthread_cond_wait + 727
    2   com.spectrasonics.Ruby                  0x0000000128e7f1d4 non-virtual thunk to GOTextList::~GOTextList() + 146602
    3   com.spectrasonics.Ruby                  0x0000000128e7e3eb non-virtual thunk to GOTextList::~GOTextList() + 143041
    4   libsystem_pthread.dylib                 0x00007fff849fa899 _pthread_body + 138
    5   libsystem_pthread.dylib                 0x00007fff849fa72a _pthread_start + 137
    6   libsystem_pthread.dylib                 0x00007fff849fefc9 thread_start + 13
    Thread 32:
    0   libsystem_kernel.dylib                  0x00007fff8ae0a716 __psynch_cvwait + 10
    1   libsystem_pthread.dylib                 0x00007fff849fcc3b _pthread_cond_wait + 727
    2   com.spectrasonics.Ruby                  0x0000000128e7f1d4 non-virtual thunk to GOTextList::~GOTextList() + 146602
    3   com.spectrasonics.Ruby                  0x0000000128e7e3eb non-virtual thunk to GOTextList::~GOTextList() + 143041
    4   libsystem_pthread.dylib                 0x00007fff849fa899 _pthread_body + 138
    5   libsystem_pthread.dylib                 0x00007fff849fa72a _pthread_start + 137
    6   libsystem_pthread.dylib                 0x00007fff849fefc9 thread_start + 13
    Thread 33:
    0   libsystem_kernel.dylib                  0x00007fff8ae0a716 __psynch_cvwait + 10
    1   libsystem_pthread.dylib                 0x00007fff849fcc3b _pthread_cond_wait + 727
    2   com.spectrasonics.Ruby                  0x0000000128e7f1d4 non-virtual thunk to GOTextList::~GOTextList() + 146602
    3   com.spectrasonics.Ruby                  0x0000000128e7f5e1 non-virtual thunk to GOTextList::~GOTextList() + 147639
    4   libsystem_pthread.dylib                 0x00007fff849fa899 _pthread_body + 138
    5   libsystem_pthread.dylib                 0x00007fff849fa72a _pthread_start + 137
    6   libsystem_pthread.dylib                 0x00007fff849fefc9 thread_start + 13
    Thread 34:
    0   libsystem_kernel.dylib                  0x00007fff8ae0a716 __psynch_cvwait + 10
    1   libsystem_pthread.dylib                 0x00007fff849fcc3b _pthread_cond_wait + 727
    2   com.spectrasonics.Ruby                  0x0000000128e7f1d4 non-virtual thunk to GOTextList::~GOTextList() + 146602
    3   com.spectrasonics.Ruby                  0x0000000128e7f5e1 non-virtual thunk to GOTextList::~GOTextList() + 147639
    4   libsystem_pthread.dylib                 0x00007fff849fa899 _pthread_body + 138
    5   libsystem_pthread.dylib                 0x00007fff849fa72a _pthread_start + 137
    6   libsystem_pthread.dylib                 0x00007fff849fefc9 thread_start + 13
    Thread 35:
    0   libsystem_kernel.dylib                  0x00007fff8ae0a716 __psynch_cvwait + 10
    1   libsystem_pthread.dylib                 0x00007fff849fcc3b _pthread_cond_wait + 727
    2   com.spectrasonics.Ruby                  0x0000000128e7f1d4 non-virtual thunk to GOTextList::~GOTextList() + 146602
    3   com.spectrasonics.Ruby                  0x0000000128e7f5e1 non-virtual thunk to GOTextList::~GOTextList() + 147639
    4   libsystem_pthread.dylib                 0x00007fff849fa899 _pthread_body + 138
    5   libsystem_pthread.dylib                 0x00007fff849fa72a _pthread_start + 137
    6   libsystem_pthread.dylib                 0x00007fff849fefc9 thread_start + 13
    Thread 36:
    0   libsystem_kernel.dylib                  0x00007fff8ae0a716 __psynch_cvwait + 10
    1   libsystem_pthread.dylib                 0x00007fff849fcc3b _pthread_cond_wait + 727
    2   com.spectrasonics.Ruby                  0x0000000128e7f1d4 non-virtual thunk to GOTextList::~GOTextList() + 146602
    3   com.spectrasonics.Ruby                  0x0000000128e7f5e1 non-virtual thunk to GOTextList::~GOTextList() + 147639
    4   libsystem_pthread.dylib                 0x00007fff849fa899 _pthread_body + 138
    5   libsystem_pthread.dylib                 0x00007fff849fa72a _pthread_start + 137
    6   libsystem_pthread.dylib                 0x00007fff849fefc9 thread_start + 13
    Thread 37:
    0   libsystem_kernel.dylib                  0x00007fff8ae0a716 __psynch_cvwait + 10
    1   libsystem_pthread.dylib                 0x00007fff849fcc3b _pthread_cond_wait + 727
    2   com.spectrasonics.Ruby                  0x0000000128e7f1d4 non-virtual thunk to GOTextList::~GOTextList() + 146602
    3   com.spectrasonics.Ruby                  0x0000000128e7f5e1 non-virtual thunk to GOTextList::~GOTextList() + 147639
    4   libsystem_pthread.dylib                 0x00007fff849fa899 _pthread_body + 138
    5   libsystem_pthread.dylib                 0x00007fff849fa72a _pthread_start + 137
    6   libsystem_pthread.dylib                 0x00007fff849fefc9 thread_start + 13
    Thread 38:
    0   libsystem_kernel.dylib                  0x00007fff8ae06a1a mach_msg_trap + 10
    1   libsystem_kernel.dylib                  0x00007fff8ae05d18 mach_msg + 64
    2   com.apple.CoreFoundation                0x00007fff8ba61315 __CFRunLoopServiceMachPort + 181
    3   com.apple.CoreFoundation                0x00007fff8ba60939 __CFRunLoopRun + 1161
    4   com.apple.CoreFoundation                0x00007fff8ba60275 CFRunLoopRunSpecific + 309
    5   com.apple.CoreFoundation                0x00007fff8bb159d1 CFRunLoopRun + 97
    6   com.apple.DiscRecording                 0x00007fff8582a15e DRWorkLoop::WorkLoop() + 228
    7   com.apple.DiscRecording                 0x00007fff8582a067 DRWorkLoop::WorkLoopEntry(DRWorkLoop*) + 9
    8   com.apple.DiscRecording                 0x00007fff85829d77 DRThreadObject::StartRoutine(DRThreadObject*) + 125
    9   com.apple.DiscRecording                 0x00007fff85829c11 DRThreadObject::SymbolRoutine(DRThreadObject*) + 9
    10  libsystem_pthread.dylib                 0x00007fff849fa899 _pthread_body + 138
    11  libsystem_pthread.dylib                 0x00007fff849fa72a _pthread_start + 137
    12  libsystem_pthread.dylib                 0x00007fff849fefc9 thread_start + 13
    Thread 39:
    0   libsystem_kernel.dylib                  0x00007fff8ae0ae6a __workq_kernreturn + 10
    1   libsystem_pthread.dylib                 0x00007fff849fbf08 _pthread_wqthread + 330
    2   libsystem_pthread.dylib                 0x00007fff849fefb9 start_wqthread + 13
    Thread 40:
    0   libsystem_kernel.dylib                  0x00007fff8ae0aa3a __semwait_signal + 10
    1   libsystem_c.dylib                       0x00007fff8b8a9e60 nanosleep + 200
    2   libsystem_c.dylib                       0x00007fff8b8a9d52 usleep + 54
    3   com.WavesAudio.WaveShell-AU.9.2.80          0x0000000120567754 wvWavesV9_2::wvThread::WCIdleCommandDispatcher::threadMain(void*) + 36
    4   com.WavesAudio.WaveShell-AU.9.2.80          0x000000012051a52d wvWavesV9_2::wvThread::ThreadWrapper(void*) + 24
    5   libsystem_pthread.dylib                 0x00007fff849fa899 _pthread_body + 138
    6   libsystem_pthread.dylib                 0x00007fff849fa72a _pthread_start + 137
    7   libsystem_pthread.dylib                 0x00007fff849fefc9 thread_start + 13
    Thread 41:: PCMVintagePlateHelperThread
    0   libsystem_kernel.dylib                  0x00007fff8ae0aa3a __semwait_signal + 10
    1   libsystem_c.dylib                       0x00007fff8b8a9e60 nanosleep + 200
    2   com.Lexicon.Native.LexVintagePlateAU          0x0000000123bd7920 juce::Thread::sleep(int) + 66
    3   com.Lexicon.Native.LexVintagePlateAU          0x0000000123d8640b cNewHelperThread::KillTime() + 35
    4   com.Lexicon.Native.LexVintagePlateAU          0x0000000123db78b8 cNewHelperThread::run() + 590
    5   com.Lexicon.Native.LexVintagePlateAU          0x0000000123bfad37 juce::Thread::threadEntryPoint() + 77
    6   com.Lexicon.Native.LexVintagePlateAU          0x0000000123c13597 juce::threadEntryProc(void*) + 29
    7   libsystem_pthread.dylib                 0x00007fff849fa899 _pthread_body + 138
    8   libsystem_pthread.dylib                 0x00007fff849fa72a _pthread_start + 137
    9   libsystem_pthread.dylib                 0x00007fff849fefc9 thread_start + 13
    Thread 42:
    0   libsystem_kernel.dylib                  0x00007fff8ae0a716 __psynch_cvwait + 10
    1   libsystem_pthread.dylib                 0x00007fff849fcc77 _pthread_cond_wait + 787
    2   com.apple.CoreServices.CarbonCore          0x00007fff8829ec37 TSWaitOnConditionTimedRelative + 148
    3   com.apple.CoreServices.CarbonCore          0x00007fff8826ea1f MPWaitForEvent + 187
    4   com.xlnaudio.addictivedrumsvstau          0x000000013f17ba9d NuXThreads::Event::timedWait(int) + 29
    5   com.xlnaudio.addictivedrumsvstau          0x000000013f24160a scAESampleManager::run() + 1194
    6   com.xlnaudio.addictivedrumsvstau          0x000000013f17bdb3 NuXThreads::Thread::Impl::carbonTaskEntryPoint(void*) + 35
    7   com.apple.CoreServices.CarbonCore          0x00007fff8826f90b PrivateMPEntryPoint + 58
    8   libsystem_pthread.dylib                 0x00007fff849fa899 _pthread_body + 138
    9   libsystem_pthread.dylib                 0x00007fff849fa72a _pthread_start + 137
    10  libsystem_pthread.dylib                 0x00007fff849fefc9 thread_start + 13
    Thread 43:
    0   libsystem_kernel.dylib                  0x00007fff8ae0ae6a __workq_kernreturn + 10
    1   libsystem_pthread.dylib                 0x00007fff849fbf08 _pthread_wqthread + 330
    2   libsystem_pthread.dylib                 0x00007fff849fefb9 start_wqthread + 13
    Thread 44:: PCMPlateHelperThread
    0   libsystem_kernel.dylib                  0x00007fff8ae0aa3a __semwait_signal + 10
    1   libsystem_c.dylib                       0x00007fff8b8a9e60 nanosleep + 200
    2   com.Lexicon.Native.LexPlateAU           0x000000015a013870 juce::Thread::sleep(int) + 66
    3   com.Lexicon.Native.LexPlateAU           0x000000015a1c463f cNewHelperThread::KillTime() + 35
    4   com.Lexicon.Native.LexPlateAU           0x000000015a1f477f cNewHelperThread::run() + 539
    5   com.Lexicon.Native.LexPlateAU           0x000000015a036c87 juce::Thread::threadEntryPoint() + 77
    6   com.Lexicon.Native.LexPlateAU           0x000000015a04f4e7 juce::threadEntryProc(void*) + 29
    7   libsystem_pthread.dylib                 0x00007fff849fa899 _pthread_body + 138
    8   libsystem_pthread.dylib                 0x00007fff849fa72a _pthread_start + 137
    9   libsystem_pthread.dylib                 0x00007fff849fefc9 thread_start + 13
    Thread 45:
    0   libsystem_kernel.dylib                  0x00007fff8ae0ae6a __workq_kernreturn + 10
    1   libsystem_pthread.dylib                 0x00007fff849fbf08 _pthread_wqthread + 330
    2   libsystem_pthread.dylib                 0x00007fff849fefb9 start_wqthread + 13
    Thread 46:
    Thread 47:
    Thread 13 crashed with X86 Thread State (64-bit):
      rax: 0x00007fcfebbe5600  rbx: 0x00007fff91711267  rcx: 0x0000000000048400  rdx: 0x00007fcfeda3b000
      rdi: 0x000000010afa1144  rsi: 0x0000000000000006  rbp: 0x0000000116fb8950  rsp: 0x0000000116fb83f0
       r8: 0x0000000000048400   r9: 0x0000000000000400  r10: 0x0000000000000400  r11: 0xffff9f8116de8a80
      r12: 0x0000000000000003  r13: 0x0000000000000092  r14: 0x0000000000048800  r15: 0x0000000000000092
      rip: 0x000000010ada2ac3  rfl: 0x0000000000010202  cr2: 0x0000000000000122
    Logical CPU:     6
    Error Code:      0x00000006
    Trap Number:     14
    Binary Images:
           0x1072b3000 -        0x108330fef  com.apple.logic10 (10.0.5 - 3130.19) <3D84A581-5530-34B9-A182-D632CC25EE5E> /Applications/Logic Pro X.app/Contents/MacOS/Logic Pro X
           0x1088cd000 -        0x1088cffff  com.apple.music.apps.MAResourcesPlugInsShared (10.0.5 - 3130.19) <88B035BC-E0F1-3619-8161-484E8CE286E4> /Applications/Logic Pro X.app/Contents/Frameworks/MAResourcesPlugInsShared.framework/Versions/A/MAResou rcesPlugInsShared
           0x1088db000 -        0x108cc5fff  com.apple.music.apps.MALogicLegacySong (10.0.5 - 3130.19) <E9A2F4E1-D6E4-3B77-B787-BCF96D87F697> /Applications/Logic Pro X.app/Contents/Frameworks/MALogicLegacySong.framework/Versions/A/MALogicLegacyS ong
           0x108dce000 -        0x108e06fff  com.apple.music.apps.MAAudioUnitSupport (10.0.5 - 3130.19) <8B538D38-ABA6-376F-ABC5-28B6A2FC483B> /Applications/Logic Pro X.app/Contents/Frameworks/MAAudioUnitSupport.framework/Versions/A/MAAudioUnitSu pport
           0x108e2b000 -        0x108e4fff7  com.apple.music.apps.MALoopManagement (10.0.5 - 3130.19) <BD112662-AACE-3968-8062-3582CA19DD40> /Applications/Logic Pro X.app/Contents/Frameworks/MALoopManagement.framework/Versions/A/MALoopManagemen t
           0x108e61000 -        0x108f7dff7  com.apple.music.apps.MACore (10.0.5 - 3130.19) <7480F81D-E56C-3F17-8B1F-D47CF688EAB4> /Applications/Logic Pro X.app/Contents/Frameworks/MACore.framework/Versions/A/MACore
           0x108ff2000 -        0x10902dff2  com.apple.audio.midi.CoreMIDI (1.10 - 88) <EE90880D-A800-334A-9433-ABEA9A7416C5> /System/Library/Frameworks/CoreMIDI.framework/Versions/A/CoreMIDI
           0x10905a000 -        0x1090d4ff7  com.apple.music.apps.MAHarmony (10.0.5 - 3130.19) <6C041127-733C-3165-A4DE-C59F8C625946> /Applications/Logic Pro X.app/Contents/Frameworks/MAHarmony.framework/Versions/A/MAHarmony
           0x1090f7000 -        0x1096faff7  com.apple.music.apps.MAPlugInGUI (10.0.5 - 3130.19) <A3F2676E-5BFB-3546-A6BD-F2843F0A64C7> /Applications/Logic Pro X.app/Contents/Frameworks/MAPlugInGUI.framework/Versions/A/MAPlugInGUI
           0x109a1c000 -        0x109ae7ff7  com.apple.music.apps.OMF (10.0.5 - 3130.2) <2DCB7199-D4A7-3659-AA67-3C433D8DE636> /Applications/Logic Pro X.app/Contents/Frameworks/OMF.framework/Versions/A/OMF
           0x109b0b000 -        0x10a2b5ff7  com.apple.music.apps.MADSP (10.0.5 - 3130.19) <A7D893AC-45B3-36E5-968D-2F32B1425199> /Applications/Logic Pro X.app/Contents/Frameworks/MADSP.framework/Versions/A/MADSP
           0x10ab7f000 -        0x10aba4fff  com.apple.music.apps.LogicFileBrowser (10.0.5 - 3130.2) <3290ED48-FE1B-3EF5-8CCC-DEDFA9AD3B0F> /Applications/Logic Pro X.app/Contents/Frameworks/LogicFileBrowser.framework/Versions/A/LogicFileBrowse r
           0x10abba000 -        0x10ac08fff  com.apple.music.apps.LogicLoopBrowser (10.0.5 - 3130.2) <24494F5B-ED63-3E23-9475-3900D94C4E0A> /Applications/Logic Pro X.app/Contents/Frameworks/LogicLoopBrowser.framework/Versions/A/LogicLoopBrowse r
           0x10ac26000 -        0x10ac2afff  com.apple.music.apps.MAResources (10.0.5 - 3130.19) <B08DDDD8-722F-34DB-A93A-2235181CE829> /Applications/Logic Pro X.app/Contents/Frameworks/MAResources.framework/Versions/A/MAResources
           0x10ac35000 -        0x10ac5cff7  com.apple.audio.CoreAudioKit (1.6.6 - 1.6.6) <9447D604-EE72-3BA7-90D8-4AFA0FC19EBB> /System/Library/Frameworks/CoreAudioKit.framework/Versions/A/CoreAudioKit
           0x10ac7d000 -        0x10ac88fff  com.apple.music.apps.MAUnitTest (10.0.5 - 3130.19) <A01F5AAB-4752-3296-B5FB-161930798599> /Applications/Logic Pro X.app/Contents/Frameworks/MAUnitTest.framework/Versions/A/MAUnitTest
           0x10ac94000 -        0x10ad53ff7  com.apple.music.apps.MAFiles (10.0.5 - 3130.19) <2EA5DD98-5320-399E-A49F-712B29F1E81B> /Applications/Logic Pro X.app/Contents/Frameworks/MAFiles.framework/Versions/A/MAFiles
           0x10ad9d000 -        0x10ae84ff7  com.apple.music.apps.MAAudioEngine (10.0.5 - 3130.19) <65489A06-1870-3A85-825A-2ADC0DDE34BA> /Applications/Logic Pro X.app/Contents/Frameworks/MAAudioEngine.framework/Versions/A/MAAudioEngine
           0x10b019000 -        0x10b029fff  com.apple.StoreKit (1.0 - 232.2) <4A239D2B-4D42-399B-B4F5-EA24297F0E0A> /System/Library/Frameworks/StoreKit.framework/Versions/A/StoreKit
           0x10b041000 -        0x10b069ff7  com.apple.music.apps.MAVideo (10.0.5 - 3130.19) <6C041DF8-CAA9-3B87-B5EB-0AF959CEE37D> /Applications/Logic Pro X.app/Contents/Frameworks/MAVideo.framework/Versions/A/MAVideo
           0x10b086000 -        0x10b3b7ff7  com.apple.LogicUIKit (10.0.5 - 3130.19) <3CF4BE61-8FCF-3B36-84FC-6B84A4747E26> /Applications/Logic Pro X.app/Contents/Frameworks/MAToolKitLg.framework/Versions/A/MAToolKitLg
           0x10b4f2000 -        0x10b881ff7  com.apple.music.apps.Animal (10.0.5 - 3130.19) <5C981C59-6DF1-3AAF-8207-73043EFB6344> /Applications/Logic Pro X.app/Contents/Frameworks/Animal.framework/Versions/A/Animal
           0x10bb75000 -        0x10bb8fff7  com.apple.music.apps.MALoopBrowser (10.0.5 - 3130.2) <24D48BC4-0B75-33DE-A6F7-8482B13A8D90> /Applications/Logic Pro X.app/Contents/Frameworks/MALoopBrowser.framework/Versions/A/MALoopBrowser
           0x10bb9f000 -        0x10bc43fff  com.apple.music.apps.MAWorkspace (10.0.5 - 3130.19) <7C218239-4B56-31BC-AD06-A87EB9EEB33D> /Applications/Logic Pro X.app/Contents/Frameworks/MAWorkspace.framework/Versions/A/MAWorkspace
           0x10bc93000 -        0x10bccbfff  com.apple.LogicUIKitHighLevel (10.0.5 - 3130.19) <240A8046-D793-3C23-AF49-82C6F3DC2775> /Applications/Logic Pro X.app/Contents/Frameworks/MAToolKitHighLevel.framework/Versions/A/MAToolKitHigh Level
           0x10bcee000 -        0x10bcf0fff  com.apple.music.apps.MAResourcesLg (10.0.5 - 3130.19) <59D8A9DB-A6E7-3EF7-811A-1B

  • Publishing web from different computers, help needed

    Hi,
    I've just read this but further assistance needed : http://support.apple.com/kb/HT2548
    Wanna work on my web from different Macs, so I followed the guide line to copy out the "domain" file from my company's machine then move it home. After working with my Mac at home, I tried to publish it to Mobileme.
    But I found counter I put on the front page isn't working anymore, so does anyone here knows how to solve it?
    Thank you so much!
    Ray
    Message was edited by: RayTse

    Also, test your site to ensure that the files are being uploaded. Try selecting ftp to a folder option in iWeb instead of ftp to MobileMe and open your site on your desktop to see if the hit counter shows up there.

  • Moving files between different devices, help needed.

    Hi people, i need some help working this out. I am about to buy a Tablet, it will be my first tablet.
    In a few days the iPad 3 comes out and that would be nice, But...I have 2 old PPC macs, both Running on 10.5.8 and an android Phone. I'm guessing that because the iPad doesn't have a micro SD card slot or a proper usb port, getting files from it to all of my other kit is going to be a big pain. I understand that Apple has finally made iOS5 which i'm told is non computer reliant, so in theory, i can buy an iPad, take it home, turn it on, set it up and use it, without having to connect it to a computer with iTunes on it.
    I am aware that iPad will come with iCloud, but i'm guessing Apple won't allow any of my kit listed above, to access that except maybe a windows computer. I could use bluetooth?
    Is it possible to access files i would store in iCloud from any device, anywhere in the world just by logging in over the internet browser? Or am i going to have to not use iCloud and instead use Google Docs, Dropbox, or some other combination of online storage to move file around, or get a completely diferent tablet.
    I'm also concidering an Asus Transformer Prime Tablet plus docking keyboard as that does have a full sized usb port and a micro SD card slot and a full sized SD card slot as well, plus an extra battery.

    Yes sorry, i missed a bit out. I would use iCloud from the iPad itself, to backup the iPad so that when it crashes i can restore it, but would have to keep a copy of any files in Dropbox, that i might need to share inter platform. As i tend to keep multi backups anyway coz over the years i've had 2 Hard disk failures and 1 memory stick failure. That approach is not too much hasel. Not as elegant as just using one on line storage area but Hey, Big companies are never going to make their stuff work properly with everyone elses, that would be way too idealic. It was hard enough to get them to use standard file formats.
    Thanks again.

  • Screen layout changes for PO

    Hi expert
    In the document type i have  change the screen layout to MBF from copying NBF, but i am not getting   effect of changes which i had made for MBF..
    Regard
    Nabil

    HI,
    There are up to six different field selection keys.
    Eg: 1. Field selection key: transaction
          2. Field selection key: activity type
          3. Field selection key: purchasing document type
          4. Field selection key: item category/document category
    The successive combination of the field selection keys listed above decides which input characteristics the fields have in the document.So not only MBF, it is the combination of the setting that determines the field layout.
    + For mandatory fields
    . For optional fields
    For display fields
    - For suppressed fields
    the strongest is suppresed, then display, then mandatory and last is optional.
    ie , for eg combine fld sel key 1=  suppressed and fld sel key 2 = mandatory, result is field is suppressed. Similarly , ther final result after combining the settings determine the field status.
    Regards
    Aloysius

  • Layout Option on Selection Screen For Zreport

    Hi All,
           Plz explain how to do coding for using Layout option  on selection screen of
    report. Also i should be able to save and create new layout on selection screen.
           Thnaks in advance.
    Aniket Dayama

    hi,
    creation of sub-screens.
    selection-screen begin of tabbed block <name of the tab> for < height of the tab in no's> lines.
    eg;
    selection-screen tab(20) l1 <data element> user-comand <name of the funcion code>
    selection-screen end of block <name of the tab strip>.
    eg;
    selection-screen begin of tabbed block mytab for 10 lines.
    selection-screen tab(20) l1 user-command tab1.
    selection-screen tab (20) l2 user-command tab2..
    selection-screen end of block mytab.
    Under initialization.
    data element = text-01.
    data element = text=02.
    How to initialize the tab with default screen.
    <name of the tab> - prog = sy-repid.
    <name of the tab>- dynnr = '<subscreen no>'.
    <nane of the tab>-activetab = '<user-command for the strip>
    if this has solved ur problem then dont forget to reward with points.
    with regards,
    madhuri.

  • Screen layout rules for depreciation areas

    Hi Experts,
    One quick question. Where do we see screeen layout rules for Asset depreciation areas. SPRO path or transaction code to view this would be helpful.
    Regards,
    Santosh

    Hi Ragini
    Thanks for reply. It seems transaction code OA78 is wrong. It says transaction code OA78 does not exist. I am working on SAP R/3 4.7 version.
    I know that we can define screen layouts for depreciation areas through transaction AO21.
    However I would like to know how can we find out screen layout assigned to a particular asset or particular asset class.  In transaction OAOA we can see screen layout rule assigned to asset class, but not screen layout for depreciation areas for that asset class.
    Any pointers on this would be highly helpful.
    Regards,
    Santosh

  • Selection Screen, + different selections for different t.code

    Hello Friends,
    I have following requirement, that I have a program which is called via a tcode. Now I have to create another tcode for the same program. I have created the new tran and it works fine. But now the requirement is, this new tran. should not show all selectoption ( inside a block ) and two another select - option block ?
    As far as I remember, one can use initilization, and can loop over selection screen ? any idea how to eleiminate the selection screen ? or any docu would be really appreiciated.
    Thanks..

    Thanks ,
    As I said, there is one main selection - screen with main block, ...and then are the further blocks inside, so how I can access the inside block:
    SELECTION-SCREEN BEGIN OF BLOCK mainframe .
    SELECTION-SCREEN SKIP 1.
    SELECTION-SCREEN BEGIN OF BLOCK firstblock WITH FRAME TITLE text-001.
    SELECT-OPTIONS:
      lest say 4 select options.....
    SELECTION-SCREEN END OF BLOCK firstblock.
    SELECTION-SCREEN BEGIN OF BLOCK secondblock WITH FRAME TITLE text-002.
    SELECT-OPTIONS:
           lest say 4 select options.....
    SELECTION-SCREEN END OF BLOCK secondblock
    Prozessdaten
    SELECTION-SCREEN BEGIN OF BLOCK thirdblock WITH FRAME TITLE text-003.
    SELECT-OPTIONS:
         lest say 4 select options.....
    PARAMETERS: so_stat  TYPE flag AS CHECKBOX DEFAULT 'X'.
    SELECTION-SCREEN END OF BLOCK thirdblock.
    PARAMETERS: 
    SELECTION-SCREEN END OF BLOCK mainframe.
    Now my req is, when tcode is 2nd, then secondblock, and thirdblock should not appear, and from first block only 2 fields should apper....
    is it at all possible, by looping over screen, because when I loop over screen, I could not even see the block name... ( the field block1 field is empty.. )

Maybe you are looking for

  • Where is the Stub created? In registry or in Client's machine?

    Hii.. I hav some doubts abt RMI.. The part after t client getting t remote ref(stub obj) of t client s perfectly clear 2 me. My doubt s abt t previous part � ie. How t client gets t stub obj. I ll tell my concept abt this� plzz correct me if I m wron

  • Need BOR & event which triggers after vendor master change.

    Hi all.     Can you pls let me know the BOR & event which triggers after vendor master change. (Xk02). I used tcodes SWELS (evetn trace) , and SWEL and changed vendor adress using XK02. but I could not find any event or BOR in the trace. Pls help me

  • Variable  Vlaue restriction in a query

    Hi, I have an order type variable  (0COORD_TYPE) as a part slection criteria in the query . The Requirement is I want to have the variable for order type have a default that excludes the certain order types ,BUT the user can change to include if they

  • Changed mailadres in apple id didn't automaticly change in icloud account

    I have recently changed the mailadres of my apple id. This did not automaticly changed it in my icloud account, so that it is now not possible to log in on icloud. Does somebody have solution?

  • How to create Maintenance (PM) Order with Permit key?

    Dear Gurus, I use BAPI_ALM_ORDER_MAINTAIN to create Outstanding Order using TCode IW31. It's working fine. I would like to give Permit key for the order. The FM documentation says that it is not possible with this. Is there any other functionality to