R/3 Hierarchy not extracting into BW properly!

Hi,
Can anyone suggest anything regarding the following...
I am working in a SAP BW v3.5 environment and I need to extract a hierarchy from R/3. A new hierarchy was built in R/3 based upon 0Account and was originally extracted into BW OK.
Changes were then made to the hierarchy in R/3 and I'm now having problems extracting it into BW as it just brings the "original" version of the hierarchy.
I've tried deleting the hierarchy completely from the BW side and extracting it again (after replicating the DataSource) but without any luck as it just brings back the original hierarchy and not the latest amended version.
Could the R/3 guys missed something / not done something or could it be an issue on the BW side?
Does anyone know what the issue could be?
Regards.

Hi,
Time Stamp issue will come if there is time difference at server level may be in min. only. That will come even after retransporting the data source again, so better to reactivate the data source in the PRD system itself with the standard programm RSDS_DATASOURCE_ACTIVATE_ALL. Select only the data source you want to activate.
Regarding the hierarchy check out any dependency object need to be loaded first with reference to that this updated data will get displayed. Ex: for loading product hierarchy first we need to load the 0PROD_HIER object data so that the updated node will get reflected.
Hope this will help you.
Regards,
Prabhakar.

Similar Messages

  • Financial Statement hierarchy not extracted correctly from ECC into BW.

    Recently, one of my clients modified a FS hierarchy in production environment by moving some nodes from revenue to expenses, but BW is not picking up the change.
    In ECC via transaction FSE3, one of our Financial Statement hierarchies shows three nodes - (Group Life_, Vehicle Plan only_, and Cost of Removal_) as Expenses. However, the BW extractor still shows these three nodes as Revenue and loads the hierarchy into BW that way as well.
    DataSource is 0GL_ACCOUNT_T011_HIER with field HIENM = AE03. When running RSA3 Extractor Checker in ECC, the displayed data still shows the three nodes in question as Revenue and not correctly as Expenses.
    Found SAP note 1061847 - Ind. For reversing plus/minus signs not extracted correctly. Applied note in ECC development environment, tested the extractor, and checked the load into BW, but the error regarding the nodes still exists after applying the fix.
    Appreciate any suggestions or thoughts from the community.
    Thanks!
    SAP landscape is as follows:
    SAP_BW     700     0009     SAPKW70009     SAP NetWeaver BI 7.0
    SAP_AP     700     0007     SAPKNA7007     SAP Application Platform
    SAP_BASIS     700     SAPKB70010     SAP Basis Component

    Thanks SDNBI. I reviewed the suggested OSS note 1037447, but I am not sure how it applies in my situation. The suggested note seems to address a problem with the display of transfer structure in BW. Our problem seems to be that the extractor on ECC is incorrectly extracting the hierarchy structure. When viewing the data in RSA3 extract checker in ECC, I see the three nodes in question incorrectly positioned in the hierarchy. Thus loaded the same incorrect way into BW. Yet, when I display the hierarchy through transaction FSE2, the three nodes are displayed correctly.

  • Corruption of User privileges on folder hierarchy (not taken into account ANYMORE)

    Hello.
    We use Portal 3.0.6.3.3 (still EA release) on NT with Oracle 8iR2.
    We have set a Content Area and a very classical folder hierarchy to be managed by a single user (called administrator having all privileges on all folders) and other users having just the "Manage Items" and "View Content" for all folders, starting with the root folder.
    It has worked perfectly for a while but after further work on privileges that, unfortunately, we cannot trace back, we have our folders not taking into account the privileges set (under the Access Tab) anymore.
    Actually all users have now all privileges on the whole folder hierarchy. It means, an "Edit Folder" not only provides the "Add Item" link option but also all other options (Folder Properties, etc) are available.
    We have checked again and again the privileges on the CA, root folder, folders etc, tried and removed and re-created the users or new users etc without success.
    We imagine some privilege management-related table of the Content Area/Folder are "corrupted".
    How could we return to a normal situation? On which tables of Portal schema should we investigate and try to find out what is going on?
    Thanks for any help.
    null

    ... still me.
    OK, forget my question. It appears that some "generic" group priviliges (AUTHENTICATED_USERS) had been changed by mistake thus overriding any other settings of the users and groups we were contemplating. So everything is under control now...
    Thanks for having read anyway ;-)

  • Recrods not extracted into BW

    Hi,
    I'm using a Function Module for extracting data from R/3. I tested the DataSource  using RSA3, its working fine and pulling records for the specified criteria. Now, I'm trying to pull data into BW by specifying the same selection criteria as in RSA3. The load is successful but its not pulling any records and I get the below message in Status Tab
    No data available
    Diagnosis
    The data request was a full update.
    In this case, the corresponding table in the source system does not
    contain any data.
    System Response
    Info IDoc received with status 8.
    Procedure
    Check the data basis in the source system.
    Message in "Step By Step" Analysis
    Diagnosis
         The data request was a full update.
         o   In this case, the corresponding tab
                 contain any data.
         o   System Response
                 Info IDoc received with status
                 Procedure
    Check the data basis in the source system.
    Can anyone please tell me why the records are not pulled into BW even though I have the records in the source system and I'm able to extract those records in RSA3
    Thank you!
    AM

    Hi Ajeet,
    I'm pasting the code below can you please check if its missing something.
    Initialization mode (first call by SAPI) or data transfer mode
    (following calls) ?
      IF i_initflag = sbiwa_c_flag_on.
    Initialization: check input parameters
                    buffer input parameters
                    prepare data selection
    Check DataSource validity
        CASE i_dsource.
          WHEN 'XXXXXX'.
          WHEN OTHERS.
    this is a typical log call. Please write every error message like this
            log_write    'E'                  "message type
                            'R3'                 "message class
                           '009'                "message number
                           i_dsource   "message variable 1
                           ' '.                 "message variable 2
            RAISE error_passed_to_mess_handler.
        ENDCASE.
        APPEND LINES OF i_t_select TO s_s_if-t_select.
    Fill parameter buffer for data extraction calls
        s_s_if-requnr    = i_requnr.
        s_s_if-dsource = i_dsource.
        s_s_if-maxsize   = i_maxsize.
    Fill field list table for an optimized select statement
    (in case that there is no 1:1 relation between InfoSource fields
    and database table fields this may be far from beeing trivial)
        APPEND LINES OF i_t_fields TO s_s_if-t_fields.
      ELSE.
    Data transfer: First Call      OPEN CURSOR + FETCH
                   Following Calls   FETCH only
    First data package -> OPEN CURSOR
        IF s_counter_datapakid = 0.
          g_first = 'X'.
    Fill range tables BW will only pass down simple selection criteria
    of the type SIGN = 'I' and OPTION = 'EQ' or OPTION = 'BT'.
          LOOP AT s_s_if-t_select INTO l_s_select WHERE fieldnm = 'fieldname'.
            IF l_s_select-low <> '111' AND
               l_s_select-low <> '222'.
              RAISE invalid_movement_type.
            ELSE.
              MOVE-CORRESPONDING l_s_select TO r_im_bwlvs.
              APPEND r_im_bwlvs.
            ENDIF.
          ENDLOOP.
          LOOP AT s_s_if-t_select INTO l_s_select WHERE fieldnm = 'BEG'.
            MOVE-CORRESPONDING l_s_select TO r_im_begda.
            r_im_begda-low0(4) = l_s_select-low6(4).
            r_im_begda-low4(2) = l_s_select-low0(2).
            r_im_begda-low6(2) = l_s_select-low3(2).
            APPEND r_im_begda.
          ENDLOOP.
          LOOP AT s_s_if-t_select INTO l_s_select WHERE fieldnm = 'END'.
            MOVE-CORRESPONDING l_s_select TO r_im_endda.
            r_im_endda-low0(4) = l_s_select-low6(4).
            r_im_endda-low4(2) = l_s_select-low0(2).
            r_im_endda-low6(2) = l_s_select-low3(2).
            APPEND r_im_endda.
          ENDLOOP.
    *Select from table ltak into internal table i_ltak the following fields.
    *Condition: where bwlvs = import bwlvs & endat is >= import begda and
    <= import endda.
          READ TABLE r_im_begda INDEX 1.
          IF sy-subrc NE 0.
            RAISE blank_date_invalid.
          ELSE.
            IF r_im_begda-low IS INITIAL.
              RAISE blank_date_invalid.
            ENDIF.
          ENDIF.
          READ TABLE r_im_endda INDEX 1.
          IF sy-subrc NE 0.
            RAISE blank_date_invalid.
          ELSE.
            IF r_im_endda-low IS INITIAL.
              RAISE blank_date_invalid.
            ENDIF.
          ENDIF.
          IF NOT r_im_endda-low IS INITIAL
            AND r_im_begda-low > r_im_endda-low.
            RAISE invalid_date.
          ENDIF.
          r_endat-sign = 'I'.
          r_endat-option = 'BT'.
          r_endat-low = r_im_begda-low.
          r_endat-high = r_im_endda-low.
          APPEND r_endat.
    *-- Get data from the tables
          PERFORM get_data.
    *-- Populate the extract structure with data
          PERFORM write_data.
    *-- Fill Export able with the extracted data
          e_t_data[] = i_zbipicprd2[].
        ENDIF.                             "First data package ?
        IF g_first EQ 'X'.
          CLEAR g_first.
        ELSE.
    *-- This is important to prevent endless loop.
          RAISE no_more_data.
        ENDIF.
        describe table e_t_data lines s_counter_datapakid.
       s_counter_datapakid = s_counter_datapakid + 1.
      ENDIF.              "Initialization mode or data extraction ?
    ENDFUNCTION.
    Thanks,
    AM

  • Customer Fields not extracted by FPBW.

    Hi, dear experts,
    I have a problem regarding as the extraction of open items via standard transaction FPBW.
    The fields about the customer information (ex: VKONT and GPART) are not extracted into the table DFKKOPBW. After a search through the OSS notes concerning this problem, we have found two Notes corresponding to this problem. They are 616162 and 526338. Nevertheless, these two Notes have already been included in the version of our system which is 640 with the release number 472.
    Whatu2019s more, in the programme LFKKOPBWCI02 where there were the modification for 526338,  we found that almost every line is commented.
    Do you have any ideas on how to solve the problem?
    Thanks in advance!!

    good afternoon, engineers
    I have this same problem, when I try to fill the table DFKKOPBW, table DFKKOP, load records.
    does anyone have a step by step, to make the filling of the table DFKKOPBW?.
    I am aware of his comments.
    Yimi Castro Garcia

  • Can not extract data into BW from SQL SERVER

    Dear All,
      I meet a problem to extract data from database(MS SQL Server 2000(sp3)) into BW now and can not extract data into BW ODS, even PSA, In the monitor, display yellow light(0 from 0 record), detail message just display message "data request arranged" "confirmed with: confirmation" in requests(message) step; "missing message: request received" in extract (message)  step; "no data" in processing(data packet) step and so on. but in fact, there are two records in my database test table and DB connection is OK. Even I can extract data from another test oracle database into BW ODS successfully.
       Our BW system has two BW applicaton server and use oracle database. the one application server locates on IBM AIX host. the another one locates on one NT server. the application server on NT server is used for data extration from MS SQL SERVER  database into BW oracle database. and MS SQL SERVER and NT platform application server locate on same one host. DBSL was installed on the NT application server already. and DB connector also was created successfully for MS SQL SERVER and datasource also was generated. DBSL type is Kernel640-WIN-IA32bit-unicode. my BW system is ECC5.0/UNICODE/ORACLE. all table/view/field name of MS SQL server is upcase and have not any specific character. for example: ZDEMO etc.
    wait your help.
    Thanks in advance.
    Billy

    Hi  Ravi,
    Could you help me to get knowledge about the followings:
    approximately how many records    extracting and transfering  from SAP R/3 to BIW  in an organisation. for that how much time  will take .
    How to extract data from  two are three source system  to BIW. Kindly help me with step by step explanation .If any screen shots with documents pls fwd to my ID. "[email protected]"
    Your help highly appreciated.
    Thanks.
    Hema

  • Updated CCB records are extracted but not loaded into OBIU.

    This is OBIU version 2.3.2 and CCB version 2.3.1
    Records updated in CC&B are successfully added to the Change Log (CI_CHG_LOG). They are also extracted successfully by base extract program EXTACCT. However, when the data is loaded into OBIU (using OWB), the record update is not reflected into OBIU. This was tested for base object CD_ACCT.
    The OWB mapping object only creates CD_ACCT records for those accounts in the Change Log with Change Type of 'I' (or Insert). The OWB mapping object does not process those with Change Type of 'U' (or Update). How does one get this Change Type to be processed ?
    A new record (with a new effective date) should have been created that would have up-to-date values for its UDFs.
    The update procedure was able to update the End Date and Job Number of the old record correctly. However, without the creation of a new effective record, all new fact records related to the Account record will no longer have an account related to it.
    This makes the data inaccurate.
    This does not just apply to CD_ACCT, but to other base tables/entities as well. No changes have been done to the DB trigger and OWB metadata of CD_ACCT. The extract program has a user-exit that populates some of the UDFs.
    A custom user exit has been introduced to the extract program of CD_ACCT. DB trigger and OWB metadata have not been changed.
    EXPECTED BEHAVIOR
    The OWB mapping object is expected to process records with Change Type of 'U' (or Update). A new record (with a new effective date) should be created that would have up-to-date values for its UDFs.

    Hi,
    Problem becasue of missing  Industory sector setting in R/3 . This setting has to be done before filling the setuptable .For more information search the forums with BF11.
    Re: 0PUR_C01
    Re: Not getting data added to IC for 2LIS_12_VCITM
    With rgds,
    Anil Kumar Sharma .P
    Message was edited by:
            Anil Kumar Sharma

  • Master Data load does not extract Hierarchy nodes in BPC Dimension ACCOUNT

    Hi Experts,
    I am performing master data load through standard DM package with Filter selection as:
    1. Chart of Accounts
    2. Hieararchy selection has 4 hierarchy names
    3. Selected Import Text nodes
    4. Selected Set Filters by Attribute OR Hierarchies
    I have run this DM package for a set of data and selections a week ago and it worked fine.
    However when i run it now, it is giving issues,
    It extracts any new GL maintained in the BI system however it does not extract any hierarchy nodes at all! (Have tested this by deleting the hierarchy nodes and tried to run the master data load)
    I am running the DM package in Update and have selection as External.
    Any sugestions for checks / has anyone encountered this issue earlier?
    Regards,
    Shweta Salpe

    Hi Guyz,
    Thanks.
    I found that the issue was with the transformation file where i was maintaining the RATETYPE.
    When i removed the mapping of RATETYPE this works fine. (Pulls the nodes of hierarchies)
    however now i do not have Ratetype populated in the system.
    my rate type mapping is:
    RATETYPE=*IF(ID(1:1)=*STR(C) then *STR(TOSKIP);ID(1:1)=*STR(H) then *STR(TOSKIP);ID)
    and in conversion file i have TOSKIP     *skip
    I have to skip the ratetypes for the hierarchy nodes and my hierarchy nodes start with C and H.
    So now that i have removed the mapping for RATETYPE can anyone suggest me a correct way to achieve this? (Note the above mapping formula was skipping all of the hierarchy nodes starting with C and H)
    Regards,
    Shweta Salpe

  • Topichead does not convert properly when ditamap saved as book and hierarchy not maintained

    I'm new to DITA and piloting some documents in FrameMaker 12, trying to get the output that I need.
    I have created a ditamap with a structure as follows:
    Map title
    - Concept A
    - Topichead
       - Task A
       - Task B
    - Concept B
      - Task C
       - Task D
    I would like this to ouptut a PDF with TOC and bookmarks as follows:
    Map title => book title
    - Concept A => Chapter 1
    - Topichead => Chapter 2
       - Task A => Chapter 2.1
       - Task B => Chapter 2.2
    - Concept B => Chapter 3
      - Task C => Chapter 3.1
      - Task D => Chapter 3.2
    To do this I save the ditamap as a "Book 12.0 with fm components (*.book)" and set the Bookmark levels in the PDF Setup as follows:
    ChapterTitle
    head.0
    Title
    title.0
    .title.1
    ..title.2
    ...title.3
    However, the output systematically comes out wrong because the Topichead element, which is just a title and is not attached to any topic, is not taken into account as a hierarchical element in the output. It generates an empty fm document containing just the topichead title, output as a ChapterTitle or Title depending on whether I set its toc attribute to yes. But the TOC is all wrong - instead of taking Task A and Task B as children of Chapter 2 it puts them all at level 1 so I get:
    - Concept A => Chapter 1
    - Topichead => ignored
       - Task A => Chapter 2
       - Task B => Chapter 3
    - Concept B => Chapter 4
      - Task C => Chapter 4.1
      - Task D => Chapter 4.2
    If I output using the bog-standard DITA-OT instead of fancy and expensive FrameMaker, everything comes out correctly.
    Is there any way to correct this?
    Thanks,
    Archaeopteryx

    Hi Archaeopteryx...
    I beieve that FM only uses the elements from topics to create the output .. as you're seeing, headings in the map are ignored. I also believe that the process that FM uses to aggregate the topics into FM files is hard-coded somewhere in the DITA plugin, and not exposed for modification .. so aside from developing a plugin to modify the process, I think you're out of luck if you're using the default DITA support. The only solution would be to include title-only topics in the structure that provide those headings rather than using a topichead.
    However, you might want to check out DITA-FMx, in which the aggregation process is controlled by XSLT that you are free to modify. The default book-build process in DITA-FMx also ignores these map elements, and assumes that all content is defined in topics, but you could tweak the XSLT to include topicheads as topic headings in the generated book.
         http://leximation.com/dita-fmx/
    Thanks,
    Scott Prentice
    Leximation, Inc.
    www.leximation.com

  • Financial version statement (reverse sign) not extracted correctly

    R/3: ECC 6.0
    BI: NW04s
    Went into ECC and set the 'Reverse sing +/-' setting for Revenue nodes.
    Went into BI and change the datasource for 0GL_ACCOUNT_T011_HIER to assign a transfer rule for reverse sign
    Reload hierarchy for 0GL_ACCOUNT
    The reverse sign appear but their assignment is shifted down by 2 nodes. When I run the Extractor in ECC using RSA3, I can see the incorrect reverse sign assignment. So this appears to be problem with extractor.
    I went tru this process for some query that need revenue amounts reversed
    any thoughts?

    Hi Raynald
    please have a look to note 1061847 - Ind. for reversing plus/minus signs not extracted correctly, import the SP SAPKH60011 or implement the manual correction in the note.
    regards
    Boujema

  • I can't move photos from iPhoto to my secondary hard drive or to a burn folder.  I have never had a problem with this before.  This is something new.   They will not drop into either folder.  Nothing happens.

    I can't move photos from iPhoto to my secondary hard drive or to a burn folder.  I have never had a problem with this before.  This is something new.   They will not drop into either folder.  Nothing happens. 
    I checked my secondary harddrive and there is plenty of memory.
    I emptied my burn folder but the photos still will not drop into it.
    I created a new burn folder, no luck with this either.
    230 photos is the maximum size of the events I am trying to move from iPhoto to save elsewhere.
    I have shut down and restarted my computer.   No change. The photos still will not drop out of iPhoto.
    My Mac Computer Storage shows that I have 62.2GB free out of 249.2GB (movies, photos and contacts taking up the most space)
    My Lacie External Harddrive (2TB capacity) shows that I have 1.79TB available.  It shows that 207,729,520,640 bytes (207.73 GB on disk) are used.
    I have never had this problem before.  It is usually very easy to move my photos from iPhoto.
    I am not a computer expert (I work in surgery so don't have a need for lots of computer knowledge) so please explain in simple terms.  
    Thank you so much for any help you can provide.
    I really appreciate it.

    YES Terence!  Thank you. Exporting allowed me to move my photos from iPhoto into the Burn Folder on my desktop.   But that doesn't explain why I'm having to go that route now.   Have I done something (accidentally changed some setting) on my computer that will not allow me to just click and drag anymore?   I really liked the convenience of the click and drag option. 
    I don't have the time tonight to export and burn a lot of CD/DVDs.  I'll try that tomorrow and make sure my photos are moving properly.  I also need to export photos to my external hard drive to make sure that route is working. 
    Wouldn't you know that my Apple Care Plan runs out this Wednesday?!  I need to make sure everything is working properly before that expires. 
    Thank you so much for your help.   I really, really appreciate it.

  • My Ipod 4th Gen will not mount into Itunes

    Please anyone with technical knowledge HELP ME.
    The basic problem is that my 4th Generation Ipod will not mount into Itunes.
    Let me tell you what I have done so far this includes all the R's, I have also followed the advice of reinstalling itunes and Quicktime I have also tried backwards installing to version 6 (at present I have upgraded to version 7.0.2). The ipod is visible in Windows and I still am able to use it as disk as I have programs I am using off it.
    I have tried a fifth gen and also an Ipod mini and both mount onto my Itunes.
    I have tried to reinstall the Ipod software, however the previous ipod updates do not work and as the Ipod cannot be mounted I cannot use Itunes to update it as it is not visible.
    I have also run the Ipod Diagnostic in Itunes and everything seems fine (I have included the report if anyone can please understand it)and at the very bottom it states that the Ipod is truly Mounted. WELL ITS NOT
    I really am getting desperate now as this is the same on both my Desktop and Laptop and I am getting very close to throwing the whole thing out along with all the rest of my computer equipment.
    Thanks a lot
    DIAGNOSTIC REPORT
    Microsoft Windows XP Home Edition Service Pack 2 (Build 2600)
    FUJITSU SIEMENS AMILO PRO V2030
    iTunes 7.0.2.16
    iPodService 7.0.2.16 is currently running.
    iTunesHelper 7.0.2.16 is currently running.
    Current user is an administrator.
    Connected Storage Devices:
    IDE\DiskFUJITSUMHV2040BH______________________00000025, Bus Type ATA, Bus Address [0,0]
    USBSTOR\DiskApple__iPod___________1.62, Bus Type USB
    Universal Serial Bus Controllers:
    VIA Rev 5 or later USB Universal Host Controller, PCI bus 0, device 16, function 0. Device is working properly.
    VIA USB Enhanced Host Controller, PCI bus 0, device 16, function 4. Device is working properly.
    IEEE 1394 Host Controllers:
    Texas Instruments OHCI Compliant IEEE 1394 Host Controller, PCI bus 0, device 12, function 2. Device is working properly.
    Connected Device Information
    PAUL'S IPOD (E:\), iPod with Click Wheel running firmware version 3.1.1
    Serial Number: JQ447113PQ7
    Bus Speed: 61440
    The last connected iPod serial number: JQ524ER2S41.
    The iPod Service Logging Information:
    [SERVICE: 0xDA8,09:16:59 INFO] Started C:\Program Files\iPod\bin\iPodService.exe (Sat Nov 18 09:16:59 2006)
    [SERVICE: 0xDA8,09:16:59 INFO] ##### iPodService starting as a service, version: 7.0.2.16
    [SERVICE: 0xDB8,09:17:00 INFO] Got signaled to go ahead... Starting device manager!
    [SERVICE: 0x4F0,09:17:00 INFO] Listener Window created
    [SERVICE: 0xDB8,09:17:02 INFO] [InterfaceArrival] \\?\usbstor#disk&venapple&prod_ipod&rev1.62#000000bf5f21&0#{53f56307-b6bf-11d0-94f2-00a0c91efb8b}
    [SERVICE: 0xDB8,09:17:02 INFO] device \\?\usbstor#disk&venapple&prod_ipod&rev1.62#000000bf5f21&0#{53f56307-b6bf-11d0-94f2-00a0c91efb8b}
    [SERVICE: 0xDB8,09:17:02 INFO] device is an iPod
    [SERVICE: 0xDB8,09:17:02 INFO] type 0x7 drive 0x1 partition 0x0
    [SERVICE: 0xDB8,09:17:08 INFO] [-1] set waiting to mount = 1
    [SERVICE: 0xDB8,09:17:08 INFO] [1] Assigning session 0
    [SERVICE: 0xDB8,09:17:08 INFO] [1] added device interface "\\?\usbstor#disk&venapple&prod_ipod&rev1.62#000000bf5f21&0#{53f56307-b6bf-11d0-94f2-00a0c91efb8b}" to m_objDeviceNameMap
    [SERVICE: 0xDB8,09:17:08 INFO] [1] added state machine 1 to m_objDeviceIdMap
    [SERVICE: 0xDB8,09:17:08 INFO] [1] added device number 1 to m_objDeviceNumberMap
    [SERVICE: 0xDB8,09:17:08 INFO] [1] added device interface "\\?\usbstor#disk&venapple&prod_ipod&rev1.62#000000bf5f21&0#{53f56307-b6bf-11d0-94f2-00a0c91efb8b}" to m_vctDeviceInterfaces
    [SERVICE: 0xDB8,09:17:08 INFO] [1] input #0 from src #0
    [SERVICE: 0xD24,09:17:08 INFO] [1] input #0
    [SERVICE: 0xD24,09:17:08 INFO] [MACHINE 1 INPUT #0] - (HDW) Interface Arrival
    [SERVICE: 0xD24,09:17:08 INFO] [1] progress state is 2, Waiting to mount = 1
    [SERVICE: 0xD24,09:17:08 INFO] [1] progress is now 2
    [SERVICE: 0xD24,09:17:08 INFO] [1] progress is now 2
    [SERVICE: 0xD24,09:17:08 INFO] [MACHINE 1 TRANSITION] - {Unknown} ==> {Connected}
    [SERVICE: 0xD24,09:17:08 INFO] [MACHINE 1 ACTIONS] - {Connected}
    [SERVICE: 0xD24,09:17:08 INFO] [1] SCSI Inquiry attempt #0
    [SERVICE: 0xD24,09:17:08 INFO] VendorId: Apple
    [SERVICE: 0xD24,09:17:08 INFO] ProductId: iPod
    [SERVICE: 0xD24,09:17:08 INFO] revision: 1.62
    [SERVICE: 0xD24,09:17:08 INFO] vendor bytes:
    [SERVICE: 0xD24,09:17:08 INFO] 02 01 00 00 00 00 00 00 00 05 00 13 12 00 00 00 00 00 00 00
    [SERVICE: 0xD24,09:17:08 INFO] [1] firmware version: 1.62 (0x13E)
    [SERVICE: 0xD24,09:17:08 INFO] [1] Power State: Not Powered
    [SERVICE: 0xD24,09:17:08 INFO] [1] Checkpoint attempt #0
    [SERVICE: 0xD24,09:17:08 ERROR] Did not find first letter of stage
    [SERVICE: 0xD24,09:17:08 INFO] [1] serial number 000A270002BF5F21
    [SERVICE: 0xD24,09:17:08 INFO] [1] *** CONNECTED - Sending event out, device session 0.
    [SERVICE: 0x4F0,09:17:11 INFO] [SIMULATED VOLUME ARRIVAL] generating volume mount for \\?\usbstor#disk&venapple&prod_ipod&rev1.62#000000bf5f21&0#{53f56307-b6bf-11d0-94f2-00a0c91efb8b}
    [SERVICE: 0x4F0,09:17:11 INFO] [VolumeArrive] mask = 0x1C
    [SERVICE: 0x4F0,09:17:11 INFO] looking up device # for \\.\E:
    [SERVICE: 0x4F0,09:17:11 INFO] type 0x7 drive 0x1 partition 0x1
    [SERVICE: 0x4F0,09:17:11 INFO] iTunes device #1 found with drive letter E, mask 0x10
    [SERVICE: 0x4F0,09:17:11 INFO] [1] set waiting to mount = 0
    [SERVICE: 0x4F0,09:17:11 INFO] [1] input #1 from src #0
    [SERVICE: 0x52C,09:17:11 INFO] [1] input #1
    [SERVICE: 0x4F0,09:17:11 INFO] looking up device # for \\.\D:
    [SERVICE: 0x4F0,09:17:11 INFO] type 0x2 drive 0x0 partition 0xffffffff
    [SERVICE: 0x4F0,09:17:11 INFO] [SIMULATED INTERFACE ARRIVAL] generating connect event for device 0
    [SERVICE: 0x4F0,09:17:11 INFO] looking up device # for \\?\usbstor#disk&venapple&prod_ipod&rev1.62#000000bf5f21&0#{53f56307-b6bf-11d0-94f2-00a0c91efb8b}
    [SERVICE: 0x4F0,09:17:11 INFO] type 0x7 drive 0x1 partition 0x0
    [SERVICE: 0xDB8,09:17:11 INFO] [VolumeArrive] mask = 0x1C
    [SERVICE: 0xDB8,09:17:11 INFO] looking up device # for \\.\E:
    [SERVICE: 0xDB8,09:17:11 INFO] type 0x7 drive 0x1 partition 0x1
    [SERVICE: 0xDB8,09:17:11 INFO] iTunes device #1 found with drive letter E, mask 0x10
    [SERVICE: 0xDB8,09:17:11 INFO] [1] set waiting to mount = 0
    [SERVICE: 0xDB8,09:17:11 INFO] [1] input #2 from src #0
    [SERVICE: 0x4EC,09:17:11 INFO] [1] input #2
    [SERVICE: 0xDB8,09:17:11 INFO] looking up device # for \\.\D:
    [SERVICE: 0xDB8,09:17:11 INFO] type 0x2 drive 0x0 partition 0xffffffff
    [SERVICE: 0xDB8,09:17:11 INFO] [SIMULATED INTERFACE ARRIVAL] generating connect event for device 0
    [SERVICE: 0x52C,09:17:11 INFO] [MACHINE 1 INPUT #1] - (HDW) Volume Mount
    [SERVICE: 0x52C,09:17:11 INFO] [MACHINE 1 TRANSITION] - {Connected} ==> {Mounted}
    [SERVICE: 0xDB8,09:17:11 INFO] looking up device # for \\?\usbstor#disk&venapple&prod_ipod&rev1.62#000000bf5f21&0#{53f56307-b6bf-11d0-94f2-00a0c91efb8b}
    [SERVICE: 0xDB8,09:17:11 INFO] type 0x7 drive 0x1 partition 0x0
    [SERVICE: 0x52C,09:17:11 INFO] Connection Detection Status - 0x180600A, device '\\?\usbstor#disk&venapple&prod_ipod&rev1.62#000000bf5f21&0#{53f56307-b6bf-11d0-94f2-00a0c91efb8b}'
    [SERVICE: 0x52C,09:17:11 INFO] [MACHINE 1 ACTIONS] - {Mounted}
    [SERVICE: 0x52C,09:17:11 INFO] [1] progress state is 2, Waiting to mount = 0
    [SERVICE: 0x52C,09:17:11 INFO] [1] progress state is 2, Waiting to mount = 0
    [SERVICE: 0x52C,09:17:14 ERROR] Did not find first letter of stage
    [SERVICE: 0x52C,09:17:15 INFO] [1] OS says filesystem is FAT32
    [SERVICE: 0x52C,09:17:16 INFO] [1] ===== iPod Touch Wheel =====
    [SERVICE: 0x52C,09:17:16 INFO] [1] progress state is 2, Waiting to mount = 0
    [SERVICE: 0x52C,09:17:16 INFO] 9:17:16, year 2006, day of yr. 321, GMT offset 0 isDST 0
    [SERVICE: 0x52C,09:17:16 INFO] [1] progress is now 0
    [SERVICE: 0x52C,09:17:18 INFO] [1] *** MOUNTED - Sending event out, device session 0.
    [SERVICE: 0x52C,09:17:18 INFO] [1] Auto-launch iTunes DISABLED
    [SERVICE: 0x4EC,09:17:18 INFO] [MACHINE 1 INPUT #2] - (HDW) Volume Mount
    [SERVICE: 0x4EC,09:17:18 INFO] ** CItunesDevice::HandleHardwareInput()
    [SERVICE: 0x4F0,09:18:21 INFO] [DevNodesChanged]
    [SERVICE: 0x4F0,09:18:21 INFO] [1] input #3 from src #0
    [SERVICE: 0xD24,09:18:21 INFO] [1] input #3
    [SERVICE: 0x4F0,09:18:21 INFO] [DevNodesChanged]
    [SERVICE: 0x4F0,09:18:21 INFO] [1] input #4 from src #0
    [SERVICE: 0x4EC,09:18:21 INFO] [1] input #4
    [SERVICE: 0x4F0,09:18:21 INFO] [DevNodesChanged]
    [SERVICE: 0x4F0,09:18:21 INFO] [1] input #5 from src #0
    [SERVICE: 0x52C,09:18:21 INFO] [1] input #5
    [SERVICE: 0xD24,09:18:22 INFO] [MACHINE 1 INPUT #3] - (HDW) CheckDevNode
    [SERVICE: 0xD24,09:18:23 INFO] Connection Detection Status - 0x1806002, device '\\?\usbstor#disk&venapple&prod_ipod&rev1.62#000000bf5f21&0#{53f56307-b6bf-11d0-94f2-00a0c91efb8b}'
    [SERVICE: 0xD24,09:18:23 INFO] * CItunesDevice::HandleHardwareInput()
    [SERVICE: 0xD24,09:18:23 INFO] [1] progress is now 1
    [SERVICE: 0x4EC,09:18:23 INFO] [MACHINE 1 INPUT #4] - (HDW) CheckDevNode
    [SERVICE: 0xD24,09:18:24 INFO] [MACHINE 1 TRANSITION] - {Mounted} ==> {Unknown}
    [SERVICE: 0x4EC,09:18:24 INFO] Connection Detection Status - 0x1806002, device '\\?\usbstor#disk&venapple&prod_ipod&rev1.62#000000bf5f21&0#{53f56307-b6bf-11d0-94f2-00a0c91efb8b}'
    [SERVICE: 0x4EC,09:18:24 INFO] * CItunesDevice::HandleHardwareInput()
    [SERVICE: 0x52C,09:18:24 INFO] [MACHINE 1 INPUT #5] - (HDW) CheckDevNode
    [SERVICE: 0xD24,09:18:24 INFO] [MACHINE 1 ACTIONS] - {Unknown}
    [SERVICE: 0x52C,09:18:24 INFO] Connection Detection Status - 0x1806400, device '\\?\usbstor#disk&venapple&prod_ipod&rev1.62#000000bf5f21&0#{53f56307-b6bf-11d0-94f2-00a0c91efb8b}'
    [SERVICE: 0x52C,09:18:24 INFO] * CItunesDevice::HandleHardwareInput()
    [SERVICE: 0xD24,09:18:24 INFO] Connection Detection Status - 0x1806400, device '\\?\usbstor#disk&venapple&prod_ipod&rev1.62#000000bf5f21&0#{53f56307-b6bf-11d0-94f2-00a0c91efb8b}'
    [SERVICE: 0xD24,09:18:24 INFO] [1] *** DISCONNECTED - Sending event out, device session 0.
    [SERVICE: 0xD24,09:18:24 INFO] [1] progress is now 0
    [SERVICE: 0xD24,09:18:24 INFO] [1] progress state is 0, Waiting to mount = 0
    [SERVICE: 0x4F0,09:18:38 INFO] [VolumeRemoved] existing mask 0x10, arrive mask 0x10
    [SERVICE: 0x4F0,09:18:38 INFO] [1] value = 1
    [SERVICE: 0x4F0,09:18:38 INFO] [1] input #6 from src #0
    [SERVICE: 0x4EC,09:18:38 INFO] [1] input #6
    [SERVICE: 0x4EC,09:18:38 INFO] [MACHINE 1 INPUT #6] - (HDW) Volume Unmount
    [SERVICE: 0x4EC,09:18:38 INFO] [1] progress is now 3
    [SERVICE: 0x4EC,09:18:38 INFO] [1] Setting progress to 3
    [SERVICE: 0x4EC,09:18:38 INFO] * CItunesDevice::HandleHardwareInput()
    [SERVICE: 0x4F0,09:18:38 INFO] [InterfaceRemoved]
    [SERVICE: 0x4F0,09:18:38 INFO] [1] value = 0
    [SERVICE: 0x4F0,09:18:38 INFO] removed device number 1 from m_objDeviceNumberMap
    [SERVICE: 0x4F0,09:18:38 INFO] [1] input #7 from src #0
    [SERVICE: 0x52C,09:18:38 INFO] [1] input #7
    [SERVICE: 0x4F0,09:18:38 INFO] [DevNodesChanged]
    [SERVICE: 0x4F0,09:18:38 INFO] [1] Progress state is 3, Waiting to disconnect = 0
    [SERVICE: 0x4F0,09:18:38 ERROR] device number 0 exists, but isn't in m_objDeviceNumberMap!
    [SERVICE: 0x4F0,09:18:38 INFO] removed device interface "\\?\usbstor#disk&venapple&prod_ipod&rev1.62#000000bf5f21&0#{53f56307-b6bf-11d0-94f2-00a0c91efb8b}" from m_vctDeviceInterfaces
    [SERVICE: 0x4F0,09:18:38 INFO] [1] input #8 from src #0
    [SERVICE: 0xD24,09:18:38 INFO] [1] input #8
    [SERVICE: 0x52C,09:18:38 INFO] [MACHINE 1 INPUT #7] - (HDW) Interface Removal
    [SERVICE: 0x52C,09:18:38 INFO] * CItunesDevice::HandleHardwareInput()
    [SERVICE: 0xD24,09:18:38 INFO] [MACHINE 1 INPUT #8] - (HDW) CheckDevNode
    [SERVICE: 0xD24,09:18:38 INFO] Connection Detection Status - 0x1806400, device '\\?\usbstor#disk&venapple&prod_ipod&rev1.62#000000bf5f21&0#{53f56307-b6bf-11d0-94f2-00a0c91efb8b}'
    [SERVICE: 0xD24,09:18:38 INFO] * CItunesDevice::HandleHardwareInput()
    [SERVICE: 0x4F0,09:18:39 INFO] [DevNodesChanged]
    [SERVICE: 0x4F0,09:18:39 INFO] [1] input #9 from src #0
    [SERVICE: 0x4EC,09:18:39 INFO] [1] input #9
    [SERVICE: 0x4EC,09:18:39 INFO] [MACHINE 1 INPUT #9] - (HDW) CheckDevNode
    [SERVICE: 0x4EC,09:18:39 INFO] Connection Detection Status - 0x1806400, device '\\?\usbstor#disk&venapple&prod_ipod&rev1.62#000000bf5f21&0#{53f56307-b6bf-11d0-94f2-00a0c91efb8b}'
    [SERVICE: 0x4EC,09:18:39 INFO] * CItunesDevice::HandleHardwareInput()
    [SERVICE: 0x4F0,09:18:48 INFO] [DevNodesChanged]
    [SERVICE: 0x4F0,09:18:48 INFO] [1] input #10 from src #0
    [SERVICE: 0x52C,09:18:48 INFO] [1] input #10
    [SERVICE: 0x4F0,09:18:48 INFO] [DevNodesChanged]
    [SERVICE: 0x4F0,09:18:48 INFO] [1] input #11 from src #0
    [SERVICE: 0xD24,09:18:48 INFO] [1] input #11
    [SERVICE: 0x52C,09:18:49 INFO] [MACHINE 1 INPUT #10] - (HDW) CheckDevNode
    [SERVICE: 0x52C,09:18:49 INFO] * CItunesDevice::HandleHardwareInput()
    [SERVICE: 0xD24,09:18:49 INFO] [MACHINE 1 INPUT #11] - (HDW) CheckDevNode
    [SERVICE: 0xD24,09:18:49 INFO] * CItunesDevice::HandleHardwareInput()
    [SERVICE: 0x4F0,09:34:58 INFO] [DevNodesChanged]
    [SERVICE: 0x4F0,09:34:58 INFO] [1] input #12 from src #0
    [SERVICE: 0x4EC,09:34:59 INFO] [1] input #12
    [SERVICE: 0x4EC,09:34:59 INFO] [MACHINE 1 INPUT #12] - (HDW) CheckDevNode
    [SERVICE: 0x4EC,09:35:00 INFO] * CItunesDevice::HandleHardwareInput()
    [SERVICE: 0x4F0,09:39:01 INFO] [DevNodesChanged]
    [SERVICE: 0x4F0,09:39:01 INFO] [1] input #13 from src #0
    [SERVICE: 0x52C,09:39:01 INFO] [1] input #13
    [SERVICE: 0x52C,09:39:02 INFO] [MACHINE 1 INPUT #13] - (HDW) CheckDevNode
    [SERVICE: 0x52C,09:39:02 INFO] * CItunesDevice::HandleHardwareInput()
    [SERVICE: 0x4F0,09:39:02 INFO] [DevNodesChanged]
    [SERVICE: 0x4F0,09:39:02 INFO] [1] input #14 from src #0
    [SERVICE: 0xD24,09:39:02 INFO] [1] input #14
    [SERVICE: 0xD24,09:39:02 INFO] [MACHINE 1 INPUT #14] - (HDW) CheckDevNode
    [SERVICE: 0xD24,09:39:02 INFO] * CItunesDevice::HandleHardwareInput()
    [SERVICE: 0x4F0,09:42:41 INFO] [DevNodesChanged]
    [SERVICE: 0x4F0,09:42:41 INFO] [1] input #15 from src #0
    [SERVICE: 0x4F0,09:42:41 INFO] [DevNodesChanged]
    [SERVICE: 0x4F0,09:42:41 INFO] [1] input #16 from src #0
    [SERVICE: 0x4F0,09:42:41 INFO] [DevNodesChanged]
    [SERVICE: 0x4F0,09:42:41 INFO] [1] input #17 from src #0
    [SERVICE: 0x52C,09:42:41 INFO] [1] input #15
    [SERVICE: 0x4EC,09:42:41 INFO] [1] input #16
    [SERVICE: 0xD24,09:42:41 INFO] [1] input #17
    [SERVICE: 0x52C,09:42:41 INFO] [MACHINE 1 INPUT #15] - (HDW) CheckDevNode
    [SERVICE: 0x52C,09:42:49 INFO] Connection Detection Status - 0x180600A, device '\\?\usbstor#disk&venapple&prod_ipod&rev1.62#000000bf5f21&0#{53f56307-b6bf-11d0-94f2-00a0c91efb8b}'
    [SERVICE: 0x4EC,09:42:49 INFO] [MACHINE 1 INPUT #16] - (HDW) CheckDevNode
    [SERVICE: 0x4EC,09:42:49 INFO] Connection Detection Status - 0x180600A, device '\\?\usbstor#disk&venapple&prod_ipod&rev1.62#000000bf5f21&0#{53f56307-b6bf-11d0-94f2-00a0c91efb8b}'
    [SERVICE: 0xD24,09:42:49 INFO] [MACHINE 1 INPUT #17] - (HDW) CheckDevNode
    [SERVICE: 0xD24,09:42:49 INFO] Connection Detection Status - 0x180600A, device '\\?\usbstor#disk&venapple&prod_ipod&rev1.62#000000bf5f21&0#{53f56307-b6bf-11d0-94f2-00a0c91efb8b}'
    [SERVICE: 0x4F0,09:42:51 INFO] [InterfaceArrival] \\?\usbstor#disk&venapple&prod_ipod&rev1.62#000000bf5f21&0#{53f56307-b6bf-11d0-94f2-00a0c91efb8b}
    [SERVICE: 0x4F0,09:42:51 INFO] type 0x7 drive 0x1 partition 0x0
    [SERVICE: 0x4F0,09:42:51 INFO] [1] set waiting to mount = 1
    [SERVICE: 0x4F0,09:42:51 INFO] [1] Attempt to reassign from session 0 to session 0, DENIED!
    [SERVICE: 0x4F0,09:42:51 INFO] [1] added device interface "\\?\usbstor#disk&venapple&prod_ipod&rev1.62#000000bf5f21&0#{53f56307-b6bf-11d0-94f2-00a0c91efb8b}" to m_objDeviceNameMap
    [SERVICE: 0x4F0,09:42:51 INFO] [1] added state machine 1 to m_objDeviceIdMap
    [SERVICE: 0x4F0,09:42:51 INFO] [1] added device number 1 to m_objDeviceNumberMap
    [SERVICE: 0x4F0,09:42:51 INFO] [1] added device interface "\\?\usbstor#disk&venapple&prod_ipod&rev1.62#000000bf5f21&0#{53f56307-b6bf-11d0-94f2-00a0c91efb8b}" to m_vctDeviceInterfaces
    [SERVICE: 0x4F0,09:42:51 INFO] [1] input #18 from src #0
    [SERVICE: 0x52C,09:42:51 INFO] [1] input #18
    [SERVICE: 0x4F0,09:42:51 INFO] [DevNodesChanged]
    [SERVICE: 0x4F0,09:42:51 INFO] [1] input #19 from src #0
    [SERVICE: 0x4EC,09:42:51 INFO] [1] input #19
    [SERVICE: 0x4F0,09:42:51 INFO] [DevNodesChanged]
    [SERVICE: 0x4F0,09:42:51 INFO] [1] input #20 from src #0
    [SERVICE: 0xD24,09:42:51 INFO] [1] input #20
    [SERVICE: 0x52C,09:42:51 INFO] [MACHINE 1 INPUT #18] - (HDW) Interface Arrival
    [SERVICE: 0x52C,09:42:51 INFO] [1] progress state is 2, Waiting to mount = 1
    [SERVICE: 0x52C,09:42:51 INFO] [1] progress is now 2
    [SERVICE: 0x52C,09:42:51 INFO] [1] progress is now 2
    [SERVICE: 0x52C,09:42:51 INFO] [MACHINE 1 TRANSITION] - {Unknown} ==> {Connected}
    [SERVICE: 0x52C,09:42:51 INFO] [MACHINE 1 ACTIONS] - {Connected}
    [SERVICE: 0x52C,09:42:51 INFO] [1] SCSI Inquiry attempt #0
    [SERVICE: 0x52C,09:42:51 INFO] VendorId: Apple
    [SERVICE: 0x52C,09:42:51 INFO] ProductId: iPod
    [SERVICE: 0x52C,09:42:51 INFO] revision: 1.62
    [SERVICE: 0x52C,09:42:51 INFO] vendor bytes:
    [SERVICE: 0x52C,09:42:51 INFO] 02 01 00 00 00 00 00 00 00 05 00 13 12 00 00 00 00 00 00 00
    [SERVICE: 0x52C,09:42:51 INFO] [1] firmware version: 1.62 (0x13E)
    [SERVICE: 0x52C,09:42:51 INFO] [1] Power State: Not Powered
    [SERVICE: 0x52C,09:42:51 INFO] [1] Checkpoint attempt #0
    [SERVICE: 0x52C,09:42:51 ERROR] Did not find first letter of stage
    [SERVICE: 0x52C,09:42:51 INFO] [1] serial number 000A270002BF5F21
    [SERVICE: 0x52C,09:42:51 INFO] [1] *** CONNECTED - Sending event out, device session 0.
    [SERVICE: 0x4EC,09:42:51 INFO] [MACHINE 1 INPUT #19] - (HDW) CheckDevNode
    [SERVICE: 0x4EC,09:42:51 INFO] Connection Detection Status - 0x180600A, device '\\?\usbstor#disk&venapple&prod_ipod&rev1.62#000000bf5f21&0#{53f56307-b6bf-11d0-94f2-00a0c91efb8b}'
    [SERVICE: 0xD24,09:42:51 INFO] [MACHINE 1 INPUT #20] - (HDW) CheckDevNode
    [SERVICE: 0xD24,09:42:51 INFO] Connection Detection Status - 0x180600A, device '\\?\usbstor#disk&venapple&prod_ipod&rev1.62#000000bf5f21&0#{53f56307-b6bf-11d0-94f2-00a0c91efb8b}'
    [SERVICE: 0x4F0,09:42:53 INFO] [SIMULATED VOLUME ARRIVAL] generating volume mount for \\?\usbstor#disk&venapple&prod_ipod&rev1.62#000000bf5f21&0#{53f56307-b6bf-11d0-94f2-00a0c91efb8b}
    [SERVICE: 0x4F0,09:42:53 INFO] [VolumeArrive] mask = 0x1C
    [SERVICE: 0x4F0,09:42:53 INFO] looking up device # for \\.\E:
    [SERVICE: 0x4F0,09:42:53 INFO] type 0x7 drive 0x1 partition 0x1
    [SERVICE: 0x4F0,09:42:53 INFO] iTunes device #1 found with drive letter E, mask 0x10
    [SERVICE: 0x4F0,09:42:53 INFO] [1] set waiting to mount = 0
    [SERVICE: 0x4F0,09:42:53 INFO] [1] input #21 from src #0
    [SERVICE: 0x52C,09:42:53 INFO] [1] input #21
    [SERVICE: 0x4F0,09:42:53 INFO] looking up device # for \\.\D:
    [SERVICE: 0x4F0,09:42:53 INFO] type 0x2 drive 0x0 partition 0xffffffff
    [SERVICE: 0x4F0,09:42:53 INFO] [SIMULATED INTERFACE ARRIVAL] generating connect event for device 0
    [SERVICE: 0x4F0,09:42:53 INFO] looking up device # for \\?\usbstor#disk&venapple&prod_ipod&rev1.62#000000bf5f21&0#{53f56307-b6bf-11d0-94f2-00a0c91efb8b}
    [SERVICE: 0x4F0,09:42:53 INFO] type 0x7 drive 0x1 partition 0x0
    [SERVICE: 0x52C,09:42:54 INFO] [MACHINE 1 INPUT #21] - (HDW) Volume Mount
    [SERVICE: 0x52C,09:42:54 INFO] [MACHINE 1 TRANSITION] - {Connected} ==> {Mounted}
    [SERVICE: 0x52C,09:42:54 INFO] Connection Detection Status - 0x180600A, device '\\?\usbstor#disk&venapple&prod_ipod&rev1.62#000000bf5f21&0#{53f56307-b6bf-11d0-94f2-00a0c91efb8b}'
    [SERVICE: 0x52C,09:42:54 INFO] [MACHINE 1 ACTIONS] - {Mounted}
    [SERVICE: 0x52C,09:42:54 INFO] [1] progress state is 2, Waiting to mount = 0
    [SERVICE: 0x52C,09:42:54 INFO] [1] progress state is 2, Waiting to mount = 0
    [SERVICE: 0x52C,09:42:54 ERROR] Did not find first letter of stage
    [SERVICE: 0x52C,09:43:02 INFO] [1] OS says filesystem is FAT32
    [SERVICE: 0x52C,09:43:03 INFO] [1] ===== iPod Touch Wheel =====
    [SERVICE: 0x52C,09:43:03 INFO] [1] progress state is 2, Waiting to mount = 0
    [SERVICE: 0x52C,09:43:03 INFO] 9:43:3, year 2006, day of yr. 321, GMT offset 0 isDST 0
    [SERVICE: 0x52C,09:43:03 INFO] [1] progress is now 0
    [SERVICE: 0x52C,09:43:04 INFO] [1] *** MOUNTED - Sending event out, device session 0.
    [SERVICE: 0x52C,09:43:04 INFO] [1] Auto-launch iTunes DISABLED
    [SERVICE: 0x4F0,09:43:11 INFO] [VolumeArrive] mask = 0x10
    [SERVICE: 0x4F0,09:43:11 INFO] looking up device # for \\.\E:
    [SERVICE: 0x4F0,09:43:11 INFO] type 0x7 drive 0x1 partition 0x1
    [SERVICE: 0x4F0,09:43:11 INFO] iTunes device #1 found with drive letter E, mask 0x10
    [SERVICE: 0x4F0,09:43:11 INFO] [1] set waiting to mount = 0
    [SERVICE: 0x4F0,09:43:11 INFO] [1] input #22 from src #0
    [SERVICE: 0x4EC,09:43:11 INFO] [1] input #22
    [SERVICE: 0x4EC,09:43:11 INFO] [MACHINE 1 INPUT #22] - (HDW) Volume Mount
    [SERVICE: 0x4EC,09:43:11 INFO] ** CItunesDevice::HandleHardwareInput()
    [SERVICE: 0x4F0,09:43:11 INFO] [DevNodesChanged]
    [SERVICE: 0x4F0,09:43:11 INFO] [1] input #23 from src #0
    [SERVICE: 0xD24,09:43:11 INFO] [1] input #23
    [SERVICE: 0xD24,09:43:12 INFO] [MACHINE 1 INPUT #23] - (HDW) CheckDevNode
    [SERVICE: 0xD24,09:43:12 INFO] Connection Detection Status - 0x180600A, device '\\?\usbstor#disk&venapple&prod_ipod&rev1.62#000000bf5f21&0#{53f56307-b6bf-11d0-94f2-00a0c91efb8b}'
    [SERVICE: 0xF90,09:43:16 INFO] <0x4> Got Serial #
    [SERVICE: 0x200,09:43:16 INFO] <0x4> GetFormatType() returned unknown format 0
    [SERVICE: 0x200,09:43:16 INFO] [1] Progress state is 0, Waiting to disconnect = 0
    [SERVICE: 0x200,09:43:16 INFO] Mounted
    [SERVICE: 0x200,09:43:16 INFO] Device 1 is FAT32 and appears mounted, checking intermediate state...
    [SERVICE: 0x200,09:43:16 INFO] Device 1 not in intermediate state. It appears to be truly mounted.
    [SERVICE: 0xF90,09:43:16 INFO] Mounted
    [SERVICE: 0xF90,09:43:16 INFO] [1] already mounted!
    [SERVICE: 0xF90,09:43:16 INFO] [1] progress state is 0, Waiting to mount = 0
    [SERVICE: 0x200,09:43:33 INFO] <0x4> GetFormatType() returned unknown format 0
    [SERVICE: 0xD10,09:43:33 INFO] [1] Progress state is 0, Waiting to disconnect = 0
    [SERVICE: 0xD10,09:43:33 INFO] Mounted
    [SERVICE: 0xD10,09:43:33 INFO] Device 1 is FAT32 and appears mounted, checking intermediate state...
    [SERVICE: 0xD10,09:43:33 INFO] Device 1 not in intermediate state. It appears to be truly mounted.
    [SERVICE: 0xF90,09:43:33 INFO] <0x4> COM request for device 1 drive letter - E
    [SERVICE: 0xD10,09:43:34 INFO] Mounted
    [SERVICE: 0xD10,09:43:34 INFO] Device 0 is FAT32 and appears mounted, checking intermediate state...
    [SERVICE: 0xD10,09:43:34 INFO] Device 0 not in intermediate state. It appears to be truly mounted.
    [SERVICE: 0xF90,09:43:54 INFO] [1] Progress state is 0, Waiting to disconnect = 0
    [SERVICE: 0xF90,09:43:54 INFO] Mounted
    [SERVICE: 0xF90,09:43:54 INFO] Device 1 is FAT32 and appears mounted, checking intermediate state...
    [SERVICE: 0xF90,09:43:54 INFO] Device 1 not in intermediate state. It appears to be truly mounted.
    [SERVICE: 0x200,09:43:54 INFO] Mounted
    [SERVICE: 0x200,09:43:54 INFO] [1] already mounted!
    [SERVICE: 0x200,09:43:54 INFO] [1] progress state is 0, Waiting to mount = 0
    [SERVICE: 0xD10,09:43:54 INFO] Mounted
    [SERVICE: 0xD10,09:43:54 INFO] Device 0 is FAT32 and appears mounted, checking intermediate state...
    [SERVICE: 0xD10,09:43:54 INFO] Device 0 not in intermediate state. It appears to be truly mounted.
    [SERVICE: 0xF90,09:43:54 INFO] [1] Progress state is 0, Waiting to disconnect = 0
    [SERVICE: 0xF90,09:43:54 INFO] Mounted
    [SERVICE: 0xF90,09:43:54 INFO] Device 1 is FAT32 and appears mounted, checking intermediate state...
    [SERVICE: 0xF90,09:43:54 INFO] Device 1 not in intermediate state. It appears to be truly mounted.

    If anyone is interested I managed to solve this problem by reformatting the ipod as a mac ipod, with the help of friends system. This does get rid of the music but as I had it backed up wasn't a problem. I then plugged the mac Ipod back into a windows pc and reformatted it as a windows ipod which updated the firmware correctly and have'nt had a problem since.

  • G5 will not boot into OSX - stays at a command-line prompt

    My G5 will not boot into OS X. I would appreciate and and all advice. Thanks.
    What happened:
    I had the G5 running one morning, with the Isight camera on, plugged into the front-console firewire port. I was running EvoCam software.
    At about 2 hours into running, the cam stopped broadcasting – I got home to check it out three hours later, and the screen was black, and the fan was louder than I had ever, ever heard it on this box.
    I did a hard shut-down with the powerbutton on the Cinema Display monitor.
    At reboot, I see a grey screen for approx 5 seconds, with a dark grey apple logo, and then the screen goes to black, with a command-line prompt.
    It’s been like that ever since.
    I ran the Apple Hardware test, from the internal CD drive, and it shows no errors.
    I cannot boot from an OSX installer DVD. It won’t recognize it. It goes straight to the black screen and Command line prompt.
    I have re-seated the RAM, as well as the Airport Card. The only other card – which I have not re-seated, it the video card.
    I am able to use the machine in Target Mode, so I can extract data from the drives, which is great. Oddly enough, I’m able to use the front-console firewire port to connect to my other Mac in Target mode – with no problems. Also – in Target mode, the fan never goes above the usual quiet self.
    I would appreciate any advice one can provide. Thanks!
    The machine:
    Mac G5 dual 2.0 – First Generation (purchased December 2003)
    It’s on it’s 3rd Motherboard – and now it’s fully out of Applecare warrantee.
    OSX 10.4.9
    4GB Ram
    2 internal drives: 160GB + 300GB
    Airport Extreme
    20” Cinema Display (first generation)
    Mac G5 dual 2.0 – First Generation   Mac OS X (10.4.9)  

    Well, Apple Support does have articles on:
    Isolating Issues in Mac OS X
    http://docs.info.apple.com/article.html?artnum=25392
    won't boot or login
    http://docs.info.apple.com/article.html?artnum=106464#symp1
    And if those don't work, call.
    With G4 there is/was
    "Fix for a Mac that won't power up
    Mirrored Doors G4. When you pressed the power button, the button would light up, but the computer would not turn on. The fans on the power supply wouldn't turn on.
    FIX: unplug the machine, pull the clock battery, hit the power button to discharge. Then plug it in without the clock battery. The machine should boot perfectly. Shut down, reinstall the clock battery, and now the system is fully functional. Macosxhints
    http://docs.info.apple.com/article.html?artnum=300552
    Reseat video? try another video card?
    My Step #1 is to always boot into Open Firmware (and do reset-nvram, reset-all, if you can't do that, you are sunk).
    Oh, and What do you see in verbose mode on startup?
    Mac Pro 2GHz 4GB 10K Raptor 23" Cinema   Mac OS X (10.4.9)   WD RE RAID Aaxeon FW800 PCIe MDD-G4 APC RS1500 Vista

  • How to copy exitsitng extracter into another new extracter?

    Hello,
    Please some one can tel me how to copy the existing  extracter into another new extracter.
    I have requirment as below
    Currect me if i am wrong ,need to enhance the existing extracter and add some new fields,and need to include some masterdata filds also to it.
    For master data i am going to do write routines at Transfermation so that no need to include in my exter for those filds to extracter.
    Please some one guide me in this scenario.
    Chrs

    Hi,
    you do not have to copy the extractor, you can enhance it with fields and fill them via enhancement coding --> rsa6.
    If you want to copy it, you need to check what kind of extractor you have. Is it a function module or just a table extractor.
    for fm: copy the function module via se37 and copy the extract structure via se11. Add your enhancements in the copied structures and coding. Create a new datasource with rso2.
    for table extractor: create a view adding the additionally needed fields. create a new ds with rso2. Surely you need to add some coding in the relevant enhancement.
    regards
    Siggi

  • Material delta changes are not flowing into CRM

    Dear All,
    material delta changes are not flowing into CRM, because the product hierarchy on material has been changed to a new product hierarchy. I do not want to download again the object DNL_CUST_PROD1 because it maight cause inconstancies in CRM. (I have already defined some z product hierarchies in CRM)
    Do I need to create the new product hierarchy also in CRM manually?
    Appreciate any inputs
    Raj

    Hi Raj,
    Use the transacrion R3AR2 to create a z object for DNL_CUST_PROD1 and assign DNL_CUST_PROD1 as the object name
    Then in request detail screen for new z object enter the details like table name (T179 in your case) and the name of the product hierarchy that you want to bring in. Save the transaction
    Then use the transaction R3AR4 to initiate the download for your new z object as you normally do in R3AS.
    Then go to SMW01 and reprosess the struck Bdoc.
    Reward points if helps,
    Regards,
    Paul Kondaveeti

Maybe you are looking for

  • How to create dll in Visual Studio 2008 in Visual C++

    Hello, I have insatlled Visual Studio 2008. I have to create DLL in Project type Visual C++. Which Template i have to select to reate dll, MFC DLL or Class Library?. I have to call or import this dll in Windows Forms Application. How can i do this. P

  • Why won't iTunes open?  It's been deleted and redownloaded seven times now!

    I used to have my iTunes on a mac and it worked just fine.. but I had to switch everything over to my computer, which is a pc... so I had to re-format my nano. That, as you know, deleted all of my songs. I downloaded iTunes 7.. it wouldn't open... I

  • Maintain entries in SE16

    Hi, How to maintain entries in SE16 for a particular table when there is no maintenance view and also tell me the posibility of transporting those entries to another clients. Thanks Gayathri

  • Ical not in login items but opening at startup

    is anyone else experiencing this issue? i got an error message for my sync services and once that was fixed my ical is opening at startup but it's not in my login items. i went into my login items and added it and then removed it trying to trick my m

  • "Levels" stopped functioning in CS3

    I'm using PS CS3 on a Mac running OS 10.6.4. The adjustment sliders in "levels" within "Adjustments" have no effect on the image. Other functions under "Adjustments" seem to be working although I have checked just a few. Anyone have a solution or is