BAPI step by step Using CATSDB table full point if useful

BAPI step by step Using CATSDB table to folder
full point if useful

Hi,
"Steps for Creating a BAPI:
    1) Create a Function Module in SE37 and assign it to an active Function Group.
(Check Remote Enable in attributes section)
    2) Fill the Import (Input) Parameters for the RFC
    3) Fill the Export (Output) Parameters
         (BAPIRETURN IS MANDATORY)
    4) Fill the Table parameters, if any
    5) Write the “functionality” in the source code
    6) Activate and Release the Function Module"
Thanks
Srinu

Similar Messages

  • BAPI step by step to connect JAVA for catsdb table

    BAPI step by step to connect JAVA for catsdb table,
    Points will be rewarded,
    full points with example of catsdb table in bapi for JCO JAVA
    Thank you,
    Regards,
    Jagrut BharatKumar Shukla

    Hi,
    Check the thread..
    https://forums.sdn.sap.com/click.jspa?searchID=3587428&messageID=3647918
    Regards,
    Omkar.

  • How to retrieve data from catsdb table and convert into xml using BAPI

    How to retrieve data from catsdb table and convert into xml using BAPI
    Points will be rewarded,
    Thank you,
    Regards,
    Jagrut BharatKumar Shukla

    Hi,
    This is not your requirment but u can try this :
    CREATE OR REPLACE DIRECTORY text_file AS 'D:\TEXT_FILE\';
    GRANT READ ON DIRECTORY text_file TO fah;
    GRANT WRITE ON DIRECTORY text_file TO fah;
    DROP TABLE load_a;
    CREATE TABLE load_a
    (a1 varchar2(20),
    a2 varchar2(200))
    ORGANIZATION EXTERNAL
    (TYPE ORACLE_LOADER
    DEFAULT DIRECTORY text_file
    ACCESS PARAMETERS
    (FIELDS TERMINATED BY ','
    LOCATION ('data.txt')
    select * from load_a;
    CREATE TABLE A AS select * from load_a;
    SELECT * FROM A
    Regards
    Faheem Latif

  • BAPI steps

    Can anyone help me to know how to get the data from SAP to server(java) and vice versa  using BAPI..
    Example : Material data is in the Java server,Now i need to take the data from tht server to SAP using BAPI..Plz guide me with the steps

    Hi,
    STEP 1 - Define a structures for the BAPI
    STEP 2 - Write Function Module
    •     Each BAPI must have its own function group.
    •     Under the attrbutes tab remember to select Processing Type Remote Enabled module, otherwise the function module cannot be invoked via RFC and used as a BAPI
    •     Import/Export parameters can only be BY VALUE for an RFC enabled function module
    •     We are only creating one BAPI in this example, but you can create related BAPIs in the same function pool, so they will be able to share global data.
    Attributes
    Import Parameters
    Export Parameters
    Tables
    STEP 3 - Create the API Method Using the BAPI WIZARD
    STEP 4 - Final steps
    When the Business object has been checked and the documentation created, the follwing steps must be carried out:
    •     Release the BAPI function module (in the Function Builder).
    •     Release the business object type (in the BOR ObjectType -> Change release status to -> Implemented ).
    •     Release the BAPI as a method in the BOR (Release the methods you have created - Set the cursor on the method then
    Edit -> Change release status -> Object type component -> To released )
    <b>reward points if useful.</b>
    regards,
    Vinod Samuel.

  • BAPI coding for CATSDB TABLE i.e Timesheet DB

    BAPI coding for CATSDB TABLE i.e Timesheet DB
    Points will be rewarded,
    Thank you,
    Jagrut BharatKumar Shukla

    Hi Srikhar
    use these bapis
    BAPI_BPCONTACT_CHANGE BAPI
    BAPI_BPCONTACT_CREATEFROMDATA BAPI .... BAPI_CUSTOMERCONTRACT_CHANGE
    BAPI_CTRACCONTRACTACCOUNT_CH1
    reward points to all helpful answers
    kiran.M

  • MDM Approval Workflow - Send to previous step using API

    Hi,
    I am working on MDM 7.1 SP 07. I have integrated MDM workflow with UWL.
    I have written a custom web dynpro application to approve the workflow record using MDM APIs.
    I am able to accept the workflow task, mark it as APPROVED, mark as DONE and send it to NEXT STEP using WorkflowTaskAction.SEND_NEXT_STEP
    Similarly I am able to accept the workflow task, mark it as DISAPPROVED, mark as Done.
    Issue:
    When the record is disapproved, I can see the "Send to previous" step option in data manager.
    But I donot get the option "SEND TO PREVIOUS" in the mdm api. I expected something like WorkflowTaskAction.SEND_PREVIOUS_STEP
    Any idea on the correct apis to send to previous step?
    Regards,
    Durai

    Hi,
    I tried with WorkflowTaskAction.SEND_NEXT_STEP. But it is failing. Because once the record is disapproved and marked as done, SENT_NEXT_STEP is not enabled.
    I also checked the Workflow status. Once disapproved and marked as done, only PREVIOUS_STEP gets enabled in Data Manager.
    Are there any other options to send to previous step?
    Regards,
    Durai

  • Kindly let me the Know Step by Step Procedure of Table Exits. & Field Exits

    Dear Members,
       Kindly let me the Know Step by Step Procedure of Table Exits. & Field Exits.
    it would be better if u explain by Example....
    Hoping for your Response...
    Thanks & Warm Regards,
    Nitin Chandrawanshi

    Some examples:
    1.     Extending Business Content - EXIT_SAPLRSAP_001
    data: l_s_icctrcst like icctrcst,                                          
             l_s_icctract like icctract,                                          
             l_s_icctrsta like icctrsta,                                          
             l_tabix      like sy-tabix.                                                                               
    case i_isource.                                                                               
    when '0CO_OM_CCA_1'.                                                     
           loop at c_t_data into l_s_icctrcst.                                    
             l_tabix = sy-tabix.                                                  
             select single * from z0001 where kokrs = l_s_icctrcst-kokrs          
                                        and   kostl = l_s_icctrcst-kostl.         
             if sy-subrc = 0.                                                     
               l_s_icctrcst-zfield1 = z0001-zfield1.                              
               l_s_icctrcst-zfield2 = z0001-zfield2.                              
               modify c_t_data from l_s_icctrcst index l_tabix.                   
             endif.                                                               
           endloop.                                                                               
    when '0CO_OM_CCA_2'.                                                     
         when '0CO_OM_CCA_3'.                                                     
         when others.                                                             
           exit.                                                                               
    endcase.                                                                 
    2.     User Exit after Data loading
    (a)     Delete old request
    REPORT Z_RSSM_START_SECOND_PROCESS_1 .
    TABLES: RSREQDONE,   " Request-Data
            RSSELDONE,   " Selection for current Request
            RSICCONT.    " Request posted to which InfoCube
    DATA: L_T_SELDONE LIKE RSSELDONE OCCURS 0 WITH HEADER LINE.
    DATA: L_T_ICUBE LIKE RSICCONT OCCURS 0 WITH HEADER LINE.
    DATA: L_LOGSYS LIKE RSSELDONE-LOGSYS.
    DATA: L_SOURCE LIKE RSSELDONE-SOURCE.
    DATA: L_SELDATE LIKE RSSELDONE-SELDATE.
    DATA: L_SELTIME LIKE RSSELDONE-SELTIME.
    DATA: BEGIN OF L_T_RNR_DEL OCCURS 0,
            ICUBE LIKE RSICCONT-ICUBE,
            RNR   LIKE RSSELDONE-RNR,
          END OF L_T_RNR_DEL.
    PARAMETER I_RNR LIKE RSREQDONE-RNR.
    SELECT SINGLE * FROM RSSELDONE WHERE
           RNR = I_RNR.
    IF SY-SUBRC <> 0. "new rquest does not exist, wrong rnr !!!
      EXIT.
    ENDIF.
    SELECT * FROM RSICCONT INTO TABLE L_T_ICUBE WHERE
           RNR = I_RNR.
    IF SY-SUBRC <> 0.     "New request is not posted to any IC
      EXIT.               "nothing will be deleted
    ENDIF.
    L_SOURCE  = RSSELDONE-SOURCE.
    L_LOGSYS  = RSSELDONE-LOGSYS.
    L_SELDATE = RSSELDONE-SELDATE.
    L_SELTIME = RSSELDONE-SELTIME.
    SELECT * FROM RSSELDONE INTO TABLE L_T_SELDONE WHERE
           SOURCE  = L_SOURCE AND
           LOGSYS  = L_LOGSYS.
    DELETE L_T_SELDONE WHERE
           RNR = I_RNR.            "new request will be deleted
    DELETE L_T_SELDONE WHERE     "delete younger requests
             SELDATE > L_SELDATE OR
           ( SELTIME > L_SELTIME AND
             SELDATE = L_SELDATE ).
    *Sort
    SORT L_T_SELDONE BY SELDATE DESCENDING SELTIME DESCENDING.
    REFRESH L_T_RNR_DEL.
    LOOP AT L_T_SELDONE.   " Requests to be deleted
      LOOP AT L_T_ICUBE.   " Request existing in InfoCubes
        SELECT SINGLE * FROM RSICCONT WHERE
               ICUBE = L_T_ICUBE-ICUBE AND
               RNR   = L_T_SELDONE-RNR.            "check if posted to IC's
        IF SY-SUBRC = 0.
          L_T_RNR_DEL-ICUBE = L_T_ICUBE-ICUBE.
          L_T_RNR_DEL-RNR   = L_T_SELDONE-RNR.
          APPEND L_T_RNR_DEL.
        ENDIF.
      ENDLOOP.
      IF NOT L_T_RNR_DEL[] IS INITIAL. " something found for rnr
        EXIT.
      ENDIF.
    ENDLOOP.
    LOOP AT L_T_RNR_DEL.
      CALL FUNCTION 'RSSM_DELETE_REQUEST'
           EXPORTING
                REQUEST                    = L_T_RNR_DEL-RNR
                INFOCUBE                   = L_T_RNR_DEL-ICUBE
           EXCEPTIONS
                REQUEST_NOT_IN_CUBE        = 1
                INFOCUBE_NOT_FOUND         = 2
                REQUEST_ALREADY_AGGREGATED = 3
                REQUEST_ALREADY_COMDENSED  = 4
                OTHERS                     = 5.
      IF SY-SUBRC <> 0.
    open for error-handling
      ENDIF.
    ENDLOOP.
    if it helpful reward point are appreciated

  • How to create Bapis step by step

    Hi.
    Can u tell me how to create Bapi step by step with a sample program..

    Copy-paste from http://www.sap-img.com/abap/bapi-step-by-step-guidance.htm
    has been reported to SCN Moderators, along with all those who are providing links.
    pk

  • Which case in LV Oper. Intf. will do "Run Selected Steps using single pass" for me?

    I added a button to simulate "Run Selected Steps", but I really want a button that will "Run Selected Steps Using Single Pass". Which case in the Complex Labview Operator Interface does this for me? What I really want is the report to be generated which happens when I use "Run Selected Steps Using Single Pass" but no report when I select "Run Selected Steps".
    Thanks!

    I figured out how to make this work.  Instead of calling the Sequence File View Manager ConnectCommand method using the Run Selected Steps button and the CommandKind_RunSelectedSteps command kind, you use the CommandKind_RunSelectedStepsUsingEntryPoints_Set command kind.  The tricky part is that before you can use the ConnectCommand method with the CommandKind_RunSelectedStepsUsingEntryPoints_Set command kind, you have to create a set of new commands.  Do this by first invoking the Application Manager method NewCommands.  This method returns an empty set of commands.  You must then add a new command to that set.  Do this by invoking the InsertKind method on the empty set of commands using CommandKind_RunEntryPointOnSelectedSteps for cmdKind, Sequence File View Manager for managerControl, -1 for insertBefore, and empty strings for currentMenuName and allMenuNames parameters.  Once you have made these calls, then you can call the Sequence File View Manager ConnectCommand method using the CommandKind_RunSelectedStepsUsingEntryPoints_Set command kind.
    The previous instructions work just the same for the Loop On Selected Steps button.  Just substitute the CommandKind_RunEntryPointOnSelectedSteps and CommandKind_RunSelectedStepsUsingEntryPoints_Set command kind constants with CommandKind_LoopEntryPointOnSelectedSteps and CommandKind_LoopOnSelectedStepsUsingEntryPoints_Set command kinds (and of course use the Loop On Selected Steps button reference instead of the Run on Selected Steps button reference when invoking the ConnectCommand method).
    There is one mystery with this solution that I haven't figured out yet, besides the fact that it is so laborious and non-intuitive to me (but at least it works).  Nowhere in any of the calls detailed above did I ever see a parameter to specify which execution entry point to use.  I am using the default sequential model entry points Test UUTs and Single Pass.  Typically you specify which entry point you want to use (such as when invoking the ConnectCommand method) in the form of an index to a set of entry points where the Test UUTs entry point corresponds to a set index of 0 and Single Pass corresponds to a set index of 1.  How did the previous calls determine which entry point to use when I didn't specify anywhere which one to use?  Do this just work because you can only run or loop on selected steps using no process model or the Single Pass entry point?

  • In LabVIEW OI the Run Selected Step Using Test UUTs does not work

    TestStand LabVIEW Operator Interface (old style) - TestStand Version 2.0.1 & 3.0
    The Interactive option was enabled for the Process Model Entry Point - Test UUTs in the SequentialModel.seq.
    When selective steps were selected to run within the LV OI using the menu item 'Run Selected Step Using - Test UUTs' it was found not to work.
    The reason for it not working was because the main event string was "Run Selected Step 0" but this isn't available in the case statement. Changing the "Run Selected Step 1".."Run Selected Step 9999" to "Run Selected Step 0".. didn't produced the desired result. Instead of the selected steps running using the entry point Test UUTs, the steps ran without the process model.
    The Case Statement string was retored back to "Run Selected Step 1".
    The changes that are required to make the "Run Selected Step 1".."Run Selected Step 9999" work with either of the Entry Points are as follow.
    In the VI TestStand - Create Entry Point Menus for Interactive Exec.vi
    Insert an Increment from the iteration terminal of the FOR loop. This ensures the Message Queue string generated is in the range 1 - 9999 not 0 - 9999.
    In the TestStand - Sequence Display.vi
    For the Main Message Event "Run Selected Steps", "Run Selected Step 1".."Run Selected Step 9999"
    In the case "1, Default", decrement the input 'Entry Point Index' to the VI TestStand - Start Interactive Entry Point Execution.vi. This ensures the Entry Point Index starts from the value 0.
    Now when the selected steps are run using a Pocess Model Entry Point, they run correctly.
    This problem only appears to affect the LabVIEW Operator Interface and only the old style. The new style that comes with TestStand 3.0 runs correctly.
    There is one other problem. When an Operator is logged in to TestStand, the Entry Point - 'Single Pass' is disabled. But this is not reflected to the menu item 'Run Selected Step Using'. Both 'Test UUTs' and 'Single Pass' are available to the operator.
    The reason for this is because in the VI 'TestStand - Create Entry Point Menus for Interactive Exec.vi' the sub menu item is enabled as a result from the property Sequence.AllowInteractiveExecutionOfEntryPoint. This is not enough to disable the 'Single Pass'. The Engine.CurrentUserHasPrivilege needs to be checked as well. Which means modications to the VI 'TestStand - Create Entry Point Menus for Interactive Exec.vi'.
    Hope is maybe of help to anyone that may need to use this option.
    Regards
    Ray Farmer
    Regards
    Ray Farmer
    Attachments:
    In_Labview_OI_-_Run_Selected_Steps_Using_Test_UUTs_doesnt_work.txt ‏3 KB

    Thanks Ray for the "heads-up". )
    I am about to implement a vi which calls TestStand functions. This vi will allow to select tests and permits test re-entry (loops) if the user has supervisor privileges.
    I will consider what you recommend in this string.
    I will also provide feedback on this thread if I discover anything .... let's say "unusual"..
    On another note, I am using TestStand 3.0 I have not observed any problems when running selected steps or run selected steps using single pass. I have also within TestStand set privileges for certain Operators to do the same. They have not reported any problems.
    Thanks,
    JLV

  • Importing date UDF's to activity steps using SDK

    I an having difficulty importing/exporting UDF date fields on activity steps using the SDK.  Text UDF's are no problem but any other type of field is not recognized.  No errors are generated.  Any suggestions?

    Hi
    It is not possible . In 8.8 OINM is a view you can't add UDF to it .
    Regards
    Arun

  • Creating LabVIEW module adapter TestStand Steps using the API without loading module prototype???

    Is it possible to programatically create a TestStand step (using the API), that calls a LabVIEW module, without loading the prototype of the module to get a reference to the Module Parameters.
    I want to specify a VI Pathname, but I dont want to use that pathname to load the prototype.  I want to programatically specify the name, type, representation etc. of each of the controls and indicators.
    My reason for attempting this is that I only want the VIs called by the steps to exist on the target hardware not on the numerous development machines running my application.
    Any thoughts greatly appreciated.
    Steve  
    https://decibel.ni.com/content/blogs/DailyCLAD

    Hi Steve,
    Unfortunatly it is not possible to do what you want within Test Stand but I am not sure why it is necessary, I think I am understanding your application incorrectly.  The only time you will need to load the prototype is if you are creating the step but if you are creating the step you will need the VI that the step calls so that VI will need to be present on the system.  If you are not calling the step then you shouldn't need to load the VI prototype.  If this is how you program funtions it may be a problem with your architecture but if not please could you correct my misunderstanding so that I can go about finding a suitable solution.
    Regards,
    Tom
    Applications Engineer
    National Instruments UK & Ireland

  • Custom field handling in CATSDB table through BAPI

    Hi,
    I have enhanced CATSDB table using CI_CATSDB. I have added one field QTY of type DEC(4,2).
    to enter timesheet I have written one function as per following code. But system is giving error in statement shown in bold fonts. How to overcome from this problem?
    ""Local Interface:
    *"  IMPORTING
    *"     VALUE(EMPLOYEENUMBER) TYPE  HR_PERNR
    *"     VALUE(WORKDATE) TYPE  CATSDATE
    *"     VALUE(CATSHOURS) TYPE  CATSHOURS
    *"     VALUE(WBS_ELEMENT) TYPE  PS_POSID OPTIONAL
    *"     VALUE(ACTTYP) TYPE  LSTAR OPTIONAL
    *"     VALUE(QTY) TYPE  ZLHR_TIME_QTY OPTIONAL
    *"  EXPORTING
    *"     VALUE(CATSRECORDS_OUT) TYPE  TCATSDB_EXT
    *"  CHANGING
    *"     VALUE(RETURN) TYPE  BAPIRET2_T
      DATA:
        wa_catsrecords_in TYPE bapicats1,
        int_catsrecords_in TYPE TABLE OF bapicats1,
        wa_extensionin TYPE bapicats7,
        int_extensionin TYPE TABLE OF bapicats7,
        wa_bapi_te_catsdb TYPE bapi_te_catsdb,
        wa_catsrecords_out TYPE bapicats2.
      wa_catsrecords_in-employeenumber = employeenumber.
      wa_catsrecords_in-workdate = workdate.
      wa_catsrecords_in-acttype = acttyp.
      wa_catsrecords_in-wbs_element = wbs_element.
      wa_catsrecords_in-catshours = catshours.
      APPEND wa_catsrecords_in TO int_catsrecords_in.
      CLEAR wa_catsrecords_in.
      wa_bapi_te_catsdb-row = 1. 
      wa_bapi_te_catsdb-qty = qty.
      wa_extensionin-structure = 'BAPI_TE_CATSDB'.
      wa_extensionin-valuepart1 = wa_bapi_te_catsdb+0(240).
      APPEND wa_extensionin TO int_extensionin.
      CLEAR wa_extensionin.
      CALL FUNCTION 'BAPI_CATIMESHEETMGR_INSERT'
        EXPORTING
          profile         = 'Z_DEMO'
          testrun         = ' '
          release_data    = ' '
        TABLES
          catsrecords_in  = int_catsrecords_in
          extensionin     = int_extensionin
          catsrecords_out = catsrecords_out
          return          = return.

    Hi,
       In BD64 you can do the segment level filtering. Go to BD64, search for your distribution model there drill down to "filter settings" the make the required segment filtering.
    Thanks,
    Asit Purbey.

  • Is it possible to micro step using the Pci7314 (open loop) controller and umi7764 and Labview.

    Is it possible to micro step using the Pci7314 (open loop) controller, umi7764 and Labview. if so how would this be set up. i have searched the valuemotion vi libraries and found no microstepping functions. Please could you offer any advice. cheers JON ROGERS

    Hi Jon,
    Micro-stepping is a property of the motor amplifier (motor drive) rather than the controller. It sounds like you are using a 3rd party drive, since you have a UMI. You want to check with your motor amplifier documentation to see if it's supported. Usually, there will be dip-switches on the drive that sets the microstep factor.
    Hope this helps. Please let me know if you have any questions.
    Thanks,
    Ken Sun
    Applications Engineering
    National Instruments

  • Tasksequence fail in Step Use Tool Kit Package

    Hello
    I have a Tasksequence where I Use the Step "Use Toolkit Package". When I run this Tasksequence on a x86 System then I have no errors. When I run the same Tasksequence on a x64 System this Step fail with the following Error in smstslog.
    DeploymentType = REFRESH InstallSoftware 14.12.2012 14:44:56 6052 (0x17A4)
    Phase =  InstallSoftware 14.12.2012 14:44:56 6052 (0x17A4)
    Property OSDStartTime is now = 2012-12-14 13:44:56Z InstallSoftware 14.12.2012 14:44:56 6052 (0x17A4)
    ZTISCCM processing completed successfully. InstallSoftware 14.12.2012 14:44:56 6052 (0x17A4)
    Process completed with exit code 3221225477 InstallSoftware 14.12.2012 14:44:57 6052 (0x17A4)
    Command line returned 3221225477 InstallSoftware 14.12.2012 14:44:57 6052 (0x17A4)
    Process completed with exit code 3221225477 TSManager 14.12.2012 14:44:57 2844 (0x0B1C)
    !--------------------------------------------------------------------------------------------! TSManager 14.12.2012 14:44:57 2844 (0x0B1C)
    Failed to run the action: Use Toolkit Package.
    Unknown error (Error: C0000005; Source: Unknown) TSManager 14.12.2012 14:44:57 2844 (0x0B1C)
    Set authenticator in transport TSManager 14.12.2012 14:44:57 2844 (0x0B1C)
    Set a global environment variable _SMSTSLastActionRetCode=-1073741819 TSManager 14.12.2012 14:44:57 2844 (0x0B1C)
    Set a global environment variable _SMSTSLastActionSucceeded=false TSManager 14.12.2012 14:44:57 2844 (0x0B1C)
    Clear local default environment TSManager 14.12.2012 14:44:57 2844 (0x0B1C)
    Let the parent group (Run Wizard) decides whether to continue execution TSManager 14.12.2012 14:44:57 2844 (0x0B1C)
    Let the parent group (Main) decide whether to continue execution TSManager 14.12.2012 14:44:57 2844 (0x0B1C)
    The execution of the group (Main) has failed and the execution has been aborted. An action failed.
    Operation aborted (Error: 80004004; Source: Windows) TSManager 14.12.2012 14:44:57 2844 (0x0B1C)
    Failed to run the last action: Use Toolkit Package. Execution of task sequence failed.
    Unknown error (Error: C0000005; Source: Unknown) TSManager 14.12.2012 14:44:57 2844 (0x0B1C)
    Set authenticator in transport TSManager 14.12.2012 14:44:57 2844 (0x0B1C)
    Andreas

    I have make additional tests and have seen that the Output on a x64 System is not the same as on a x86 system
    Is the a cinfigfile for this Action that is different for x64 and x86?
    ====================
    x64
    ====================
    The task sequence execution engine failed executing the action (Use Toolkit Package) in the group (Run Wizard) with the error code 3221225477
    Action output: uence\WDPackage\Scripts
    ScriptRoot = C:\_SMSTaskSequence\WDPackage\Scripts
    Property DeployRoot is now = C:\_SMSTaskSequence\WDPackage
    DeployRoot = C:\_SMSTaskSequence\WDPackage
    Property ToolRoot is now = C:\_SMSTaskSequence\WDPackage\Tools\X64
    ToolRoot = C:\_SMSTaskSequence\WDPackage\Tools\X64
    Property ResourceRoot is now = C:\_SMSTaskSequence\WDPackage
    ResourceRoot = C:\_SMSTaskSequence\WDPackage
    Property BDDPackageID is now =
    BDDPackageID =
    Local
    RootPath = C:\MININT
    LogPath = C:\MININT\SMSOSD\OSDLOGS
    Property
    DeploymentMethod is now = SCCM
    DeploymentMethod = SCCM
    Property DeploymentType is now = REFRESH
    If there is a drive letter defined, make sure we clear it now so we can *force* recalcutation.
    Property OSDTargetDriveCache is now = DIRTY
    TargetOS is the current SystemDrive
    DeploymentType = REFRESH
    Phase =
    Property OSDStartTime is now = 2012-12-17 13:24:58Z
    ZTISCCM processing completed successfully.
    Process completed with exit code 3221225477
    Command line returned 3221225477. The operating system reported error 2147942402: The system cannot find the file specified.
    ===============
    x86
    ===============
    The task sequence execution engine successfully completed the action (Use Toolkit Package) in the group (Run Wizard) with exit code 0
    Action output: Property ScriptRoot is now = D:\_SMSTaskSequence\Packages\VES00013\Scripts
    ScriptRoot = D:\_SMSTaskSequence\Packages\VES00013\Scripts
    Property DeployRoot is now = D:\_SMSTaskSequence\Packages\VES00013
    DeployRoot = D:\_SMSTaskSequence\Packages\VES00013
    Property ToolRoot is now = D:\_SMSTaskSequence\Packages\VES00013\Tools\X86
    ToolRoot = D:\_SMSTaskSequence\Packages\VES00013\Tools\X86
    DeployRoot = D:\_SMSTaskSequence\Packages\VES00013
    Property ResourceRoot is now = D:\_SMSTaskSequence\Packages\VES00013
    ResourceRoot = D:\_SMSTaskSequence\Packages\VES00013
    Property ScriptRoot is now = D:\_SMSTaskSequence\WDPackage\Scripts
    ScriptRoot = D:\_SMSTaskSequence\WDPackage\Scripts
    Property DeployRoot is now = D:\_SMSTaskSequence\WDPackage
    DeployRoot = D:\_SMSTaskSequence\WDPackage
    Property ToolRoot is now = D:\_SMSTaskSequence\WDPackage\Tools\X86
    ToolRoot = D:\_SMSTaskSequence\WDPackage\Tools\X86
    Property ResourceRoot is now = D:\_SMSTaskSequence\WDPackage
    ResourceRoot = D:\_SMSTaskSequence\WDPackage.

Maybe you are looking for

  • Problem with syncing songs

    I'm having trouble syncing my songs. My itunes says i have 5198 songs; but when i go to my ipod and go to settings/about, it says there are 5239 songs. And if go into music/all songs and play it says its playing 1 of 5030 songs. Whats up with that?

  • Lighting fried my Ethernet port

    A Lightning strike fried my Router and Ethernet Port. I've bought and new asdl router and this works with my laptop. I've done a hardware test on my desktop g4 and everything appears fine. Using both the 'System Profile' and 'Hardware Test' the ether

  • Windows 7 64bit or 32bit

    Hi all I've been mulling over this decsiion for a while now and its driving me nuts. I have to install Windows 7 on my mac for the purpose of game development. I'll be running things like Maya 10, Mudbox and the XNA famework. The question is: do I in

  • Non-Geeky name for "Oracle SQL Developer"

    At my work place people (mostly non-developers) are using MS-Query to access Oracle database to query and analyses data. I asked them to use "Oracle SQL Developer", then their response is "It may be complicated, and we are not Developer". Current nam

  • Trouble making a seemless slideshow

    so heres the deal. I need to make a slideshow with holders that call images from an external source. (this is so clients can update the slide show by replacing these images, and not tinkering with the flash file). I have about 6 holders set up in the