Another user or another operation modified data,to continue open windows

Saludos Estimados:
                                tengo la siguiente situación, tengo un cliente que gestiona sus cuentas a nivel articulo, estamos actualizando sus cuentas ya que algunas apuntaron mal, pero cuando lo hacemos por DTW manda el siguiente error
another user or another operation modified data,to continue, open windows again (OBDC-2039) Application-defined or object-defined error65171

esta es la nota de SAP  que nos sugirio y se soluciono.
When you update the warehouse info via DTW, you need to set the LineNum value in ItemWarehouseInfo that corresonds to the warehouse in Item Master Data.
That means the LineNum value match warehouse list number minus 1.
In your case it seems you just used 0,1,2,3,4 but it does not necessarily match the order of the warehouses.
So for example if you have 4 warehouses in the database
1 Test
2 Ware
3 House
4 DTW
then when you update properties of the warehouse the LineNum is 0 for warehouse Test, 1 for warehouse Ware and so on (please refer to note 1328706).
Should you have any further questions related to this issue please do not hesitate to contact us.
Kindly confirm the message at your earliest convenience after successfully testing it.

Similar Messages

  • Another user or another operation modified data

    I have a problem in updating document numbering setup in AP invoice
    Another user or another operation modified data; to continue, open the window again  '' (NNM1) (ODBC -2039)  [Message 131-183]
    SAP 8.81. PL07
    I disabled also all Add-ons , but still the problem continue,
    Thanks

    hi,
    when setting document numbering series it is recommended that you should have an exclusive access in the database. to achieve this you need to lock all users except your username. in the way no other user can log on in the system. also you need to use a superuser account.
    regards,
    Fidel

  • Finder, modified date on file opening

    Hi, I'm using PowerPoint for a .ppt file.
    When I open this file finder make a change of the modified date with the date of opening...PowerPoint has a loading bar just few moment before opening this file, and then I can see the new modified date.....but if I don't make changes in this file why the date change??
    This doesn't happen whit word or office.....I also tried to see if there are strange options on powerpoint that do this but whit no results.

    Karin,
    a Java class on the server and on the client form could do this by calling File.lastModified and comparing the long numbers returned.
    WebUtil does not provide this functionality - as far as I can see from a quick scan - so thi smay be a valid enhancement request.
    Frank

  • How do I add another operating system for Dual boot in Windows 8.1 boot configuration?

    Hello,
    I am trying to create a dual-boot Windows 8.1 Pro system to allow both 32bit and 64 bit Windows 8.1 versions.  I currently have Windows 8.1 32bit installed.  Appreciate some background on how to add 64bit Windows 8.1.
    Thanks, in advance.

    The easiest way is to do this (this assumes some technical knowledge as well as access to the currently installed operating system and the 64bit install files)
    1: launch diskpart from run or cmd
    2: select the current OS disk using "select disk 0"
    3: select the current OS volume using "select partition x" where x is the number of partition (you can use "list partition" to see all current partitions)
    4: enter "shrink minimum=xxxxx" where xxxxx is the size in megabytes you want to new OS to have
    5: Enter "create partition primary"
    6: Enter "format quick fs=ntfs label="Windows x64""
    7: Enter "assign letter y"
    8: select your current system partition using "select partition x" where x is the number of partition. If you have a UEFI install on a GPT disk, this partition will be formatted in fat32. Otherwise, it will be a 100mb NTFS partition
    9: Enter "assign letter s"
    10: exit diskpart, and open up an administrator cmd prompt
    11: Enter "dism /get-imageinfo /imagefile:e:\sources\install.wim" where e: is the drive letter that you have your .iso mounted in. If you have the iso extracted, you can just point to the current extracted area then \sources.install.wim. This will
    show you a list of indexes that the .wim file supports. A standard retail version of the .iso will have Windows 8 Pro be index 1. If it is not, just change the index number in the next command.
    12: Enter "dism /apply-image /imagefile:e:\sources\install.wim /index:1 /applydir:y:"
    13: Enter "bcdboot y:\windows /s s: /f UEFI" (if you are using a MBR disk and not UEFI with a GPT disk, enter /f BIOS instead)
    14: Reboot, select the x64 partition in the menu that comes up, and you are good to go!
    You can also just create a new partition using disk manager then boot to the x64 disk and install it to the new partition, but that runs the risk of accidentally installing over something that shouldn't be if you select the wrong disk.

  • How to add another operating system for Dual boot in Windows 7 boot configuration

    Hi,
    I have dell laptop with excellent configuration. On which i had windows 7 Home premium on C Drive and Windows server 2008 on D Drive.
    Now i upgraded my Windows 7 Home Premium 32 bit to Windows 7 Ultimate 64 bit. But after fresh installation of Win 7 Ultimate my dual boot screen has gone and Win 7 is getting start directly.
    Now i want to add my Windows server 2008 again for dual boot which is still on D Drive.
    Can anyone please tell me how to add windows 2008 boot option in boot configuration to active my dual boot options.
    Thanks

    1) Using bcdedit.exe /enum
    To enable the computer to also boot Windows 7 you again use bcdedit.exe with the following command which will copy the current Windows
    Boot Loader details for Windows Server 2008 to Windows 7.
     bcdedit.exe /copy
    {current} /d "Microsoft Windows 7"
     bcdedit.exe will
    respond with something like the following.
    The
    entry was successfully copied to {................................}.
    Using
    bcdedit.exe /enum to again enumerate through the current entries within the BCD store you'll see the newly added entry.
    Before you can use the newly created Windows boot loader configuration, you'll need to change the partition for Windows 7 using
    the following two bcdedit.exe commands.
    bcdedit.exe /set {.................................} device partition=D:
    bcdedit.exe /set {.................................} osdevice partition=D:
    If you now reboot the system you should now be able to boot into either Windows Server 2008 or Windows 7.

  • Archive/Move files based on Modified Date range to another Library Using PowerShell while retaining Metadata

    Hi,
    I am trying to archive files from a SharePoint 2010 document library by moving them to another library that's a dedicated archive/folder/library. The files to be moved are selected based on their modified date column value that should range between any time
    in the past to January 1st 2012. 
    Also, to be able to retain the tags and cloumn values after the move. Open in explorer does not bring along the user added tags.
    I tried to edit this script
    $WebURL = "http://mysite.com/";
    $ListDisplayName = "Crawl Test Library";
    $ArchiveFolderName = "Crawl Test Library Archive";
    function moveItems ()
    trap
    #make sure we dispose of these in the event of an error to avoid memory leaks:
    write-host "Error - disposing of objects...";
    $Web.Dispose();
    $Site.Dispose();
    [Microsoft.SharePoint.SPSite] $Site = New-Object Microsoft.SharePoint.SPSite($WebURL);
    [Microsoft.SharePoint.SPWeb] $Web = $Site.OpenWeb();
    [Microsoft.SharePoint.SPList] $List = $Web.Lists[$ListDisplayName];
    $FolderToMoveTo = $List.RootFolder.Url + "/" + $FolderName;
    $ItemMoveCount=0;
    $Query = New-Object Microsoft.SharePoint.SPQuery;
    $Query.Folder = $list.RootFolder;
    $camlQuery = "<Where><Leq><FieldRef Name='Modified' /><Value Type='DateTime'>2012-01-01T00:00:00Z</Value></Leq></Where>"
    $Query.Query = $camlQuery
    $Query.RowLimit = 2200; #limit query because of large folder
    $List.GetItems($Query) |
    Where {$_.ContentType.Name -ne "Folder"} |
    foreach-object {
    #Line below will simply output to console and demonstrates another .NET call
    [System.String]::format("Moving Item {0} with ID {1}...",$_.Name, $_.ID.ToString());
    $Web.GetFile($_.Url).MoveTo([System.String]::format("{0}/{1}",$FolderToMoveTo,$_.Name));
    write-host "Success...";
    $ItemMoveCount++;
    write-host "==============================================================================";
    write-host "Complete! -> Moved " $ItemMoveCount " Items to directory " $FolderName;
    write-host "==============================================================================";
    #dispose:
    $Web.Dispose();
    $Site.Dispose();
    #garbage collection
    [GC]::Collect()
    to do that but it doesn't seem to work. I am no guru in powershell yet so any help is appreciated.
    Thanks.

    This solution gets the job done. Much thanks to
    Ian Hayse
    NB...The Modified and Created dates are gonna reflect runtime dates now 
    $web = Get-SPWeb "http://sharepointed.com/"
    $list = $web.Lists["Shared Documents"]
    $spQuery = New-Object Microsoft.SharePoint.SPQuery
    $spQuery.ViewAttributes = "Scope='Recursive'";
    $spQuery.RowLimit = 2000
    $caml = '<Where><Lt><FieldRef Name="Created" /><Value IncludeTimeValue="TRUE" Type="DateTime">2014-01-01T04:06:45Z</Value></Lt></Where> '
    $spQuery.Query = $caml
    do
    $listItems = $list.GetItems($spQuery)
    $spQuery.ListItemCollectionPosition = $listItems.ListItemCollectionPosition
    $listTotal = $listItems.Count
    for ($x=$listTotal-1;$x -ge 0; $x--)
    try
    $listItems[$x].CopyTo("http://sharepoint/Docs/Documents/"+ $listItems[$x].name)
    Write-Host("DELETED: " + $listItems[$x].name)
    $listItems[$x].Recycle()
    catch
    Write-Host $_.Exception.ToString()
    while ($spQuery.ListItemCollectionPosition -ne $null)

  • How do you open a Numbers file sent from another Mac user with same operating system, i get a pop up that says I'm missing an index.hml file??? HELP PLEASE

    how do you open a Numbers file sent from another Mac user with same operating system, i get a pop up that says I'm missing an index.hml file??? HELP PLEASE

    The operating system may be the same but the Numbers applications are likely different.  You need to get the apps in sync.  Unfortunately, the Numbers (and Pages as well) saga is pretty confusing (and frustrating).  Here's some info from the iWork resident version expert (PeterBreis0807):
    Pages '09/'08 can not open Pages 5 files and you will get the warning that you need a newer version.
    Pages 5.2 can open Pages '09 files but may damage/alter them. It can not open Pages '08 files at all.
    Older versions of Pages 5 can not open files from later versions of Pages 5.
    Once opened and saved in Pages 5 the Pages '09 files can not be opened in Pages '09.
    Anything that is saved to iCloud and opened in a newer version of Pages is also converted to Pages 5 files.
    All Pages files no matter what version and incompatibility have the same extension .pages.
    Pages 5 files are now only compatible with themselves on a very restricted set of hardware, software and Operating Systems and will not transfer correctly on any other server software than iCloud.
    Apple has removed almost 100 features from Pages 5 and added many bugs.

  • OIM 11g Modify User Profile for Updating End Date

    Hi Gurus!
    We have an OIM implementation where users may request the creation of other users by means of a Create User request template. In this template we set the End Date to be 3 months after the request date.
    In order for the requester to extend the period of a user's OIM user account (along with its provisioned resources) we customized a Modify User Profile by displaying the End Date field and automatically populate it again to 3 months after the request date. Also we developed a custom event handler to enable the user when it is disabled and the End Date is updated to a future date.
    This Modify User Profile is working great when the user is still enabled (the End Date is still in the future), however, when the End Date has passed (and the user is Disabled) the requester is not able to see the user when selecting the Modify User Profile request template.
    Is there a way to allow requesters to also see disabled users in the Modify User Profile request template?
    Thank you in advance.
    Regards,

    Hi Kevin,
    thanks for your reply!
    But, in this case, when the user is already disabled due to his End Date, how can a requester, through the Self Service TAB, enable it?
    The Enable User request template does not work since when trying to enable the user, OIM sees the End Date is already passed and the DataSet validation throws an exception.
    The only way I saw was providing a Modify User Profile Request template to change the End Date and developing a custom event handler to enable the user upon the extension of the End Date...
    How can, in this situation, a requester enable the user and extend its End Date?
    Thank you!
    Regards,

  • Is it possible to have windows on another operating system and keep OS X on the original operating system ? and If yes, Would it do any changes on the original operating system ?

    Is it possible to have windows on another operating system and keep OS X on the original operating system ? and If yes, Would it do any changes on the original operating system ?
    Thanks in advance.

    1. On your computer, yes. Use Boot Camp, Parallels Desktop, VMware Fusion, VirtualBox, or similar software.
    2. No; if you use an emulator, it may install system components. Back it up anyway.
    (110033)

  • Pdf form for data from another form with data, xml or pdf, tables not expanding

    Sir,
    I am using Adobe Acrobat 9 Pro and LifeCylce to do these forms. I have made several subforms for a Risk Assessment for the mission they fly. I have also made up another form with tables that would connect with each subform data. This form also will give me and others a % of the values received from the data to help us with seeing problem area towards Safety.
    I am able to connect the data to the form from the Risk Forms but when I go and add another group of data it over writes the data that was already in the data collection form. The tables are dynamic and able to expand with the generated data but when I compile several Risk Forms, xml. data into one single data group, the receiving tables will not except this data. To compile the data I am in Acrobat and using the form-manage form data-merge data to spreadsheet than enter as a report that is xml. Still not working. I also tried to save the form, with data already in the tables, and then opened it again and add data to it, it will over write the existing data in the form. This form does work great with the generated data in LiveCycle.
    Any suggestions???

    Thanks Paul
    Did as you said and for each subform binding tab made sure I have "Repeat subform for each data item" checkbox and still no change when I add the data.
    I even tried to combine the xml data and that file just has the main page and not the data pages. just another problem that is happening.
    Any other suggestions on this expanding tables and receive single forms one at a time.
    Bill

  • Hello. I don't live in the U.S. and I'd like to buy a new mini IPad retina. But I see it is offered with four mobile operators. Does that mean I cannot use another operator, in my country, with it?

    Hello. I don't live in the U.S. and I'd like to buy a new mini IPad retina. But I see it is offered with four mobile operators. Does that mean I cannot use another operator, in my country, with it?

    Hello. I don't live in the U.S. and I'd like to buy a new mini IPad retina. But I see it is offered with four mobile operators. Does that mean I cannot use another operator, in my country, with it?

  • Another operation in  mediator

    how to add another operation in a mediator in design....not in source
    Edited by: 929451 on Apr 22, 2012 11:59 PM

    Well, if your mediator is based on a wsdl than all you have to do is to add the said operation in your wsdl and then Save All. Hit refresh. And you should see the additional operation created in your mediator at design time.
    Hope this helps.

  • Can I use T-Mobile contract free with another operator in another country?

    Can I use T-Mobile contract free with another operator in another country?

    No. You need an officially unlocked iPhone. Contract free DOES NOT equal officially unlocked. All contract free means is that you are not obligated to a contract, nothing more.
    In the US, only Apple sells officially unlocked iPhones.

  • How to autofill the Modified Date And Modified User?

    hi All,
    Below is the screenshot of my form , if we look at the last 4 columns we have Created Date,Created User Id which is popped up automatically if a new entry is being created. Now if we look at the last 2 ModifiedDate and ModifiedUserId those fileds will be
    empty wile creating a new entry which is good for me. But lets say if i go back to any existing record and want to modify it then the modified date and modified userid must be popped up with that persons name and current date. I think i can use the logic i
    have to get date and userid but i want some help with code to how to make the modified fields fill up.
    Can someone please help me with this?
    Thanks a lot for all your time and support.

    well I use it all the time, and have no problem in that initially both the 'started' and the 'modified' date fields have the same value..... because when one is editing a record whether initially putting in data or adding/changing later - they are both considered
    to put the form in a dirty state.
    then in future edits only the modified date field changes.  the code in the OnDirty event is:
    me.ModifiedDateFieldName=Now()
    any other approach will be more difficult to achieve as essentially one must trigger it not universally at the OnDirty event but something more specific such as at every control

  • Another operating system

    Hello:
    I'm looking for another operating system. I am very tiered from WinXP and I wont to install the apple operating system?
    Can I do that? I heard that the new apple system works on intel??
    Help please

    Hi Khawar;
    I am in complete agreement with you on WinXP but Mac OS X will only work on Apple hardware with Intel. Sorry.
    About the least expensive way to get into Mac OS X is the Mac Mini.
    By the way where about are you located in the Netherlands? I was stationed there with the USAF from 68 to 72. I really enjoy my assignment to the Netherlands.
    Allan

Maybe you are looking for

  • Question about Mac mini

    I have a powerbook, but I want to get a Mac Mini for the windows use instead of upgrading and buying a new desktop (by Windows ie Dell). The question is can I have a mac mini and use my powerbook screen for the monitor? Thanks.

  • How do I eliminate the http identity information on the url address line"

    When you click on the down arrow on the HTTP line where the last URL address you keyed in is displayed - it will show the history of the last URL addresses you keyed in and visited. It will also display a second line known as "identity information".

  • Read page number of word document by interop word

    Hi everyone! I have a c# application and I want to read page number field of each page. i.e. A,B,C... or 1,2,3... or i,ii,iii... Please Help! Thanks!

  • Multiple profile help needed

    I work for a company that requires me to connect to several customer Cisco VPNs via AnyConnect 3.0.5075.  Each customer site has provided it's own URL and certificate, etc. How do I get Cisco AnyConnect Secure Mobility Client version 3.0.5075 to agre

  • Photosmart C4640 installing new ink cartridges

    In the past, I typically install the multi package (both black and color) into the machine when it runs out.  Once, I installed only the color cartridge (because the black cartridge still had plenty of ink in it) and the printer would not accept the