How can delete Material & Customer?

Dear Guru
I have A, B, & C Material, i dont want C material in list, how can i delet the unused material and customer master record?
regards
Mohammed Renu
[email protected]

Mohammed,
You cannot delete the material from material master until archiving. To archive the material master, first goto transaction MM71.
Archiving Material Master:
Transaction SARA contains all the SAP archiving objects for all the SAP R/3 applications modules. All the SAP archive functions are shown in SARA. Choose the corresponding SAP archive object, hit enter and the archive administration menu will be shown. Provided here will be an example on how to archive the SAP Material Master.
Archive a Material Master Record
When a material is no longer required in a company or plant, you can archive and delete the material master record.
You have to Flag the material master record for deletion. This is known as logical deletion.
Before a material master record can be archived and deleted, other objects (such as purchasing documents) that refer to this material must themselves be archived. You can see which objects these are and the dependencies between them in the network graphic.
If a material master record cannot be archived and deleted at a given organizational level, the reason is given in the log (for example, a purchase order exists for the material). The log also contains technical data such as the number of material master records read and the number deleted.
Some of the archive error log message :-
Costing data exists
Use in routing
Use in sales and distribution
Use in bill of material
Delivery exists
Costing data exists
Info record exists
Purchase order exists
The Archiving steps :-
Archiving object MM_MATNR for archiving material master records.
You can display the archived data, but not reload it.
To archive the material master, first goto transaction MM71.
Type in a variant name and click Maintain. (Tick the Test Mode for archive simulation).

Similar Messages

  • How to delete a customer in R/3 beside vd06?

    Hi
      how to delete a customer in R/3 besides vd06.
      vd06 marks it for deletion though i can create a
       sales order with a warning.
    Regards,
    Abhimanyu.L

    Hi
    The only way is to archive the customer. If the requirement is to prevent the customer from being used then try VD05 and block the customer.Another alternative is to write code in the user exit mv45afzb and check if the customer is marked for deletion then give an error message
    Reward if this helps
    Thanks

  • How to delete a custom format in Numbers 3

    I am one of the poor unfortunates that has upgraded to Numbers 3 BIG mistake!!
    However does anyone know how to delete a custom format in Numbers 3?
    I'm not sure where the custom format came from in the erlier version of numbers. I guess I must have created it for something, I can't remember what.
    It now appaers that when I send a Numbers 3 document via email to an Excel format  it adds a weird custom format that turns currency into garbage. Once in Excel simply going to format cells and deleting this odd format cures the problem.
    If I could find a way of deleting it in Numbers 3, hopefully the problem will go away.
    This is far from the only problem I'm having with Numbers 3. It's begining to look like I'll have to abandon Numbers 3 having had to go to the expense of buying a new iPad because Numbers 3 documents (and presumably Pages Keynote etc) no longer work on the original iPad.

    I never promote the method the deletion unless you understand the underlying tables of planning, if you search on the forum you will see posts on the subject just like this one - Delete dimension from planning application
    Cheers
    John
    http://john-goodwin.blogspot.com/

  • How to delete a customer complete from R/3

    Hi
        How can i delete a customer from R/3 complete.
        VD06 transaction only marks for deletion.
        I am able to create sales order after marking
        customer for deletion.
        I want to remove customer completely from the System
    Regards,
    Abhimanyu.L

    Hi
    You can delete a customer from database only if:
    - it runs archiving tools (for customer): here all customer setted to be deleted will be delete from database really;
    - it runs report SAPF019 (it's better to set the checkbox "Delete per deletion flag only"), I've never run it.
    Max

  • How can delete my account from the adobe cloud

    how can delete my account from the adobe cloud
    I would like to unregister myself from the service

    Hi mehranr34543413,
    Please Contact Customer Care. A Customer Care agent can help you with that request.
    Best,
    Sara

  • How can we define custom error page in protal application

    How can we define custom error page in protal application, like we define "jsp Error page " in JSPs

    Hi,
    Check these:
    Customization of Portal Runtime Errors and portal standard error codes
    http://help.sap.com/saphelp_nw04/helpdata/en/9a/e74d426332bd30e10000000a155106/frameset.htm
    http://help.sap.com/saphelp_nw04/helpdata/en/ec/1273b2c413b2449e554eb7b910bce7/frameset.htm
    Regards,
    Praveen Gudapati

  • How can we use Custom MessageBox in SelectionChangedEvent of LongListSelector for Windows Phone 8

    Dear Sir/Madam,
    How can we use Custom MessageBox in SelectionChangedEvent of LongListSelector for Windows Phone 8.
    Actually my problem is that When i am using Custom  MessageBox in SelectionChangedEvent of LongListSelector,when i am click Open(Left Button) it's working fine and navigated correctly,But when i am Click the No(Right Button) then it stayed in same page
    but all that page is in stuckup i mean that page is not working and not doing any event.
    My C#.net Code
    private async void userPageLongListSelector_SelectionChanged(object sender, SelectionChangedEventArgs e)
    if (e.AddedItems.Count > 0)
    if (userPageLongListSelector.SelectedItem == null)
    return;
    if (dbTenMin == null)
    dbTenMin = new Database(ApplicationData.Current.LocalFolder, "tenMInDBSchema.db");
    await dbTenMin.OpenAsync();
    var res = (sender as LongListSelector).SelectedItem as _10Min._10MinClass.minUserPages;
    var resIndex = (sender as LongListSelector).ItemsSource.IndexOf(userPageLongListSelector.SelectedItem);
    string selectedPageName = res.userPages.ToString();
    string selectedPageDesignUser = res.pageDesignUser.ToString();
    int selectedIndex = resIndex;
    CustomMessageBox messageBox = new CustomMessageBox()
    Caption = "Message...!",
    Message = "This form need offline datalist,Please load now.",
    LeftButtonContent = "Open",
    RightButtonContent = "No"
    messageBox.Dismissed += (s1, e1) =>
    switch (e1.Result)
    case CustomMessageBoxResult.LeftButton:
    string uidAndpwd = _10MinClass._10MinStaticClass.csUidAndPwd.ToString();
    _10MinClass._10MinStaticClass.csDataListPageDetails = selectedPageDataDetailsForSchema.ToString();
    _10MinClass._10MinStaticClass.csAllDataLists = offlineDataBaseDataListNam;
    _10MinClass._10MinStaticClass.csNotCreatedSchemaNameOfDBList = notCreatedDataLists;
    userPageLongListSelector.SelectedItem = null;
    if (dbTenMin != null)
    dbTenMin.Dispose();
    dbTenMin = null;
    NavigationService.Navigate(new Uri("/10MinformDataList.xaml", UriKind.Relative));
    else
    NavigationService.Navigate(new Uri("/10MinformDataList.xaml", UriKind.Relative));
    break;
    case CustomMessageBoxResult.RightButton:
    break;
    case CustomMessageBoxResult.None:
    break;
    default:
    break;
    messageBox.Show();
    Same custom messagebox code working in Phone_BackKeyPress event i am writing the code in Right Button that e.OriginalSource.ToString(); then it is working fine.
    But It is not working in Selection Changed Event in LongListSelector control in Windows Phone 8.
    Please help me,as soon as possible.
    Thanks & Regards,
    SrinivaaS.

    What happens if you leave the implementation for LeftButton empty as well , does the page gets stuck in that case also, if you press left button?
    i.e.
    CustomMessageBox messageBox = new CustomMessageBox()
    Caption = "Message...!",
    Message = "This form need offline datalist,Please load now.",
    LeftButtonContent = "Open",
    RightButtonContent = "No"
    messageBox.Dismissed += (s1, e1) =>
    switch (e1.Result)
    case CustomMessageBoxResult.LeftButton:
    break;
    case CustomMessageBoxResult.RightButton:
    break;
    case CustomMessageBoxResult.None:
    break;
    default:
    break;
    messageBox.Show();
    http://developer.nokia.com/community/wiki/Using_Crypto%2B%2B_library_with_Windows_Phone_8

  • How can i add custom attributes to a new Class Object using the API ?

    Hello everyone,
    Here is my problem. I just created a subclass of Document using the API (not XML), by creating a ClassObjectDefinition and a ClassObject. Here is the code :
    // doc is an instance of Document
    ClassObject co = doc.getClassObject();
    ClassObjectDefinition cod = new ClassObjectDefinition(ifsSession);
    cod.setSuperclass(co);
    cod.setSuperclassName(co.getName());
    cod.setName("MYDocument");
    ClassObject c = (ClassObject)ifsSession.createSchemaObject(cod);
    Everything seems to be OK since i can see the new class when i use ifsmgr. But my question is : how can i add custom attributes to this new class ? Here is what i tried :
    AttributeDefinition value = new AttributeDefinition(ifsSession);
    value.setAttribute("FOO", AttributeValue.newAttributeValue("bar"));
    c.addAttribute(value);
    But i got the following error message :
    oracle.ifs.common.IfsException: IFS-30002: Unable to create new LibraryObject
    java.sql.SQLException: ORA-01400: impossible d'insirer NULL dans ("IFSSYS"."ODM_ATTRIBUTE"."DATATYPE")
    oracle.ifs.server.S_LibraryObjectData oracle.ifs.beans.LibrarySession.DMNewSchemaObject(oracle.ifs.server.S_LibraryObjectDefinition)
    oracle.ifs.beans.SchemaObject oracle.ifs.beans.LibrarySession.NewSchemaObject(oracle.ifs.beans.SchemaObjectDefinition)
    oracle.ifs.beans.SchemaObject oracle.ifs.beans.LibrarySession.createSchemaObject(oracle.ifs.beans.SchemaObjectDefinition)
    void fr.sword.ifs.GestionDocument.IFSDocument.createDocument(java.lang.String)
    void fr.sword.ifs.GestionDocument.IFSDocument.main(java.lang.String[])
    So, what am i doing wrong ?
    More generally, are we restricted in the types of the attributes ? (for example, would it be possible to add an attribute that would be an inputStream ? Or an object that i have already created ?).
    Any help would be appreciated. Thanks in advance.
    Guillaume
    PS : i'm using Oracle iFS 1.1.9 on NT4 SP6 and Oracle 8.1.7
    null

    Hi Guillaume,
    you're welcome. Don't know exactly, but assume that ATTRIBUTEDATATYPE_UNKNOWN
    is used to check for erronous cases only
    and it shouldn't be used otherwise.
    Creating your own objects could be simply done via
    ClassObject ifsClassObject;
    DocumentDefinition ifsDocDef = new DocumentDefinition(ifsSession);
    // get class object for my very own document
    ifsClassObject = ClassObject.getClassObjectFromLabel(ifsSession, "MYDOCUMENT");
    // set the class for the document i'd like to create
    ifsDocDef.setClassObject(ifsClassObject);
    // set attributes and content for the document...
    ifsDocDef.setAttribute("MYFOO_ATTRIBUTE",....);
    ifsDocDef.setContent("This is the content of my document");
    // create the document...
    PublicObject doc = ifsSession.createPublicObject(ifsDocDef);
    null

  • How to delete a custom dimension in planning - 9.3.1

    Hi
    some one please let me know how to delete a custom dimension in planning
    Thanks

    I never promote the method the deletion unless you understand the underlying tables of planning, if you search on the forum you will see posts on the subject just like this one - Delete dimension from planning application
    Cheers
    John
    http://john-goodwin.blogspot.com/

  • How can delete his backup safety and totally?

    My friends and I share a same time capsule ( 4th gen, 2TB), so if one day he leaves, how can delete his backup safety and totally?

    Thank you for your nice recommandation of this aritle.
    The reason I ask this question is becasue someome has a trouble when they want to delete the buckup directly to trash. They just can not clear the trash bin which make their Time Capsule capability still occupied by the trash file.
    And the aritle says we can delete the backup by Finder directly. Just confused.

  • How can delete?

    Hi, i have a lot of projects in http://<server>:<port>/webdynpro/welcome  how can delete anything? If i delete in the developer studio, the project continuos in http://<server>:<port>/webdynpro/welcome
    Thanks,

    Hi
    Choose either of the follwing methods
    <b>I >></b>Use
    Use this procedure to undeploy J2EE applications from a J2EE Engine.
    Prerequisites
    A J2EE application must be deployed already. You must also connect to the server where the J2EE application is.
    Procedure
    1. Choose the Deployer tab.
    2. From the menu, choose Deploy ® Deployment ® Undeploy. A dialog box appears with a list of all deployed applications on the server to which you are connected.
    3. Check the names of all applications you want to undeploy. You can choose Select Alland Deselect All.
    4. Click OK to undeploy them.
    5. The status bar displays a message about the result.
    <b>II >></b>
    Use
    You can use the undeployment function to remove installed applications from the J2EE Engine.
    Prerequisites
    Your J2EE Engine contains SDAs of applications that you can select to be undeployed.
    You can only undeploy applications that do not have dependencies on other SDAs.
    Activities
    On the left screen, select the SDAs that you want to remove from the J2EE Engine or file system, and choose Select SDA for Undeployment to move them to the window SDAs Selected for Undeployment.
    The SDM checks for any dependencies that the selected SDAs have. If the SDM does not find any dependencies, it releases the SDA for undeployment.
    Choose Start Undeployment.
    The SDM removes the selected SDAs from the J2EE Engine or file system.
    <b>3 >></b></u>
    You can also refer to
    1 . http://help.sap.com/saphelp_nw04/helpdata/en/28/2c3c1bf823204c8370bfacbe54133b/frameset.htm
    2 . http://help.sap.com/saphelp_nw04/helpdata/en/f4/6c9962da317549a05919ce926b5196/frameset.htm
    3 . https://www.sdn.sap.com/irj/sdn/go/portal/prtroot/docs/library/uuid/0076e60d-0d01-0010-dc99-a614d5deff4c
    Regards
    Abhijith YS

  • How can delete all contacts

    pls help me to find how can delete all contacts ,,  because i forget my restriction password

        baprawski,
    Is there a particular reason why you want to delete the contacts all at once? The only way you can delete all the contacts all one time would be to wipe the device. This will complete erase all data on the phone including the contacts.
    You want to make sure you backup your device uisng the desktop manager. Once you perform the wipe you can then backup your contacts using the desktop manager and just make sure to uncheck the Contacts when backing up so they are not added back to your phone.
    John B
    Follow us on Twitter @VZWSupport

  • How can delete the serve.bannersdontwork virus from Safari on Mac?

    Hello @all,
    How can delete the serve.bannersdontwork virus from Safari on Mac?
    About every 8-20 clicks Safari opens a webside named serve.bannersdontwork.
    I can not remove this with my Avira antivirus programm.
    Can anybody help me?
    THX
    Hallo an alle,
    Ich habe mir einen Virus eingefangen, serve.bannersdontwork, auf Safari.
    Alle 8-20 clicks öffnet sich diese Seite "serve.bannersdontwork" und leitet mich auf andere weiter.
    Über mein Antivirusprogramm Avira konnte ich den Virus nicht beheben.
    Auch die erweiterung AdBlock hilf hier nicht weiter.
    Wer weiß, oder hat eine Ahnung, wie man diesen Virus wieder los wird?
    Danke schonmal im voraus!!

    From the Safari menu bar, select
    Safari ▹ Preferences ▹ Extensions
    Turn all extensions OFF and test. If the problem is resolved, turn extensions back ON and then disable them one or a few at a time until you find the culprit.
    If you wish, you may be able to salvage the errant extension by uninstalling and reinstalling it. Its settings will revert to their defaults. If the extension still causes a problem, remove it permanently or refer to its developer for support.

  • How can delete my iphone5 data from the date its restored?

    how can delete my iphone5 data from the date its restored?

    it's unclear what you mean
    if you wish to remove your iphone5 data you connect it to iTunes on the computer and click the restore button and choose restore to factory defect

  • How can delete zoosk

    how can delete zoosk account on itunes

    From the  More Like This  section on the right.
    https://discussions.apple.com/message/19356312#19356312

Maybe you are looking for