Getting eroor while copying and deleting user

Hi All,
  I am unable to copy and delete users from one client, we are in ecc6.0. i am getting the following error while copying and deleting. the error is
NUMBER_GET_NEXT AENDBELEG INTERVAL_MISSING.
Please help me in this regard,
thanks,
praveen

Hi Praveen,
Implement the program correction to ensure that the system issues the correct error message.
Manually create the missing interval.
You can use error message CD 121 to enable you to identify the error more accurately. Depending on the additional information, the status is as follows:
OBJECT_MISSING : The entire AENDBELEG number range object is missing and must be created.
INTERVAL_MISSING: Number range interval 01 is missing and must be created.
INTERVAL_NOT_INTERNAL: The definition of number range interval 01 is incorrectly set to 'external number assignment'. Delete the 'external' selection in the interval definition.
Check the definition of the AENDBELEG number range object in transaction SNRO:
Object name:   AENDBELEG
Short text:    Change documents
Long text:     Number Ranges for Change Documents
To-year flag:                        Do not select
Number length domain:                 CHAR10
No interval rolling:                  Do not select
Number range transaction:             SCDN
Warning %:                            10.0
Main memory buffering:
No. of numbers in buffer:             10
You must define the following interval:
Interval No. 01
from 0000000001
to 9999999999
internal number assignment
Please look st SAP Note: <b>659573</b>
Hope it helps.
Please award points if it is useful.
Thanks & Regards,
Santosh

Similar Messages

  • I installed Windows 7 in my Macbook pro, I can access Windows data in Mac, but I can't copy and delete it. and the same case while i am working in Windows. Could you please guide me if there is any solution, where I could copy/paste/delete my data.

    I installed Windows 7 in my Macbook pro, I can access Windows data in Mac, but I can't copy and delete it. and the same case while i am working in Windows. Could you please guide me if there is any solution, where I could copy/paste/delete my data.

    OS X can natively read NTFS of Windows, but not write to it.
    Windows can't read or write to HFS+ of OSX, and that's a good thing from a security standpoint.
    Ideally if you share files between operating systems you should have a FAT/MSDOS formated USB key or hard drive. (exFAT external drive if any of your files are over 4GB in size) both these formats are universal for OS X or Windows.
    If you install software into Windows and OS X to read each others formats, then you have to pay to update/upgrade it deal with headaches.
    If you swtich between Windows and OS X a lot, don't need full hardware performance for Windows, you may consider installing virtual machine software like VMFusion or Parallels which can take a copy of your Windows in Bootcamp and place it into OS X as a file then run that copy of Windows in a window in OS X like so.
    Advantage here is you run most of your light weight Windows programs like this at the same time as OS X.
    Benefit is you can run just about any Windows or Linux version and OSX server editions (not client versions)
    Bootcamp only allows Windows 7, that's it now.
    You'll also be interested in two fre pieces of software, Carbon Copy Cloner and Winclone on macupdate.com.
    CCC clones OS X partition and Winclone clones the Bootcamp partition. Valuable for you.
    Good Luck

  • Time Machine stuck while copying and it ends up blocking the whole mac

    I've a problem with my time machine backup. The backup drive is a partition on an external USB drive. The drive has another partition for data. Everything worked good until yesterday. It gets stuck while copying the files, e.g. 532 MB of 5.45 GB, and it doesn't move even after a couple of hours. The backupd process is constantly using 100 % of one CPU and the other applications are getting stuck as well. I also notice that the USB drive stops spinning at a certain point, as if it goes idle.
    I can't cancel the backup and I have to force shut down the Mac. After the restart, the backup will stop at Zero KB. If I delete the inProgress file nothing changes.
    Here's the log:
    Starting manual backup
    Backing up to: /Volumes/LaCie/Backups.backupdb
    Event store UUIDs don't match for volume: Macintosh HD
    Deep event scan at path:/ reason:must scan subdirs|new event db|
    Finished scan
    Found 44342 files (4.95 GB) needing backup
    7.4 GB required (including padding), 11.79 GB availabe
    Then nothing more.

    If you have more than one user account, these instructions must be carried out as an administrator.
    Launch the Console application in any of the following ways:
    ☞ Enter the first few letters of its name into a Spotlight search. Select it in the results (it should be at the top.)
    ☞ In the Finder, select Go ▹ Utilities from the menu bar, or press the key combination shift-command-U. The application is in the folder that opens.
    ☞ Open LaunchPad. Click Utilities, then Console in the icon grid.
    Make sure the title of the Console window is All Messages. If it isn't, select All Messages from the SYSTEM LOG QUERIES menu on the left. If you don't see that menu, select
    View ▹ Show Log List
    from the menu bar.
    Enter the word "Starting" (without the quotes) in the String Matching text field. You should now see log messages with the words "Starting * backup," where * represents any of the words "automatic," "manual," or "standard." Note the timestamp of the last such message. Clear the text field and scroll back in the log to that time. Select the messages timestamped from then until the end of the backup, or the end of the log if that's not clear. Copy them (command-C) to the Clipboard. Paste (command-V) into a reply to this message.
    If there are runs of repeated messages, post only one example of each. Don't post many repetitions of the same message.
    When posting a log extract, be selective. Don't post more than is requested.
    Please do not indiscriminately dump thousands of lines from the log into this discussion.
    Some personal information, such as the names of your files, may be included — anonymize before posting.

  • Error while copying and pasting group of activities

    Hi,
    I am getting an error while copying and pasting a group of activities. Can anyone let me know why I am getting this message.
    type : EStringListError
    Event Code : SLDNA-0655-B
    Description : String list does not allow duplicates
    thank you.

    I had the same error and reported it to Oracle. They requested an XER copy and I am waiting for thier response. This problem is for that particular project only. To work around it do the following:
    Create a new project, open both projects, go to wbs view, copy all wbs's from the correpted project to the new project. The new project will work fine and get rid of the correpted one.
    Good Luck.

  • SQL Query to get All AD Groups and its users in Active Directory

    Hi,
       Is there any query to get all AD groups and its user in an instance of a SQL server?

    Check this blog.
    http://www.mikefal.net/2011/04/18/monday-scripts-%E2%80%93-xp_logininfo/
    It will give you more than what is required. If you dont want the extra information,then you can try this.. I took the query and removed the bits that you might not require.
    declare @winlogins table
    (acct_name sysname,
    acct_type varchar(10),
    act_priv varchar(10),
    login_name sysname,
    perm_path sysname)
    declare @group sysname
    declare recscan cursor for
    select name from sys.server_principals
    where type = 'G' and name not like 'NT%'
    open recscan
    fetch next from recscan into @group
    while @@FETCH_STATUS = 0
    begin
    insert into @winlogins
    exec xp_logininfo @group,'members'
    fetch next from recscan into @group
    end
    close recscan
    deallocate recscan
    select
    u.name,
    u.type_desc,
    wl.login_name,
    wl.acct_type
    from sys.server_principals u
    inner join @winlogins wl on u.name = wl.perm_path
    where u.type = 'G'
    order by u.name,wl.login_name
    Regards, Ashwin Menon My Blog - http:\\sqllearnings.com

  • Advanced table copy and delete slow when done programatically

    I am modifying a line in an advanced table, then copying it and deleting it. What I noticed is that
    it takes a lot less time to copy and delete manually within the application verses doing it programatically.
    To copy or delete 10 lines it takes about 1 or 2 seconds within the form. When I do this programatically
    it can take up to 20 seconds. Does anyone know why it takes so much longer?
    Here is a sample of my code.
              porequisitionlinesvorowimpl.setSelected("Y"); //programatically select line for copy
         ArrayList deletearraylist = null;
         String s1 = porequisitionlinesvorowimpl.getItemNumber();
              java.sql.Connection connection = oadbtransaction.getJdbcConnection();
              //Query values from for child item.
              OraclePreparedStatement oraclepreparedstatement = null;
              ResultSet resultset = null;
              try {oraclepreparedstatement = (OraclePreparedStatement)connection.prepareStatement("SELECT I2.DESCRIPTION WHERE                       I.SEGMENT1 = ?");
                               int i = 1;
                               oraclepreparedstatement.defineColumnType(i++, 12, 240);                                                                 oraclepreparedstatement.setString(1, s1);
                               resultset = oraclepreparedstatement.executeQuery();
                               while(resultset.next())
                                    //Collect values from query for child item.
                                    String desc = resultset.getString(1);
                              porequisitionlinesvorowimpl.setItemDescription(desc);
                              //Copy modified parent to produce a child line.
                              ArrayList copyarraylist = new ArrayList(2);
                               copyarraylist.add("populateAndDuplicate");
                               copyarraylist.add("lines");
                               executeServerCommand(oapagecontext, oaapplicationmodule, "CheckoutLinesSvrCmd", copyarraylist);
                               } //while loop for resultset
              resultset.close();
         oraclepreparedstatement.close();
              catch(SQLException sqlexception) {
                   ErrorUtil.handleFatalException(oadbtransaction, sqlexception, this);
              //Delete original Kit Parent           
              deletearraylist = new ArrayList(2);
              deletearraylist.add("populateAndDeleteReqLines");
              deletearraylist.add("lines");
              executeServerCommand(oapagecontext, oaapplicationmodule, "CheckoutLinesSvrCmd", deletearraylist);

    I timed these too and they appeared to completed very quickly. The only events that took a significant amount of time where the calls to the executeServerCommand when I copied and deleted lines.
    Can the database connection and looping the resultset be slowing these activities down?
    There is no VO existing that generates the query results I am looking for. Do I need to create my own VO?

  • I have set up mail but it has 37000 mails to load, obviously very old stuff but how do I get rid without loading and deleting, take days?

    I have set up mail but it has 37000 mails to load, obviously very old stuff but how do I get rid without loading and deleting, take days?

    Go under settings, mail, contacts and calendars and then choose only to sync back 50 or 100 or 1000 mails. Chances are you don't really need the old ones on your device and it'll save room (I have mine set to 50)

  • I got hacked and I lost $25 from a app, how do I get my money back and delete the app from my purchases?

    I got hacked and I lost $25 from a app, how do I get my money back and delete the app from my purchases?

    Click here and ask the iTunes Store staff for assistance.
    (103424)

  • Creating and deleting users using AM Client SDK

    Hi,
    I was wondering if anyone could tell me how to create and/or delete users from Access Manager from a standalone application using the AM Client SDK? From what I have read this can be done using the AMStoreConnection class but I can't find any examples on how to use this class to add and delete users. The only examples I have found is how to retrieve data from AM. I need to keep AM and the underlying directory server in sync with another identity datastore so I need to build a process in Java to do this. Any help is appreciated.
    Thanks
    -Jeff

    Lets assume we have a HR system and the user has got deleted in the system, the HR system drop a CSV file to a specified location with the details of the user to be deleted from the IDM system . Now the CSV GTC connector would need to read the record and delete the user .
    This can be done , I have done this using API calls , but i assume that there would be someway of doing this using the OOB GTC .I think we need to set the correct value for the status field to do this ..
    I am not sure what status to set.

  • Defining event handlers for renaming, moving, copying and deleting of files.

    Hi every one.
    I had created a tool for InDesign CS6 written using Javascript to manipulate portions of text in nested way by marking them with small non-printing small anchored text frames contains sequenced numbers and storing these portions as snippets in a spicific folder beside the InDesign documents.
    This tool is open source and free of charge, the only this that I want from you (after downloading) as a user to feedback and as a developer to improve it and join me.
    sourceforge.net/projects/livesnippets
    My question is not about this but I want to trace when the user rename, move, copy or delete a file of these snippets or any container folder and interact according to that by reserving the links between snippet files and their instances which interspersed in InDesign documents.
    Thanks.

    Here is an example of using Bridge events… What this scrript will do if you add it to Bridge scripts… is set *all* indesign snippets in the folders you browse to… to be locked/readonly… This means that users will get an extra dialog if they want to delete the file… Finder or Bridge… You can't just rename the file Finder or Bridge… and Bridge's Batch Rename will only function if the user makes copies to new location… You could set this property using the File Object with indesign…
    #target bridge
    onDocLoaded = function( event ) {
        if ( event.object instanceof Document && event.type == 'loaded' ) {
            lockIDSnippets();
            return { handled: true };
    function lockIDSnippets() {
        var i, count, doc, thum;
        doc = app.document;
        count = doc.visibleThumbnailsLength;
        for ( var i = 0; i < count; i++ ) {
            thum = doc.visibleThumbnails[i];
            if ( /\.idms/.test( thum.spec.name ) ) {
                thum.spec.readonly = true;
    // Register event handler
    app.eventHandlers.push( { handler: onDocLoaded } );

  • I have new HP 1050.It prints perfectly but shows a broad 2 inch band while copying and scanning.

    What could be the problem????Is there an HP helpline available locally in Mumbai???
    HP1050 shws a 2 inch black band while scanning and copying!!!!It's brand new!!HELP 

    Alas, it really didn't help out all that much. I think I was in a "reality distortion field" moment there. But the "fix" really doesn't speed it up at all -- I will said that under your Printer Settings if you just change it to "Fast Draft" quality, that seems make the process go quicker. Right now too much information is being sent to the printer that is basically white noise and the stuff that needs to get processed ends up in a bottleneck somewhere along the line.
    This is ridiculous! Granted, I know that relations between you-know-who aren't that great, but for goodness sakes, I've had two Epson printers that have gone kaput on me in the past four years (ink printer heads dried up) and I may as well shoot myself in the foot to go out and buy another one those pieces of junk!
    Please fix this problem hp, Apple.

  • Copy and delete using FM - HR_INFOTYPE_OPERATION..

    Hi All,
    I would like to copy the record and delete the record using the FM - HR_INFOTYPE_OPERATION..
    Scenario : For Example IT 0010
    Existing Record
    BEGDA                      ENDDA
    01.01.2005     30.09.2007
    I would like to copy the records with new begda - 01.10.2007, this is working fine and I am doing the commit work after FM - HR_INFOTYPE_OPERATION with Action COPY.. After this I have put a break point and cross checked theire are two records in IT 0010
    BEGDA                      ENDDA
    01.01.2005     30.09.2007
    01.10.2007     31.12.9999
    After this again I am using HR_READ_INFOTYPE with BEGDA and ENDDA as 01.10.2007, I was expecting the latest record that begda with 01.10.2007 but I am getting the old record that 01.01.2005 and 31.12.2007….!! When I cross check using PA20/PA0010 It shows two records but when I use HR_READ_INFOTYPE it still access the old records…!!, how do we overcome this , for me I need to record with begda 01.10.2007 and endda 31.12.9999 so that I can delete it…!!
    Please suggest..
    Regards,
    Mangalagi S V

    Dear Suresh,
    Thanks for the suggestion., it's worked..!!
    Regards,
    Mangalagi S V

  • Getting error while trying to delete columns from form designer

    I Am trying to make last name a mandatory field.
    AD was not getting provisioned for users that i created.The system validation task was not getting completed.WHen i tried to save the process form it was showing that last name was a mandatory field.So i figured it out that my process form was not getting populated.
    i was trying to delete last name from the form version.But it was throwing an error code= DOBJ.SDC_CANNOT_DELETE_SRE_ENTRIES_EXIST
    So i am trying to create a new version of a form and delete some columns.But when im doing it it shows the following error :
    ERROR,15 Dec 2008 18:03:20,073,[XELLERATE.SERVER],Class/Method: tcSDC/hasPrePopulatedEntries Error :Sdk cannot drop, SRE entries Exist.
    Could you help as to how i can resolve this.

    You cannot delete a column, but you can hide it ;)
    In your case, you may follow these steps:
    1) Create a new form version.
    2) Go to the "Properties" tab in the form editor.
    3) Delete the "Required=true" property for the "Last Name" field.
    4) Add a new property to the "Last Name" field: select "Visbile Field" in the "Property Name" combo-box, and add "false" to the "Property Value". Save.
    5) Activate your version.
    Think again about hidding the "Last Name", because I think it's a mandatory value for AD user creation (i.e., AD won't let you create users if they don't have Last Name set). However, I'm not sure.
    Hope this help!

  • Getting rid of copied and pasted artwork

    Yesterday my copy of the new Pearl Jam album arrived and included in the package was 2 free concerts to download, which I have done. All installed OK and I have managed to get them showing in my iTunes library.
    Now, not being proper releases there was no iTunes artwork for the albums however PJ did release both shows as official bootlegs a few years ago so there is artwork out there which I found using Google images. I promptly copied and pasted the artwork into iTunes.
    Only on one of them I mistakenly pasted the wrong artwork and now I can't get rid of it. "Clear downloaded album artwork" doesn't work. Now I have made this mistake many times with CD's I have copied and solved the problem by deleting the songs from the library and deleting the files altogether and re-copying but in this case I can't delete the files as I won't get them back again (being one-time free downloads). I have deleted the tracks from the iTunes library and re-added the files but the artwork re-appears again as if it has somehow welded itself to the files. Does anyone know how I can get rid of it so I can get the correct artwork on there?

    Adware
    1. Use  free  AdwareMedic to remove adware
        http://www.adwaremedic.com/index.php
       Install , open,  and run it by clicking “Scan for Adware” button   to remove adware.
       Once done, quit AdwareMedic.
                 or
       Remove the adware manually by following the “HowTo” from Apple.
       http://support.apple.com/en-us/HT203987
    2. Safari > Preferences > Extensions
        Turn those off and relaunch Safari.
        Turn those on one by one and test.
    Malware
    http://www.thesafemac.com/mmg/
    Best.

  • List of newaly added and deleted users

    I am looking for the powershell script to get the list of users which are added and deleted with in last 1 day from user profile service application. I do have SharePoint 2010
    Santosh sethi

    Hi Inderjeet, Thanks for the information, sorry steps metioned in above link didn't help me too much.
    I know the information of number of profiles deleted and added after each sync can be viewed through
    miisclient.exe , but not sure how to get the data with out open it in explorer view
    Santosh sethi

Maybe you are looking for