What is process to close the  multiple open delevery in sap

hi i have multiple open delivery  and what s process to help i close it.please give me solution to close all open delivery.

Hi,
What is the purpose of doing this?
However, if you complete/close the deliveries you would still see them under document flow of the sales order, which might be misleading for other users for reporting purposes, etc.
Instead, I would go ahead and delete the deliveries if they are never going to be delivered/PGI'ed.
Regards,
Amit

Similar Messages

  • What are the major process to transfer the data from legacy to sap system.

    What are the major process to transfer the data from legacy to sap system using BDC at Real Time only?

    hi,
    BATCH DATA COMMUNICATION
    main methods are:
    1. SESSION METHOD
    2. CALL TRANSACTION
    3. DIRECT INPUT
    Advantages offered by BATCH INPUT method:
    1. Can process large data volumes in batch.
    2. Can be planned and submitted in the background.
    3. No manual interaction is required when data is transferred.
    4. Data integrity is maintained as whatever data is transferred to the table is through transaction. Hence batch input data is submitted to all the checks and validations.
    To implement one of the supported data transfers, you must often write the program that exports the data from your non-SAP system. This program, known as a “data transfer” program must map the data from the external system into the data structure required by the SAP batch input program.
    The batch input program must build all of the input to execute the SAP transaction.
    Two main steps are required:
    • To build an internal table containing every screen and every field to be filled in during the execution of an SAP transaction.
    • To pass the table to SAP for processing.
    Prerequisite for Data Transfer Program
    Writing a Data Transfer Program involves following prerequisites:
    Analyzing data from local file
    Analyzing transaction
    Analyzing transaction involves following steps:
    • The transaction code, if you do not already know it.
    • Which fields require input i.e., mandatory.
    • Which fields can you allow to default to standard values.
    • The names, types, and lengths of the fields that are used by a transaction.
    • Screen number and Name of module pool program behind a particular transaction.
    To analyze a transaction::
    • Start the transaction by menu or by entering the transaction code in the command box.
    (You can determine the transaction name by choosing System – Status.)
    • Step through the transaction, entering the data will be required for processing your batch input data.
    • On each screen, note the program name and screen (dynpro) number.
    (dynpro = dyn + pro. Dyn = screen, pro = number)
    • Display these by choosing System – Status. The relevant fields are Program (dynpro) and Dynpro number. If pop-up windows occur during execution, you can get the program name and screen number by pressing F1 on any field or button on the screen.
    The technical info pop-up shows not only the field information but also the program and screen.
    • For each field, check box, and radio button on each screen, press F1 (help) and then choose Technical Info.
    Note the following information:
    - The field name for batch input, which you’ll find in its own box.
    - The length and data type of the field. You can display this information by double clicking on the Data Element field.
    • Find out the identification code for each function (button or menu) that you must execute to process the batch-input data (or to go to new screen).
    Place the cursor on the button or menu entry while holding down the left mouse button. Then press F1.
    In the pop-up window that follows, choose Technical info and note the code that is shown in the Function field.
    You can also run any function that is assigned to a function key by way of the function key number. To display the list of available function keys, click on the right mouse button. Note the key number that is assigned to the functions you want to run.
    Once you have program name, screen number, field name (screen field name), you can start writing.
    DATA TRANSFER program.
    Declaring internal table
    First Integral Table similar to structure like local file.
    Declaring internal table like BDCDATA
    The data from internal table is not transferred directly to database table, it has to go through transaction. You need to pass data to particular screen and to particular screen-field. Data is passed to transaction in particular format, hence there is a need for batch input structure.
    The batch input structure stores the data that is to be entered into SAP system and the actions that are necessary to process the data. The batch input structure is used by all of the batch input methods. You can use the same structure for all types of batch input, regardless of whether you are creating a session in the batch input queue or using CALL TRANSACTION.
    This structure is BDCDATA, which can contain the batch input data for only a single run of a transaction. The typical processing loop in a program is as follows:
    • Create a BDCDATA structure
    • Write the structure out to a session or process it with CALL TRANSACTION USING; and then
    • Create a BDCDATA structure for the next transaction that is to be processed.
    Within a BDCDATA structure, organize the data of screens in a transaction. Each screen that is processed in the course of a transaction must be identified with a BDCDATA record. This record uses the Program, Dynpro, and Dynbegin fields of the structure.
    The screen identifier record is followed by a separate BDCDATA record for each value, to be entered into a field. These records use the FNAM and FVAL fields of the BDCDATA structure. Values to be entered in a field can be any of the following:
    • Data that is entered into screen fields.
    • Function codes that are entered into the command field. Such function codes execute functions in a transaction, such as Save or Enter.
    The BDCDATA structure contains the following fields:
    • PROGRAM: Name of module pool program associated with the screen. Set this field only for the first record for the screen.
    • DYNPRO: Screen Number. Set this field only in the first record for the screen.
    • DYNBEGIN: Indicates the first record for the screen. Set this field to X, only for the first record for the screen. (Reset to ‘ ‘ (blank) for all other records.)
    • FNAM: Field Name. The FNAM field is not case-sensitive.
    • FVAL: Value for the field named in FNAM. The FVAL field is case-sensitive. Values assigned to this field are always padded on the right, if they are less than 132 characters. Values must be in character format.
    Transferring data from local file to internal table
    Data is uploaded to internal table by UPLOAD of WS_UPLOAD function.
    Population of BDCDATA
    For each record of internal table, you need to populate Internal table, which is similar to BDCDATA structure.
    All these five initial steps are necessary for any type of BDC interface.
    DATA TRANSFER program can call SESSION METHOD or CALL TRANSACTION. The initial steps for both the methods are same.
    First step for both the methods is to upload the data to internal table. From Internal Table, the data is transferred to database table by two ways i.e., Session method and Call transaction.
    SESSION METHOD
    About Session method
    In this method you transfer data from internal table to database table through sessions.
    In this method, an ABAP/4 program reads the external data that is to be entered in the SAP System and stores the data in session. A session stores the actions that are required to enter your data using normal SAP transaction i.e., Data is transferred to session which in turn transfers data to database table.
    Session is intermediate step between internal table and database table. Data along with its action is stored in session i.e., data for screen fields, to which screen it is passed, the program name behind it, and how the next screen is processed.
    When the program has finished generating the session, you can run the session to execute the SAP transactions in it. You can either explicitly start and monitor a session or have the session run in the background processing system.
    Unless session is processed, the data is not transferred to database table.
    BDC_OPEN_GROUP
    You create the session through program by BDC_OPEN_GROUP function.
    Parameters to this function are:
    • User Name: User name
    • Group: Name of the session
    • Lock Date: The date on which you want to process the session.
    • Keep: This parameter is passed as ‘X’ when you want to retain session after
    processing it or ‘ ‘ to delete it after processing.
    BDC_INSERT
    This function creates the session & data is transferred to Session.
    Parameters to this function are:
    • Tcode: Transaction Name
    • Dynprotab: BDC Data
    BDC_CLOSE_GROUP
    This function closes the BDC Group. No Parameters.
    Some additional information for session processing
    When the session is generated using the KEEP option within the BDC_OPEN_GROUP, the system always keeps the sessions in the queue, whether it has been processed successfully or not.
    However, if the session is processed, you have to delete it manually. When session processing is completed successfully while KEEP option was not set, it will be removed automatically from the session queue. Log is not removed for that session.
    If the batch-input session is terminated with errors, then it appears in the list of INCORRECT session and it can be processed again. To correct incorrect session, you can analyze the session. The Analysis function allows to determine which screen and value has produced the error. If you find small errors in data, you can correct them interactively, otherwise you need to modify batch input program, which has generated the session or many times even the data file.
    CALL TRANSACTION
    About CALL TRANSACTION
    A technique similar to SESSION method, while batch input is a two-step procedure, Call Transaction does both steps online, one after the other. In this method, you call a transaction from your program by
    Call transaction <tcode> using <BDCTAB>
    Mode <A/N/E>
    Update <S/A>
    Messages into <MSGTAB>.
    Parameter – 1 is transaction code.
    Parameter – 2 is name of BDCTAB table.
    Parameter – 3 here you are specifying mode in which you execute transaction
    A is all screen mode. All the screen of transaction are displayed.
    N is no screen mode. No screen is displayed when you execute the transaction.
    E is error screen. Only those screens are displayed wherein you have error record.
    Parameter – 4 here you are specifying update type by which database table is updated.
    S is for Synchronous update in which if you change data of one table then all the related Tables gets updated. And sy-subrc is returned i.e., sy-subrc is returned for once and all.
    A is for Asynchronous update. When you change data of one table, the sy-subrc is returned. And then updating of other affected tables takes place. So if system fails to update other tables, still sy-subrc returned is 0 (i.e., when first table gets updated).
    Parameter – 5 when you update database table, operation is either successful or unsuccessful or operation is successful with some warning. These messages are stored in internal table, which you specify along with MESSAGE statement. This internal table should be declared like BDCMSGCOLL, a structure available in ABAP/4. It contains the following fields:
    1. Tcode: Transaction code
    2. Dyname: Batch point module name
    3. Dynumb: Batch input Dyn number
    4. Msgtyp: Batch input message type (A/E/W/I/S)
    5. Msgspra: Batch input Lang, id of message
    6. Msgid: Message id
    7. MsgvN: Message variables (N = 1 - 4)
    For each entry, which is updated in database, table message is available in BDCMSGCOLL. As BDCMSGCOLL is structure, you need to declare a internal table which can contain multiple records (unlike structure).
    Steps for CALL TRANSACTION method
    1. Internal table for the data (structure similar to your local file)
    2. BDCTAB like BDCDATA
    3. UPLOAD or WS_UPLOAD function to upload the data from local file to itab. (Considering file is local file)
    4. Loop at itab.
    Populate BDCTAB table.
    Call transaction <tcode> using <BDCTAB>
    Mode <A/N/E>
    Update <S/A>.
    Refresh BDCTAB.
    Endloop.
    (To populate BDCTAB, You need to transfer each and every field)
    The major differences between Session method and Call transaction are as follows:
    SESSION METHOD CALL TRANSACTION
    1. Data is not updated in database table unless Session is processed. Immediate updation in database table.
    2. No sy-subrc is returned. Sy-subrc is returned.
    3. Error log is created for error records. Errors need to be handled explicitly
    4. Updation in database table is always synchronous Updation in database table can be synchronous Or Asynchronous.
    Error Handling in CALL TRANSACTION
    When Session Method updates the records in database table, error records are stored in the log file. In Call transaction there is no such log file available and error record is lost unless handled. Usually you need to give report of all the error records i.e., records which are not inserted or updated in the database table. This can be done by the following method:
    Steps for the error handling in CALL TRANSACTION
    1. Internal table for the data (structure similar to your local file)
    2. BDCTAB like BDCDATA
    3. Internal table BDCMSG like BDCMSGCOLL
    4. Internal table similar to Ist internal table
    (Third and fourth steps are for error handling)
    5. UPLOAD or WS_UPLOAD function to upload the data from the local file to itab. (Considering file is local file)
    6. Loop at itab.
    Populate BDCTAB table.
    Call transaction <tr.code> using <Bdctab>
    Mode <A/N/E>
    Update <S/A>
    Messages <BDCMSG>.
    Perform check.
    Refresh BDCTAB.
    Endloop.
    7 Form check.
    IF sy-subrc <> 0. (Call transaction returns the sy-subrc if updating is not successful).
    Call function Format_message.
    (This function is called to store the message given by system and to display it along with record)
    Append itab2.
    Display the record and message.
    DIRECT INPUT
    About Direct Input
    In contrast to batch input, this technique does not create sessions, but stores the data directly. It does not simulate the online transaction. To enter the data into the corresponding database tables directly, the system calls a number of function modules that execute any necessary checks. In case of errors, the direct input technique provides a restart mechanism. However, to be able to activate the restart mechanism, direct input programs must be executed in the background only. Direct input checks the data thoroughly and then updates the database directly.
    You can start a Direct Input program in two ways;
    Start the program directly
    This is the quickest way to see if the program works with your flat file. This option is possible with all direct input programs. If the program ends abnormally, you will not have any logs telling you what has or has not been posted. To minimize the chance of this happening, always use the check file option for the first run with your flat file. This allows you to detect format errors before transfer.
    Starting the program via the DI administration transaction
    This transaction restarts the processing, if the data transfer program aborts. Since DI document are immediately posted into the SAP D/B, the restart option prevents the duplicate document posting that occurs during a program restart (i.e., without adjusting your flat file).
    Direct input is usually done for standard data like material master, FI accounting document, SD sales order and Classification for which SAP has provided standard programs.
    First time you work with the Direct Input administration program, you will need to do some preparation before you can transfer data:
    - Create variant
    - Define job
    - Start job
    - Restart job
    Common batch input errors
    - The batch input BDCDATA structure tries to assign values to fields which do not exist in the current transaction screen.
    - The screen in the BDCDATA structure does not match the right sequence, or an intermediate screen is missing.
    - On exceptional occasions, the logic flow of batch input session does not exactly match that of manual online processing. Testing the sessions online can discover by this.
    - The BDCDATA structure contains fields, which are longer than the actual definition.
    - Authorization problems.
    RECORDING A BATCH INPUT
    A B recording allows you to record a R/3 transaction and generate a program that contains all screens and field information in the required BDC-DATA format.
    You can either use SHDB transaction for recording or
    SYSTEM ? SERVICES ? BATCH INPUT ? EDIT
    And from here click recording.
    Enter name for the recording.
    (Dates are optional)
    Click recording.
    Enter transaction code.
    Enter.
    Click Save button.
    You finally come to a screen where, you have all the information for each screen including BDC_OKCODE.
    • Click Get Transaction.
    • Return to BI.
    • Click overview.
    • Position the cursor on the just recorded entry and click generate program.
    • Enter program name.
    • Click enter
    The program is generated for the particular transaction.
    BACKGROUND PROCESSING
    Need for Background processing
    When a large volume of data is involved, usually all batch inputs are done in background.
    The R/3 system includes functions that allow users to work non-interactively or offline. The background processing systems handle these functions.
    Non-interactively means that instead of executing the ABAP/4 programs and waiting for an answer, user can submit those programs for execution at a more convenient planned time.
    There are several reasons to submit programs for background execution.
    • The maximum time allowed for online execution should not exceed 300 seconds. User gets TIMEOUT error and an aborted transaction, if time for execution exceeds 300 seconds. To avoid these types of error, you can submit jobs for background processing.
    • You can use the system while your program is executing.
    This does not mean that interactive or online work is not useful. Both type of processing have their own purposes. Online work is the most common one entering business data, displaying information, printing small reports, managing the system and so on. Background jobs are mainly used for the following tasks; to process large amount of data, to execute periodic jobs without human intervention, to run program at a more convenient, planned time other than during normal working hours i.e., Nights or weekends.
    The transaction for background processing is SM36.
    Or
    Tools ? Administration ? Jobs ? Define jobs
    Or
    System ? services ? Jobs
    Components of the background jobs
    A job in Background processing is a series of steps that can be scheduled and step is a program for background processing.
    • Job name. Define the name of assigned to the job. It identifies the job. You can specify up to 32 characters for the name.
    • Job class. Indicates the type of background processing priority assigned to the job.
    The job class determines the priority of a job. The background system admits three types of job classes: A B & C, which correspond to job priority.
    • Job steps. Parameters to be passed for this screen are as follows:
    Program name.
    Variant if it is report program
    Start criteria for the job: Option available for this are as follows:
    Immediate - allows you to start a job immediately.
    Date/Time - allows you to start a job at a specific name.
    After job - you can start a job after a particular job.
    After event - allows you to start a job after a particular event.
    At operation mode - allows you to start a job when the system switches to a particular operation mode.
    Defining Background jobs
    It is two step process: Firstly, you define the job and then release it.
    When users define a job and save it, they are actually scheduling the report i.e., specifying the job components, the steps, the start time.
    When users schedule program for background processing, they are instructing the system to execute an ABAP/4 report or an external program in the background. Scheduled jobs are not executed until they are released. When jobs are released, they are sent for execution to the background processing system at the specified start time. Both scheduling and releasing of jobs require authorizations.
    HANDLING OF POP UP SCREEN IN BDC
    Many times in transaction pop up screen appears and for this screen you don’t pass any record but some indication to system telling it to proceed further. For example: The following screen
    To handle such screen, system has provided a variable called BDC_CURSOR. You pass this variable to BDCDATA and process the screen.
    Usually such screen appears in many transactions, in this case you are just passing information, that YES you want to save the information, that means YES should be clicked. So you are transferring this information to BDCDATA i.e., field name of YES which is usually SPOT_OPTION. Instead of BDC_OKCODE, you are passing BDC_CURSOR.
    BDC_CURSOR is also used to place cursor on particular field.
    A simple transaction where you are entering customer number on first screen and on next screen data is displayed for the particular customer number. Field, which we are changing here, are name and city. When you click on save, the changed record gets saved.
    Prerequisite to write this BDC interface as indicated earlier is:
    1. To find screen number
    2. To find screen field names, type of the field and length of the field.
    3. To find BDC_OKCODE for each screen
    4. Create flat file.
    generally  Batch Input usually are used to transfer large amount of data. For example you are implementing a new SAP project, and of course you will need some data transfer from legacy system to SAP system.
    CALL TRANSACTION is used especially for integration actions between two SAP systems or between different modules. Users sometimes wish to do something like that click a button or an item then SAP would inserts or changes data automatically. Here CALL TRANSACTION should be considered.
    2. Transfer data for multiple transactions usually the Batch Input method is used.
    check these sites for step by step process:
    For BDC:
    http://myweb.dal.ca/hchinni/sap/bdc_home.htm
    https://www.sdn.sap.com/irj/sdn/wiki?path=/display/home/bdc&
    http://www.sap-img.com/abap/learning-bdc-programming.htm
    http://www.sapdevelopment.co.uk/bdc/bdchome.htm
    http://www.sap-img.com/abap/difference-between-batch-input-and-call-transaction-in-bdc.htm
    http://help.sap.com/saphelp_47x200/helpdata/en/69/c250684ba111d189750000e8322d00/frameset.htm
    http://www.sapbrain.com/TUTORIALS/TECHNICAL/BDC_tutorial.html
    Check these link:
    http://www.sap-img.com/abap/difference-between-batch-input-and-call-transaction-in-bdc.htm
    http://www.sap-img.com/abap/question-about-bdc-program.htm
    http://www.itcserver.com/blog/2006/06/30/batch-input-vs-call-transaction/
    http://www.planetsap.com/bdc_main_page.htm
    call Transaction or session method ?
    null

  • How can i let my java application closes the other opened windows

    how can i let my java application closes the other opened windows: like any other Microsoft Internet Explorer windows ... provided that my java application is not the one i used to open those other windows.... thanks in advance

    you'll have to use JNI to access the windowAPI
    then you need a list of window handles ... I think there was a function called getWindow and in order to close them you use sendMessage .... for details check out msdn (microsoft developer network)
    somwhere I saw a tool called JUtil, which might help you getting started on accessing the win api from java
    regards
    Spieler

  • How to close the window openned by System Exec VI automatica​lly?

    Hello,
    I am using System Exec VI to lauch an exe file built from a LabVIEW program. When running System Exec VI, the window of exe file pop out and stays there even after all tasks are completed. I have to close it every time manually. Anyone here know how to close the exe file window automatically when it's done?
    Thanks,
    Jean
    Message Edited by Jean_CLD on 03-25-2010 11:25 AM
    Message Edited by Jean_CLD on 03-25-2010 11:29 AM
    Solved!
    Go to Solution.

    If I understand the question correctly you need to add an invoke node at the end of your application to exit. Depending on the whether it is running as a stand alone application or within LabVIEW it will either exit or stop execution. I've attached the VI I use in my applications.
    Mark Yedinak
    "Does anyone know where the love of God goes when the waves turn the minutes to hours?"
    Wreck of the Edmund Fitzgerald - Gordon Lightfoot
    Attachments:
    Exit application.vi ‏13 KB

  • Having multiple tabs open in one window, and then opening a new window and closing it, will close the newly opened window, but it will want to close the other original window with the multiple tabs as well.

    This only happens if the original window has multiple tabs, and the new window has only ONE tab at the moment you close it.
    Also, the problem only occurs when TWO windows of firefox are open. So opening up a 3rd window, and then closing it, will not give you any problems. The interaction occurs between two windows of firefox only.

    This can happen if you drag a tab slightly down in the browser window while clicking.
    Firefox has a feature called tear-off tabs
    You can detach a tab from the current window and open it in a new window by dragging a tab in the browser window.
    You can also do this via the right-click context menu of a tab: Move to New Window
    You can drag that tab back to the tab bar in the original window to undo that detaching.
    * https://addons.mozilla.org/firefox/addon/bug489729-disable-detach-and-t

  • Suddenly I can't access photos on my iPod touch- opens a blank page and then closes- email- opens a blank page and then closes- the camera- opens but wont work and then closes. Facebook works ok though. Any ideas?

    My iPod touch has stopped working in selective areas. The camera turns on, I can see the image but the buttons don't work. The camera then closes.
    When I try to access photos, I get a blank page which then closes. The same is true when I try to access mail. Facebook and my music works fine though. Ideas?

    Try:
    - Reset the iOS device. Nothing will be lost      
    Reset iOS device: Hold down the On/Off button and the Home button at the same time for at
    least ten seconds, until the Apple logo appears.
    - Restore from backup. See:                                               
    iOS: Back up and restore your iOS device with iCloud or iTunes
    - Restore to factory settings/new iOS device.                       
    If still problem, make an appointment at the Genius Bar of an Apple store since it appears you have a hardware problem.
      Apple Retail Store - Genius Bar                                              

  • How to close the REOPEN container number in SAP ME5.1

    Hi,
    I found a issue maybe it is a bug for the 5.1, for the Pack/Unpack activity, when we unpack a container number which has already been closed status, and remove all their SFCs from this container number, and then this container number is changed to REOPEN status, but at this moment, I found this reopen container number has never been able to add any SFCs, and we are also not able to close this container number.
    In our system we have a lot of those kinds of REOPEN container number, but if there are any container contained the REOPEN container numbers, we couldn't change any information in the container maintenance, this is our problem, we want to find a solution how to fix this. Any idea of this kind of issue?
    Thanks a lot and best regards,
    Leon Lu

    Hi Sergiy,
    I also  would agree the container shouldn't be changed from the logic perspective if it has the OPEN/REOPEN container number, but here are the scenario why we want to change them:
    1. We use this pack/unpack function more than 4 years, we define the containers nearly without any limitations, because we select the pack level as Item, but put the pack value as * as well as shop order as *, which means, as long as users select this container, any available SFCs are able to be packed into this container. Recently we investigated out a few more powerful functionalities with your pack/unpack function, like, we can define the specific item numbers, so now users want to use this functionalities;
    2. Because in the container maintenance, we need configure the documents which will be used by this container for label printing, but our customers request to change the label templates, we create a new document but we found it is not possible to modify in the container maintenance.
    Creating a new container is a choice for us, but the problem is, the old one is still open, we can't delete/disable/hold (actually this is our purpose) this container because there are a lot of REOPEN container numbers, thus users are still able to select this container (actually it is  invalid) and pack SFCs into this container.
    As far as I identified, the ME5.2 doesn't have this limitation, I am curious that what the purpose you changed this logic in the new product, and how did you handle the logic what you have described:-)
    Thanks a lot and best regards,
    Leon Lu

  • Dism - The directory could not be completely unmounted - process explorer can't find open processes and unmounting fails

    Hi all,
    Installed WAIK on server 2008 R2 64 bit. I'm setting up some boot images, and am having a real hard time getting drivers to integrate into the driver store in the boot images.
    What I'm finding is that when adding drivers to the boot image the gui hangs part way through over 50% of the time using Dell 760 or HP NX9420 drivers extracted to pull out the inf files. It's really flakey and will work after a couple of attempts and when the wind is right.
    The main problem is that when the process fails the image is left open, so using dism to list mounted images and then umount the open images is the only way to try again.
    However, some images won't unmount and the unmount process displays the following:
    C:\Windows\system32>dism /get-mountedwiminfo
    Deployment Image Servicing and Management tool
    Version: 6.1.7600.16385
    Mounted images:
    Mount Dir : C:\Users\davros\AppData\Local\Temp\~$WDSMGMT.000
    Image File : \\DAVROS.stafflib.flinders.edu.au\REMINST\Boot\x86\Images\boot-(2).
    wim
    Image Index : 2
    Mounted Read/Write : Yes
    Status : Invalid
    The operation completed successfully.
    C:\Windows\system32>dism /unmount-wim /mountdir:C:\Users\davros\AppData\Local\Te
    mp\~$WDSMGMT.000 /discard
    Deployment Image Servicing and Management tool
    Version: 6.1.7600.16385
    Image File : \\DAVROS.stafflib.flinders.edu.au\REMINST\Boot\x86\Images\boot-(2).
    wim
    Image Index : 2
    Unmounting image
    [==========================100.0%==========================]
    Error: 0xc1420117
    The directory could not be completely unmounted.  This is usually due to applica
    tions that still have files opened within the mount directory.  Close these file
    s and unmount again to complete the unmount process.
    The DISM log file can be found at C:\Windows\Logs\DISM\dism.log
    Using process explorer shows no running processes that have the files open and the dism.log file shows:
    2009-12-16 11:49:35, Error                 DISM   DISM WIM Provider: PID=5580 d:\w7rtm\base\ntsetup\opktools\dism\providers\wimprovider\dll\wimimage.cpp:75 - CWimImage::Unmount(hr:0xc1420117)
    2009-12-16 11:49:35, Error                 DISM   DISM WIM Provider: PID=5580 d:\w7rtm\base\ntsetup\opktools\dism\providers\wimprovider\dll\wimmanager.cpp:1068 - CWimManager::InternalOpUnmount(hr:0xc1420117)
    2009-12-16 11:49:35, Error                 DISM   DISM WIM Provider: PID=5580 d:\w7rtm\base\ntsetup\opktools\dism\providers\wimprovider\dll\wimmanager.cpp:2318 - CWimManager::InternalCmdUnmount(hr:0xc1420117)
    2009-12-16 11:49:35, Error                 DISM   DISM WIM Provider: PID=5580 Error executing command - CWimManager::InternalExecuteCmd(hr:0xc1420117)
    2009-12-16 11:49:35, Error                 DISM   DISM WIM Provider: PID=5580 d:\w7rtm\base\ntsetup\opktools\dism\providers\wimprovider\dll\wimmanager.cpp:516 - CWimManager::ExecuteCmdLine(hr:0xc1420117)
    2009-12-16 11:49:35, Info                  DISM   DISM.EXE: Image session has been closed. Reboot required=no.
    2009-12-16 11:49:35, Info                  DISM   DISM.EXE:
    2009-12-16 11:49:35, Info                  DISM   DISM.EXE: <----- Ending Dism.exe session ----->
    2009-12-16 11:49:35, Info                  DISM   DISM.EXE:
    2009-12-16 11:49:35, Info                  DISM   DISM Image Session: PID=5580 Disconnecting the provider store - CDISMImageSession::Final_OnDisconnect
    2009-12-16 11:49:35, Info                  DISM   DISM Provider Store: PID=5580 Disconnecting Provider: WimManager - CDISMProviderStore::Internal_DisconnectProvider
    2009-12-16 11:49:35, Info                  DISM   DISM Provider Store: PID=5580 Disconnecting Provider: FolderManager - CDISMProviderStore::Internal_DisconnectProvider
    2009-12-16 11:49:35, Info                  DISM   DISM Provider Store: PID=5580 Found the OSServices.  Waiting to finalize it until all other providers are unloaded. - CDISMProviderStore::Final_OnDisconnect
    2009-12-16 11:49:35, Info                  DISM   DISM Provider Store: PID=5580 Disconnecting Provider: Compatibility Manager - CDISMProviderStore::Internal_DisconnectProvider
    2009-12-16 11:49:35, Info                  DISM   DISM Provider Store: PID=5580 Releasing the local reference to DISMLogger.  Stop logging. - CDISMProviderStore::Internal_DisconnectProvider
    Rebooting the server clears the lock, but it's really becoming a joke, as I can create a boot image with the drivers, but then going back into add another driver causes the gui to not respond.
    Any suggestions gratefully accepted. - Matt.

    Hi all,
    had same problem unmounting the wim file using Windows 7 Pro 32bit.
    My solution was: Checking for "wrong" Dism.exe
    Preparing a WinPE I followed the steps in the help of AIK. I ran the
    copype.cmd batch. When it was finished, it said that it added something
    to the path environment variable. It was clear that it did so in order
    to find the tools needed for the further steps. As long as everything
    worked, I didn't give it a second thought. Then I could not unmount the
    WIM.
    I looked at the PATH variable: NO entry pointed to the directory where
    dism.exe was in. (In my case that would have been
         c:\program files\windows aik\tools\x86\servicing
    Magically, dism.exe started from everywhere though.
    Doing a      dir c:\dism.exe /s /a     showed I had a Dism.exe in
    c:\windows\system32, as well. This one has a file size different from
    the correct one. Obviously I had started this one (because PATH points
    there).
    Starting the correct dism.exe let me unmount the WIM without problems.
    Regards,
    Robert

  • What is the process of Transntport the application ?

    HI,
    what is process of transport the application from development system to test system.
    Thanks,
    Ravi.K

    Hello Ravi
    The only thing I would like to add is that your application must be assigned to a package <> '$TMP' (<i>temporary </i>package) in order to be transportable.
    Objects assigned to $TMP can be assigned to <i>local </i>transport requests only and, thus, cannot be transported.

  • Laptop shuts down when I close the lid

    I just recently purchased an HP Pavilion x360. It was working fine until HP did an update and now everytime I close the lid, the computer shuts down and has to restart when I open it. I've checked all of the power settings, including the one that allows you to specify what it should do when I close the lid but having found nothing that helps. Any suggestions? Robby

    Hi Robby, Welcome to the HP Forums!
    I would like to take a moment and thank you for using the forum, it is a great place to find answers. For you to have the best experience in the HP forum, I would like to direct your attention to the HP Forums Guide First Time Here? Learn How to Post and More. I understand that before you did a HP update you were able to close the lid and reopen without Windows restarting, but no longer.You have checked the power management setting and the option for what happens when you close the lid, but no change. I suggest you do a scan for corrupted files. This process will also try to repair any corrupted files it locates.Go to the command prompt and right click on it and run as administratorType sfc /scannow and press enterWait for this to complete and restart your notebook. Windows 8 has a built in troubleshooter you could also try.Press the Windows key + C to open charmsType troubleshoot performance and press enter.Follow the on screen prompts. If that did not help. you can do a restore back to before you installed the update. You also have the optiion to do a Refresh Your PC to Resolve Problems (Windows 8).  To be on the safe side I would backup your personal data first, to ensure no personal data is lost. You could also do a recovery back to factory.  Performing an HP System Recovery (Windows 8).  You will receive a prompt to backup your personal files to prevent data loss, if you have not done one recently, I  suggetst you do one now.Restoring Files that were Backed Up Using HP Recovery Manager (Windows 8) With the notebook being a fairly recent purchase, you could also contact HP support for assistance.  They can remotely log onto your system to aid with locating and resolving issues.    Please call HP technical support at 800-474-6836. If you live outside the US/Canada Region, please click the link below to get the support number for your region HP Technical Support Sitemap.    

  • Multiple Open Document woes

    I've been experiencing odd behavior in Motion 2.
    When i have multiple projects open simultaneously, the program seems to get confused and often will continue to edit a project other than the foreground one.
    For example, i'll have two projects open and i'll switch to the background one using Window>(Whatever the project name is). All the open bins will update to indicate the switch...Media, Layers, Timeline and of course the Canvas.
    When i attempt to make an edit to the foreground timeline using keyboard shortcuts, ie. adjusting the in point of the currently selected layer, the change will actually occur on the background project. All of the keyboard shortcuts from that point forward will affect the background project. Switching back to the originally foreground project and bringing the backround project front again does not help.
    Worse, if i close the originally foreground project, leaving only the background project open, and attempt to make adjustments, such as to delete a selected layer, Motion will crash and quit.
    Additionally, i get odd hangs and crashes frequently. For example, every time i bring the Motion application to the foreground, the program stalls, being unresponsive and displaying the beachball cursor for about 10-20 seconds. I usually have the external video feature routed through my FireWire camcorder, but switching off the External Video preference does not help. This KILLS my workflow.
    I've also had various peculiarities, such as keyframes attached to a Layer shifting inexplicably when i shift an elemented nested within that Layer along the timeline. They will not shift in relation to the movement of the sub-layer, but will snap either earlier or later in the timeline, sometimes moving before 0:00:00;00 or offscreen to the right (and past the duration of the Project).
    Additionally, my performance is much slower than i would have expected of the Quad with the 7800 and 4.5GB RAM. I don't have quantative results to compare, but simple projects with some text / drop shadows have crawled to 4-5 fps.
    My computer is well within the specs demanded by the application. I've installed cleanly with Final Cut Studio 5 Upgrade (using a Final Cut 2 serial number, but FCP 2 was never installed on this system).
    The question is really about the multiple open projects issue, but wanted to rant for a moment. I'm really trying to use Motion, but this performance is not helpful.
    Any others users experienceing similar behavior? Any Apple gurus want to troubleshoot / provide me with a workaround?
    regards,
    -robert

    @ patrick:
    thanks for your insight. i'm not trying to elicit replies, but just wondered if anyone else on the list had had similar experiences.
    there is one behavior that i can repeat, and maybe you can try to replicate this behavior:
    -open two Motion projects.
    -close the first opened project.
    -attempt to delete a layer in the remaining open project.
    -my system will hesitate for a moment, then Motion will quit abruptly.
    crash log
    Date/Time: 2006-05-16 10:50:34.630 -0400
    OS Version: 10.4.6 (Build 8I127)
    Report Version: 4
    Command: Motion
    Path: /Applications/Motion.app/Contents/MacOS/Motion
    Parent: WindowServer [1047]
    Version: 2.0.1 (2.0.1)
    Build Version: 5
    Project Name: Motion
    Source Version: 1961000
    PID: 1728
    Thread: 0
    Exception: EXCBADACCESS (0x0001)
    Codes: KERNINVALIDADDRESS (0x0001) at 0x77537441
    Thread 0 Crashed:
    0 libobjc.A.dylib 0x90a465bc class_initialize + 152
    1 libobjc.A.dylib 0x90a462fc classlookupMethodAndLoadCache + 132
    2 libobjc.A.dylib 0x90a461d4 objc_msgSend + 244
    3 Ozone 0x01126638 -[OZDocumentKeyResponder windowWillReturnUndoManager:] + 40
    4 com.apple.AppKit 0x937edcc8 -[NSWindow _getUndoManager:] + 188
    5 com.apple.AppKit 0x9386d8f0 -[NSWindow _getActiveUndoManager] + 88
    6 com.apple.AppKit 0x9385df48 -[NSWindow validateUserInterfaceItem:] + 476
    7 com.apple.AppKit 0x9385dd58 -[NSWindow validateMenuItem:] + 28
    8 com.apple.AppKit 0x9381a69c -[NSMenu _enableItems] + 476
    9 com.apple.AppKit 0x93818654 AppKitMenuEventHandler + 304
    10 com.apple.HIToolbox 0x9321c794 DispatchEventToHandlers(EventTargetRec*, OpaqueEventRef*, HandlerCallRec*) + 692
    11 com.apple.HIToolbox 0x9321beec SendEventToEventTargetInternal(OpaqueEventRef*, OpaqueEventTargetRef*, HandlerCallRec*) + 372
    12 com.apple.HIToolbox 0x93222c8c SendEventToEventTarget + 40
    13 com.apple.HIToolbox 0x932e765c EnableMenu(MenuData*, OpaqueEventTargetRef*, unsigned short, unsigned char, CheckMenuData*, unsigned long, double) + 288
    14 com.apple.HIToolbox 0x932ce55c CheckMenuItemsForKeyEvent(MenuData*, CheckMenuData*, unsigned long, bool*) + 584
    15 com.apple.HIToolbox 0x932ce270 Check1MenuForKeyEvent(MenuData*, CheckMenuData*) + 124
    16 com.apple.HIToolbox 0x932cdb30 CheckMenusForKeyEvent(MenuData*, CheckMenuData*) + 564
    17 com.apple.HIToolbox 0x932cd880 IsMenuKeyEvent(MenuData*, OpaqueEventRef*, unsigned long, MenuData**, unsigned short*) + 564
    18 com.apple.HIToolbox 0x932cd604 IsMenuKeyEvent + 140
    19 com.apple.AppKit 0x937be930 _NSGetMenuItemForCommandKeyEvent + 300
    20 com.apple.AppKit 0x9372291c _NSHandleCarbonMenuEvent + 496
    21 com.apple.AppKit 0x93720204 _DPSNextEvent + 1280
    22 com.apple.AppKit 0x9371fb48 -[NSApplication nextEventMatchingMask:untilDate:inMode:dequeue:] + 116
    23 com.apple.AppKit 0x9371c08c -[NSApplication run] + 472
    24 com.apple.prokit 0x964a2514 NSProApplicationMain + 288
    25 com.apple.motion 0x0000ec24 0x1000 + 56356
    26 com.apple.motion 0x0000d7e8 0x1000 + 51176
    27 dyld 0x8fe01048 dyldstart + 60

  • How do I fix this error: DF024: Unable to preserve original file at ... Error 32 The process cannot access the file because it is being used by another process.(Seq 1352).  ?

    I am installing creative the cloud Illustrator desktop app on a machine with windows 7 64 bit running in a domain environment.  The download starts and takes about runs for a bout 10 minutes and then stops with the error: DF024: Unable to preserve original file at "C:\Program Files\Adobe\Adobe Illustrator CC 2014\Support Files\Contents\Windows\AdobeLinguistic.dll" Error 32 The process cannot access the file because it is being used by another process.(Seq 1352)
    I am logged in as a network administrator and there are no other apps except a web browser (Chrome) running.  There are no other users logged into the machine.
    How can I see what other process is using the needed file so that I can fix it?
    Thanks

    MelissaB34 it looks like you already are reviewing your installation log files but you can find more information at Troubleshoot install issues with log files | CC - http://helpx.adobe.com/creative-cloud/kb/troubleshoot-install-logs-cc.html.  From the error you have posted it appears that your current User account is either unable to update C:\Program Files\Adobe\Adobe Illustrator CC 2014\Support Files\Contents\Windows\AdobeLinguistic.dll or does not have sufficient file permissions to do so.  Since you mentioned you are on a domain please ensure that you are working with your I.T. department and have correct access to this directory.
    You may want to also consider logging in under a local administrator account to see if you face the same difficulties.  This would help you determine if you are facing a file corruption issue or file permission issue.

  • Flash quits when you close the window

    Why does Flash CS5 quit when you close the window you were working in? It has to restart every time you close and open a file.

    This doesn't seem to be a crashing issue. The program seems to be designed like Windows, wherein the application quits when you close the last open window. This is incredibly annoying and completely unacceptable.

  • Multiple Logon Disable in SAP

    Hi,
    I have disable the multiple login's in SAP through RZ10.When users network session was  lost any reason.he will  not able to login again
    because the only option "Terminate this login " Showing . I want to enable other option "Continue with this logon & ends any other logon"
    so the user are  ends the free session.Please help
    Rgds
    sudarshan

    Hi,
    Please check the setting as '1' as in following screen shot .
    You will find this error after setting as

  • This message "Firefox is already running, but is not responding. To open a new window, you must first close the existing Firefox process, or restart your system." can you help and what is the Firefox process it refers to?

    This happens straight after I have closed Firefox browser and then straight away, I want to open it again. Otherwise it will give this message and I will have to wait until it supposedly closes whatever is supposed to be running so that it can open -annoying!

    The process is "firefox.exe" you will only see it in the "Processes" tab of the Windows Task Manager, since you don't see it on the Windows Task Bar. You will have to terminate it from
    there, since it was not actually closed.
    See: closing Firefox properly: https://support.mozilla.com/questions/866027

Maybe you are looking for

  • Goods Return and MIRO Credit Memo

    Hello Friends, Please give your suggestions for the queries below : 1. Is there any way we can create Credit Memo (MIRO) with reference to MIGO 122 Movement document (Rejected material returned) 2. Is there a report that shows the list of MIRO Credit

  • This copy of iTunes is corrupted or not installed correctly.

    After many tries (and failed attempts) to install the 9.0.3 update and getting this message above in the subject line I restarted, reinstalled again and succeeded (in the install)... until I tried to open iTunes to find that I still got the error. Wh

  • Tableview Cell - setting the font and background colors

    Hi, I am developing a BSP with a Tableview. The user asked me about displaying a row with a diferent color (font or background) when some data changes on this table. I am thinking about using a Tableview Iterator to evaluate the content of a cell...

  • "Update All" Stuck -- Solved!

    No, you can't cancel it.  But you CAN make it work instead of waiting for three days and having it still not complete. My iPad was trying to update 200 apps (I collect a lot of free stuff I never use, so sue me).  Can't cancel.  Can't even delete 'em

  • Silent Install of HUB.AIR

    We have Acrobat 9 and AIR installed on Vista PC's.  I am looking for a way to silently install HUB.AIR