Bapi_salesorder_createfromdat2 problem with filling Configuration values

Hi All,
I am trying to create a sales order using "bapi_salesorder_createfromdat2". Good part is I am able to create the sales order with item details, schedule line info and partners. However the BAPI did not fill the characteristic values.
Here I am giving the code snippet and request you to help me in identifying what I am missing or where i am doing wrong.
we checked in config and the material has perfectly configured for characteristics.
LOOP AT it_soitem_dtls INTO lwa_soitem_dtls.
    wa_soitem_dtls = lwa_soitem_dtls.
    lv_posnr       = lv_posnr + 10.
    lv_configid    = lv_configid + 1.
    CONDENSE lv_configid.
    CALL FUNCTION 'CONVERSION_EXIT_ALPHA_INPUT'
      EXPORTING
        input  = lv_configid
      IMPORTING
        output = lv_configid.
* Fill the Item Configuration Characteristics
      wa_order_cfgs_ref-posex      = lv_posnr.
      wa_order_cfgs_ref-config_id  = wa_curef_out-config_id.
      wa_order_cfgs_ref-root_id    = wa_curef_out-inst_id.
      APPEND wa_order_cfgs_ref TO it_order_cfgs_ref.
      wa_order_cfgs_inst-config_id     = wa_cuinst_out-config_id. "lv_configid.
      wa_order_cfgs_inst-inst_id       = wa_cuinst_out-inst_id.
      wa_order_cfgs_inst-obj_type      = 'MARA'.
      wa_order_cfgs_inst-class_type    = '300'.
      wa_order_cfgs_inst-obj_key       = wa_soitem_dtls-material.
      wa_order_cfgs_inst-quantity      = wa_soitem_dtls-qty * 1000.
      CONDENSE wa_order_cfgs_inst-quantity.
      wa_order_cfgs_inst-quantity_unit = 'KG'.
      wa_order_cfgs_inst-complete      = 'T'.
      wa_order_cfgs_inst-consistent    = 'T'.
      wa_order_cfgs_inst-persist_id_type = 'G'.
      APPEND wa_order_cfgs_inst TO it_order_cfgs_inst.
      wa_order_cfgs_part_of-config_id  = wa_cuinst_out-config_id. "lv_configid.
      wa_order_cfgs_part_of-parent_id  = wa_cuinst_out-inst_id.
      wa_order_cfgs_part_of-inst_id    = '00000001'.
      wa_order_cfgs_part_of-obj_type   = 'MARA'.
      wa_order_cfgs_part_of-class_type = '300'.
      wa_order_cfgs_part_of-obj_key    = wa_soitem_dtls-material.
      APPEND wa_order_cfgs_part_of TO it_order_cfgs_part_of.
    wa_curef_in-posex     = wa_soitem_dtls-contractitem. "lv_posnr.
    wa_curef_in-config_id = wa_cuinst_out-config_id. "lv_configid.
    wa_curef_in-inst_id   = wa_cuinst_out-inst_id.
    APPEND wa_curef_in TO it_curef_in.
  wa_order_cfgs_value-config_id   = p_configid.
  wa_order_cfgs_value-inst_id     = p_instanceid.
  wa_order_cfgs_value-charc       = p_char.
  wa_order_cfgs_value-value       = p_val.
  APPEND wa_order_cfgs_value TO it_order_cfgs_value.
ENDLOOP.
CALL FUNCTION 'BAPI_SALESORDER_CREATEFROMDAT2'
    EXPORTING
      order_header_in         = wa_so_header_in
      convert                 = 'X'
    IMPORTING
      salesdocument           = gv_vbeln
    TABLES
      return                  = it_return
      order_items_in          = it_order_item_in
      order_schedules_in      = it_order_schedules_in
      order_partners          = it_so_partners
      order_cfgs_ref          = it_order_cfgs_ref
      order_cfgs_inst         = it_order_cfgs_inst
      order_cfgs_part_of      = it_order_cfgs_part_of
      order_cfgs_value        = it_order_cfgs_value
      order_cfgs_refinst      = it_curef_in
      order_text              = it_so_texts.
* Roll back LUW if any error returned by BAPI otherwise commit
  READ TABLE it_return WITH KEY type = 'E'
                       TRANSPORTING NO FIELDS.
  IF sy-subrc = 0.
    CALL FUNCTION 'BAPI_TRANSACTION_ROLLBACK'.
  ELSE.
    CALL FUNCTION 'BAPI_TRANSACTION_COMMIT'
      EXPORTING
        wait = c_x.
  ENDIF.
Thanks in advance for all your help.
Rgds,
Lakshmi
Please use code tags to make your code easier to read
Edited by: Rob Burbank on Dec 6, 2010 2:31 PM

Soraya,
You need to pass in the Pricing COnditions via the ORDER_CONDITIONS_IN and ORDER_CONDITIONS_INX parameters.
eg.
tbl_bapicond-itm_number = '000010'.
tbl_bapicond-cond_type  = 'ZP01'.
tbl_bapicond-cond_value = '100'.
append tbl_bapicond.
tbl_bapicondx-itm_number  = '000010'.
tbl_bapicondx-cond_type   = 'ZP01'.
tbl_bapicondx-update_flag = 'U'.
tbl_bapicondx-cond_value  = 'X'.
append tbl_bapicondx.
Hope this helps.
Cheers,
Pat.
PS. Kindly assign Reward Points to the posts you find helpful.

Similar Messages

  • Problem with filling nodes of a context with data

    hi,
    i've got the following problem with filling a controller context:
    the context of the controller looks like:
    Context
    |-Node1             0..n singleton
      |-Subnode1        0..n singleton
      | |-SubVal1.1
      | |-SubVal1.2
      |-Subnode2        0..n singleton
      | |-Subval2.1
      | |-Subval2.2
      |-Val1.1
      |-Val1.2
    that means every Element of Node1 should have its own Subnode-Elements & Val1-Values
    in wdDoInit() of the controller I fill the context like this:
    Collection Node1, SubNode1, SubNode2
    for (Iterator iter = Node1.iterator(); iter.hasNext;) {
       newNode1NodeElement = wdContext.createNode1Element();
       newNode1NodeElement.set... //setting the values
       wdContext.nodeNode1().addElement(newNode1NodeElement);
       for (Iterator iter2=Subnode1.iterator(); iter2.hasNext;) {
          newSubnode1NodeElement = wdContext.createSubnode1Element();
          newSubNode1NodeElement.set... // setting the SubVal1.x
          wdContext.nodeSubnode1.addElement(newSubnode1NodeElement);
       for (Iterator iter3=SubNode2.iterator(); iter3.hasNext;) {
          newSubnode2NodeElement = wdContext.createSubnode2Element();
          newSubNode2NodeElement.set... // setting the SubVal2.x
          wdContext.nodeSubnode2.addElement(newSubnode2NodeElement);
    i've got the impression, that <b>all</b> my SubNodes are filled in the <b>first</b> Node1-Element. is there an error in the code above? because in the first place, i see every values in the first Element of Node1-views and if i navigate to the next Element of Node1, every views are empty.
    for every Node (Node1, Subnode1, Subnode2) i've got an own view, that maps its context to the corresponding Node of the controller context, e.g for the SubNode1-View:
    Context                  Context
    |                        ....
    |- ViewNode      --->    ..|- Subnode1
      |- SubVal1.1   --->    ..   |-SubVal1.1
      |- SubVal1.2   --->    ..   |-SubVal1.2
    in these views, i navigate through the nodes via
    wdContext.nodeViewNode().move...()
    in the SubNode1-View i see the SubVal1.1, SubVal1.2 (that's what i want) <b>and</b> additional SubVal2.1, SubVal2.2 (that's what I don't want...)
    kind regards, achim
    ps: i've studied the Master/Detail-Tutorial and i think the choice for cardinality 0..n and type singleton is correct in my case.

    hmm, let's look at the code:
    for (Iteration Node1) {
      newNode1NodeElement = wdContext.createNode1Element();
      wdContext.nodeNode1().addElement(newNode1NodeElement);
      for (Iteration SubNode1) {
         newSubNode1NodeElement = wdContext.createSubNodeXElement();
         newNode1NodeElement.nodeSubNode1().addElement(newSubNode1NodeElement);
         for (Iteration SubNode1.1) {
            newSubNode1.1NodeElement = <b>wdContext</b>.createSubNode1.1Element();
            newSubNode1NodeElement.nodeSubNode1.1.addElement(newSubNode1.1NodeElement);
       for (Iteration SubNode2) {
          newSubNode2NodeElement = wdContext.createSubNode2Element();
          newNode1NodeElement.nodeSubNode2.addElement(newSubNode2NodeElement);
    is there an error in creating the SubNode1.1-Node (bold line)?
    if the code is correct, perhaps it's only a viewing problem:
    i use views that point on every node and display the values in that node. if i move in the view for Node1 to another node, the values for SubNode1 point to the correct values too, but the values for SubNode1.1 still stay on the old values. is the move of a grandfather node not correctly propagated to his first child?
    kr, achim

  • Problem with audio configuration

    when i turned on Itunes on on my computer it had this message: Problem with audio configuration. Audio/video playback may not operate properly. How do I fix it?

    I reinstalled iTunes & QuickTime as per giterdone response to rpestow on 12 November
    instructions at: http://docs.info.apple.com/article.html?artnum=93698
    Thanks giterdone

  • Problem With Cutom Configuration with Object Type

    Dear Guru's
    I am working WebUI, I am facing a problem with Custom Configuration.
    1. The initial requirement to control the visibility for a dropdown event in ERP Quotation.
    2. To this i copied the default configuration to custom configuration with custom Object type and Subtype.
           CONFIG KEY: ZPJQTN
           OBJECT TYPE: ZOTYP_CONFIG
           OBJECT SUB TYPE:  ZSTYPE_CONFIG1
    3. I have created customm fields in enhancement.
    4. Now i chosen my new configuration (ZPJQTN,ZOTYP_CONFIG,ZSTYP_CONFIG1), when i click Show available fields, the custom fields are not showing. Instead the created fields are available at other configuration.
    5. I am able to control the visibility for the standard available fields.But i am not getting the custom created fields
    (Note:  I have created the Object type and Object sub type as follows: SPRO->CRM->UI Framework->Define Object Types
    Object type: ZOTYP_CONFIG Callback class: ZCL_CONFIG_CALLBACK
    Redifned the method: IF_BSP_DLC_OBJ_TYPE_CALLBACK~GET_OBJECT_SUB_TYPES
    Coded as below:
      data: lv_subtype type bsp_dlc_object_sub_type.
      lv_subtype = 'ZSTYP_CONFIG1'.
      append lv_subtype to result.
      lv_subtype = 'ZSTYP_CONFIG2'.
      APPEND lv_subtype to result.
    Now Please suggest me how to achieve this.
    Also please let me know, whether i am following the correct procedure for controlling the visibility.
    Thanks in Advance,
    S.Meganadhan.

    Hi Harshit,
    I added custom fields using AET only.
    I am able to see the field got added in the structure. I am able to access GET and SET methods of the field.
    But the problem is, it is not getting saved. Am i missed any configuration step?
    Please suggest me.
    Thanks in advance,
    Regards,
    S.Meganadhan.

  • Problems with filling out PDF forms

    We have problems with filling out PDF-forms. Aotomatic filling of forms is deactivated and we use the Adobe Reader 11.0.05. The problem is: After some time the inputs are wrong put down in the form. For example: I write 120 and in the form stands 125. We have already extinguished the cache. Thanks for your help in advance.

    You will get that first message when the document has been changed in a way that invalidates the internal digital signature that's applied when a document is Reader-enabled. Certain changes are allowed (e.g., filling fields, commenting, signing) and will not invalidate the signature, but others are not. The exact cause of the change is often hard to track down, but it can be due to font problems, some type of file corruption, or something that Acrobat/Reader attempts to correct when the file is opened/saved. You will also get the message if the users system time is not correct and is currently set to some time before the document was Reader-enabled. It seems best to use the most recent version of Acrobat to enabled the documents and recent versions of Reader to work with them.
    It problem is probably not related to the user using anything in the Sign pane.

  • Sudden problem with fill layers

    I use Adobe Photoshop Elements 11.  Until recently, I've had no problem with fill layers.  I'd make a selection from the photo, then I'd make a layer of the selection, then I'd go to edit, fill layer, fill with background/foreground color.  Then the selection only would be filled.  Now, all of a sudden, I make the selection, make a layer of the selection, go to edit/fill layer/fill with background/foreground color, and the whole photo becomes filled with the fill color, and not just the selection.  I'm always on the selection layer, not the background or any other layer.  I've reset all the tool defaults, and I've even deleted the defaults file, but to no avail.  What's happening here?  How do I fix this?
    Thanks,
    Sue

    Sue and MichelB
    MichelB
    When I tried to help Sue with the inquiry, I was doing so based on what was written and my interpretation of it
    then I'd go to edit, fill layer, fill with background/foreground color.
    For me that Photoshop Elements 11 Full Editor, Edit Menu/Fill Layer and the issue did not fit.
    But if the route were as you have suggested Photoshop Elements 11 Full Editor, Layer Menu/New Fill Layer/Solid Color then everything would fall into place, centering around that option in the New Layer dialog "Use Previous Layer to Create Clipping Mask" being checked or unchecked.
    Sue
    We look forward to your follow up.
    Thank you both.
    ATR

  • Can't run itunes because it has detected a problem with audio configuration

    What does that mean and how do i fix it? I had Itunes installed on my computer for ages but I had to have it restored because the firewall was playing up and since i have tried to reinstall itunes it has been saying that there is a problem with audio configuration---any ideas?

    Some people have found the following works:
    Completely uninstall Quicktime (NOT iTunes) using ALL the method in this article:
    http://docs.info.apple.com/article.html?artnum=93698
    Turn off antivirus/anti spyware
    Go to Control Panel>Add/Remove Programs>Change or Remove Programs
    Select iTunes, then click on Change, then select Repair.
    Restart computer

  • ITunes has detected a problem with your configuration

    I recently tried to use my iTune player and when I click the shortcut to open it, the following error message appears:  "iTunes has detected a problem with your configuration.  Audio/Video playback may not operate properly."  The program shows up on my desktop, but when I select something to play, nothing happens.
    I use Windows 7.  It did work previously, and I do not know of any specific change made to my computer that could have caused this.  I am not sure when it developed since I have not tried to use iTunes for a week or more.  I checked the community forum and there were similar problems 7 years ago, but could not find any solution (One link to a solution is not longer good.)

    Hello LouisvillePS
    Start with the troubleshooting in the article below to resolve issues with start. You can use Safe Mode to start up to see if it still pops up as well as testing in a new user on your computer.
    iTunes for Windows Vista, Windows 7, or Windows 8: Fix unexpected quits or launch issues
    http://support.apple.com/kb/dl1614
    Regards,
    -Norm G.

  • Problems With System Configuration

    System Configuration is altered and not repairable. Selective startup is persistent. Normal startup is selected, but the Apply button is greyed out, inaccessible, and system always remains in Selective startup. As a result, Current User profile is probably
    corrupted. Windows Store will not install (services are corrupt, SFC and DISM did not work). Outlook profile was deleted, needed to be reinstalled, and can not receive mail. Excel math engine totals values higher than actual amounts. IE automatically signs
    into all Microsoft accounts (reset to default settings worked for a log on, but automatic sign in resumed afterwards).
    Are there any solutions?
    Office diagnostics produced the following report.
    Diagnostic Results
    None of the Microsoft Office Diagnostics found any problems.
    More resources
    Setup Diagnostic — File corruption or altered file
    The Setup Diagnostic repaired problems with your installation of Microsoft Office. Your Microsoft Office programs should now function correctly.
    If your Microsoft Office programs continue to crash, the source of the problem may be a hardware failure or hardware configuration problem. Review the results of the Disk and Memory Diagnostics to determine if a hardware failure is affecting your installation
    of the 2007 Office release.
    More resources
    Setup Diagnostic — Missing media
    The Setup Diagnostic was not completed because a valid source was not found. Either the local installation source is missing, or the original source that was used to install Microsoft Office is not available to the repair process. You may need to provide
    the original source to allow this diagnostic to run successfully. Valid sources for the 2007 Office release include the following:
    Your 2007 Office release installation CD
    An installation disk or repair CD provided by the vendor of your computer
    A connection to a network installation of the 2007 Office release
    After you obtain access to a valid source, run Office Diagnostics again.
    More resources
    Disk Diagnostic — Failure of hard disk predicted
    The Self-Monitoring, Analysis, and Reporting Technology (SMART) feature of your hard disk has found errors that may indicate that the hard disk is likely to fail. SMART is a feature that some disk drive manufacturers provide to give users advance notice
    of potential hard disk failure. Instability in your Microsoft Office programs may be the result of these hard disk drive errors.
    Note This result can indicate a severe problem, but some hard disks may not accurately report their results.
    We recommend that you do the following:
    1.Back up your important data immediately.
    2.Check the results of other diagnostics, and follow the instructions for resolving any issues that the other diagnostics have reported. After you resolve those issues, run Microsoft Office Diagnostics again to see if this Disk Diagnostic issue is resolved.
    3.If you continue to get this result, contact someone, such as the vendor of your computer or hard disk.
    More resources
    Disk Diagnostic — Errors in system event log
    The Disk Diagnostic found evidence of hardware errors. Instability in your Microsoft Office programs may be the result of these hardware errors.
    This result occurs if one of the following has happened recently:
    The Self-Monitoring, Analysis, and Reporting Technology (SMART) feature of your hard disk has found errors. SMART is a feature that some disk drive manufacturers provide to give users advance notice of potential hard disk failure.
    Microsoft Office Diagnostics has found blocked-out (failed) sectors on your hard disk.
    Microsoft Office has had trouble accessing files from the hard disk; it needs these files to function properly.
    We recommend that you do the following:
    1.Check the results of other diagnostics, and follow the instructions for resolving any issues that the diagnostics have reported. After you resolve those issues, run Microsoft Office Diagnostics again to see if this Disk Diagnostic issue is resolved.
    2.If you continue to get this result, contact someone, such as the vendor of your computer or hard disk.
    More resources
    Memory Diagnostic — RAM failure
    The Memory Diagnostic found evidence of failure in the random access memory (RAM).
    We recommend that you do the following:
    1.Check the results of other diagnostics, and follow the instructions for resolving any issues that the diagnostics have reported. After you resolve those issues, run Microsoft Office Diagnostics again to see if this Memory Diagnostic issue is resolved.
    2.If you continue to get this result, do either of the following:
    Run a Microsoft Windows memory diagnostic. For more information, see the following:
    Windows Vista How do I know if my computer has a memory problem?
    Microsoft Windows XP Windows Memory Diagnostic
    Contact someone, such as the vendor of your computer or RAM.
    More resources
    Memory Diagnostic — User is not an administrator
    The Memory Diagnostic was unable to run because you do not have administrative rights on this computer. To successfully run the Memory Diagnostic, someone with administrative rights must log on to this computer and run Microsoft Office Diagnostics.
    More resources
    Update Diagnostic — Installation is out of date
    The Update Diagnostic determined that your installation of Microsoft Office does not have the latest service packs installed. Installing service packs improves stability. We recommend that you visit Downloads on Microsoft Office Online, and then, under Office
    Update, click Check for Updates.
    More resources
    Compatibility Diagnostic — Conflicting versions of Outlook found
    The Compatibility Diagnostic identified conflicting versions of Microsoft Office Outlook. To remove the version of Outlook from your computer that you do not want, do the following:
    Microsoft Windows Vista
    1.Click the Start button, and then click Control Panel.
    2.Click Uninstall a program.
    Note In Classic view, double-click Programs and Features.
    3.Select the version of Outlook that you do not want, and then click Uninstall.
    Microsoft Windows XP
    1.Click Start, and then click Control Panel.
    2.Double-click Add or Remove Programs.
    3.Select the version of Outlook that you do not want, and then click Remove.
    More resources

    Check disk and memory diagnostics found no errors.
    SFC and DISM listed errors when performed in diagnostic start up. Commands changed from previous attempts. Before SFC and DISM only had to be entered as SFC and DISM. Presently, additional commands are required.
    Log Name:      Microsoft-Windows-MemoryDiagnostics-Results/Debug
    Source:        Microsoft-Windows-MemoryDiagnostics-Results
    Date:          8/21/2014 12:51:09 PM
    Event ID:      2001
    Task Category: None
    Level:         Information
    Keywords:     
    User:          SYSTEM
    Computer:      TAS
    Description:
    Windows Memory Diagnostic results
    Event Xml:
    <Event xmlns="http://schemas.microsoft.com/win/2004/08/events/event">
      <System>
        <Provider Name="Microsoft-Windows-MemoryDiagnostics-Results" Guid="{5F92BC59-248F-4111-86A9-E393E12C6139}" />
        <EventID>2001</EventID>
        <Version>0</Version>
        <Level>4</Level>
        <Task>0</Task>
        <Opcode>0</Opcode>
        <Keywords>0x4000000000000000</Keywords>
        <TimeCreated SystemTime="2014-08-21T16:51:09.612555200Z" />
        <EventRecordID>1</EventRecordID>
        <Correlation />
        <Execution ProcessID="5296" ThreadID="5300" />
        <Channel>Microsoft-Windows-MemoryDiagnostics-Results/Debug</Channel>
        <Computer>TAS</Computer>
        <Security UserID="S-1-5-18" />
      </System>
      <UserData>
        <Results xmlns="http://manifests.microsoft.com/win/2005/08/windows/Reliability/Postboot/Events">
          <MemDiagRawData>89170000000000000200000003000000050000000A000000D80300000C0000000200000000000000964017005B090000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000C800000000000000707E748DCE00000001000000C800000000000000C8000000000000000C00000038000000DE07080015000C001E00200000000700964017005B09000001000020000001000C00010000000000020001001E00010000000000040001004200010000000000060001002E0001000000000001000100660001000000000003000100EC00010000000000000001000D00020000000000020001001D00020000000000040001004200020000000000060001002F0002000000000001000100650002000000000003000100EC00020000000000</MemDiagRawData>
        </Results>
      </UserData>
    </Event>
    Windows Resource Protection could not start the repair service.
    Microsoft Windows [Version 6.3.9600]
    (c) 2013 Microsoft Corporation. All rights reserved.
    C:\WINDOWS\system32>DISM
    Deployment Image Servicing and Management tool
    Version: 6.3.9600.17031
    DISM.exe [dism_options] {Imaging_command} [<Imaging_arguments>]
    DISM.exe {/Image:<path_to_offline_image> | /Online} [dism_options]
             {servicing_command} [<servicing_arguments>]
    DESCRIPTION:
      DISM enumerates, installs, uninstalls, configures, and updates features
      and packages in Windows images. The commands that are available depend
      on the image being serviced and whether the image is offline or running.
    GENERIC IMAGING COMMANDS:
      /Get-MountedImageInfo   - Displays information about mounted WIM and VHD images.
      /Get-ImageInfo          - Displays information about images in a WIM or VHD file.
      /Commit-Image           - Saves changes to a mounted WIM or VHD image.
      /Unmount-Image          - Unmounts a mounted WIM or VHD image.
      /Mount-Image            - Mounts an image from a WIM or VHD file.
      /Remount-Image          - Recovers an orphaned image mount directory.
      /Cleanup-Mountpoints    - Deletes resources associated with corrupted mounted images.
    WIM COMMANDS:
      /Capture-CustomImage    - Captures customizations into a delta WIM file on a WIM Boot system. Captured directories include all subfolders and data.
      /Get-WIMBootEntry       - Displays WIMBoot configuration entries for the specified disk volume.
      /Update-WIMBootEntry    - Updates WIMBoot configuration entry for the specified disk volume.
      /List-Image             - Displays a list of the files and folders in a
                                specified image.
      /Delete-Image           - Deletes the specified volume image from a WIM file
                                that has multiple volume images.
      /Split-Image            - Splits an existing .wim file into multiple
                                read-only split WIM (SWM) files.
      /Export-Image           - Exports a copy of the specified image to another
                                file.
      /Append-Image           - Adds another image to a WIM file.
      /Capture-Image          - Captures an image of a drive into a new WIM file. Captured directories include all subfolders and data.
      /Apply-Image            - Applies an image.
      /Get-MountedWimInfo     - Displays information about mounted WIM images.
      /Get-WimInfo            - Displays information about images in a WIM file.
      /Commit-Wim             - Saves changes to a mounted WIM image.
      /Unmount-Wim            - Unmounts a mounted WIM image.
      /Mount-Wim              - Mounts an image from a WIM file.
      /Remount-Wim            - Recovers an orphaned WIM mount directory.
      /Cleanup-Wim            - Deletes resources associated with mounted WIM images that are corrupted.
    IMAGE SPECIFICATIONS:
      /Online                 - Targets the running operating system.
      /Image                  - Specifies the path to the root directory of an offline Windows image.
    DISM OPTIONS:
      /English                - Displays command line output in English.
      /Format                 - Specifies the report output format.
      /WinDir                 - Specifies the path to the Windows directory.
      /SysDriveDir            - Specifies the path to the system-loader file named BootMgr.
      /LogPath                - Specifies the logfile path.
      /LogLevel               - Specifies the output level shown in the log (1-4).
      /NoRestart              - Suppresses automatic reboots and reboot prompts.
      /Quiet                  - Suppresses all output except for error messages.
      /ScratchDir             - Specifies the path to a scratch directory.
    For more information about these DISM options and their arguments, specify an option immediately before /?.
      Examples:
        DISM.exe /Mount-Wim /?
        DISM.exe /ScratchDir /?
        DISM.exe /Image:C:\test\offline /?
        DISM.exe /Online /?
    C:\WINDOWS\system32>DISM.exe /English
    Deployment Image Servicing and Management tool
    Version: 6.3.9600.17031
    Error: 1639
    No DISM options were specified on the command-line.
    Run DISM with a command-line option specified, such as /Image or /Online. For more information, refer to the help by running DISM.exe /?.
    The DISM log file can be found at C:\WINDOWS\Logs\DISM\dism.log

  • Problem with filling up vector

    Hello,
    i'm having a problem with the following code; when i try to fill up the vector, it overwrites the previous values with the new, so the when i add the second item, the first item becomes the second too. So when i return the vector, all values are similar (the last).
    public Vector getClients(){
    Database singleton = Database.getDatabase();
    User user=new User();
    Vector clients = new Vector();
    try{
    singleton.openConnection();
    ResultSet rs = singleton.getResultSet("SELECT * FROM tblClients");
    while(rs.next()){
    user.setNaam(rs.getString("naam"));
                   user.setVoornaam(rs.getString("voornaam"));
                   user.setNickname(rs.getString("nickname"));
                   user.setEmail(rs.getString("email"));
                   user.setPaswoord(rs.getString("paswoord"));
    System.out.print("user added:" + user.getNickname() + "\n" );
    clients.add(user);
    System.out.println(user);
    singleton.closeConnection();
    }catch(SQLException sqle){
    sqle.getMessage();
    sqle.printStackTrace();
    System.out.print(clients.size() + " users added\n");
    return clients;
    }

    You are always adding the same user-Object to the Vector.
    You should put the command
    user=new User();inside the while-loop to have different objects for different users.

  • .MSG files. Problem with getting requested values from crawled properites

    Hi
    I have a lot of msg files on my file server. I use SharePoint Enterprise Serach engine to crawl all these MSGs.
    I would like to get extra managed properties out of these files. I am most interested in getting Mail:5(text) / Mail:12(Date and Time) / Mail:53(Date and Time) from MAIL category in Managed Properties.
    This thread is very similar to one already posted by SpinnerUp:
    http://social.technet.microsoft.com/Forums/sharepoint/en-US/82d69df0-5cb2-4e51-a485-34209e111f4b/problem-with-crawling-msg-files-doesnt-seem-to-return-requested-values-from-crawled-property
    Please be aware that I do not use Public Folders. These MSGs are exproted from Outlook and are stored on File Server not Exchange.
    I tried to link Crawled Properties to new property however I cannot get any results back.
    Thank you for you help.
    Regards, Marcin (Please mark as helpful or answered if it helps)

    Thank you for your replay.
    However I am not keen to write custom connector at this stage.
    Is it possible to simply get "Subject", "Sent", "Received" info from msg file and then map it to managed properties.
    Does SharePoint create any crawled properties which contain information about let's say "Subject" which then can be used to create managed properties?
    I tried playing with "MAIL" properties however I cannot get them to work. I guess this is because the file is a msg file rather than mail which is stored in Exchange Public Folder.
    Regards, Marcin (Please mark as helpful or answered if it helps)

  • Problem with mouse-over value on a column chart (by Series)

    Hi.
    First of all thanks for any offered tip.
    I am having a problem with a column chart.
    When I move the mouse over a column it should show a small pop-up (or tip) with the column name (series name) and the value (series value). The problem is that it displays an extra '1' just like the following:
    SeriesName
    1
    X.XXX
    How can I remove the extra '1' and only show the name and the value ?
    The data is populated by series (manually added).
    Mihai.

    Hi,
    Thanks for the tip Shanthakumar KA.
    Yes. It looks like the '1' is coming from the X Axis labels. The chart that I have built does not require any labels on the X Axis, so this was not set (X-Axis labels: Empty). I tried setting this to an empty cell, but the '1' still appears in the mouse-over tip.
    It is very weird. If I leave the X-Axis labels empty, I still get the '1' displayed which is very annoing.
    Are there any solutions for this except the re-building the tip with a label a.k.a. '[customize the mouse over values|http://xcelsiusandme.blogspot.com/2009/07/xm-sample-7-customizing-mouse-over.html].'
    Regards,
    Mihai.

  • Problem with audio configuration after upgrading to iTunes 7.5

    After being forced to upgrade to iTunes 7.5 (when downloaded a new song form the Music Store), an error message is displayed when I launch the application, "ITunes cannot run becuase it has detected a problem with your audio configuration". The application exits immediately.

    Try the instructions in this article.
    (26574)

  • Itunes cannot open beacuase it has detected a problem with audio configuration

    i have the same poblem my Itunes cannot open beacuase it has detected a problem
    with your aduio configuration i saw the answer to that question and i tryed it
    but my computer was already to those settings and my Itunes is still not working
    i realy need help I am a music addict and i cant organize my playlists i cant
    buy new songs i cant do anything please help me.

    Follow the steps outlined in this article to fix that:
    http://docs.info.apple.com/article.html?artnum=304424
    Rachyl

  • ITunes won't open due to problem with audio configuration

    Out of the clear blue iTunes will not open any longer. I get a gray message screen that says iTunes can't open due to
    an audio configuration problem. Any answers for this???

    iTunes can't open due to an audio configuration problem.
    That one is most commonly caused by a problem with your QuickTime. (iTunes uses QuickTime for audio and video playback.)
    The following document may be of some assistance:
    iTunes 7 for Windows: iTunes has detected an audio configuration problem

Maybe you are looking for