Tp command for deleting old transport reqsts

could you please  tell me the exact tp command for deleting the old transport request and its logs and buffers. I read many docs but not getting the exact one.

Hi Stephen,
Take a look at note 41732.
Basically, there are 3 steps:
1- Add (or verify) these parameters at your TP_DOMAIN_<SID>.PFL:
datalifetime=30
loglifetime=60
olddatalifetime=60
cofilelifetime=30
The values are in "days". Change it at your convenience.
2- run "tp check all pf=/<path>/TP_DOMAIN_<SID>.PFL"
This command just creates a list of files to delete at /usr/sap/trans/tmp/.
3- run "tp clearold all pf=/<path>/TP_DOMAIN_<SID>.PFL"
And this deletes all the files from the list.
Best Regards,
JC Llanes.

Similar Messages

  • The correct way to delete old transport request record ?

    Dear all,
    We want to delete old transport request record before 2008 (two years before) of our system.
    We learn that we should delete the records in the below two path:
    /usr/sap/trans/data
    /usr/sap/trans/cofiles
    Our target is that we will not see the old record after deleting in our PRD system.
    Normally, we see the transport request record in system by this way:
    STMS -->  import overview --> PRD --> Import Queue   system PRD --> Import history
    Our question is do we need to restart our system after delete the record to refresh the Import history?
    We have not delete the record now.
    Any experienced or expert, please kindly give advice.
    Regards,
    Allen

    Hello Allen,
    there are some notes and documentations for this process. Deleting the files from /cofiles and /data will not erase the request from the import history, as you already know.
    You should follow note #41732 to have the requests/data completely deleted from your system. There is a lot of complementary reading in notes #7224, #556734, #189841, etc.
    Note that you can remove the request from the import queue, import history, data and cofiles subdirectory, but still have it on the <SID> buffer (located in  /usr/sap/trans/buffer/<SID>). If this happens to you, please save a copy of the buffer file <SID>, then create a new, blank file named <SID> at a time when the import queue is empty (VERY IMPORTANT). Or, alternatively, please excute the tp cleanbuffer FIL command (which will erase the requests that are not found in /data and /cofiles directories).
    --> Please test this first on a test system, not directly on a productive environment.
    This should be enough to delete old transport requests on your system.
    Best regards,
    Tomas Black

  • SQL Command for deleting T-Code for roles

    Hi Experts
    I want to delete the transaction from the role name by using SQL Command in MS-SQL Server  instead of going to /npfcg -> zwa_xyz (role name for user) and transaction code is CR01,CR01,CA01 Etc.,
    I have so many transaction code which is taking time to delete one by one.
    So is there any SQL Statement to delete the t-code for that rolename
    Delete from tablename where t-code=xyz and rolename in ('zwa_xyz',zwa_123')
    regards

    Hey,
    SAP does not support executing update/insert/delete SQLs on their tables,
    (the only SQL they support are select, and updates that they publish in their official site, such as notes in service.sap.com/notes)
    is is probably due to the fact that sap contains about 30,000 of table,
    and sometimes SAP uses cluster tables (which are difficult to handle in DB)
    in addition, each and every SP adds/remove table or changes existing tables.
    For example, you probably don't know that changing rule, would
    create a change document (cluster table - CDHDR, CDPOS and etc),
    If you want, it is very easy to get the full list of the table (and the sql) that are updated
    (as I mentioned before, it is not recommended to run this sql, because it is not supported!!!)
    just run transaction ST05 while deleting transaction from role,
    when you display the list, press shift+F8 (or summerized trace from the menu),
    and they search (Ctrl+F) the words: update or insert or delete.
    You can use standard API such as BAPIs (such as BAPI_USER_*)/IDOCs(such as USERCHANGE),
    and execute them from the portal and any other place (even in EXCEL or OS->meaning command line).
    Here more information on executing RFCs:
    1. in order to execute an RFC from excel, you should install SAP gui on the client that would execute the RFCs to the SAP, and you would have to write VBA code.
    2. in order to execute an RFC from command line, this is a little bit more difficult,
    sap provide RFC sdk (in service.sap.com/SWDC)
    3. in order to execute an RFC from .net you can use the .net connector,
    more information is here:
    NW RFC SDK - is there a guide somewhere?
    4. You can also, execute an RFC using Web service,
    by creating web-service from the RFC in SE37.
    I guess It will take more time to develop this they just executing the SQL.
    If you need more information in executing an RFC,
    please decide which option is your favorite,
    and I would add information...

  • Deleting old events

    I imported a lot of old events from Palm Desktop and want to delete everything more than a year old. But ical won't let me change the default for deleting old events from "more than 30 days" which is much too short a period for me.
    I am losing NEW events when I sync and think maybe the file size is too large.

    Jane,
    Although I have not used it, but you may find http://www.busymac.com/utils/icalarchiver.htmliCal Archiver useful.
    ;~)

  • UI command to delete file.

    hi,
    i want to have a command for deleting a file .. it should be a button beside every resource which is being displayed in the KM folder (/documents/kumar).
    i have seen https://www.sdn.sap.com/irj/servlet/prt/portal/prtroot/com.sap.km.cm.docs/library/kmc/Knowledge%20Management%20and%20Collaboration%20Developers%20Guide.html >> COMMANDS and tried the URL redirect thing..
    i have created a UI COmmand in KM and included that in the DetailsGroup_test (which i included in my layoutset_test for a navigation iView) but i don't see it..
    code is as follows (same as given in the above link):
    public class MyUICommand extends AbstractCommand {
          * redirecting to a URL
         public MyUICommand() {
              super("myButtonTextKey", "myTooltipTextKey");
         public ICommand getNewInstance() {
              return this.initNewInstance(new MyUICommand());
         public IRenderingEvent execute(IScreenflowData arg0) throws WcmException {
              return null;
         public String[] getTargetParameters() throws WcmException {
              return new String[0];
         public void setTargetParameters(List list, IResourceContext context)
              throws WcmException {
         public boolean isExecutable() {
              return true;
         /*** Prevents an event being fired.* The execute method will not be called.*/
         public boolean raisesEvent() {
              return false;
         /*** Causes a redirect to the specified URL* in the specified target frame.*/
         public LinkAttributes getLinkAttributes() {
              return new LinkAttributes("http://www.sap.com", "_blank");
    i have also duplicated 'Commands for details menu' in Layoutset >>> MyGroup_new >> MyUICommand_alias
    plz help. points assured
    regards
    kumar.

    i tried to use the SDN example:
    https://www.sdn.sap.com/irj/servlet/prt/portal/prtroot/com.sap.km.cm.docs/documents/a1-8-4/implementing flexible ui one-step-screenflow.article
    and i am getting ClassCastException:
    [code] Please wait
    Your request is being processed
    System Error
    An exception occurred during the program execution. Below you will find technical information pertaining to this exception that you might want to forward to your system administrator.
    Exception Class: 
    Call Stack java.lang.ClassCastException
            at com.sapportals.wcm.control.generic.WcmErrorControl.readInputData(WcmErrorControl.java:553)
            at com.sapportals.wdf.stack.Control.triggerInput(Control.java:473)
            at com.sapportals.wdf.WdfEventDispatcher.dispatch(WdfEventDispatcher.java:173)
            at com.sapportals.wdf.WdfCompositeController.onWdfEvent(WdfCompositeController.java:539)
            at sun.reflect.GeneratedMethodAccessor563.invoke(Unknown Source)
            at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
            at java.lang.reflect.Method.invoke(Method.java:324)
            at com.sapportals.htmlb.page.DynPage.doProcessCompositeEvent(DynPage.java:204)
            at com.sapportals.htmlb.page.DynPage.doProcessCurrentEvent(DynPage.java:142)
            at com.sapportals.htmlb.page.PageProcessor.handleRequest(PageProcessor.java:115)
            at com.sapportals.portal.htmlb.page.PageProcessorComponent.doContent(PageProcessorComponent.java:134)
            at com.sapportals.wcm.portal.component.base.ControllerComponent.doContent(ControllerComponent.java:73)
            at com.sapportals.portal.prt.component.AbstractPortalComponent.serviceDeprecated(AbstractPortalComponent.java:209)
            at com.sapportals.portal.prt.component.AbstractPortalComponent.service(AbstractPortalComponent.java:114)
            at com.sapportals.portal.prt.core.PortalRequestManager.callPortalComponent(PortalRequestManager.java:328)
            at com.sapportals.portal.prt.core.PortalRequestManager.dispatchRequest(PortalRequestManager.java:136)
            at com.sapportals.portal.prt.core.PortalRequestManager.dispatchRequest(PortalRequestManager.java:189)
            at com.sapportals.portal.prt.component.PortalComponentResponse.include(PortalComponentResponse.java:215)
            at com.sapportals.portal.prt.pom.PortalNode.service(PortalNode.java:646)
            at com.sapportals.portal.prt.core.PortalRequestManager.callPortalComponent(PortalRequestManager.java:328)
            at com.sapportals.portal.prt.core.PortalRequestManager.dispatchRequest(PortalRequestManager.java:136)
            at com.sapportals.portal.prt.core.PortalRequestManager.dispatchRequest(PortalRequestManager.java:189)
            at com.sapportals.portal.prt.core.PortalRequestManager.runRequestCycle(PortalRequestManager.java:753)
            at com.sapportals.portal.prt.connection.ServletConnection.handleRequest(ServletConnection.java:240)
            at com.sapportals.portal.prt.dispatcher.Dispatcher$doService.run(Dispatcher.java:522)
            at java.security.AccessController.doPrivileged(Native Method)
            at com.sapportals.portal.prt.dispatcher.Dispatcher.service(Dispatcher.java:405)
            at javax.servlet.http.HttpServlet.service(HttpServlet.java:853)
            at com.sap.engine.services.servlets_jsp.server.HttpHandlerImpl.runServlet(HttpHandlerImpl.java:390)
            at com.sap.engine.services.servlets_jsp.server.HttpHandlerImpl.handleRequest(HttpHandlerImpl.java:264)
            at com.sap.engine.services.httpserver.server.RequestAnalizer.startServlet(RequestAnalizer.java:347)
            at com.sap.engine.services.httpserver.server.RequestAnalizer.startServlet(RequestAnalizer.java:325)
            at com.sap.engine.services.httpserver.server.RequestAnalizer.invokeWebContainer(RequestAnalizer.java:887)
            at com.sap.engine.services.httpserver.server.RequestAnalizer.handle(RequestAnalizer.java:241)
            at com.sap.engine.services.httpserver.server.Client.handle(Client.java:92)
            at com.sap.engine.services.httpserver.server.Processor.request(Processor.java:148)
            at com.sap.engine.core.service630.context.cluster.session.ApplicationSessionMessageListener.process(ApplicationSessionMessageListener.java:33)
            at com.sap.engine.core.cluster.impl6.session.MessageRunner.run(MessageRunner.java:41)
            at com.sap.engine.core.thread.impl3.ActionObject.run(ActionObject.java:37)
            at java.security.AccessController.doPrivileged(Native Method)
            at com.sap.engine.core.thread.impl3.SingleThread.execute(SingleThread.java:100)
            at com.sap.engine.core.thread.impl3.SingleThread.run(SingleThread.java:170)[/code]        
    i added the lines-of-code which are in BOLD below
    [code]
    public IRenderingEvent execute(IResource res, Event event) throws WcmException {
              if (event instanceof ConfirmEvent) {
                   ConfirmEvent cce = (ConfirmEvent)event;
                   if (ConfirmEvent.CHOICE_YES.equals(cce.getChoice())) {
    <b>                    // do the action here ...
                        if(resource != null){
                               resource.delete();
                        } else {
                               return new RenderingEvent(
                               new CflStatusInfoEvent(StatusType.ERROR, "Resource null!"));
                        }</b>
                   return new InfoEvent(Status.OK, "Done !");
                   }     else if (ConfirmEvent.CHOICE_NO.equals(cce.getChoice())) {
                        return ConfirmComponent.onNo(event, res.getContext().getLocale());
                   } else if (ConfirmEvent.CHOICE_CANCEL.equals(cce.getChoice())) {
                        return ConfirmComponent.onCancel(event, res.getContext().getLocale());
              return new InfoEvent(Status.ABORT, "Aborted.");
    [/code]
    plz help..
    i am getting the menu in Details screen .. but, i should get the command in the KM folder beside every resource/file. .. how should i change it ..
    regards.

  • Delete old ADINT/TSM-Backups

    Hi everyone
    we use ADINT/TSM (adint2) to backup our 7.6 MaxDB database. It is possible to delete all backups (full and log) older then 60 days? I want to delete them from the backup history AND TSM. Can i use TSM commands to delete all data older then 60 days or must i work with MaxDB tools? Is there a cli-command to delete old backups?
    Thanks
    Thomas

    Hi Thomas,
    MaxDB does not provide functionality to delete backups from your backup system.
    This has to be done via the backup software you're using.
    There is also no built-in functionality to delete/purge the backup history (as it usually is no problem to have the records about old backups there.
    Anyhow, if you really like to shorten the backup history, I've described how to do this in sap note  1089402.
    regards,
    Lars

  • Software Update Server - Deleting old updates to make space for new ones

    On Page 77 of the SystemImage_and_SW_Updatev10.4.pdf Apple recommends "deleting old updates to make space for new ones". I've looked and searched and yet to find a way to do this. The Server Admin interface and the command line options I've looked into don't appear to provide this option.
    So I actually tried stopping the server, moving the updates from /usr/share/swupd/html to another location, starting the server, the server wouldn't start, moving the files back again, the server still won't start.
    1. Does anyone know how you're supposed to "Delete old updates to make space for new ones"
    2. Does anyone have any suggestions as to how to get Software Update service running again?
    Power Mac G5   Mac OS X (10.4.7)  

    Does this article contain anything useful?
    (16738)

  • Delete old value of primary key for an UPDATE LCR

    Hi,
    I have a transformation attached to a add_global_propagation_rules, this transformation modify the command_type of every LCR to be an INSERT instead of their original command.
    The old values are switched to new values array for the DELETE LCR. For the UPDATE, the old values are also removed, but when I try to remove the old value of the primary key column....the new values is also deleted!
    Is it normal ? I searched in the doc to see special behavior of the delete_column for the primary key, but I saw nothing.
    When the new value is delete, this line is executed :
    lv_lcr.delete_column(lv_col.column_name, 'old');
    Thanks.

    Hi Sean
    Thanks for you answer.
    Yes, I track the DML activities, but due to hardware restriction, we have to keep the load as possible on the server source.
    Here is the source of the transform function. In this version, for the UPDATE LCR, the PK are recreated.
    Thanks
    FUNCTION transform(lcr IN anydata)
    RETURN anydata
    IS
    lv_isProp NUMBER(1);
    lv_lcr SYS.Lcr$_Row_Record;
    lv_rc PLS_INTEGER;
    lv_cols SYS.LCR$_ROW_LIST;
    lv_cols_new SYS.LCR$_ROW_LIST;
    lv_cols_old SYS.LCR$_ROW_LIST;
    lv_col SYS.LCR$_ROW_UNIT;
    lv_dest gtr_destination_typ;
    lv_source gtr_sourceInfo_typ;
    lv_addCols gt_colInfList_typ;
    i NUMBER;
    r PLS_INTEGER;
    lv_isUPDATE BOOLEAN;
    lv_pkValues gt_value_by_colName;
    lv_next VARCHAR2(30);
    BEGIN
    -- Access the LCR
    lv_rc := lcr.GETOBJECT(lv_lcr);
    --get source
    lv_source := gv_sourceInfo(lv_lcr.get_object_owner||gv_connector||lv_lcr.get_source_database_name);
    --get destination
    lv_dest := lv_source.destination;
    --Loop through column to remove columns not propagated
    --when the action is a DELETE, use the array of OLD values
    IF lv_lcr.get_command_type = 'DELETE' THEN
    lv_cols := lv_lcr.get_values('old');
    --when the action is an INSERT or an UPDATE, use the array of NEW values
    ELSE
    lv_cols := lv_lcr.get_values('new', 'Y');
    END IF;
    FOR i IN lv_cols.FIRST..lv_cols.LAST LOOP
    lv_col := lv_cols(i);
    --get flag indicating the propagation type       
    lv_isProp := isColumnIsPropagated_fnc(lv_dest.destSchema,
    lv_dest.destDatabase,
    lv_lcr.get_object_name,
    lv_col.column_name);
    IF lv_isProp = gv_column_NOT_propagated THEN
    lv_lcr.delete_column(lv_col.column_name, '*');
    --if the command type is an UPDATE and the column is a PK, keep the value
    ELSIF lv_lcr.get_command_type = 'UPDATE' AND
    lv_isProp = gv_columnPK_propagated
    THEN
    lv_pkValues(lv_col.column_name) := lv_col.data;
    END IF;
    END LOOP;
    --swith the old_values array to the new_values array when it is a DELETE
    IF lv_lcr.get_command_type = 'DELETE' THEN
    lv_cols_old := lv_lcr.get_values('old');
    lv_lcr.set_values('new',lv_cols_old);
    END IF;
    -- remove the old values array
    lv_lcr.set_values('old', NULL);
    --when it's an UDPATE, the primary key column(s) needs to be recreated
    IF lv_lcr.get_command_type IN ('UPDATE') THEN
    lv_isUPDATE := TRUE;
    END IF;
    --convert the command_type to an INSERT
    IF lv_verbose = 1 THEN
    lv_msg := lv_msg||'Set command_type to INSERT; '||CHR(10);
    END IF;
    lv_lcr.set_command_type('INSERT');
    --when it's an UDPATE, the primary key column(s) needs to be recreated
    IF lv_isUPDATE = TRUE THEN
    lv_next := lv_pkValues.FIRST;
    WHILE lv_next IS NOT NULL LOOP
    lv_lcr.add_column('new', lv_next, lv_pkValues(lv_next));
    lv_next := lv_pkValues.NEXT(lv_next);
    END LOOP;
    END IF;
    --rename source database  and object owner for the destination
    lv_lcr.set_source_database_name(lv_dest.destDatabase);
    lv_lcr.set_object_owner(lv_dest.destSchema);
    RETURN ANYDATA.ConvertObject(lv_lcr);
    END transform;

  • I backup to an external hdd with Time Machine, when it ran out of space it did not delete old backups, now my internal hdd says its full when before it had heaps of space. I have searched for extra files but cant find any. Can anyone help, please.

    I backup to an external hdd with Time Machine, when it ran out of space it did not delete old backups, now my internal hdd says its full when before it had heaps of space. I have searched for extra files but cant find any. Can anyone help, please.

    First, empty the Trash if you haven't already done so. Then reboot. That will temporarily free up some space.
    To locate large files, you can use Spotlight as described here. That method may not find large folders that contain a lot of small files.
    You can also use a tool such as OmniDiskSweeper (ODS) to explore your volume and find out what's taking up the space. You can delete files with it, but don't do that unless you're sure that you know what you're deleting and that all data is safely backed up. That means you have multiple backups, not just one.
    Proceed further only if the problem hasn't been solved.
    ODS can't see the whole filesystem when you run it just by double-clicking; it only sees files that you have permission to read. To see everything, you have to run it as root.
    Back up all data now.
    Install ODS in the Applications folder as usual.
    Triple-click the line of text below to select it, then copy the selected text to the Clipboard (command-C):sudo /Applications/OmniDiskSweeper.app/Contents/MacOS/OmniDiskSweeper
    Launch the Terminal 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 Terminal in the icon grid.
    Paste into the Terminal window (command-V). You'll be prompted for your login password, which won't be displayed when you type it. You may get a one-time warning not to screw up. If you see a message that your username "is not in the sudoers file," then you're not logged in as an administrator.
    I don't recommend that you make a habit of doing this. Don't delete anything while running ODS as root. If something needs to be deleted, make sure you know what it is and how it got there, and then delete it by other, safer, means.
    When you're done with ODS, quit it and also quit Terminal.

  • Transportation lane for special procurement key is flagged for deletion

    we are on SCM 7.0 and ECC 5.0 and transportation lane records are automatically created for items with special procurement keys (SPK). When we change an SPK, the old record is automatically being locked and flagged for deletion. This is causing planned orders in the old lane to not be replanned. it is therefore incorrectly indicating that a requiremnt is being met by the old planned receipt.
    The documentation indicates that the lane should be locked (not locked and flagged for deletion). When it is locked, the orders are deleted and replanned in the new lane as expected.  Can someone tell me if the correct behavior is for it to just be locked or to set to flagged for deletion? if it is supposed to be flagged for deletion, how do we delete the planned orders in the old lane without switching the record back to locked only?

    Hello,
    Please follow on the SAP Help library:
    Automatic Creation of Transportation Lanes
    http://help.sap.com/saphelp_scm50/helpdata/EN/d4/56ef1a5572544081619 a5f87f4055e/content.htm
    Change of Supplying Plant in the Special Procurement Type
    In the SAP R/3 system, if you have changed the supplying plant in the special procurement type, the SAP APO system creates a new transportation lane for the new supplying plant (from special procurement type) and material/plant combination. The already existing transportation lane and now invalid combination between supplying plant and receiving plant in the R/3 system is locked for orders in the SAP APO system. This can be recognized by the lock indicator X that is set by the system.
    Removal of Special Procurement Type from the Material Master Record
    If you have removed the special procurement type from the material master record in the SAP R/3 system, the SAP APO system locks the already created transportation lane so that it cannot be used in orders.
    Hope it helps in this matter.
    The best regards,
    Michel Bohn

  • I have changed my apple id to a new one. I deleted the old email for the old apple id which is in yahoo. the new one is with gmail. I ahve changed the apple id on my phone. still theres a prompt always asking me to give my password for my old apple id.

    In my previous iphone i have created an apple id connected to my yahoo email which is also my icloud id obviously. I decided to delete my yahoo email and changed it to gmail. I have changed my apple id as well. Now here is my problem. I have iphone 5 now. im trying to restore all my data through i cloud. Considering i have changed my email apple id etc, the old apple id is still showing. I have changed it online and deleted the yahoo apple id. but still on my phone its asking for the password of my yahoo apple id which no longer exist. Its bugging me off as i went to apple store and they dont know what to do as well. i tried restoring everything to orginal setting but once i get to the icloud bit, its all the same. up to now its asking for the old apple id password. I dont know how i can delete that as theres no button to delete it on the phone. i cant even restore my photos.

    Welcome to the Apple Community.
    In order to change your Apple ID or password for your iCloud account on your iOS device, you need to delete the account from your iOS device first, then add it back using your updated details. (Settings > iCloud, scroll down and hit "Delete Account")

  • If I delete a backup icon for an old iPhone on my iPad will it delete all the photos saved from that phone in my iCloud??

    If I delete a backup icon for an old iPhone on my iPad will it delete all the photos saved from that phone in my iCloud??

    Welcome to the Apple Community.
    It won't affect any photos in photo stream but any photos within the back up itself will go.

  • TS5223 Updated to iOS8. I don't remember the password for my old Apple ID or the password for that e-mail. I can't delete the iCloud account without knowing it, although my iTunes and everything else is set to the new Apple ID and password. Help?!

    I keep getting pop-ups telling me to sign in to my iCloud and it's very annoying. I have no idea what the old password was, and I don't really have a way of changing the old password because I also don't know my password for the e-mail address connected to it (it kept telling me that the answers to my security questions were wrong, but I'm not sure what other answers they would have been). Therefore, I created an entirely new e-mail and a new Apple ID and everything else is set to that ID... except iCloud. Is there any way to correct this, or am I out of luck?

    If your device is signed into an old iCloud ID, and if it is an earlier version of your current ID*, do the following:
    Make sure you are signed into iMessage and FaceTime with your current ID.  If they are signed into the old ID, go to Settings>Messages>Send & Receive and Settings>FaceTime, tap the ID, sign out, then sign back in with your current ID.
    Then temporarily recreate the old ID by going to https://appleid.apple.com, click Manage my Apple ID and sign in with your current iCloud ID.  Click edit next to the primary email account, change it back to your old email address and save the change.  (You should not have to verify the old email account so it doesn’t matter if you no longer have access to it.)  Now go to Settings>iCloud, turn off Find My iDevice and enter your current password when prompted (even though it prompts you for the password for your old ID).  Then go to Settings>iCloud, tap Sign Out (or Delete Account if you are not running iOS 8) and choose Delete from My iDevice when prompted (your iCloud data will still be in iCloud).  Next, go back to https://appleid.apple.com and change your primary email address back to the way it was.  Now you can go to Settings>iCloud and sign back in with your current iCloud ID and password (your data will download back to your device).
    * If that's not the case, you'll have to contact the Apple account security team and ask for assistance resetting the password for the old ID: Apple ID: Contacting Apple for help with Apple ID account security.  You'll have to be able to prove your identity to them before they will do this.

  • How to delete old account, I can't log in due to - This email address is not available for use as an Apple ID. You may already have an Apple ID associated with this address. Please try again or sign in using your existing Apple ID.

    How to delete old account, I can't log in due to error - This email address is not available for use as an Apple ID. You may already have an Apple ID associated with this address. Please try again or sign in using your existing Apple ID.

    All good, I loved with AppStore and now everything seems to be back to normal.

  • I have changed my icloud email in my iphone but in macbook still using old email. I tried to delete the old email in macbook but it requires password and it does not accept the old password for the old email anymore. How do I remove this old email?

    I have changed my icloud email in my iphone but in macbook still using old email. I tried to delete the old email in macbook but it requires password and it does not accept the old password for the old email anymore. How do I remove this old email?

    Hello farahani hairon nizar,
    If your Apple ID was changed from your old account, you may have to change it back to your old account to be able to sign out and then change it back after that is done. Take a look at the article below for more information. 
    If you're asked for the password to your previous Apple ID when signing out of iCloud
    http://support.apple.com/en-us/HT203828
    Regards,
    -Norm G.  

Maybe you are looking for

  • How can I install CC on a new computer.

    i got a new computer and now i can't install the app manager.

  • Installing Patch 9.2.0.5: Weird "Stop Running Services" Screen

    Hi to all. I found this issue in several places, including this forum, but I never saw a working proposal for a satisfying solution. Installing Oracle Patch 9.2.0.5 over a 9.2.0.1-Installation on XP Pro, I was confronted with a "Stop Running Services

  • What is remit to vendor

    experts.. i need to pull the below data from LFA1 nad other tables. *Vendor ID number     Vendor Tax ID *Vendor name      Remit to address line 1      Attention line     Remit to vendor state *Address line 1     Remit to vendor zip code Address line

  • How to design an unclosable jfram?

    Thanks in advance! In one application, I'd create 3 jframes, jframe1 is the master, jframe2 and jframe3 are slaves. Slave windows should not be able to be closed by itself, they can be closed only by closing the master window, which ends up the whole

  • Error in account determination: table T030K key INT MWS O1

    Hi , I created billing document. now when i am posting to accounting. I am getting an error while posting  to accounting . " Error in account determination: table T030K key INT MWS O1 Please guide me. Rgds AKi