LIS - Return is not Updating

Dear Gurus,
I have configure LIS, where maintain all the combination with 1 and 2.
At the time of return system cant reduce the sales value in the report, it will remain unchanged, cant show the data in report MC+I.
please suggest what factor I am missing.
Regards,
Imran

does anybody else have any suggestions ? i don't know what safe mode is and if that is taking all my security down sorry not running my internet w/out security. my question has been here forever nobody knows ?

Similar Messages

  • LIS -- S021 is not updated...

    Hello.
    I use S021 data in add-on program.
    This table data is asynchronous updating.
    I have trouble that,
    "Basic start date"(GSTRP) and "Basic finish date"(GLTRP) is not updated.
    I tried updating productution order, but these field not updated.
    Does someone know how to updating these field?
    P.S. Another fields are updated.
    T.Kaita in Japan.

    Hi,
    Please go through the Following link:
    http://www.sap123.com/showthread.php?t=11..
    Hope this helps..
    Regards,
    Siva

  • Return delivery not updating excise tab

    Hi,
    My client wants to see the excise invoice tab in return delivery(MIGO), is it possibile or what other way?  how to make reverse?
    Urgent pls....

    Hi,
    If your case is Vendor/Purchase returns then follow as below:
    Create a Return Purchase order in ME21N and mark the retrun item box in po detail.
    Go to MIGO and enter Purchase order no. (Here 161 Movement will takes place automatically) once you check the document it will ask for Vendor excise invoice no then enter Vendor Excise invoice no here.
    After this, Create a Excise invoice for Other Movements in J1IS and post the same in J1IV.
    Finally Create a Credit memo thru. MIRO.
    Revert back in case not solved.
    Reg,
    Ashok
    Rewards welcome

  • TS1702 I have an iPad 1. I went to do an update on GarageBand and iBooks but it will not update. How do I return it to the original version?

    I have an iPad 1. I went to do an update on GarageBand and iBooks but it will not update. How do I return it to the original version?

    Well, to paraphrase the old line, "What're you gonna believe, that email or your own lying eyes?"
    The first thing I'd recommend trying is to power down your iPad (press & hold Sleep/Wake until the red OFF slider appears, then slide it to shut down), and then boot it back up and try again. You're resetting a bunch of state signals by doing that and this simple action (the first of a series recommended by Apple in your Users Guide) will quite often clear up these sorts of problems.

  • This script is not updating or returning anything..

    This script is not updating or returning anything.. Ive also tried running it as a Stored Procedure but didnt get very far..
    I'm reluctant to remove the line from the get_employee cursor that gets only one record..
    Also, Ive got a couple of 'dbms_output..' lines to catch the employee number but nothing. Can anyone suggest how I at least debug it?
    I can also supply it as Stored Procedure but I didnt really know how to run it and it just hung in UNIX at what looked at the last line number..
    here's the code
    /* Formatted on 2009/04/22 14:43 (Formatter Plus v4.8.7) */
    SET serveroutput ON SIZE 1000000 FORMAT WRAPPED
    SET verify OFF
    SET feedback OFF
    DECLARE
    -- Debugging/error handling
    -- Work variables
       p_emp_number                     VARCHAR2 (14);
       v_rec_cnt                        NUMBER                     := 0;
       insert_flag                      VARCHAR2 (8);
       job_exists                       VARCHAR2 (8);
       err_num                          NUMBER;
       err_msg                          VARCHAR2 (150);
       err_line                         VARCHAR2 (350);
       err_seq                          NUMBER                     := 0;
       l_date                           DATE                       := SYSDATE;
       l_validate                       BOOLEAN                    DEFAULT FALSE;
       l_ass_obj                        NUMBER;
       l_emp_obj                        NUMBER;
       l_default_code_comb_id           NUMBER                     := 217269;
       l_datetrack_update_mode          VARCHAR2 (30)             := 'CORRECTION';
       l_organization_id                NUMBER                     := 0;
       l_concatenated_segments          VARCHAR2 (240);
       l_soft_coding_keyflex_id         NUMBER;
       l_comment_id                     NUMBER;
       l_effective_end_date             DATE
                                        := TO_DATE ('17-FEB-2059', 'DD-MON-YYYY');
       l_no_managers_warning            BOOLEAN;
       l_special_ceiling_step_id        NUMBER;
       l_people_group_id                NUMBER;
       l_group_name                     VARCHAR2 (30);
       l_entries_changed_warning        VARCHAR2 (30);
       l_spp_delete_warning             BOOLEAN;
       l_org_now_no_manager_warning     BOOLEAN;
       l_tax_district_changed_warning   BOOLEAN;
       l_other_manager_warning          BOOLEAN;
       l_business_group_id              NUMBER                     := 0;
       l_person_id                      NUMBER;
       l_assignment_number              VARCHAR2 (35);
       l_style                          VARCHAR2 (4)               := 'GB';
       ip_p_address_id                  NUMBER;
       l_effective_date                 DATE                       := SYSDATE;
       l_date_from                      DATE                       := SYSDATE;
       l_date_to                        DATE                       := NULL;
    -- CURSOR 1 - get all Existing Employees (well, for testing purps.. just Peter Barlow for now..)
       CURSOR c_get_employee_details
       IS
          SELECT DISTINCT per.person_id, per.employee_number, per.full_name,
                          paas.assignment_id, paas.supervisor_id,
                          paas.default_code_comb_id
                     FROM per_all_people_f per, per_all_assignments_f paas
                    WHERE per.employee_number = p_emp_number
                      AND paas.person_id(+) = per.person_id
                      AND per.person_id = '30188';
    -- CURSOR 2 - get all Existing Employees (well, for testing purps.. just Peter Barlow for now..)
       CURSOR c_check_employee (p_emp_number VARCHAR2)
       IS
          SELECT DISTINCT per.person_id, per.employee_number, per.full_name,
                          paas.assignment_id, paas.supervisor_id,
                          paas.default_code_comb_id
                     FROM per_all_people_f per, per_all_assignments_f paas
                    WHERE per.employee_number = p_emp_number
                      AND paas.person_id(+) = per.person_id
                      AND per.person_id = '30188';
       emp_rec                          c_check_employee%ROWTYPE;
    -- Cursor 3 to SELECT all existing Employees that DO NOT have a JOB specified.
    /*   CURSOR c_check_emps_job (p_emp_number VARCHAR2)
       IS
          SELECT DISTINCT per.person_id, per.full_name, paas.assignment_id,
                          paas.supervisor_id, paas.default_code_comb_id
                     FROM per_all_people_f per, per_all_assignments_f paas
                    WHERE per.employee_number = p_emp_number
                      AND paas.person_id(+) = per.person_id
                      AND paas.job_id IS NULL
                      AND per.person_id = '30188';
       empjob_rec                       c_check_emps_job%ROWTYPE;
    -- Cursor 4 retrieves latest Object Version Number from per_assignments_f table..
       CURSOR csr_ass_ovn (cp_person_id IN per_all_people_f.person_id%TYPE)
       IS
          SELECT MAX (paas.object_version_number)
            FROM per_assignments_f paas, per_all_people_f per
           WHERE paas.person_id = per.person_id
             AND per.employee_number = paas.assignment_number
             AND per.person_id = cp_person_id;
    BEGIN
    -- UPDATE of EXISTING Employees Details from work table..
       FOR v_emp IN c_get_employee_details
       LOOP
    -- determine whether customer already exists
          OPEN c_check_employee (v_emp.employee_number);
          FETCH c_check_employee
           INTO emp_rec;
          IF c_check_employee%FOUND
          THEN
             insert_flag := 'I';
             DBMS_OUTPUT.PUT_LINE ('Employee No: ' || v_emp.employee_number);
          ELSE
             DBMS_OUTPUT.PUT_LINE (   'Employee No: '
                                   || v_emp.employee_number
                                   || '  has not been found!  '
             insert_flag := 'X';
          END IF;
          CLOSE c_check_employee;
    -- determine which customers already have been assigned a Job
          /*  OPEN c_check_emps_job (v_emp.employee_number);
           FETCH c_check_emps_job
           INTO empjob_rec;
           IF c_check_emps_job%FOUND
          THEN       job_exists := 'X';   -- so we're wanting all those with job_exists := 'X'..
          ELSE        job_exists := 'I';
          END IF;
          CLOSE c_check_employee;
    -- Obtain the most recent Object Version Number..
          OPEN csr_ass_ovn (v_emp.person_id);
          FETCH csr_ass_ovn
           INTO l_ass_obj;
          CLOSE csr_ass_ovn;
    -- Now Update PER_ALL_PEOPLE_F and PER_ASSIGNMENTS with default Cost Code '9999'
          IF insert_flag = 'I'
          THEN
             BEGIN
         DBMS_OUTPUT.PUT_LINE (   ' Updating Employee..:' || v_emp.employee_number );
                -- Importing Emp Job, Default Cost Code and Supervisor details --
                Hr_Assignment_Api.update_emp_asg
                   (p_validate                    => l_validate,
                    p_effective_date              => SYSDATE,           -- l_date,
                    p_datetrack_update_mode       => l_datetrack_update_mode,
                    p_assignment_id               => v_emp.assignment_id,
                                                          --- ** REQUIRED FIELD **
                    p_object_version_number       => l_ass_obj,
                    p_supervisor_id               => v_emp.supervisor_id,
                    p_default_code_comb_id        => l_default_code_comb_id,
                    p_concatenated_segments       => l_concatenated_segments,
                    p_soft_coding_keyflex_id      => l_soft_coding_keyflex_id,
                    p_comment_id                  => l_comment_id,
                    p_effective_start_date        => l_date,              --IN/OUT
                    p_effective_end_date          => l_effective_end_date,
                    p_no_managers_warning         => l_no_managers_warning,
                    p_other_manager_warning       => l_other_manager_warning
                Hr_Assignment_Api.update_emp_asg_criteria
                   (p_validate                          => l_validate,
                    p_effective_date                    => SYSDATE,     -- l_date,
                    p_datetrack_update_mode             => l_datetrack_update_mode,
                    p_assignment_id                     => v_emp.assignment_id,
                                                          --- ** REQUIRED FIELD **
                    p_object_version_number             => l_ass_obj,
                    p_organization_id                   => l_organization_id,
    --            p_location_id                       => std_location_id,
    --            p_job_id                            => l_job_id,
    --            p_position_id                       => std_position_id,
                    p_special_ceiling_step_id           => l_special_ceiling_step_id,
                    p_effective_start_date              => l_date,
                    p_effective_end_date                => l_effective_end_date,
                    p_people_group_id                   => l_people_group_id,
                    p_group_name                        => l_group_name,
                    p_org_now_no_manager_warning        => l_org_now_no_manager_warning,
                    p_other_manager_warning             => l_other_manager_warning,
                    p_spp_delete_warning                => l_spp_delete_warning,
                    p_entries_changed_warning           => l_entries_changed_warning,
                    p_tax_district_changed_warning      => l_tax_district_changed_warning
                DBMS_OUTPUT.PUT_LINE (   ' Employee Updated..:'
                                      || v_emp.employee_number
    -- End of customer related details
             END;
          END IF;
       END LOOP;
       COMMIT;
    EXCEPTION
       WHEN NO_DATA_FOUND
       THEN
          ROLLBACK;
    -- DBMS_OUTPUT.PUT_LINE ( '"No Data Found" for Employee:'  || v_emp.employee_number || SQLERRM );
       WHEN OTHERS
       THEN
          ROLLBACK;
          err_num := TO_CHAR (SQLCODE);
          err_msg := SUBSTR (SQLERRM, 1, 150);
          err_line :=
                'Oracle error (seqno='
             || err_seq
             || ') '
             || err_num
             || ' occurred processing record '
             || TO_CHAR (v_rec_cnt + 1)
             || ' : '
             || err_msg;
          DBMS_OUTPUT.PUT_LINE (err_line);
          INSERT INTO SU_SL_ERRORS
               VALUES (err_num, err_msg, SYSTIMESTAMP);
    END;
    EXIT;

    Hi
    Check if that works for you
    /* Formatted on 2009/04/22 14:43 (Formatter Plus v4.8.7) */
    SET serveroutput ON SIZE 1000000 FORMAT WRAPPED
    SET verify OFF
    SET feedback OFF
    DECLARE
    -- Debugging/error handling
    -- Work variables
       p_emp_number                     VARCHAR2 (14);
       v_rec_cnt                        NUMBER                     := 0;
       insert_flag                      VARCHAR2 (8);
       job_exists                       VARCHAR2 (8);
       err_num                          NUMBER;
       err_msg                          VARCHAR2 (150);
       err_line                         VARCHAR2 (350);
       err_seq                          NUMBER                     := 0;
       l_date                           DATE                       := SYSDATE;
       l_validate                       BOOLEAN                    DEFAULT FALSE;
       l_***_obj                        NUMBER;
       l_emp_obj                        NUMBER;
       l_default_code_comb_id           NUMBER                     := 217269;
       l_datetrack_update_mode          VARCHAR2 (30)             := 'CORRECTION';
       l_organization_id                NUMBER                     := 0;
       l_concatenated_segments          VARCHAR2 (240);
       l_soft_coding_keyflex_id         NUMBER;
       l_comment_id                     NUMBER;
       l_effective_end_date             DATE
                                        := TO_DATE ('17-FEB-2059', 'DD-MON-YYYY');
       l_no_managers_warning            BOOLEAN;
       l_special_ceiling_step_id        NUMBER;
       l_people_group_id                NUMBER;
       l_group_name                     VARCHAR2 (30);
       l_entries_changed_warning        VARCHAR2 (30);
       l_spp_delete_warning             BOOLEAN;
       l_org_now_no_manager_warning     BOOLEAN;
       l_tax_district_changed_warning   BOOLEAN;
       l_other_manager_warning          BOOLEAN;
       l_business_group_id              NUMBER                     := 0;
       l_person_id                      NUMBER;
       l_assignment_number              VARCHAR2 (35);
       l_style                          VARCHAR2 (4)               := 'GB';
       ip_p_address_id                  NUMBER;
       l_effective_date                 DATE                       := SYSDATE;
       l_date_from                      DATE                       := SYSDATE;
       l_date_to                        DATE                       := NULL;
    -- CURSOR 1 - get all Existing Employees (well, for testing purps..
    just Peter Barlow for now..)
       CURSOR c_get_employee_details
       IS
          SELECT DISTINCT per.person_id, per.employee_number, per.full_name,
                          paas.assignment_id, paas.supervisor_id,
                          paas.default_code_comb_id
                     FROM per_all_people_f per, per_all_assignments_f paas
                    WHERE per.employee_number = p_emp_number
                      AND paas.person_id(+) = per.person_id
                      AND per.person_id = '30188';
    -- CURSOR 2 - get all Existing Employees (well, for testing purps.. just Peter Barlow for now..)
       CURSOR c_check_employee (p_emp_number VARCHAR2)
       IS
          SELECT DISTINCT per.person_id, per.employee_number, per.full_name,
                          paas.assignment_id, paas.supervisor_id,
                          paas.default_code_comb_id
                     FROM per_all_people_f per, per_all_assignments_f paas
                    WHERE per.employee_number = p_emp_number
                      AND paas.person_id(+) = per.person_id
                      AND per.person_id = '30188';
       emp_rec                          c_check_employee%ROWTYPE;
    -- Cursor 4 retrieves latest Object Version Number from per_assignments_f table..
       CURSOR csr_***_ovn (cp_person_id IN per_all_people_f.person_id%TYPE)
       IS
          SELECT MAX (paas.object_version_number)
            FROM per_assignments_f paas, per_all_people_f per
           WHERE paas.person_id = per.person_id
             AND per.employee_number = paas.assignment_number
             AND per.person_id = cp_person_id;
    BEGIN
    -- UPDATE of EXISTING Employees Details from work table..
       FOR v_emp IN c_get_employee_details
       LOOP
    -- determine whether customer already exists
          OPEN c_check_employee (v_emp.employee_number);
          LOOP
          FETCH c_check_employee
           INTO emp_rec;
          IF c_check_employee%FOUND
          THEN
             insert_flag := 'I';
             DBMS_OUTPUT.PUT_LINE ('Employee No: ' || v_emp.employee_number);
          ELSE
             DBMS_OUTPUT.PUT_LINE (   'Employee No: '
                                   || v_emp.employee_number
                                   || '  has not been found!  '
             insert_flag := 'X';
          END IF;
          END LOOP;
          CLOSE c_check_employee;
    -- Obtain the most recent Object Version Number..
          OPEN csr_***_ovn (v_emp.person_id);
          LOOP
          FETCH csr_***_ovn
           INTO l_***_obj;
          END LOOP;
          CLOSE csr_***_ovn;
    -- Now Update PER_ALL_PEOPLE_F and PER_ASSIGNMENTS with default Cost Code '9999'
          IF insert_flag = 'I'
          THEN
             BEGIN
         DBMS_OUTPUT.PUT_LINE (   ' Updating Employee..:' || v_emp.employee_number );
                -- Importing Emp Job, Default Cost Code and Supervisor details --
                Hr_Assignment_Api.update_emp_asg
                   (p_validate                    => l_validate,
                    p_effective_date              => SYSDATE,           -- l_date,
                    p_datetrack_update_mode       => l_datetrack_update_mode,
                    p_assignment_id               => v_emp.assignment_id,
                                                          --- ** REQUIRED FIELD **
                    p_object_version_number       => l_***_obj,
                    p_supervisor_id               => v_emp.supervisor_id,
                    p_default_code_comb_id        => l_default_code_comb_id,
                    p_concatenated_segments       => l_concatenated_segments,
                    p_soft_coding_keyflex_id      => l_soft_coding_keyflex_id,
                    p_comment_id                  => l_comment_id,
                    p_effective_start_date        => l_date,              --IN/OUT
                    p_effective_end_date          => l_effective_end_date,
                    p_no_managers_warning         => l_no_managers_warning,
                    p_other_manager_warning       => l_other_manager_warning
                Hr_Assignment_Api.update_emp_asg_criteria
                   (p_validate                          => l_validate,
                    p_effective_date                    => SYSDATE,     -- l_date,
                    p_datetrack_update_mode             => l_datetrack_update_mode,
                    p_assignment_id                     => v_emp.assignment_id,
                                                          --- ** REQUIRED FIELD **
                    p_object_version_number             => l_***_obj,
                    p_organization_id                   => l_organization_id,
    --            p_location_id                       => std_location_id,
    --            p_job_id                            => l_job_id,
    --            p_position_id                       => std_position_id,
                    p_special_ceiling_step_id           => l_special_ceiling_step_id,
                    p_effective_start_date              => l_date,
                    p_effective_end_date                => l_effective_end_date,
                    p_people_group_id                   => l_people_group_id,
                    p_group_name                        => l_group_name,
                    p_org_now_no_manager_warning        => l_org_now_no_manager_warning,
                    p_other_manager_warning             => l_other_manager_warning,
                    p_spp_delete_warning                => l_spp_delete_warning,
                    p_entries_changed_warning           => l_entries_changed_warning,
                    p_tax_district_changed_warning      => l_tax_district_changed_warning
                DBMS_OUTPUT.PUT_LINE (   ' Employee Updated..:'
                                      || v_emp.employee_number
    -- End of customer related details
             END;
          END IF;
       END LOOP;
       COMMIT;
    END;
    EXIT;Thanks

  • RG23 Part II not updating for Vendor Return

    All SAP Gurus,
    In case of Vendor Return..
    RG 23 Part I is getting updated.
    But RG23 Part II is not getting updated.
    Where may be the problem?
    Regards,

    dear sir.
    when u do vendor return ,
    1) part1 will get updated in RG23 part1.
    2) RG23 part II will not update until you utilized in J2IUN, after utilization then only it will update to RG23 part II
    in j2iun we can utilized with respective u r vendor return excise invoice number.
    or
    if u r series group ( Immediate Utilization of CENVAT indicator active), while creating excise invoice in j1is , it will update the part II
    regards
    jrp

  • [svn:osmf:] 13003: Update some unit tests to reflect that LayoutContextSprite now returns 0 ( not NaN) for uninitialized values to be consistent with ViewTrait.

    Revision: 13003
    Revision: 13003
    Author:   [email protected]
    Date:     2009-12-16 13:12:08 -0800 (Wed, 16 Dec 2009)
    Log Message:
    Update some unit tests to reflect that LayoutContextSprite now returns 0 (not NaN) for uninitialized values to be consistent with ViewTrait.
    Modified Paths:
        osmf/trunk/framework/MediaFrameworkFlexTest/org/osmf/layout/TestLayoutContextSprite.as
        osmf/trunk/framework/MediaFrameworkFlexTest/org/osmf/proxies/TestListenerProxyElementAsSu bclass.as

    Revision: 13003
    Revision: 13003
    Author:   [email protected]
    Date:     2009-12-16 13:12:08 -0800 (Wed, 16 Dec 2009)
    Log Message:
    Update some unit tests to reflect that LayoutContextSprite now returns 0 (not NaN) for uninitialized values to be consistent with ViewTrait.
    Modified Paths:
        osmf/trunk/framework/MediaFrameworkFlexTest/org/osmf/layout/TestLayoutContextSprite.as
        osmf/trunk/framework/MediaFrameworkFlexTest/org/osmf/proxies/TestListenerProxyElementAsSu bclass.as

  • Info structure in not updated

    Dear all,
    I am creating one info structure containing Customer Group is added to characteristics.
    But when i am updating the info structure then it dosenot update.
    Can u plz send me the detail customization for creating new infostructure.
    Also why it is not updating?
    Plz sent me the details regarding the same.
    Thanks & Regards,
    PM

    Goto OMO1 tcode and select ur info structure and double click on it and sel;ect the radio button "synchronus updating" and check.
    compare ur settings with the below configuration.
    please gothough this config
    IMG menu path for SIS: IMG>Logistics General>Logistics Information System (LIS)
    Figure 1: IMG menu path for SIS configuration steps
    Task 1: Create Self-Defined Information Structure
    • Use transaction code MC21 (menu path Logistics Data Warehouse>Data Basis>Information Structures>Maintain self-defined information structures> Create) to create a Self-Defined Information Structure. Give a customer-range number 990 (any available number between 501 and 999). To make it easier, use ‘copy from’ to copy structure from S001.
    Figure 2: Create a Self-Defined Info Structure
    Figure 3: Structure S990 is created as a copy of S001
    Structure S990 is created as a copy of S001. Accordingly, you will see defaulted characteristics and key figures. Review various settings (unit, sum, etc.).
    • Add two more characteristics: Sales Order Number and Item Number.
    Click on ‘Choose Characteristics’ Icon and then click on ‘Selection List’ icon to choose fields from ‘field catalogs’.
    Choose field catalog ‘SD: Bus transaction (order)’ by double-clicking it. Double-click on ‘Sales Document’ and ‘Sales document item’ from ‘field catalog fields’ (you may need to scroll-down).
    Figure 4: Choose fields ‘Sales Document’ and ‘Sales Document Item’ from Field Catalog
    You can view technical names by toggling the Switch Display icon.
    Figure 5: ‘Switch display’ to view technical names
    Make sure that you have selected correct characteristics as: ‘MCVBAK-VBELN’ and ‘MCVBAP-POSNR’.
    Click on ‘Copy + Close’ icon and then click on ‘Copy’ icon to accept the changes.
    • Review information
    Double-click on characteristics and key figures to review technical information. This step is not mandatory, just for information.
    Figure 6: Review technical field information for characteristics: Customer (KUNNR), Sales Order (VBELN), Item (POSNR) and Key figures: Incoming Order (AENETWR), Open Order (OAUWE)
    System displays the generation log.
    Figure 7: Generation log for Structure S990. Table S990E is ‘Structural Information’ for Table S990
    Task 2: Maintain Update Groups
    • SIS IMG>Logistics Data Warehouse>Updating>Updating Definition>General Definition Using Update Groups>Maintain Update Groups
    Figure 8: Update Groups for Sales and Distribution
    No new entries need to be created. You can use the existing system-delivered update groups. Use Update Group (UpdGrp) 1 for the standard order process of: SIS: Sales Document, Delivery, Billing Document and use UpdGrp 2 for the SIS: Returns, Returns Delivery, Credit Memo.
    Task 3: Maintain Update Rules
    • SIS IMG>Logistics Data Warehouse>Updating>Updating Definition>Specific definition using Update Rules>Maintain Update Rules>Display
    Info Structure S001 and Update Group 1.
    Before we create update rules for S990, let's review how update rules are defined for S001. Review rules for Characteristics and key figures.
    Figure 9: Update Rules for combination of Structure S001 and Update Group 1
    Double-click to review specific details of the update rule for Key Figure ‘Incoming Orders’. Note that the event is ‘VA – Sales Order creation’.
    Figure 10: Update rules for Key Figure ‘Incoming Orders’
    Figure 11: Characteristics for Incoming Orders
    Similarly review details of Key Figure ‘Sales’. Note that the Invoiced Amount (Sales Amount) is updated by event ‘VD – Billing Document’.
    Figure 11: Update rules for Key Figure ‘Sales’
    Figure 12: Characteristics for ‘Sales’
    • Similar to Update Rules of ‘S001’, we need to create Update Rules for our Self-Defined Structure ‘S990’.
    SIS IMG>Logistics Data Warehouse>Updating>Updating Definition>Specific definition using Update Rules>Maintain Update Rules>Create (transaction code MC24). To make it easier, use ‘copy from’ to copy update rules from S001.
    Figure 13: Create Update Rules for Structure S990
    Please make sure the Source information is properly updated for all the characteristics. Since you copied the rules, the sales order and item rules are defaulted too. Make sure appropriate changes are made for events VC (delivery) and VD (Invoice).
    Figure 14: Source Characteristics for Sales Document and Item
    Since we copied the Update Rules, the source field and table information is also copied. We need to change appropriately to make sure correct source information is populated. Click on “Rules for charact” and verify source information for every key figure, by clicking on ‘previous key figure’ and ‘next key figure’.
    Figure 15: For Event ‘VD – Billing Document’, Sales Document and Item are present in MCVBRP table
    Figure 16: For Event ‘VC – Shipping’, Sales Document and Item are present in MCLIPS table
    Figure 17: Maintain Update Rules for Structure S990 and Update Group
    Task 4: Maintain Statistics Groups
    • Maintain Statistics Groups
    Maintain Statistics Groups for Customers, Materials, SD Document Types etc. Most of the pre-defined settings are enough. Make sure that settings are updated for customized objects too, e.g., SD document types for your organizations.
    Also, make sure that the customer (sales view) and material Master records are updated with appropriate Statistics Groups.
    Figure 18: Maintain and assign statistics groups. IMG path: Updating> Updating Control> Settings: Sales> Statistics Groups
    Maintain Statistics Groups for Customers (OVRA)
    Figure 19: Statistics Groups for Customers
    Maintain Statistics Groups for Material (OVRF)
    Figure 20: Statistics Groups for Materials
    Maintain Statistics Groups for Sales Document
    Figure 21: Statistics Groups for Sales Documents
    Assign Statistics Groups for relevant Sales Document Type
    Figure 22: Assign Statistics Groups to relevant Sales Documents
    Assign Statistics Groups for each Sales Document Item Type
    Figure 23: Assign Statistics Groups to relevant Item Categories
    -Assign Statistics Groups to each Delivery Type
    Figure 24: Assign Statistics Groups to relevant Delivery Types
    -Assign Statistics Groups to each Delivery Item Type
    Figure 25: Assign Statistics Groups to relevant Delivery Item Categories
    Determine Billing Document Types Relevant to Statistics
    Figure 26: Assign Statistics Groups to relevant Billing Types
    Note: As mentioned earlier, most of the settings are already set in standard system. Make sure that customized objects specific to your company are also updated appropriately.
    Update Customer Master for Statistics Relevancy
    Transaction Code XD02 (Sales view, field “Cust stats.Grp”)
    Figure 27: Assign Statistics Groups to Customer Master Records (Sales view)
    Update Material for Statistics Relevancy
    Transaction Code MM02 (Sales 2 view, field “Matl statistics grp”)
    Figure 28: Assign Statistics Groups to Material Master Records (Sales view)
    Task 5: Assign Update Groups to Header and Item Levels
    • Assign Update Groups on Header and Item levels
    For combinations of Sales Area (Sales Org, Distribution Channel, Division), assign Update groups (transaction codes OVRO and OVRP).
    SIS IMG>Logistics Data Warehouse>Updating>Updating Control>Settings: Sales>Update Group
    Update Groups at Item Level
    Figure 29: Update Groups at Item Level
    Figure 30: Update Groups at Item Level - details
    Update Groups at Header Level
    Figure 31: Update Groups at Header Level
    Figure 32: Update Groups at Header Level - details.
    Task 6: Activate LIS Update
    • Lastly, Activate LIS Update for the Structure (transaction code OMO1)
    SIS IMG path: Logistics Data Warehouse>Updating>Updating Control>Activate Update>Choose Activity as Sales and Distribution.
    Let's update our LIS structure S990 with period as ‘Month’ and update option of ‘Asynchronous Updating (2)’.
    Figure 33: Activate LIS Update for S990
    Finally u go through t.code MCSI, select ur info structure. Then execute the LIS report.
    rewards if it helps
    Edited by: kishore gopala on Feb 14, 2008 6:43 AM

  • Data in server is not updated

    i have modify the data STREET to "ANG MO KIO"
    http://i192.photobucket.com/albums/z231/yzme/d1.gif
    but the data in server still "HEAVEN ST"
    http://i192.photobucket.com/albums/z231/yzme/d2.gif
    I am using Time2Way T01, if it is when i sync the data will be uploaded, or do i need to configure somewhere to get the data upload ?
    if the data in client and middleware is different, when i sync , the data from the middleware will again download to the client replace the modified values
    OR
    the data in the client will uploaded to the middleware and trigger the MODIFY bapi wrappers ?
    <b>
    when i check my MEREP_MON, and MEREP_LOG there is no data inside this meaning after i changed the values and perform the sync, Inbox and Outbox still remain the previous data as well as inside the MEREP_LOG,
    is it the bapi wrapper not call by the client ?
    </b>
    and i find out that my bapi not get called, what additional code should i add instead of the code below.
    DO I NEED TO IMPLEMENT SOME CODE FOR UPLOADER ??
    do i have to change the reqDirectSync="true", if yes, how do i changed, just change inside the editor, or there is somewhere to configure in sapgui
    after i changed the data , i try to sync, and i check on merep_mon
    what specific or additional steps i need to configure, on uploader / receiver or synchronizer
    <b>i do not implement any syncBoDelta or global reset ?</b>Can someone explain the term "delta" to me and its activities?
    if i have upload something, and sync, the Inbox should have something right ??
    i just put add this code to modify my records
    public String modifyRecord(String eventName,boolean didNavigate){
                             String syncBoName="ZCON";
                             String syncKey="0001230297";
                             tableViewBean.setString(syncBoName +" "+syncKey);
                             System.out.println("SyncBoName: " +syncBoName + " syncKey: " +syncKey);
                             tcp = TableContentProvider.instance(syncBoName);
                             tcp.modifyTable(syncBoName,syncKey);                                   return JSP_DETAIL_SYNCBOINSTANCE;
    public void modifyRecord(String syncBoName,String syncKey){
    SyncBoDescriptor sbd=null;
    sbd=descriptorFacade.getSyncBoDescriptor(syncBoName);
    SyncBo sb=null;
    try{
    System.out.println("bp 2");
    sb=dataFacade.getSyncBo(sbd,syncKey);
    }catch(PersistenceException pex){
    System.out.println("Exception in modifyRecordLoc:" +pex.getMessage());
    SmartSyncTransactionManager transactionManager;
    try{  transactionManager=dataFacade.getSmartSyncTransactionManager();
    if(!transactionManager.isTransactionStarted()){
    transactionManager.beginTransaction();
    boolean b8=false;
    b8=setHeaderFieldValue2(sb,"STREET","ANG MO KIO");
    transactionManager.commit();
    SetSendType();
    listAllOutDelta();
    checkInboxConflict();
    }catch(Exception e){
    System.out.println("Exception in modifyRecordAmt2:" +e.getMessage());
    public void checkInboxConflict(){
              ErrorConflictInbox errorConflictInbox= SmartSyncRuntime.getInstance().getInboxNotifier().getErrorConflictInbox();
              MeIterator iter;
              SyncBoResponse resp;
              try {
              iter= errorConflictInbox.getAllSyncBoResponses();
              while(iter.hasNext()){
              resp= (SyncBoResponse)iter.next();
              String bo=resp.getSyncBoDescriptor().getSyncBoName();//SyncBo Name
              String state=resp.getSyncBoResponseState().toString();
              String res=resp.getResponseType().toString();//Get the SyncBo response type (conflict or ERROR)
              String msg=resp.getText();// This will return the exact message from the server
              System.out.println("bo:" +bo +" state: " +state +" res: " +res +" msg:" +msg);
              System.out.println("state:" +resp.getSyncBoResponseState().toString());
              if(resp.getSyncBoResponseState().equals(SyncBoResponseState.INITIAL)){
                   String a=resp.getSyncBoResponseState().toString();
                   resp.acceptClientSyncBo();
                   String b=resp.getSyncBoResponseState().toString();
                   resp.delete();
                   System.out.println("state1: " +a +"state2: " +b);
              boolean syncStatusComplete= SmartSyncRuntime.getInstance().getInboxNotifier().isSyncStatusComplete();
              System.out.println("syncStatus:" +syncStatusComplete);
              }catch (Exception e) {
              e.printStackTrace();
    public void listAllOutDelta(){
              SyncBoOutDeltaFacade deltFac=SmartSyncRuntime.getInstance().getSyncBoOutDeltaFacade();
              MeIterator allDelta;
              try {
                   allDelta = deltFac.getAllDelta();
                   while(allDelta.hasNext()){
                             SyncBoOutDelta outDelta=(SyncBoOutDelta)allDelta.next();
                             System.out.println("SyncKey:" +outDelta.getSyncKey() +" Action:" +outDelta.getAction()
                                       +" State:" +outDelta.getStateId() +" SendType:"+outDelta.getSendType());
              } catch (SmartSyncException e) {
                   // TODO Auto-generated catch block
                   e.printStackTrace();
              } catch (PersistenceException e) {
                   // TODO Auto-generated catch block
                   e.printStackTrace();
    public void SetSendType(){
              SmartSyncRuntime ssRuntime = SmartSyncRuntime.getInstance();
              SyncBoOutDeltaFacade boDeltaFacade = ssRuntime.getSyncBoOutDeltaFacade();
              SyncBoDescriptorFacade descF = ssRuntime.getSyncBoDescriptorFacade();
              SyncBoDescriptor myBO = descF.getSyncBoDescriptor("ZCON");
              boDeltaFacade.setSendType(myBO, SyncBoOutDeltaSendType.SEND_DIRECT);
    //SyncManager.getInstance().synchronizeWithBackend(VisibilityType.USER_SHARED);
         public boolean setHeaderFieldValue2(
              SyncBo sb,
              String headerFieldName,
              Object value) {
              SyncBoDescriptor sbd = sb.getSyncBoDescriptor();
              //RowDescriptor trd = sbd.getTopRowDescriptor();
              System.out.println("bp 10");
              RowDescriptor trd=sbd.getRowDescriptor("010");
              System.out.println("bp 11");
              FieldDescriptor fd = trd.getFieldDescriptor(headerFieldName);
              System.out.println("fd:" +fd.getFieldName());
              if (fd != null) {
              BasisFieldType bft = fd.getFieldType();
              //Row header = sb.getTopRow();
              System.out.println("bp 12");
              //Row header = null;
              Row[] header=null;
              //try {
                   //header = sb.getRow("0001211181");
                   //header=sb.getTopRow();
                   header=getItemInstances(sb,"010");
                   if(header==null){
                        System.out.println("is null");
                   }else{
                        System.out.println("not null");
              //} catch (PersistenceException e1) {
                   // TODO Auto-generated catch block
              //     System.out.println("Exception getRow:" +e1.getMessage());
              //     e1.printStackTrace();
              System.out.println("bp 13");
              try {
    //             Integer operator
              if (bft == BasisFieldType.N) {
                   System.out.println("Numeric");
              NumericField nf = header[0].getNumericField(fd);
              if (nf != null) {
              BigInteger ii = new BigInteger(value.toString());
              nf.setValue(ii);
              return true;
              } else {
              return false;
    //             Character operator
              if (bft == BasisFieldType.C) {
                   System.out.println("Character");
              CharacterField cf = header[0].getCharacterField(fd);
              if (cf != null) {
              cf.setValue(value.toString());
              return true;
              } else {
              return false;
    //             Decimal operator
              if (bft == BasisFieldType.P) {
                   System.out.println("Decimal");
              DecimalField df = header[0].getDecimalField(fd);
              System.out.println("bp 1.1");
              if (df != null) {
                   System.out.println("bp 1.2");
              BigDecimal bd = new BigDecimal(value.toString());
              System.out.println("bp 1.3");
              df.setValue(bd);
              System.out.println("bp 1.4");
              return true;
              } else {
                   System.out.println("bp 1.5");
              return false;
    //             Similar operation for time and date operator fields
              if (bft == BasisFieldType.D) {
                   System.out.println("Date");
              DateField df = header[0].getDateField(fd);
              if (df != null) {
              if (value.toString().equals("0")) {
              Date dat = Date.valueOf("0000-00-00");
              df.setValue(dat);
              } else if (!value.toString().equals("")) {
              Date dat = Date.valueOf(value.toString());
              df.setValue(dat);
              } else {
              Calendar cal = Calendar.getInstance();
              java.sql.Date bd =
              new java.sql.Date(cal.getTime().getTime());
              df.setValue(bd);
              return true;
              } else {
              return false;
    //             Similar operation for time and date operator fields
              } catch (SmartSyncException ex) {
              System.out.println(ex.getMessage());
              } catch (PersistenceException e) {
              System.out.println(e.getMessage());
              return false;
    SyncType: T01 Wrapper: GetList,GetDetail,Modify
      <?xml version="1.0" encoding="utf-8" ?>
    - <MeRepApplication schemaVersion="1.1" id="ZCON" version="01">
      <Property name="CLIENT.BUILDNUMBER" />
      <Property name="C_APPLRESOLVE" />
      <Property name="DATA_VISIBLE_SHARED">X</Property>
      <Property name="E_APPLRESOLVE" />
      <Property name="FACADE_C_CLIENT">X</Property>
      <Property name="FACADE_E_CLIENT">X</Property>
      <Property name="HOMEPAGE.INVISIBLE" />
      <Property name="INITVALUE" />
      <Property name="RUNTIME">JSP</Property>
      <Property name="TYPE">APPLICATION</Property>
    - <SyncBO id="ZCON" version="1" type="timedTwoWay" allowCreate="false" allowModify="true" allowDelete="false" reqDirectSync="false" downloadOrder="1">
    - <TopStructure name="TOP">
    - <Field name="SYNC_KEY" type="N" length="10" decimalLength="0" signed="false" isKey="true" isIndex="true">
      <Input type="create">false</Input>
      <Input type="modify">false</Input>
      </Field>
    - <Field name="PERSNUMBER" type="N" length="10" decimalLength="0" signed="false" isKey="false" isIndex="false">
      <Input type="create">false</Input>
      </Field>
    - <ChildStructure name="010">
    - <Field name="SYNC_KEY" type="N" length="10" decimalLength="0" signed="false" isKey="true" isIndex="true">
      <Input type="create">false</Input>
      <Input type="modify">false</Input>
      </Field>
    - <Field name="PERSNUMBER" type="N" length="10" decimalLength="0" signed="false" isKey="false" isIndex="false">
      <Input type="create">false</Input>
      </Field>
    - <Field name="CITY1" type="C" length="40" decimalLength="0" signed="false" isKey="false" isIndex="false">
      <Input type="create">false</Input>
      </Field>
    - <Field name="CITY2" type="C" length="40" decimalLength="0" signed="false" isKey="false" isIndex="false">
      <Input type="create">false</Input>
      </Field>
    - <Field name="STREET" type="C" length="40" decimalLength="0" signed="false" isKey="false" isIndex="false">
      <Input type="create">false</Input>
      </Field>
    - <Field name="HOUSE_NUM" type="C" length="40" decimalLength="0" signed="false" isKey="false" isIndex="false">
      <Input type="create">false</Input>
      </Field>
    - <Field name="REGION" type="C" length="40" decimalLength="0" signed="false" isKey="false" isIndex="false">
      <Input type="create">false</Input>
      </Field>
      </ChildStructure>
      </TopStructure>
      </SyncBO>
      </MeRepApplication>
    Message was edited by:
            yzme yzme

    <u>my intention is very simple, i just need to  update a field in a row and update to the middleware so that the backend will reflect the changes. </u>
    >2 if i set the conflict/error handling to application, then i should have to implement some code for it, right ?
    >3) List syncbooutdelta
    <b>SyncKey:0001233035 Action:M SendType:SEND</b>
    doesnt it mean that when i sync , the uploader will pick up this data and do a modification ??
    i have change the metadata like this
    <SyncBO id="ZCON" version="1" type="timedTwoWay" allowCreate="false" allowModify="true" allowDelete="false" reqDirectSync=<b>"true" </b>downloadOrder="1">
    1) i try to sync the application and check the worklist monitor, there is nothing in the inbox ? how come ?
    2)if i test using emulator, i try to modify a value and execute, i am getting the following error.
    <u>
    Header action from mobile="MOD", R/3 action="ADD"
    Return code 1 (DOWNLOADER)
    </u>
    i try to modify not "Add"
    3) I am using Time 2 Way , how to check it is synchronous or asynchronous ? in merep_sbuilder, the default asyn. is checked, meaning async ??
    the type is T01 , ASYNC
    4)
    public void checkInboxConflict(){
              ErrorConflictInbox errorConflictInbox= SmartSyncRuntime.getInstance().getInboxNotifier().getErrorConflictInbox();
              MeIterator iter;
              SyncBoResponse resp;
              try {
              iter= errorConflictInbox.getAllSyncBoResponses();
              while(iter.hasNext()){
              resp= (SyncBoResponse)iter.next();
              String bo=resp.getSyncBoDescriptor().getSyncBoName();//SyncBo Name
              String state=resp.getSyncBoResponseState().toString();
              String res=resp.getResponseType().toString();//Get the SyncBo response type (conflict or ERROR)
              String msg=resp.getText();// This will return the exact message from the server
              System.out.println("bo:" +bo +" state: " +state +" res: " +res +" msg:" +mtext);
              boolean syncStatusComplete= SmartSyncRuntime.getInstance().getInboxNotifier().isSyncStatusComplete();
              System.out.println("syncStatus:" +syncStatusComplete);
              }catch (Exception e) {
              e.printStackTrace();
    <u>bo:ZCON state: INITIAL res: CONFLICT msg:Conflict: R/3 = delete, device = modify
    SyncStatus=true (complete)
    </u>
    5) after that i change my code to this
    while(iter.hasNext()){
      if(resp.getSyncBoResponseState().equals(SyncBoResponseState.INITIAL)){
        String a=resp.getSyncBoResponseState().toString();
        String a1=syncBO.getSyncState().toString();
        resp.acceptClientSyncBo();   //No transaction stated to commit
        resp.delete();
    String b=resp.getSyncBoResponseState().toString();
    String b2=syncBO.getSyncState().toString();
    System.out.println("state1: " +a +"state2: " +b);
    System.out.println("SyncState1: " +a1 +"SyncState2: " +b1);
    <u>state1: INITIAL state2: RESOLVED </u>
    <u>SyncStatus1:QUANRANTINE SyncStatus2: INCONSISTENT</u>
    and i try to sync ...no data in worklist
    6)i try to list out all the delta to be uploaded
    ListAllOutDelta to be upload
    <u>SyncKey:0001233349 Action:I State:99925F8E24DFFE49A4563C5E018E9B61 SendType:SEND
    </u>
    i am modifying the rows, not Insert a new row, the Action:'I' instead of 'M',  pls clarify on this.
    after i sync, i found out that there is 2 record with different syncKey but same primary key and all attributes appear to be same except the attribute that i changing.
    <u>SYNCKEY    PERSNUMBER CITY STREET HOUSENO</u>
    0001230298 000000000  HELL <u>ANG MO KIO</u> 0123456789 (modified record)
    0001230299 000000000  HELL <u>HEAVEN ST</u>  0123456789(old record)
    i check the application and found out that the previous record that i modify have its value changing locally but not updated into the backend, after sync, there is another record downloaded into this application which is the old record before i modify with different syncKey.
    but when i check the backend table, there is only 1 record inside, because i dont implement the 'Create' Bapi.
    does it make sense ?
    7) when i check my client , the data is persisted with modified value , but the changes is not reflected in the server, how come the data in client is not uploaded to the server.
    acceptClientSyncBo will make the client wins how come the data is not get updated in server ?
    Re: Regarding modifying Sync BO
    According to him, can anyone translate the things highlighted below
    for modifying one sync bo instance , there is no need to use createUnlinkedCopy()..
    just use like this..
    sb = dataFacade.getSyncBo(sbd,key);
    SmartSyncTransactionManager transactionManager;
    transactionManager = dataFacade.getSmartSyncTransactionManager();
    transactionManager.beginTransaction();
    setHeaderFieldValue(sb,"PERSNUMBER","9866321467");
    setHeaderFieldValue(sb,"FIRSTNAME","RajaSekhar");
    setHeaderFieldValue(sb,"LASTNAME","Varigonda");
    setHeaderFieldValue(sb,"PROFESSION","Technical Specialist");
    setHeaderFieldValue(sb,"***","MALE");
    setHeaderFieldValue(sb,"BIRTHDAY","1977-09-28");
    setHeaderFieldValue(sb,"HEIGHT","165");
    setHeaderFieldValue(sb,"WEIGHT","75");
    // Commit the transaction
    transactionManager.commit();
    setHeaderFieldValue - can be used to set value in new sync bo instance , or modify the instance.
    <b>
    But one main think here have to consider is , if you have created one Sync Bo instance , not synchronized with back end and u have modified that, then thats just like a creation .So during sync this will call Create Bapi Wrapper.
    </b>
    But after synchronization , is u are modifying that instance , then it is a modification(will call MODIFY Wrapper in back end during synchronization). u must have the right to modify this instance in the client side.
    hope u got it.
    u can debug MI Applications in NWDS.
    refer this blog written by Arun
    /people/arunkumar.ravi/blog/2006/02/22/execute-debug-your-mi-code-from-nwds
    let me know , if u have doubts
    Regards
    Kishor Gopinathan
    pls comment...

  • Can not update an assignment block with on_new_focus

    Hello Experts,
    I have the following problem. I created a new component which is similar to the component BP_BPBT to create activities for Business Agreements. In the overview page of the business agreement in WebUI, I have now the assigment blocks "Plannend activities" and "Interaction History".
    When I create a new activity in the assigment block "planned activities" with the new button and save the activity with the buttons "SAVE" or "SAVE AND BACK". The new created actity is shown, depending on the "Active Status" , in one of the assignment blocks "Plannend activities" and "Interaction History". When I create an another activity in the same way, the new actiity is not shown in the assignment blocks. But when I reload the page again, I can see the new created activity.
    During debugging, I see, that the first creating activity is in the collection in the method ON_NEW_FOCUS. When I create an another activity, the collection is not updated. Here is my coding:
    * get collection of dependent nodes
      TRY.
          entity ?= focus_bo.  "BuAg Entity 
        CATCH cx_sy_move_cast_error.
          RETURN.
      ENDTRY.
      TRY.
      lr_entity = entity->get_related_entity( iv_relation_name = 'BuAgBuPaRel' ).
         lv_collection = lr_entity->get_related_entities(
             iv_relation_name = 'BuilInteractionHistoryRel'
    *  D022159: Performance optimization
             iv_mode          = lv_mode ).
    Can anyone explain me, why the activities (after the first one) are not in my collection.
    Can anyone help me to fix this problem?
    Kind Regards,
    John H.

    Hi,
    Please check if you have added your entity to collection after you save the entry. It looks like your value is saved in DB but its not reflected on UI because you are not refreshing your collection.
    I would suggest that you write a code after you save and commit to refresh your collection of the context node.
    Regards,
    Bhushan

  • Sale Order change BAPI - Storage loc not updated

    Hi Everybody,
    Iam using "BAPI_SALESORDER_CHANGE", to change the sale order items.
    First iam calling above bapi with switch B, for new pricing & then second time for material change.
    When i change any material number, it is getting updated correctly.
    But the storage location, even though iam passing in the bapi it is not updated, & is blank - updation flag is also passed.
    When i execute sale order change again it is updated - ie, for any material change for first bapi call, storage loc is not updated - for 2nd bapi call storage loc is updation - for same input in both the cases.
    Is there any way to update the storage loc is first call of sales order change bapi.
    Below is the parameters iam passing in bapi :
    CALL FUNCTION 'BAPI_SALESORDER_CHANGE'
        EXPORTING
          SALESDOCUMENT      = LS_SALESDOCUMENT
          ORDER_HEADER_IN    = LT_HEADER_IN
          ORDER_HEADER_INX   = LT_HEADER_X
        TABLES
          RETURN                            = LT_RETURN
          ORDER_ITEM_IN               = LT_ITEMS
          ORDER_ITEM_INX             = LT_ITEM_X
          ORDER_CFGS_REF          = LT_CFGS_REF
          ORDER_CFGS_INST         =  LT_PARTS
          ORDER_CFGS_VALUE     = LT_VALUES
          ORDER_CFGS_BLOB        = LT_CUBLOB
          ORDER_CFGS_VK            = LT_CUVK
          ORDER_CFGS_REFINST   = LT_CUREF
          SCHEDULE_LINES            = LT_SCHEDULE_L
          SCHEDULE_LINESX         = LT_SCHEDULE_X
          ORDER_TEXT                   = LT_TEXT
          CONDITIONS_IN                = LT_CONDITION_L
          CONDITIONS_INX              = LT_CONDITION_X.
    Any help is appreciated.
    Regards,
    Nagarajan.J

    Hi,
    Storage location is updated only when same sale order bapi is called another time with required details.
    rgs,
    Nagarajan J

  • Firefox-hg not updated in a while

    I have been using firefox-hg for quite a while, and have been happy with it.  Recently, I noticed that it has not updated, even though I update quite frequently.
    It keeps failing, so I ran the install specifically and recieved the following output:
    5:59PM % yaourt -S firefox-hg ~ (knute) pts/1
    ==> Downloading firefox-hg PKGBUILD from AUR...
    x firefox-hg.desktop
    x PKGBUILD
    x firefox.install
    x mozilla-firefox-1.0-lang.patch
    x firefox-hg-safe.desktop
    x firefox.sh
    x mozconfig
    Comment by: Det on Fri, 11 Feb 2011 09:35:56 +0000
    In which point did you think of actually fetching the sources?
    Comment by: mutantmonkey on Tue, 15 Feb 2011 02:53:52 +0000
    The package seems to work fine without any code to fetch from Mercurial.
    Erus: Thanks, I can try that out the next time I update.
    First Submitted: Wed, 18 Jun 2008 02:27:28 +0000
    firefox-hg 62212-1 : Standalone web browser from mozilla.org, latest development version
    ( Unsupported package: Potentially dangerous ! )
    ==> firefox-hg dependencies:
    - gtk2>=2.16.2 (already installed)
    - gcc-libs>=4.4.0 (already installed)
    - libidl2>=0.8.13 (already installed)
    - mozilla-common (already installed)
    - nss>=3.12.3 (already installed)
    - nspr>=4.8 (already installed)
    - libxt (already installed)
    - hunspell>=1.2.8 (already installed)
    - startup-notification>=0.10 (already installed)
    - pango>=1.24.0 (already installed)
    - desktop-file-utils (already installed)
    - cairo-tee (already installed)
    - libpng>=1.2.24-3 (already installed)
    - libjpeg (already installed)
    - lcms (already installed)
    - mesa (already installed)
    - libproxy (already installed)
    - mercurial (already installed)
    - zip (already installed)
    - pkgconfig (already installed)
    - diffutils (already installed)
    - imagemagick (already installed)
    - python2 (already installed)
    - xorg-server (already installed)
    - autoconf (already installed)
    - libnotify (already installed)
    - wireless_tools (already installed)
    - yasm (already installed)
    ==> Continue building firefox-hg ? [Y/n]
    ==> ------------------------------------
    ==>
    ==> Building and installing package
    ==> Determining latest hg revision...
    requesting all changes
    adding changesets
    transaction abort!
    rollback completed
    ** unknown exception encountered, please report by visiting
    ** http://mercurial.selenic.com/wiki/BugTracker
    ** Python 2.7.1 (r271:86832, Feb 16 2011, 20:59:04) [GCC 4.5.2 20110127 (prerelease)]
    ** Mercurial Distributed SCM (version 1.7.5)
    ** Extensions loaded:
    Traceback (most recent call last):
    File "/usr/bin/hg", line 38, in <module>
    mercurial.dispatch.run()
    File "/usr/lib/python2.7/site-packages/mercurial/dispatch.py", line 16, in run
    sys.exit(dispatch(sys.argv[1:]))
    File "/usr/lib/python2.7/site-packages/mercurial/dispatch.py", line 36, in dispatch
    return _runcatch(u, args)
    File "/usr/lib/python2.7/site-packages/mercurial/dispatch.py", line 58, in _runcatch
    return _dispatch(ui, args)
    File "/usr/lib/python2.7/site-packages/mercurial/dispatch.py", line 593, in _dispatch
    cmdpats, cmdoptions)
    File "/usr/lib/python2.7/site-packages/mercurial/dispatch.py", line 401, in runcommand
    ret = _runcommand(ui, options, cmd, d)
    File "/usr/lib/python2.7/site-packages/mercurial/dispatch.py", line 644, in _runcommand
    return checkargs()
    File "/usr/lib/python2.7/site-packages/mercurial/dispatch.py", line 598, in checkargs
    return cmdfunc()
    File "/usr/lib/python2.7/site-packages/mercurial/dispatch.py", line 591, in <lambda>
    d = lambda: util.checksignature(func)(ui, *args, **cmdoptions)
    File "/usr/lib/python2.7/site-packages/mercurial/util.py", line 426, in check
    return func(*args, **kwargs)
    File "/usr/lib/python2.7/site-packages/mercurial/commands.py", line 736, in clone
    branch=opts.get('branch'))
    File "/usr/lib/python2.7/site-packages/mercurial/hg.py", line 337, in clone
    dest_repo.clone(src_repo, heads=revs, stream=stream)
    File "/usr/lib/python2.7/site-packages/mercurial/localrepo.py", line 1886, in clone
    return self.pull(remote, heads)
    File "/usr/lib/python2.7/site-packages/mercurial/localrepo.py", line 1295, in pull
    return self.addchangegroup(cg, 'pull', remote.url(), lock=lock)
    File "/usr/lib/python2.7/site-packages/mercurial/localrepo.py", line 1692, in addchangegroup
    if (cl.addgroup(source, csmap, trp) is None
    File "/usr/lib/python2.7/site-packages/mercurial/revlog.py", line 1336, in addgroup
    chunkdata = bundle.parsechunk()
    File "/usr/lib/python2.7/site-packages/mercurial/changegroup.py", line 173, in parsechunk
    node, p1, p2, cs = struct.unpack("20s20s20s20s", h)
    struct.error: unpack requires a string argument of length 80
    ==> ERROR: An unknown error has occurred. Exiting...
    ==> ERROR: Makepkg was unable to build firefox-hg.
    ==> Restart building firefox-hg ? [y/N]
    ==> -----------------------------------
    ==>
    ==> WARNING: Following packages have not been installed:
    firefox-hg
    6:13PM % ~ (knute) pts/1
    It seems to have something to do with python, though, I don't have a clue what to do about it.  I have searched the forums, and found nothing regarding this issue.
    I just checked my pacman.log and found that the last time it was upgraded was a month ago.
    [2011-01-20 04:45] upgraded firefox-hg (60681-1 -> 60915-1)
    Any ideas?

    For installation issues with an AUR package, please use it's designated page instead of the forums: http://aur.archlinux.org/packages.php?ID=17820
    Closing.

  • Not updating G/L account and cost center with BAPI BAPI_PO_CREATE1

    Hello Friends,
    The two fields G/L ACCOUNT and Cost Center is not updated using BAPI BAPI_PO_CREATE1. I am unable to understand why? This is what i am passing to account assignment structure( POACCOUNT). Filled POACCOUNTX structre as well. I have passed company code at the header level.
    PO_ITEM = 00010
    SERIAL_NO = 01
    CREAT_DATE = sy-datum
    GL_ACCOUNT = 621000
    COSTCENTER = 1000
    CO_AREA = 4000
    Please let me know why it is not updating anything i missed while passing?
    2>I need to update GR quantity but this field is not available in the BAPI ..Please let me know how to update this field.
    Any help is highly appreciated.
    Regards,
    Raj

    Hi, I have a problem I use the bapi BAPI_PO_CREATE1, I pass the table pt_poaccount in the parameter poaccount but the bapi when register my purchase order doesn't register correctly the values KOSTL, AUFNR, PS_PSP_PNR, NPLNR of the tablepoaccount and register the default values of the contract. Please i need help with this.
    CLEAR s_poaccount.
         s_poaccount-po_item     = <fs_datos>-ebelp.
         s_poaccount-serial_no   = w_serial.
         s_poaccount-costcenter  = <fs_datos>-kostl.
         s_poaccount-orderid     = <fs_datos>-aufnr.
         s_poaccount-wbs_element = <fs_datos>-ps_psp_pnr.
         s_poaccount-network     = <fs_datos>-nplnr.
         s_poaccount-activity    = <fs_datos>-vornr.
         s_poaccount-quantity    = <fs_datos>-menge.
         s_poaccount-net_value   = <fs_datos>-brtwr.
         s_poaccount-creat_date  = sy-datum.          
         s_poaccount-itm_number  = <fs_datos>-ebelp.  
         s_poaccount-co_area = '1001'.               
         APPEND s_poaccount TO pt_poaccount.
    CLEAR s_poaccountx.
         s_poaccountx-po_item     = <fs_datos>-ebelp.
         s_poaccountx-serial_no   = w_serial.
         s_poaccountx-po_itemx = 'X'.
         s_poaccountx-serial_nox = 'X'.
         s_poaccountx-creat_date = 'X'.
         s_poaccountx-itm_number = 'X'.
         s_poaccountx-co_area = 'X'.
         s_poaccountx-costcenter = 'X'.
         s_poaccountx-orderid = 'X'.
         s_poaccountx-wbs_element = 'X'.
         s_poaccountx-network = 'X'.
         s_poaccountx-activity = 'X'.
         s_poaccountx-quantity = 'X'.
         s_poaccountx-net_value = 'X'.
         APPEND s_poaccountx TO  pt_poaccountx.
    CALL FUNCTION 'BAPI_PO_CREATE1'
         EXPORTING
           poheader          = pe_poheader
           poheaderx         = pe_poheaderx
         IMPORTING
           exppurchaseorder  = pi_exppurchaseorder
         TABLES
           return             = pt_return
           poitem           = pt_poitem
           poitemx         = pt_poitemx
           poschedule    = pt_poschedule
           poschedulex  = pt_poschedulex
           poaccount      = pt_poaccount
           poaccountx    = pt_poaccountx
           poservices     = pt_poservices
           posrvaccessvalues = pt_posrvaccessvalues.
    The BAPI is register with these values as default however i pass other values in table
    pt_poaccount

  • 'BAPI_ALM_ORDER_MAINTAIN' Not Updating Fields

    Hi,
    We are using BAPI_ALM_ORDER_MAINTAIN to update Special Stock indicator
    (RESB-SOBKZ) at component level for a service order (IW32).
    BAPI is not updating the value which we are passing for this field but
    intrestingly BAPI is updating rest of the fields at component level,
    like Component Quntity, Componen Plant etc. Only Special Stock
    Indicator field is an exception.
    We are passing value in "BAPI_ALM_ORDER_COMPONENT-SPECIAL_STOCK" field
    and updating BAPI Update table with X for this field.
    Can somebody provide help on this.
    Steps for the Reconstruction 
    Below is the source code which i am using to update Srvice order via
    this BAPI
    REPORT zbapi .
    DATA t_meth TYPE TABLE OF bapi_alm_order_method.
    **Internal table for Operation (BAPI)
    DATA t_oper TYPE TABLE OF bapi_alm_order_operation.
    DATA t_comp TYPE TABLE OF bapi_alm_order_component.
    **Internal Table for Opertaions UP (BAPI)
    DATA t_comp_up TYPE TABLE OF bapi_alm_order_component_up.
    **Internal table for BAPI Return code
    DATA t_ret TYPE TABLE OF bapiret2.
    ***WORK AREA DECLARATIONS
    **Work Area for Hedaer
    DATA:wa_header TYPE caufvdb,
    wa_meth TYPE bapi_alm_order_method,
    wa_op TYPE afvgb,
    wa_comp TYPE resbb,
    wa_comp1 TYPE bapi_alm_order_component,
    wa_comp_up TYPE bapi_alm_order_component_up,
    wa_oper TYPE bapi_alm_order_operation.
    PARAMETERS:TEST.
    ****Fill Method Internal table
    CLEAR wa_meth.
    wa_meth-method = 'SAVE'.
    APPEND wa_meth TO t_meth.
    wa_meth-refnumber = sy-tabix.
    wa_meth-objecttype = 'COMPONENT'.
    wa_meth-method = 'CHANGE'.
    wa_meth-objectkey(12) = '000004000104'.
    wa_meth-objectkey+12(4) = '0010'.
    wa_meth-objectkey+16(4) = '0010'.
    APPEND wa_meth TO t_meth.
    **Component Internal table
    wa_comp1-reserv_no = '0000001072'.
    wa_comp1-res_item = '0001'.
    wa_comp1-activity = '0010'.
    wa_comp1-item_number = '0010'.
    wa_comp1-special_stock = 'B'.
    wa_comp1-requirement_quantity = '15'.
    wa_comp1-stge_loc = '0001'.
    wa_comp1-backflush = 'X'.
    APPEND wa_comp1 TO t_comp.
    **Component Update Internal table
    wa_comp_up-special_stock = 'X'.
    wa_comp_up-backflush = 'X'.
    wa_comp_up-requirement_quantity = 'X'.
    wa_comp_up-stge_loc = 'X'.
    APPEND wa_comp_up TO t_comp_up.
    **Call Bapi
    BREAK-POINT.
    CALL FUNCTION 'BAPI_ALM_ORDER_MAINTAIN'
    TABLES
    it_methods = t_meth
    it_component = t_comp
    it_component_up = t_comp_up
    return = t_ret.
    CALL FUNCTION 'BAPI_TRANSACTION_COMMIT'.

    Hi Ferry,
    1. I have also tried ur given code before BAPI_TRANSACTION_COMMIT.
        l_fname = 'SOBKZ'.
        l_fvalue = 'U'.
        CALL FUNCTION 'CO_BH_MOD_SINGLE_FIELDS'
          EXPORTING
            aufnr_imp = wa_meth-objectkey(12)
            field1    = l_fname
            value1    = l_fvalue.
    but this program is giving dump for only this particular Value saying that This is PROTECTED field.
    Can anyone help me out on How to Update Special Stock Indicator on Components Tab of Maintenance Order (IW32).
    If anyone has faced such type of problem & solved it then please let me also.
    2. Which BADI to use for Updating Special Stock Indicator when we press enter on Components tab in Transaction IW32 ?..
    Thanks in advance,
    Hope to get the solution soon from all SAP gurus.
    and help will be appriciated .
    Gaurav.

  • Illustrator 64 will not update to 16.0.2

    I have Adobe Master Collection CS6 installed and updated many of the programs today. Among them Illustrator 32 updated fine to 16.0.2, but Illustrator 64 failed to update and even deleted the EXE file.
    I recovered the EXE file from a backup file, and it (16.0.1) seems to run fine, but will not update to 16.0.2 either through the update program or manually.
    I looked at the install file, but nothing was obvious to me. It is copied below for more experienced eyes.
    Thanks in advance.
    AJB
    *=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*
    Visit http://www.adobe.com/go/loganalyzer/ for more information
    *=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*
    *=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*
    START - Installer Session
    *=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*
    RIBS version: 6.2.10.0
    Win OS version: 6.1.1.0 64 bit Type: 1
    ::START TIMER:: [Total Timer]
    CHECK: Single instance running
    CHECK : Credentials
    Load Deployment File
    deploymentFile option not given
    CHECK : Another Native OS installer already running
    Create Required Folders
    Assuming install mode
    Looking up install source path
    Sync Media DB ...
    ::START TIMER:: [Sync Media DB]
    Pre check media db sync
    End of Pre check media db sync. Exit code: 0
    :: END TIMER :: [Sync Media DB] took 18.451 milliseconds (0.018451 seconds)
    Ready to initialize session to start with ...
    ::START TIMER:: [CreatePayloadSession]
    -------------------- BEGIN - Updating Media Sources - BEGIN --------------------
    Updated source path: C:\Users\Arnold\AppData\Local\Temp\Adobe\AAMUpdater\AdobeIllustrator16-mul_x64\16.3\Setup
    Updating media info for: {F861E540-8C1D-4052-9877-61CB41C02B7A}
    Ignoring original data since install source is local
      Type: 0, Volume Order: 1, Media Name:
      Path: C:\Users\Arnold\AppData\Local\Temp\Adobe\AAMUpdater\AdobeIllustrator16-mul_x64\16.3\Setup \payloads\AdobeIllustrator16-mul_x64-170912172642\Install.db
    --------------------  END  - Updating Media Sources -  END  --------------------
    Supported RIBS version range: [0.0.66.0,6.2.10.0]
    ----------------- CreatePayloadSession: machine is x64 ---------------
    [    8624] Wed Oct 03 09:02:47 2012  INFO
    Setting ignore refcount for '{A7D9641D-E152-4026-B2F3-745A67DDBC64} Adobe Illustrator CS6 Core (64 Bit)_16.0.1_AdobeIllustrator16-mul_x64 16.0.1.0' getting upgraded by '{F861E540-8C1D-4052-9877-61CB41C02B7A} Adobe Illustrator CS6 Core (64 Bit)_16.0.2_AdobeIllustrator16-mul_x64 16.0.2.0'
    ______ Verify Dependency Subscribers ______
    BEGIN Operation order for all session payloads: mediaGroup (requires,satisfies)
      {A7D9641D-E152-4026-B2F3-745A67DDBC64} Adobe Illustrator CS6 Core (64 Bit)_16.0.1_AdobeIllustrator16-mul_x64 16.0.1.0: 0 (0,0)
      {F861E540-8C1D-4052-9877-61CB41C02B7A} Adobe Illustrator CS6 Core (64 Bit)_16.0.2_AdobeIllustrator16-mul_x64 16.0.2.0: 0 (0,0)
    END Operation order for all session payloads: mediaGroup (requires,satisfies)
    Patch {A7D9641D-E152-4026-B2F3-745A67DDBC64} Adobe Illustrator CS6 Core (64 Bit)_16.0.1_AdobeIllustrator16-mul_x64 16.0.1.0 can be applied to product {9D3BB9DA-1F59-4DCF-A0BB-691FA8EA2582} Adobe Illustrator CS6 Core (64 Bit) 16.0.0.0
    Patch {F861E540-8C1D-4052-9877-61CB41C02B7A} Adobe Illustrator CS6 Core (64 Bit)_16.0.2_AdobeIllustrator16-mul_x64 16.0.2.0 can be applied to product {9D3BB9DA-1F59-4DCF-A0BB-691FA8EA2582} Adobe Illustrator CS6 Core (64 Bit) 16.0.0.0
    Overwrite property "extensionsOnly" to: 1
    Overwrite property "mode" to: silent
    Overwrite property "patchesOnly" to: 1
    Overwrite property "workflow" to: updater
    Found payload actions:
    Deciding what installer mode to use...
    [    8624] Wed Oct 03 09:02:48 2012  INFO
    BEGIN Setting requested payload actions
    Value returned on lookup of payload: {A7D9641D-E152-4026-B2F3-745A67DDBC64} Adobe Illustrator CS6 Core (64 Bit)_16.0.1_AdobeIllustrator16-mul_x64 16.0.1.0 is: true
    Action string for {A7D9641D-E152-4026-B2F3-745A67DDBC64} Adobe Illustrator CS6 Core (64 Bit)_16.0.1_AdobeIllustrator16-mul_x64 16.0.1.0  is install
    Value returned on lookup of payload: {F861E540-8C1D-4052-9877-61CB41C02B7A} Adobe Illustrator CS6 Core (64 Bit)_16.0.2_AdobeIllustrator16-mul_x64 16.0.2.0 is: false
    Action string for {F861E540-8C1D-4052-9877-61CB41C02B7A} Adobe Illustrator CS6 Core (64 Bit)_16.0.2_AdobeIllustrator16-mul_x64 16.0.2.0  is install
    END Setting requested payload actions
    Collected advanced path check information for INSTALLDIR
    INSTALLDIR is a well-formed path
    INSTALLDIR is not the root path
    INSTALLDIR is on a local volume
    INSTALLDIR is on a writable volume
    INSTALLDIR is not on a case sensitive volume
    INSTALLDIR passed path basic path validation: C:\Program Files\Adobe
    BEGIN InstallOperationsQueue Unordered operations
      {A7D9641D-E152-4026-B2F3-745A67DDBC64} Adobe Illustrator CS6 Core (64 Bit)_16.0.1_AdobeIllustrator16-mul_x64 16.0.1.0:  with operation remove
      {F861E540-8C1D-4052-9877-61CB41C02B7A} Adobe Illustrator CS6 Core (64 Bit)_16.0.2_AdobeIllustrator16-mul_x64 16.0.2.0:  with operation install
    END InstallOperationsQueue Unordered operations
    BEGIN InstallOperationsQueue Ordered operations
      {A7D9641D-E152-4026-B2F3-745A67DDBC64} Adobe Illustrator CS6 Core (64 Bit)_16.0.1_AdobeIllustrator16-mul_x64 16.0.1.0:  with operation remove
      {F861E540-8C1D-4052-9877-61CB41C02B7A} Adobe Illustrator CS6 Core (64 Bit)_16.0.2_AdobeIllustrator16-mul_x64 16.0.2.0:  with operation install
    END InstallOperationsQueue Ordered operations
    Payloads passed preflight validation.
    Call PreSession Custom Hook
    BEGIN InstallOperationsQueue Unordered operations
      {A7D9641D-E152-4026-B2F3-745A67DDBC64} Adobe Illustrator CS6 Core (64 Bit)_16.0.1_AdobeIllustrator16-mul_x64 16.0.1.0:  with operation remove
      {F861E540-8C1D-4052-9877-61CB41C02B7A} Adobe Illustrator CS6 Core (64 Bit)_16.0.2_AdobeIllustrator16-mul_x64 16.0.2.0:  with operation install
    END InstallOperationsQueue Unordered operations
    BEGIN InstallOperationsQueue Ordered operations
      {A7D9641D-E152-4026-B2F3-745A67DDBC64} Adobe Illustrator CS6 Core (64 Bit)_16.0.1_AdobeIllustrator16-mul_x64 16.0.1.0:  with operation remove
      {F861E540-8C1D-4052-9877-61CB41C02B7A} Adobe Illustrator CS6 Core (64 Bit)_16.0.2_AdobeIllustrator16-mul_x64 16.0.2.0:  with operation install
    END InstallOperationsQueue Ordered operations
    Calling the custom action code for pre-remove for payload {A7D9641D-E152-4026-B2F3-745A67DDBC64} Adobe Illustrator CS6 Core (64 Bit)_16.0.1_AdobeIllustrator16-mul_x64 16.0.1.0
    ::START TIMER:: [Payload Operation :{A7D9641D-E152-4026-B2F3-745A67DDBC64}]
    [     152] Wed Oct 03 09:02:48 2012  INFO
    *=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*
    Installer Operation: PayloadUninstaller
    *=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*
    Session {F861E540-8C1D-4052-9877-61CB41C02B7A} modify request for AdobeCode: {A7D9641D-E152-4026-B2F3-745A67DDBC64}
    Effective AdobeCode for: {A7D9641D-E152-4026-B2F3-745A67DDBC64} is {A7D9641D-E152-4026-B2F3-745A67DDBC64}
    Uninstalling payload
    Payload {A7D9641D-E152-4026-B2F3-745A67DDBC64} Adobe Illustrator CS6 Core (64 Bit)_16.0.1_AdobeIllustrator16-mul_x64 16.0.1.0: Calling ARKEngine from path C:\Program Files (x86)\Common Files\Adobe\OOBE\PDApp\DECore\DE6\resources
    CustomizedPatch property not found in database
    Beginning un-installation for payload at C:\Program Files (x86)\Common Files\Adobe\Installers\uninstall\{A7D9641D-E152-4026-B2F3-745A67DDBC64}.db
    [     152] Wed Oct 03 09:02:53 2012  INFO
    Completing un-installation for payload at C:\Program Files (x86)\Common Files\Adobe\Installers\uninstall\{A7D9641D-E152-4026-B2F3-745A67DDBC64}.db
    Physical payload uninstall result:0
    [    8624] Wed Oct 03 09:02:53 2012  INFO
    *=*=*=*=*=*=*=*=*=*=*=*=*=*=*=* Operation complete. Setting status: 0 =*=*=*=*=*=*=*=*=*=*=*=*=*
    :: END TIMER :: [Payload Operation :{A7D9641D-E152-4026-B2F3-745A67DDBC64}] took 4601.12 milliseconds (4.60112 seconds) DTR = 4707.55 KBPS (4.59721 MBPS)
    User specified overrideFile:
    Successfully updated the csu inventory for {A7D9641D-E152-4026-B2F3-745A67DDBC64} Adobe Illustrator CS6 Core (64 Bit)_16.0.1_AdobeIllustrator16-mul_x64 16.0.1.0 return values 0:0
    Calling the custom action code for post-remove for payload {A7D9641D-E152-4026-B2F3-745A67DDBC64} Adobe Illustrator CS6 Core (64 Bit)_16.0.1_AdobeIllustrator16-mul_x64 16.0.1.0
    Calling the custom action code for pre-install for payload {F861E540-8C1D-4052-9877-61CB41C02B7A} Adobe Illustrator CS6 Core (64 Bit)_16.0.2_AdobeIllustrator16-mul_x64 16.0.2.0
    ::START TIMER:: [Payload Operation :{F861E540-8C1D-4052-9877-61CB41C02B7A}]
    [    7476] Wed Oct 03 09:02:53 2012  INFO
    *=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*
    Installer Operation: PayloadInstaller
    *=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*
    Request to install payload
    Payload {F861E540-8C1D-4052-9877-61CB41C02B7A} Adobe Illustrator CS6 Core (64 Bit)_16.0.2_AdobeIllustrator16-mul_x64 16.0.2.0: Calling ARKEngine from path C:\Program Files (x86)\Common Files\Adobe\OOBE\PDApp\DECore\DE6\resources
    Extracting assets...
    Extracting assets complete. Number assets: 1
    CustomizedPatch property not found in database
    Beginning installation for payload at C:\Users\Arnold\AppData\Local\Temp\Adobe\AAMUpdater\AdobeIllustrator16-mul_x64\16.3\Setup \payloads\AdobeIllustrator16-mul_x64-170912172642\Install.db
    [    7476] Wed Oct 03 09:02:57 2012 ERROR
    DF044: Failed to restore ACL of file C:\Program Files\Adobe\Adobe Illustrator CS6 (64 Bit)\Support Files\Contents\Windows\Illustrator.exe , Error : 5(Seq 26)
    DW063: Command ARKPatchCommand failed.(Seq 26)
    [    7476] Wed Oct 03 09:02:57 2012  INFO
    Completing installation for payload at C:\Users\Arnold\AppData\Local\Temp\Adobe\AAMUpdater\AdobeIllustrator16-mul_x64\16.3\Setup \payloads\AdobeIllustrator16-mul_x64-170912172642\Install.db
    [    8624] Wed Oct 03 09:02:58 2012  INFO
    *=*=*=*=*=*=*=*=*=*=*=*=*=*=*=* Operation complete. Setting status: 2 =*=*=*=*=*=*=*=*=*=*=*=*=*
    :: END TIMER :: [Payload Operation :{F861E540-8C1D-4052-9877-61CB41C02B7A}] took 5403.62 milliseconds (5.40362 seconds) DTR = 1362.79 KBPS (1.33085 MBPS)
    User specified overrideFile:
    The csu inventory was not updated for payload {F861E540-8C1D-4052-9877-61CB41C02B7A} Adobe Illustrator CS6 Core (64 Bit)_16.0.2_AdobeIllustrator16-mul_x64 16.0.2.0, value of local var is -1
    Calling the ROLLBACK custom action code for pre-install for payload {F861E540-8C1D-4052-9877-61CB41C02B7A} Adobe Illustrator CS6 Core (64 Bit)_16.0.2_AdobeIllustrator16-mul_x64 16.0.2.0
    No operation.  We're done:
    [    8624] Wed Oct 03 09:03:00 2012  INFO
    Total components installed: 0
    Total components repaired: 0
    Successfully removed 1 component:
    - Adobe Illustrator CS6 Core (64 Bit)_16.0.1_AdobeIllustrator16-mul_x64
    [    8624] Wed Oct 03 09:03:00 2012 ERROR
    DW050: The following payload errors were found during install:
    DW050:  - Adobe Illustrator CS6 Core (64 Bit)_16.0.2_AdobeIllustrator16-mul_x64: Install failed
    [    8624] Wed Oct 03 09:03:00 2012  INFO
    >>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>
    Restarting your computer is recommended:
    In order to complete the installation, please restart the computer
    >>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>
    Call PostSession Custom Hook
    :: END TIMER :: [Total Timer] took 16166.7 milliseconds (16.1667 seconds) DTR = 883.791 KBPS (0.863077 MBPS)
    -------------------------------------- Summary --------------------------------------
    - 0 fatal error(s), 3 error(s), 0 warning(s)
    ----------- Payload: {F861E540-8C1D-4052-9877-61CB41C02B7A} Adobe Illustrator CS6 Core (64 Bit)_16.0.2_AdobeIllustrator16-mul_x64 16.0.2.0 -----------
    ERROR: DF044: Failed to restore ACL of file C:\Program Files\Adobe\Adobe Illustrator CS6 (64 Bit)\Support Files\Contents\Windows\Illustrator.exe , Error : 5(Seq 26)
    ERROR: DW063: Command ARKPatchCommand failed.(Seq 26)
    ERROR: DW050: The following payload errors were found during install:
    ERROR: DW050:  - Adobe Illustrator CS6 Core (64 Bit)_16.0.2_AdobeIllustrator16-mul_x64: Install failed
    Please search the above error/warning string(s) to find when the error occurred.
    These errors resulted in installer Exit Code mentioned below.
    [    8624] Wed Oct 03 09:03:01 2012  INFO
    Exit Code: 7 - Unable to complete Silent workflow.
    Please see specific errors and warnings for troubleshooting. For example, ERROR: DF044, DW063 ...
    *=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*
    END - Installer Session
    *=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*
    *=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*
    Visit http://www.adobe.com/go/loganalyzer/ for more information
    *=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*
    *=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*
    START - Installer Session
    *=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*
    RIBS version: 6.2.10.0
    Win OS version: 6.1.1.0 64 bit Type: 1
    ::START TIMER:: [Total Timer]
    CHECK: Single instance running
    CHECK : Credentials
    Load Deployment File
    deploymentFile option not given
    CHECK : Another Native OS installer already running
    Create Required Folders
    Assuming install mode
    Looking up install source path
    Sync Media DB ...
    ::START TIMER:: [Sync Media DB]
    Pre check media db sync
    End of Pre check media db sync. Exit code: 0
    :: END TIMER :: [Sync Media DB] took 17.2089 milliseconds (0.0172089 seconds) DTR = 232.438 KBPS (0.22699 MBPS)
    Ready to initialize session to start with ...
    ::START TIMER:: [CreatePayloadSession]
    -------------------- BEGIN - Updating Media Sources - BEGIN --------------------
    Updated source path: C:\Users\Arnold\AppData\Local\Temp\Adobe\AAMUpdater\AdobeIllustrator16-mul_x64\16.3\Setup
    Updating media info for: {F861E540-8C1D-4052-9877-61CB41C02B7A}
    Ignoring original data since install source is local
      Type: 0, Volume Order: 1, Media Name:
      Path: C:\Users\Arnold\AppData\Local\Temp\Adobe\AAMUpdater\AdobeIllustrator16-mul_x64\16.3\Setup \payloads\AdobeIllustrator16-mul_x64-170912172642\Install.db
    --------------------  END  - Updating Media Sources -  END  --------------------
    Supported RIBS version range: [0.0.66.0,6.2.10.0]
    ----------------- CreatePayloadSession: machine is x64 ---------------
    [    9980] Wed Oct 03 09:07:39 2012  INFO
    ______ Verify Dependency Subscribers ______
    BEGIN Operation order for all session payloads: mediaGroup (requires,satisfies)
      {F861E540-8C1D-4052-9877-61CB41C02B7A} Adobe Illustrator CS6 Core (64 Bit)_16.0.2_AdobeIllustrator16-mul_x64 16.0.2.0: 0 (0,0)
    END Operation order for all session payloads: mediaGroup (requires,satisfies)
    Patch {F861E540-8C1D-4052-9877-61CB41C02B7A} Adobe Illustrator CS6 Core (64 Bit)_16.0.2_AdobeIllustrator16-mul_x64 16.0.2.0 can be applied to product {9D3BB9DA-1F59-4DCF-A0BB-691FA8EA2582} Adobe Illustrator CS6 Core (64 Bit) 16.0.0.0
    [    9980] Wed Oct 03 09:07:40 2012  INFO
    Overwrite property "extensionsOnly" to: 1
    Overwrite property "mode" to: silent
    Overwrite property "patchesOnly" to: 1
    Overwrite property "workflow" to: updater
    Found payload actions:
    Deciding what installer mode to use...
    BEGIN Setting requested payload actions
    Value returned on lookup of payload: {F861E540-8C1D-4052-9877-61CB41C02B7A} Adobe Illustrator CS6 Core (64 Bit)_16.0.2_AdobeIllustrator16-mul_x64 16.0.2.0 is: false
    Action string for {F861E540-8C1D-4052-9877-61CB41C02B7A} Adobe Illustrator CS6 Core (64 Bit)_16.0.2_AdobeIllustrator16-mul_x64 16.0.2.0  is install
    END Setting requested payload actions
    Collected advanced path check information for INSTALLDIR
    INSTALLDIR is a well-formed path
    INSTALLDIR is not the root path
    INSTALLDIR is on a local volume
    INSTALLDIR is on a writable volume
    INSTALLDIR is not on a case sensitive volume
    INSTALLDIR passed path basic path validation: C:\Program Files\Adobe
    BEGIN InstallOperationsQueue Unordered operations
      {F861E540-8C1D-4052-9877-61CB41C02B7A} Adobe Illustrator CS6 Core (64 Bit)_16.0.2_AdobeIllustrator16-mul_x64 16.0.2.0:  with operation install
    END InstallOperationsQueue Unordered operations
    BEGIN InstallOperationsQueue Ordered operations
      {F861E540-8C1D-4052-9877-61CB41C02B7A} Adobe Illustrator CS6 Core (64 Bit)_16.0.2_AdobeIllustrator16-mul_x64 16.0.2.0:  with operation install
    END InstallOperationsQueue Ordered operations
    Payloads passed preflight validation.
    Call PreSession Custom Hook
    BEGIN InstallOperationsQueue Unordered operations
      {F861E540-8C1D-4052-9877-61CB41C02B7A} Adobe Illustrator CS6 Core (64 Bit)_16.0.2_AdobeIllustrator16-mul_x64 16.0.2.0:  with operation install
    END InstallOperationsQueue Unordered operations
    BEGIN InstallOperationsQueue Ordered operations
      {F861E540-8C1D-4052-9877-61CB41C02B7A} Adobe Illustrator CS6 Core (64 Bit)_16.0.2_AdobeIllustrator16-mul_x64 16.0.2.0:  with operation install
    END InstallOperationsQueue Ordered operations
    Calling the custom action code for pre-install for payload {F861E540-8C1D-4052-9877-61CB41C02B7A} Adobe Illustrator CS6 Core (64 Bit)_16.0.2_AdobeIllustrator16-mul_x64 16.0.2.0
    ::START TIMER:: [Payload Operation :{F861E540-8C1D-4052-9877-61CB41C02B7A}]
    [   10008] Wed Oct 03 09:07:40 2012  INFO
    *=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*
    Installer Operation: PayloadInstaller
    *=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*
    Request to install payload
    Payload {F861E540-8C1D-4052-9877-61CB41C02B7A} Adobe Illustrator CS6 Core (64 Bit)_16.0.2_AdobeIllustrator16-mul_x64 16.0.2.0: Calling ARKEngine from path C:\Program Files (x86)\Common Files\Adobe\OOBE\PDApp\DECore\DE6\resources
    Extracting assets...
    Extracting assets complete. Number assets: 1
    CustomizedPatch property not found in database
    Beginning installation for payload at C:\Users\Arnold\AppData\Local\Temp\Adobe\AAMUpdater\AdobeIllustrator16-mul_x64\16.3\Setup \payloads\AdobeIllustrator16-mul_x64-170912172642\Install.db
    [   10008] Wed Oct 03 09:07:42 2012 ERROR
    DF022: Pre checksum mismatch for file "C:\Program Files\Adobe\Adobe Illustrator CS6 (64 Bit)\Support Files\Contents\Windows\Illustrator.exe"(Seq 26)
    DW063: Command ARKPatchCommand failed.(Seq 26)
    [   10008] Wed Oct 03 09:07:42 2012  INFO
    Completing installation for payload at C:\Users\Arnold\AppData\Local\Temp\Adobe\AAMUpdater\AdobeIllustrator16-mul_x64\16.3\Setup \payloads\AdobeIllustrator16-mul_x64-170912172642\Install.db
    [    9980] Wed Oct 03 09:07:44 2012  INFO
    *=*=*=*=*=*=*=*=*=*=*=*=*=*=*=* Operation complete. Setting status: 2 =*=*=*=*=*=*=*=*=*=*=*=*=*
    :: END TIMER :: [Payload Operation :{F861E540-8C1D-4052-9877-61CB41C02B7A}] took 3603.06 milliseconds (3.60306 seconds)
    User specified overrideFile:
    The csu inventory was not updated for payload {F861E540-8C1D-4052-9877-61CB41C02B7A} Adobe Illustrator CS6 Core (64 Bit)_16.0.2_AdobeIllustrator16-mul_x64 16.0.2.0, value of local var is -1
    Calling the ROLLBACK custom action code for pre-install for payload {F861E540-8C1D-4052-9877-61CB41C02B7A} Adobe Illustrator CS6 Core (64 Bit)_16.0.2_AdobeIllustrator16-mul_x64 16.0.2.0
    No operation.  We're done:
    [    9980] Wed Oct 03 09:07:46 2012  INFO
    Total components installed: 0
    Total components repaired: 0
    Total components removed: 0
    [    9980] Wed Oct 03 09:07:46 2012 ERROR
    DW050: The following payload errors were found during install:
    DW050:  - Adobe Illustrator CS6 Core (64 Bit)_16.0.2_AdobeIllustrator16-mul_x64: Install failed
    [    9980] Wed Oct 03 09:07:46 2012  INFO
    >>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>
    Restarting your computer is recommended:
    In order to complete the installation, please restart the computer
    >>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>
    Call PostSession Custom Hook
    :: END TIMER :: [Total Timer] took 9089.42 milliseconds (9.08942 seconds) DTR = 1.32022 KBPS (0.00128927 MBPS)
    -------------------------------------- Summary --------------------------------------
    - 0 fatal error(s), 3 error(s), 0 warning(s)
    ----------- Payload: {F861E540-8C1D-4052-9877-61CB41C02B7A} Adobe Illustrator CS6 Core (64 Bit)_16.0.2_AdobeIllustrator16-mul_x64 16.0.2.0 -----------
    ERROR: DF022: Pre checksum mismatch for file "C:\Program Files\Adobe\Adobe Illustrator CS6 (64 Bit)\Support Files\Contents\Windows\Illustrator.exe"(Seq 26)
    ERROR: DW063: Command ARKPatchCommand failed.(Seq 26)
    ERROR: DW050: The following payload errors were found during install:
    ERROR: DW050:  - Adobe Illustrator CS6 Core (64 Bit)_16.0.2_AdobeIllustrator16-mul_x64: Install failed
    Please search the above error/warning string(s) to find when the error occurred.
    These errors resulted in installer Exit Code mentioned below.
    [    9980] Wed Oct 03 09:07:47 2012  INFO
    Exit Code: 7 - Unable to complete Silent workflow.
    Please see specific errors and warnings for troubleshooting. For example, ERROR: DF022, DW063 ...
    *=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*
    END - Installer Session
    *=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*
    *=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*
    Visit http://www.adobe.com/go/loganalyzer/ for more information
    *=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*
    *=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*
    START - Installer Session
    *=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*
    RIBS version: 6.2.10.0
    Win OS version: 6.1.1.0 64 bit Type: 1
    ::START TIMER:: [Total Timer]
    CHECK: Single instance running
    CHECK : Credentials
    Load Deployment File
    deploymentFile option not given
    CHECK : Another Native OS installer already running
    Create Required Folders
    Assuming install mode
    Looking up install source path
    Sync Media DB ...
    ::START TIMER:: [Sync Media DB]
    Pre check media db sync
    End of Pre check media db sync. Exit code: 0
    :: END TIMER :: [Sync Media DB] took 34.6525 milliseconds (0.0346525 seconds)
    Ready to initialize session to start with ...
    ::START TIMER:: [CreatePayloadSession]
    -------------------- BEGIN - Updating Media Sources - BEGIN --------------------
    Updated source path: C:\Users\Arnold\Downloads\AdobeIllustrator16.0.2_x64
    Updating media info for: {F861E540-8C1D-4052-9877-61CB41C02B7A}
    Ignoring original data since install source is local
      Type: 0, Volume Order: 1, Media Name:
      Path: C:\Users\Arnold\Downloads\AdobeIllustrator16.0.2_x64\payloads\AdobeIllustrator16-mul_x64- 170912172642\Install.db
    --------------------  END  - Updating Media Sources -  END  --------------------
    Supported RIBS version range: [0.0.66.0,6.2.10.0]
    ----------------- CreatePayloadSession: machine is x64 ---------------
    [    9440] Wed Oct 03 09:12:04 2012  INFO
    ______ Verify Dependency Subscribers ______
    BEGIN Operation order for all session payloads: mediaGroup (requires,satisfies)
      {F861E540-8C1D-4052-9877-61CB41C02B7A} Adobe Illustrator CS6 Core (64 Bit)_16.0.2_AdobeIllustrator16-mul_x64 16.0.2.0: 0 (0,0)
    END Operation order for all session payloads: mediaGroup (requires,satisfies)
    Patch {F861E540-8C1D-4052-9877-61CB41C02B7A} Adobe Illustrator CS6 Core (64 Bit)_16.0.2_AdobeIllustrator16-mul_x64 16.0.2.0 can be applied to product {9D3BB9DA-1F59-4DCF-A0BB-691FA8EA2582} Adobe Illustrator CS6 Core (64 Bit) 16.0.0.0
    [    9440] Wed Oct 03 09:12:05 2012  INFO
    Overwrite property "DEVersion" to: 6.0
    Overwrite property "extensionsOnly" to: 1
    Overwrite property "mode" to: silent
    Overwrite property "patchesOnly" to: 1
    Overwrite property "workflow" to: updater
    Found payload actions:
    Deciding what installer mode to use...
    BEGIN Setting requested payload actions
    Value returned on lookup of payload: {F861E540-8C1D-4052-9877-61CB41C02B7A} Adobe Illustrator CS6 Core (64 Bit)_16.0.2_AdobeIllustrator16-mul_x64 16.0.2.0 is: false
    Action string for {F861E540-8C1D-4052-9877-61CB41C02B7A} Adobe Illustrator CS6 Core (64 Bit)_16.0.2_AdobeIllustrator16-mul_x64 16.0.2.0  is install
    END Setting requested payload actions
    Collected advanced path check information for INSTALLDIR
    INSTALLDIR is a well-formed path
    INSTALLDIR is not the root path
    INSTALLDIR is on a local volume
    INSTALLDIR is on a writable volume
    INSTALLDIR is not on a case sensitive volume
    INSTALLDIR passed path basic path validation: C:\Program Files\Adobe
    BEGIN InstallOperationsQueue Unordered operations
      {F861E540-8C1D-4052-9877-61CB41C02B7A} Adobe Illustrator CS6 Core (64 Bit)_16.0.2_AdobeIllustrator16-mul_x64 16.0.2.0:  with operation install
    END InstallOperationsQueue Unordered operations
    BEGIN InstallOperationsQueue Ordered operations
      {F861E540-8C1D-4052-9877-61CB41C02B7A} Adobe Illustrator CS6 Core (64 Bit)_16.0.2_AdobeIllustrator16-mul_x64 16.0.2.0:  with operation install
    END InstallOperationsQueue Ordered operations
    Payloads passed preflight validation.
    Call PreSession Custom Hook
    BEGIN InstallOperationsQueue Unordered operations
      {F861E540-8C1D-4052-9877-61CB41C02B7A} Adobe Illustrator CS6 Core (64 Bit)_16.0.2_AdobeIllustrator16-mul_x64 16.0.2.0:  with operation install
    END InstallOperationsQueue Unordered operations
    BEGIN InstallOperationsQueue Ordered operations
      {F861E540-8C1D-4052-9877-61CB41C02B7A} Adobe Illustrator CS6 Core (64 Bit)_16.0.2_AdobeIllustrator16-mul_x64 16.0.2.0:  with operation install
    END InstallOperationsQueue Ordered operations
    Calling the custom action code for pre-install for payload {F861E540-8C1D-4052-9877-61CB41C02B7A} Adobe Illustrator CS6 Core (64 Bit)_16.0.2_AdobeIllustrator16-mul_x64 16.0.2.0
    ::START TIMER:: [Payload Operation :{F861E540-8C1D-4052-9877-61CB41C02B7A}]
    [    5820] Wed Oct 03 09:12:05 2012  INFO
    *=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*
    Installer Operation: PayloadInstaller
    *=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*
    Request to install payload
    Payload {F861E540-8C1D-4052-9877-61CB41C02B7A} Adobe Illustrator CS6 Core (64 Bit)_16.0.2_AdobeIllustrator16-mul_x64 16.0.2.0: Calling ARKEngine from path C:\Program Files (x86)\Common Files\Adobe\OOBE\PDApp\DECore\DE6\resources
    Extracting assets...
    [    5820] Wed Oct 03 09:12:06 2012  INFO
    Extracting assets complete. Number assets: 1
    CustomizedPatch property not found in database
    Beginning installation for payload at C:\Users\Arnold\Downloads\AdobeIllustrator16.0.2_x64\payloads\AdobeIllustrator16-mul_x64- 170912172642\Install.db
    [    5820] Wed Oct 03 09:12:08 2012 ERROR
    DF022: Pre checksum mismatch for file "C:\Program Files\Adobe\Adobe Illustrator CS6 (64 Bit)\Support Files\Contents\Windows\Illustrator.exe"(Seq 26)
    DW063: Command ARKPatchCommand failed.(Seq 26)
    [    5820] Wed Oct 03 09:12:08 2012  INFO
    Completing installation for payload at C:\Users\Arnold\Downloads\AdobeIllustrator16.0.2_x64\payloads\AdobeIllustrator16-mul_x64- 170912172642\Install.db
    [    9440] Wed Oct 03 09:12:09 2012  INFO
    *=*=*=*=*=*=*=*=*=*=*=*=*=*=*=* Operation complete. Setting status: 2 =*=*=*=*=*=*=*=*=*=*=*=*=*
    :: END TIMER :: [Payload Operation :{F861E540-8C1D-4052-9877-61CB41C02B7A}] took 3708.19 milliseconds (3.70819 seconds) DTR = 138.073 KBPS (0.134837 MBPS)
    User specified overrideFile:
    The csu inventory was not updated for payload {F861E540-8C1D-4052-9877-61CB41C02B7A} Adobe Illustrator CS6 Core (64 Bit)_16.0.2_AdobeIllustrator16-mul_x64 16.0.2.0, value of local var is -1
    Calling the ROLLBACK custom action code for pre-install for payload {F861E540-8C1D-4052-9877-61CB41C02B7A} Adobe Illustrator CS6 Core (64 Bit)_16.0.2_AdobeIllustrator16-mul_x64 16.0.2.0
    No operation.  We're done:
    [    9440] Wed Oct 03 09:12:11 2012  INFO
    Total components installed: 0
    Total components repaired: 0
    Total components removed: 0
    [    9440] Wed Oct 03 09:12:11 2012 ERROR
    DW050: The following payload errors were found during install:
    DW050:  - Adobe Illustrator CS6 Core (64 Bit)_16.0.2_AdobeIllustrator16-mul_x64: Install failed
    [    9440] Wed Oct 03 09:12:11 2012  INFO
    >>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>
    Restarting your computer is recommended:
    In order to complete the installation, please restart the computer
    >>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>
    Call PostSession Custom Hook
    :: END TIMER :: [Total Timer] took 9880.02 milliseconds (9.88002 seconds) DTR = 52.6315 KBPS (0.0513979 MBPS)
    -------------------------------------- Summary --------------------------------------
    - 0 fatal error(s), 3 error(s), 0 warning(s)
    ----------- Payload: {F861E540-8C1D-4052-9877-61CB41C02B7A} Adobe Illustrator CS6 Core (64 Bit)_16.0.2_AdobeIllustrator16-mul_x64 16.0.2.0 -----------
    ERROR: DF022: Pre checksum mismatch for file "C:\Program Files\Adobe\Adobe Illustrator CS6 (64 Bit)\Support Files\Contents\Windows\Illustrator.exe"(Seq 26)
    ERROR: DW063: Command ARKPatchCommand failed.(Seq 26)
    ERROR: DW050: The following payload errors were found during install:
    ERROR: DW050:  - Adobe Illustrator CS6 Core (64 Bit)_16.0.2_AdobeIllustrator16-mul_x64: Install failed
    Please search the above error/warning string(s) to find when the error occurred.
    These errors resulted in installer Exit Code mentioned below.
    [    9440] Wed Oct 03 09:12:13 2012  INFO
    Exit Code: 7 - Unable to complete Silent workflow.
    Please see specific errors and warnings for troubleshooting. For example, ERROR: DF022, DW063 ...
    *=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*
    END - Installer Session
    *=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*
    *=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*
    Visit http://www.adobe.com/go/loganalyzer/ for more information
    *=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*
    *=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*
    START - Installer Session
    *=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*
    RIBS version: 6.2.10.0
    Win OS version: 6.1.1.0 64 bit Type: 1
    ::START TIMER:: [Total Timer]
    CHECK: Single instance running
    CHECK : Credentials
    Load Deployment File
    deploymentFile option not given
    CHECK : Another Native OS installer already running
    Create Required Folders
    Assuming install mode
    Looking up install source path
    Sync Media DB ...
    ::START TIMER:: [Sync Media DB]
    Pre check media db sync
    End of Pre check media db sync. Exit code: 0
    :: END TIMER :: [Sync Media DB] took 30.256 milliseconds (0.030256 seconds)
    Ready to initialize session to start with ...
    ::START TIMER:: [CreatePayloadSession]
    -------------------- BEGIN - Updating Media Sources - BEGIN --------------------
    Updated source path: C:\Users\Arnold\Downloads\AdobeIllustrator16.0.2_x64
    Updating media info for: {F861E540-8C1D-4052-9877-61CB41C02B7A}
    Ignoring original data since install source is local
      Type: 0, Volume Order: 1, Media Name:
      Path: C:\Users\Arnold\Downloads\AdobeIllustrator16.0.2_x64\payloads\AdobeIllustrator16-mul_x64- 170912172642\Install.db
    --------------------  END  - Updating Media Sources -  END  --------------------
    Supported RIBS version range: [0.0.66.0,6.2.10.0]
    ----------------- CreatePayloadSession: machine is x64 ---------------
    [    5900] Wed Oct 03 09:13:19 2012  INFO
    ______ Verify Dependency Subscribers ______
    BEGIN Operation order for all session payloads: mediaGroup (requires,satisfies)
      {F861E540-8C1D-4052-9877-61CB41C02B7A} Adobe Illustrator CS6 Core (64 Bit)_16.0.2_AdobeIllustrator16-mul_x64 16.0.2.0: 0 (0,0)
    END Operation order for all session payloads: mediaGroup (requires,satisfies)
    Patch {F861E540-8C1D-4052-9877-61CB41C02B7A} Adobe Illustrator CS6 Core (64 Bit)_16.0.2_AdobeIllustrator16-mul_x64 16.0.2.0 can be applied to product {9D3BB9DA-1F59-4DCF-A0BB-691FA8EA2582} Adobe Illustrator CS6 Core (64 Bit) 16.0.0.0
    Overwrite property "DEVersion" to: 6.0
    Overwrite property "extensionsOnly" to: 1
    Overwrite property "mode" to: silent
    Overwrite property "patchesOnly" to: 1
    Overwrite property "workflow" to: updater
    Found payload actions:
    Deciding what installer mode to use...
    BEGIN Setting requested payload actions
    Value returned on lookup of payload: {F861E540-8C1D-4052-9877-61CB41C02B7A} Adobe Illustrator CS6 Core (64 Bit)_16.0.2_AdobeIllustrator16-mul_x64 16.0.2.0 is: false
    Action string for {F861E540-8C1D-4052-9877-61CB41C02B7A} Adobe Illustrator CS6 Core (64 Bit)_16.0.2_AdobeIllustrator16-mul_x64 16.0.2.0  is install
    END Setting requested payload actions
    Collected advanced path check information for INSTALLDIR
    INSTALLDIR is a well-formed path
    INSTALLDIR is not the root path
    INSTALLDIR is on a local volume
    INSTALLDIR is on a writable volume
    INSTALLDIR is not on a case sensitive volume
    INSTALLDIR passed path basic path validation: C:\Program Files\Adobe
    [    5900] Wed Oct 03 09:13:20 2012  INFO
    BEGIN InstallOperationsQueue Unordered operations
      {F861E540-8C1D-4052-9877-61CB41C02B7A} Adobe Illustrator CS6 Core (64 Bit)_16.0.2_AdobeIllustrator16-mul_x64 16.0.2.0:  with operation install
    END InstallOperationsQueue Unordered operations
    BEGIN InstallOperationsQueue Ordered operations
      {F861E540-8C1D-4052-9877-61CB41C02B7A} Adobe Illustrator CS6 Core (64 Bit)_16.0.2_AdobeIllustrator16-mul_x64 16.0.2.0:  with operation install
    END InstallOperationsQueue Ordered operations
    Payloads passed preflight validation.
    Call PreSession Custom Hook
    BEGIN InstallOperationsQueue Unordered operations
      {F861E540-8C1D-4052-9877-61CB41C02B7A} Adobe Illustrator CS6 Core (64 Bit)_16.0.2_AdobeIllustrator16-mul_x64 16.0.2.0:  with operation install
    END InstallOperationsQueue Unordered operations
    BEGIN InstallOperationsQueue Ordered operations
      {F861E540-8C1D-4052-9877-61CB41C02B7A} Adobe Illustrator CS6 Core (64 Bit)_16.0.2_AdobeIllustrator16-mul_x64 16.0.2.0:  with operation install
    END InstallOperationsQueue Ordered operations
    Calling the custom action code for pre-install for payload {F861E540-8C1D-4052-9877-61CB41C02B7A} Adobe Illustrator CS6 Core (64 Bit)_16.0.2_AdobeIllustrator16-mul_x64 16.0.2.0
    ::START TIMER:: [Payload Operation :{F861E540-8C1D-4052-9877-61CB41C02B7A}]
    [    9380] Wed Oct 03 09:13:20 2012  INFO
    *=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*
    Installer Operation: PayloadInstaller
    *=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*
    Request to install payload
    Payload {F861E540-8C1D-4052-9877-61CB41C02B7A} Adobe Illustrator CS6 Core (64 Bit)_16.0.2_AdobeIllustrator16-mul_x64 16.0.2.0: Calling ARKEngine from path C:\Program Files (x86)\Common Files\Adobe\OOBE\PDApp\DECore\DE6\resources
    Extracting assets...
    Extracting assets complete. Number assets: 1
    CustomizedPatch property not found in database
    Beginning installation for payload at C:\Users\Arnold\Downloads\AdobeIllustrator16.0.2_x64\payloads\AdobeIllustrator16-mul_x64- 170912172642\Install.db
    [    9380] Wed Oct 03 09:13:23 2012 ERROR
    DF022: Pre checksum mismatch for file "C:\Program Files\Adobe\Adobe Illustrator CS6 (64 Bit)\Support Files\Contents\Windows\Illustrator.exe"(Seq 26)
    DW063: Command ARKPatchCommand failed.(Seq 26)
    [    9380] Wed Oct 03 09:13:23 2012  INFO
    Completing installation for payload at C:\Users\Arnold\Downloads\AdobeIllustrator16.0.2_x64\payloads\AdobeIllustrator16-mul_x64- 170912172642\Install.db
    [    5900] Wed Oct 03 09:13:24 2012  INFO
    *=*=*=*=*=*=*=*=*=*=*=*=*=*=*=* Operation complete. Setting status: 2 =*=*=*=*=*=*=*=*=*=*=*=*=*
    :: END TIMER :: [Payload Operation :{F861E540-8C1D-4052-9877-61CB41C02B7A}] took 3706.87 milliseconds (3.70687 seconds)
    User specified overrideFile:
    The csu inventory was not updated for payload {F861E540-8C1D-4052-9877-61CB41C02B7A} Adobe Illustrator CS6 Core (64 Bit)_16.0.2_AdobeIllustrator16-mul_x64 16.0.2.0, value of local var is -1
    Calling the ROLLBACK custom action code for pre-install for payload {F861E540-8C1D-4052-9877-61CB41C02B7A} Adobe Illustrator CS6 Core (64 Bit)_16.0.2_AdobeIllustrator16-mul_x64 16.0.2.0
    No operation.  We're done:
    [    5900] Wed Oct 03 09:13:26 2012  INFO
    Total components installed: 0
    Total components repaired: 0
    Total components removed: 0
    [    5900] Wed Oct 03 09:13:26 2012 ERROR
    DW050: The following payload errors were found during install:
    DW050:  - Adobe Illustrator CS6 Core (64 Bit)_16.0.2_AdobeIllustrator16-mul_x64: Install failed
    [    5900] Wed Oct 03 09:13:26 2012  INFO
    >>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>
    Restarting your computer is recommended:
    In order to complete the installation, please restart the computer
    >>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>
    Call PostSession Custom Hook
    :: END TIMER :: [Total Timer] took 9986.08 milliseconds (9.98608 seconds) DTR = 0.801116 KBPS (0.000782339 MBPS)
    -------------------------------------- Summary --------------------------------------
    - 0 fatal error(s), 3 error(s), 0 warning(s)
    ----------- Payload: {F861E540-8C1D-4052-9877-61CB41C02B7A} Adobe Illustrator CS6 Core (64 Bit)_16.0.2_AdobeIllustrator16-mul_x64 16.0.2.0 -----------
    ERROR: DF022: Pre checksum mismatch for file "C:\Program Files\Adobe\Adobe Illustrator CS6 (64 Bit)\Support Files\Contents\Windows\Illustrator.exe"(Seq 26)
    ERROR: DW063: Command ARKPatchCommand failed.(Seq 26)
    ERROR: DW050: The following payload errors were found during install:
    ERROR: DW050:  - Adobe Illustrator CS6 Core (64 Bit)_16.0.2_AdobeIllustrator16-mul_x64: Install failed
    Please search the above error/warning string(s) to find when the error occurred.
    These errors resulted in installer Exit Code mentioned below.
    [    5900] Wed Oct 03 09:13:28 2012  INFO
    Exit Code: 7 - Unable to complete Silent workflow.
    Please see specific errors and warnings for troubleshooting. For example, ERROR: DF022, DW063 ...
    *=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*
    END - Installer Session
    *=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*
    [    3212] Wed Oct 03 09:30:21 2012  INFO
    *=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*
    Visit http://www.adobe.com/go/loganalyzer/ for more information
    *=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*
    *=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*
    START - Installer Session
    *=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*
    RIBS version: 6.2.10.0
    Win OS version: 6.1.1.0 64 bit Type: 1
    ::START TIMER:: [Total Timer]
    CHECK: Single instance running
    CHECK : Credentials
    Load Deployment File
    deploymentFile option not given
    CHECK : Another Native OS installer already running
    Create Required Folders
    Assuming install mode
    Looking up install source path
    Sync Media DB ...
    ::START TIMER:: [Sync Media DB]
    Pre check media db sync
    End of Pre check media db sync. Exit code: 0
    :: END TIMER :: [Sync Media DB] took 20.4218 milliseconds (0.0204218 seconds)
    Ready to initialize session to start with ...
    ::START TIMER:: [CreatePayloadSession]
    -------------------- BEGIN - Updating Media Sources - BEGIN --------------------
    Updated source path: C:\Users\Arnold\Downloads\AdobeIllustrator16.0.2_x64
    Updating media info for: {F861E540-8C1D-4052-9877-61CB41C02B7A}
    Ignoring original data since install source is local
      Type: 0, Volume Order: 1, Media Name:
      Path: C:\Users\Arnold\Downloads\AdobeIllustrator16.0.2_x64\payloads\AdobeIllustrator16-mul_x64- 170912172642\Install.db
    --------------------  END  - Updating Media Sources -  END  --------------------
    Supported RIBS version range: [0.0.66.0,6.2.10.0]
    ----------------- CreatePayloadSession: machine is x64 ---------------
    [    3212] Wed Oct 03 09:30:23 2012  INFO
    ______ Verify Dependency Subscribers ______
    BEGIN Operation order for all session payloads: mediaGroup (requires,satisfies)
      {F861E540-8C1D-4052-9877-61CB41C02B7A} Adobe Illustrator CS6 Core (64 Bit)_16.0.2_AdobeIllustrator16-mul_x64 16.0.2.0: 0 (0,0)
    END Operation order for all session payloads: mediaGroup (requires,satisfies)
    Patch {F861E540-8C1D-4052-9877-61CB41C02B7A} Adobe Illustrator CS6 Core (64 Bit)_16.0.2_AdobeIllustrator16-mul_x64 16.0.2.0 can be applied to product {9D3BB9DA-1F59-4DCF-A0BB-691FA8EA2582} Adobe Illustrator CS6 Core (64 Bit) 16.0.0.0
    Overwrite property "DEVersion" to: 6.0
    Overwrite property "extensionsOnly" to: 1
    Overwrite property "mode" to: silent
    Overwrite property "patchesOnly" to: 1
    Overwrite property "workflow" to: updater
    Found payload actions:
    Deciding what installer mode to use...
    BEGIN Setting requested payload actions
    Value returned on lookup of payload: {F861E540-8C1D-4052-9877-61CB41C02B7A} Adobe Illustrator CS6 Core (64 Bit)_16.0.2_AdobeIllustrator16-mul_x64 16.0.2.0 is: false
    Action string for {F861E540-8C1D-4052-9877-61CB41C02B7A} Adobe Illustrator CS6 Core (64 Bit)_16.0.2_AdobeIllustrator16-mul_x64 16.0.2.0  is install
    END Setting requested payload actions
    Collected advanced path check information for INSTALLDIR
    INSTALLDIR is a well-formed path
    INSTALLDIR is not the root path
    INSTALLDIR is on a local volume
    INSTALLDIR is on a writable volume
    INSTALLDIR is not on a case sensitive volume
    INSTALLDIR passed path basic path validation: C:\Program Files\Adobe
    [    3212] Wed Oct 03 09:30:24 2012  INFO
    BEGIN InstallOperationsQueue Unordered operations
      {F861E540-8C1D-4052-9877-61CB41C02B7A} Adobe Illustrator CS6 Core (64 Bit)_16.0.2_AdobeIllustrator16-mul_x64 16.0.2.0:  with operation install
    END InstallOperationsQueue Unordered operations
    BEGIN InstallOperationsQueue Ordered operations
      {F861E540-8C1D-4052-9877-61CB41C02B7A} Adobe Illustrator CS6 Core (64 Bit)_16.0.2_AdobeIllustrator16-mul_x64 16.0.2.0:  with operation install
    END InstallOperationsQueue Ordered operations
    Payloads passed preflight validation.
    Call PreSession Custom Hook
    BEGIN InstallOperationsQueue Unordered operations
      {F861E540-8C1D-4052-9877-61CB41C02B7A} Adobe Illustrator CS6 Core (64 Bit)_16.0.2_AdobeIllustrator16-mul_x64 16.0.2.0:  with operation install
    END InstallOperationsQueue Unordered operations
    BEGIN InstallOperationsQueue Ordered operations
      {F861E540-8C1D-4052-9877-61CB41C02B7A} Adobe Illustrator CS6 Core (64 Bit)_16.0.2_AdobeIllustrator16-mul_x64 16.0.2.0:  with operation install
    END InstallOperationsQueue Ordered operations
    Calling the custom action code for pre-install for payload {F861E540-8C1D-4052-9877-61CB41C02B7A} Adobe Illustrator CS6 Core (64 Bit)_16.0.2_AdobeIllustrator16-mul_x64 16.0.2.0
    ::START TIMER:: [Payload Operation :{F861E540-8C1D-4052-9877-61CB41C02B7A}]
    [    7544] Wed Oct 03 09:30:24 2012  INFO
    *=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*
    Installer Operation: PayloadInstaller
    *=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*
    Request to install payload
    Payload {F861E540-8C1D-4052-9877-61CB41C02B7A} Adobe Illustrator CS6 Core (64 Bit)_16.0.2_AdobeIllustrator16-mul_x64 16.0.2.0: Calling ARKEngine from path C:\Program Files (x86)\Common Files\Adobe\OOBE\PDApp\DECore\DE6\resources
    Extracting assets...
    Extracting assets complete. Number assets: 1
    CustomizedPatch property not found in database
    Beginning installation for payload at C:\Users\Arnold\Downloads\AdobeIllustrator16.0.2_x64\payloads\AdobeIllustrator16-mul_x64- 170912172642\Install.db
    [    7544] Wed Oct 03 09:30:26 2012 ERROR
    DW063: Command ARKPatchCommand failed.(Seq 26)
    [    7544] Wed Oct 03 09:30:26 2012  INFO
    Completing installation for payload at C:\Users\Arnold\Downloads\AdobeIllustrator16.0.2_x64\payloads\AdobeIllustrator16-mul_x64- 170912172642\Install.db
    [    3212] Wed Oct 03 09:30:28 2012  INFO
    *=*=*=*=*=*=*=*=*=*=*=*=*=*=*=* Operation complete. Setting status: 2 =*=*=*=*=*=*=*=*=*=*=*=*=*
    :: END TIMER :: [Payload Operation :{F861E540-8C1D-4052-9877-61CB41C02B7A}] took 3606.98 milliseconds (3.60698 seconds) DTR = 63734.2 KBPS (62.2404 MBPS)
    User specified overrideFile:
    The csu inventory was not updated for payload {F861E540-8C1D-4052-9877-61CB41C02B7A} Adobe Illustrator CS6 Core (64 Bit)_16.0.2_AdobeIllustrator16-mul_x64 16.0.2.0, value of local var is -1
    Calling the ROLLBACK custom action code for pre-install for payload {F861E540-8C1D-4052-9877-61CB41C02B7A} Adobe Illustrator CS6 Core (64 Bit)_16.0.2_AdobeIllustrator16-mul_x64 16.0.2.0
    No operation.  We're done:
    [    3212] Wed Oct 03 09:30:30 2012  INFO
    Total components installed: 0
    Total components repaired: 0
    Total components removed: 0
    [    3212] Wed Oct 03 09:30:30 2012 ERROR
    DW050: The following payload errors were found during install:
    DW050:  - Adobe Illustrator CS6 Core (64 Bit)_16.0.2_AdobeIllustrator16-mul_x64: Install failed
    [    3212] Wed Oct 03 09:30:30 2012  INFO
    >>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>
    Restarting your computer is recommended:
    In order to complete the installation, please restart the computer
    >>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>
    Call PostSession Custom Hook
    :: END TIMER :: [Total Timer] took 9847.33 milliseconds (9.84733 seconds) DTR = 23348.1 KBPS (22.8008 MBPS)
    -------------------------------------- Summary --------------------------------------
    - 0 fatal error(s), 2 error(s), 0 warning(s)
    ----------- Payload: {F861E540-8C1D-4052-9877-61CB41C02B7A} Adobe Illustrator CS6 Core (64 Bit)_16.0.2_AdobeIllustrator16-mul_x64 16.0.2.0 -----------
    ERROR: DW063: Command ARKPatchCommand failed.(Seq 26)
    ERROR: DW050: The following payload errors were found during install:
    ERROR: DW050:  - Adobe Illustrator CS6 Core (64 Bit)_16.0.2_AdobeIllustrator16-mul_x64: Install failed
    Please search the above error/warning string(s) to find when the error occurred.
    These errors resulted in installer Exit Code mentioned below.
    [    3212] Wed Oct 03 09:30:32 2012  INFO
    Exit Code: 7 - Unable to complete Silent workflow.
    Please see specific errors and warnings for troubleshooting. For example, ERROR: DW050, DW063 ...
    *=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*
    END - Installer Session
    *=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*
    *=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*
    Visit http://www.adobe.com/go/loganalyzer/ for more information
    *=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*
    *=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*
    START - Installer Session
    *=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*
    RIBS version: 6.2.10.0
    Win OS version: 6.1.1.0 64 bit Type: 1
    ::START TIMER:: [Total Timer]
    CHECK: Single instance running
    CHECK : Credentials
    Load Deployment File
    deploymentFile option not given
    CHECK : Another Native OS installer already running
    Create Required Folders
    Assuming install mode
    Looking up install source path
    Sync Media DB ...
    ::START TIMER:: [Sync Media DB]
    Pre check media db sync
    End of Pre check media db sync. Exit code: 0
    :: END TIMER :: [Sync Media DB] took 17.1592 milliseconds (0.0171592 seconds)
    Ready to initialize session to start with ...
    ::START TIMER:: [CreatePayloadSession]
    -------------------- BEGIN - Updating Media Sources - BEGIN --------------------
    Updated source path: C:\Users\Arnold\AppData\Local\Temp\Adobe\AAMUpdater\AdobeIllustrator16-mul_x64\16.3\Setup
    Updating media info for: {F861E540-8C1D-4052-9877-61CB41C02B7A}
    Ignoring original data since install source is local
      Type: 0, Volume Order: 1, Media Name:
      Path: C:\Users\Arnold\AppData\Local\Temp\Adobe\AAMUpdater\AdobeIllustrator16-mul_x64\16.3\Setup \payloads\AdobeIllustrator16-mul_x64-170912172642\Install.db
    --------------------  END  - Updating Media Sources -  END  --------------------
    Supported RIBS version range: [0.0.66.0,6.2.10.0]
    ----------------- CreatePayloadSession: machine is x64 ---------------
    [    2092] Wed Oct 03 09:31:57 2012  INFO
    ______ Verify Dependency Subscribers ______
    BEGIN Operation order for all session payloads: mediaGroup (requires,satisfies)
      {F861E540-8C1D-4052-9877-61CB41C02B7A} Adobe Illustrator CS6 Core (64 Bit)_16.0.2_AdobeIllustrator16-mul_x64 16.0.2.0: 0 (0,0)
    END Operation order for all session payloads: mediaGroup (requires,satisfies)
    Patch {F861E540-8C1D-4052-9877-61CB41C02B7A} Adobe Illustrator CS6 Core (64 Bit)_16.0.2_AdobeIllustrator16-mul_x64 16.0.2.0 can be applied to product {9D3BB9DA-1F59-4DCF-A0BB-691FA8EA2582} Adobe Illustrator CS6 Core (64 Bit) 16.0.0.0
    Overwrite property "extensionsOnly" to: 1
    Overwrite property "mode" to: silent
    Overwrite property "patchesOnly" to: 1
    Overwrite property "workflow" to: updater
    Found payload actions:
    Deciding what installer mode to use...
    BEGIN Setting requested payload actions
    Value returned on lookup of payload: {F861E540-8C1D-4052-9877-61CB41C02B7A} Adobe Illustrator CS6 Core (64 Bit)_16.0.2_AdobeIllustrator16-mul_x64 16.0.2.0 is: false
    Action string for {F861E540-8C1D-4052-9877-61CB41C02B7A} Adobe Illustrator CS6 Core (64 Bit)_16.0.2_AdobeIllustrator16-mul_x64 16.0.2.0  is install
    END Setting requested payload actions
    Collected advanced path check information for INSTALLDIR
    INSTALLDIR is a well-formed path
    INSTALLDIR is not the root path
    INSTALLDIR is on a local volume
    INSTALLDIR is on a writable volume
    INSTALLDIR is not on a case sensitive volume
    INSTALLDIR passed path basic path validation: C:\Program Files\Adobe
    BEGIN InstallOperationsQueue Unordered operations
      {F861E540-8C1D-4052-9877-61CB41C02B7A} Adobe Illustrator CS6 Core (64 Bit)_16.0.2_AdobeIllustrator16-mul_x64 16.0.2.0:  with operation install
    END InstallOperationsQueue Unordered operations
    BEGIN InstallOperationsQueue Ordered operations
      {F861E540-8C1D-4052-9877-61CB41C02B7A} Adobe Illustrator CS6 Core (64 Bit)_16.0.2_AdobeIllustrator16-mul_x64 16.0.2.0:  with operation install
    END InstallOperationsQueue Ordered operations
    Payloads passed preflight validation.
    Call PreSession Custom Hook
    BEGIN InstallOperationsQueue Unordered operations
      {F861E540-8C1D-4052-9877-61CB41C02B7A} Adobe Illustrator CS6 Core (64 Bit)_16.0.2_AdobeIllustrator16-mul_x64 16.0.2.0:  with operation install
    END InstallOperationsQueue Unordered operations
    BEGIN InstallOperationsQueue Ordered operations
      {F861E540-8C1D-4052-9877-61CB41C02B7A} Adobe Illustrator CS6 Core (64 Bit)_16.0.2_AdobeIllustrator16-mul_x64 16.0.2.0:  with operation install
    END InstallOperationsQueue Ordered operations
    Calling the custom action code for pre-install for payload {F861E540-8C1D-4052-9877-61CB41C02B7A} Adobe Illustrator CS6 Core (64 Bit)_16.0.2_AdobeIllustrator16-mul_x64 16.0.2.0
    ::START TIMER:: [Payload Operation :{F861E540-8C1D-4052-9877-61CB41C02B7A}]
    [    6476] Wed Oct 03 09:31:57 2012  INFO
    *=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*
    Installer Operation: PayloadInstaller
    *=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*
    Request to install payload
    Payload {F861E540-8C1D-4052-9877-61CB41C02B7A} Adobe Illustrator CS6 Core (64 Bit)_16.0.2_AdobeIllustrator16-mul_x64 16.0.2.0: Calling ARKEngine from path C:\Program Files (x86)\Common Files\Adobe\OOBE\PDApp\DECore\DE6\resources
    Extracting assets...
    [    6476] Wed Oct 03 09:31:58 2012  INFO
    Extracting assets complete. Number assets: 1
    CustomizedPatch property not found in database
    Beginning installation for payload at C:\Users\Arnold\AppData\Local\Temp\Adobe\AAMUpdater\AdobeIllustrator16-mul_x64\16.3\Setup \payloads\AdobeIllustrator16-mul_x64-170912172642\Install.db
    [    6476] Wed Oct 03 09:32:00 2012 ERROR
    DW063: Command ARKPatchCommand failed.(Seq 26)
    [    6476] Wed Oct 03 09:32:00 2012  INFO
    Completing installation for payload at C:\Users\Arnold\AppData\Local\Temp\Adobe\AAMUpdater\AdobeIllustrator16-mul_x64\16.3\Setup \payloads\AdobeIllustrator16-mul_x64-170912172642\Install.db
    [    2092] Wed Oct 03 09:32:01 2012  INFO
    *=*=*=*=*=*=*=*=*=*=*=*=*=*=*=* Operation complete. Setting status: 2 =*=*=*=*=*=*=*=*=*=*=*=*=*
    :: END TIMER :: [Payload Operation :{F861E540-8C1D-4052-9877-61CB41C02B7A}] took 3703.05 milliseconds (3.70305 seconds)
    User specified overrideFile:
    The csu inventory was not updated for payload {F861E540-8C1D-4052-9877-61CB41C02B7A} Adobe Illustrator CS6 Core (64 Bit)_16.0.2_AdobeIllustrator16-mul_x64 16.0.2.0, value of local var is -1
    Calling the ROLLBACK custom action code for pre-install for payload {F861E540-8C1D-4052-9877-61CB41C02B7A} Adobe Illustrator CS6 Core (64 Bit)_16.0.2_AdobeIllustrator16-mul_x64 16.0.2.0
    No operation.  We're done:
    [    2092] Wed Oct 03 09:32:03 2012  INFO
    Total components installed: 0
    Total components repaired: 0
    Total components removed: 0
    [    2092] Wed Oct 03 09:32:03 2012 ERROR
    DW050: The following payload errors were found during install:
    DW050:  - Adobe Illustrator CS6 Core (64 Bit)_16.0.2_AdobeIllustrator16-mul_x64: Install failed
    [    2092] Wed Oct 03 09:32:03 2012  INFO
    >>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>
    Restarting your computer is recommended:
    In order to complete the installation, please restart the computer
    >>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>
    Call PostSession Custom Hook
    :: END TIMER :: [Total Timer] took 9202.39 milliseconds (9.20239 seconds) DTR = 0.869339 KBPS (0.000848964 MBPS)
    -------------------------------------- Summary --------------------------------------
    - 0 fatal error(s), 2 error(s), 0 warning(s)
    ----------- Payload: {F861E540-8C1D-4052-9877-61CB41C02B7A} Adobe Illustrator CS6 Core (64 Bit)_16.0.2_AdobeIllustrator16-mul_x64 16.0.2.0 -----------
    ERROR: DW063: Command ARKPatchCommand failed.(Seq 26)
    ERROR: DW050: The following payload errors were found during install:
    ERROR: DW050:  - Adobe Illustrator CS6 Core (64 Bit)_16.0.2_AdobeIllustrator16-mul_x64: Install failed
    Please search the above error/warning string(s) to find when the error occurred.
    These errors resulted in installer Exit Code mentioned below.
    [    2092] Wed Oct 03 09:32:04 2012  INFO
    Exit Code: 7 - Unable to complete Silent workflow.
    Please see specific errors and warnings for troubleshooting. For example, ERROR: DW050, DW063 ...
    *=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*
    END - Installer Session
    *=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*
    *=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*
    Visit http://www.adobe.com/go/loganalyzer/ for more information
    *=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*
    *=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*
    START - Installer Session
    *=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*
    RIBS version: 6.2.10.0
    Win OS version: 6.1.1.0 64 bit Type: 1
    ::START TIMER:: [Total Timer]
    CHECK: Single instance running
    CHECK : Credentials
    Load Deployment File
    deploymentFile option not given
    CHECK : Another Native OS installer already running
    Create Required Folders
    Assuming install mode
    Looking up install source path
    Sync Media DB ...
    ::START TIMER:: [Sync Media DB]
    Pre check media db sync
    End of Pre check media db sync. Exit code: 0
    :: END TIMER :: [Sync Media DB] took 29.3211 milliseconds (0.0293211 seconds)
    Ready to initialize session

    It appears you are running into a permission issue writing to your temp directory.
    Beginning installation for payload at C:\Users\Arnold\AppData\Local\Temp\Adobe\AAMUpdater\AdobeIllustrator1 6-mul_x64\16.3\Setup\payloads\AdobeIllustrator16-mul_x64-170912172642\ Install.db
    [    5568] Wed Oct 03 09:57:38 2012 ERROR
    DW063: Command ARKPatchCommand failed.(Seq 26)
    [    5568] Wed Oct 03 09:57:38 2012  INFO
    Completing installation for payload at C:\Users\Arnold\AppData\Local\Temp\Adobe\AAMUpdater\AdobeIllustrator1 6-mul_x64\16.3\Setup\payloads\AdobeIllustrator16-mul_x64-170912172642\ Install.db
    You can try adjusting the permissions for C:\Users\Arnold\AppData\Local\Temp and all associated child objects.
    Error "Exit 6" or "Exit 7" | Install log | Read, write, system file errors | CS5, CS5.5 - http://helpx.adobe.com/creative-suite/kb/error-exit-6-exit-7.html contains information on how you can adjust your permissions.

Maybe you are looking for