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

Similar Messages

  • 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 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 to delete a Customer in its SALES AREA?

    Hi All,
    I've deleted a Customer by t.code OBR2. But it exists again in its SALES AREA.
    Could anyone tell me how to delete it in the sales area too?
    Thanks

    Hi Gandalf,
    not possible.
    Note 725857 provides some reference coding for your own program.
    Regards,
    Joosz

  • How to delete a custom field created in Address Book template?

    It is possible to create a new custom field name in any of the pop-up field categories in the preferences template for Address Book.
    But, once created, there does not seem to be a way to delete or edit the newly created custom field name. That doesn't make sense.
    Tell me that I am wrong, and then tell me how to delete or edit a custom field name. Thanks!!

    Thanks Pascal, I can change the viewed template field areas as you have described. My problem was with modification of the pop-up list entries: adding, deleting, and renaming user created custom field entries. I have since figured out how Address Book allows these functions; unfortunately, that specific information is not present in the Address Book help file.

  • 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 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).

  • How to delete old custom workspaces?

    How can I delete some old custom workspaces I never use any more?

    Duh! Well, that was a dumb question, eh??  Ever look at something so long you just don't see it?

  • How to delete the customer include in an infotype

    hi to all experts,
    i have created a ci include in an infotype . i want to delete the fields in that CI Include
    Edited by: mohammed  abdul hai on Apr 13, 2009 11:58 AM

    If you want to delete all fields of the customer include do the following:
    - SE11
    - mark 'Data Type'
    - put in the name of your customer include (e.g. CI_P0491)
    - click on the delete button
    - you'll get a warning, that this include is still used and that all dependent tables will be regenerated
    - confirm
    - customer include is gone
    - In case you already added those fields to your infotype maintenance (PA30) through transaction 'PM01' you will get a dump when using PA30 for that infotype because it still tries to access the additional fields which do not exist in the dictionary any longer. You need to remove your custom fields from the infotype. Go to SM30 for table T582C and you'll find the custom includes that were generated. Just remove the entries for your infotype and you shouldn't get the dump any more.
    Hope that helps,
    Michael

  • How to delete a custom columns from a content-type in Sharepoint Client object model

    I have a windows interface where I create a content-type and then create a column and adds that column to the content-type.
    //availableCT is my content-type where the column is present.
    //get all available fields within this content-type
    FieldCollection fieldColl = availableCT.Fields;
    clientContext.Load(fieldColl);
    clientContext.ExecuteQuery();
    foreach (Field field in fieldColl)
    //columnFromList is the column that is to be deleted
    if (field.InternalName.Equals(columnFromList))
    field.DeleteObject();
    clientContext.ExecuteQuery(); // this throws an exception
    // Additional information: Site columns which are included in content types or on lists cannot be deleted. Please remove all instances of this site column prior to deleting it.

    hi,
    you can use the below code to delete it
    using (ClientContext sourceContext = new ClientContext(cmdSpoSite))
    Web web = sourceContext.Web;
    sourceContext.Load(web);
    sourceContext.Load(web.AvailableContentTypes, type => type.Include(c => c.FieldLinks, c => c.Name));
    sourceContext.ExecuteQuery();
    List<ContentType> ExistingContentType = web.AvailableContentTypes.ToList();
    IEnumerable<ContentType> contentTypesList = ExistingContentType.Where(ct => ct.Name == "<ContentTypeName>");
    ContentType ctype = contentTypesList.ElementAt(0);
    IQueryable<FieldLink> flinks = ctype.FieldLinks.Where(f => f.Name == "<FiledName");
    foreach (FieldLink flink in flinks)
    flink.DeleteObject();
    ctype.Update(true);
    sourceContext.ExecuteQuery();
    The difference being in your code and above code is you are removeing fileds which is eventually is deleting site column but a site column cannot be deleted if is alreday being used. So you need to deled the FieldLink in content type taht way column is removed
    from content type but not from site column.
    Now if you want to delete site column you can use your code to deleted Field.
    Whenever you see a reply and if you think is helpful,Vote As Helpful! And whenever you see a reply being an answer to the question of the thread, click Mark As Answer

  • How do I delete a custom date (in addressbook) with applescript

    I can't figure out how to delete a custom date for a contact.  I've worked with addresses and emails, phone numbers, but this one eludes me.
    I want the script to go through all my contacts and delete every custom date whose label is "Mail Received"
    I've searched and found a few people who had problems deleting custom dates, but I can't find an answer...
    Thanks,

    Hi,
    Delete a custom date  doesn't work,  it's a bug.
    Setting the value of the custom date to "missing value" works here (Mac OS X 10.5.8), but this generates an error (error : AppleEvent handler failed), I use a try block
    Try this script
    tell application "Address Book"
         repeat with theseDates in (get custom dates of people whose its label = "Mail Received")
              repeat with thisDate in theseDates
                   try
                        set value of thisDate to missing value
                   end try
              end repeat
         end repeat
         save
    end tell

  • How to clear the custom tags in the phonebook?

    some time create a label on the agenda of the phone contacts, your name is "profile", but now I want to delete because it is no longer useful, but not how to delete this custom tag.
    I want to know how can i delete this custom tag?

    Hi,
    We need to use FREE statement.
    please do this way:
    For
    form exit_program .
      call method cc1->free.
      call method cc2->free.
      call method cc3->free.
      call method cc4->free.
      call method cl_gui_cfw=>flush.
      if sy-subrc <> 0.
        call function 'POPUP_TO_INFORM'
          exporting
            titel = lv_repid
            txt1  = 'Error in Flush'(500)
            txt2  = sy-subrc.
      endif.
    endform.                    " exit_program
    module user_command_0100 input.
      case sy-ucomm.
        when 'BACK'.
          perform exit_program.
          set screen '0'.
        when 'EXIT' or 'CANC'.
          perform exit_program.
          leave program.
      endcase.
    endmodule.                 " USER_COMMAND_0100  INPUT
    thanx.

  • How to delete all objects for one user from SE80

    Hi all,
    If i want to delete the customer objects defined in the customer space Y or Z from SE80. Object of one user is defined in one package, if i want to delete the pakcage it says, it contain the subobject. So can anybody help me how to delete the customer objects from SE80.
    Your response will be highly rewared.
    Tahnks,
    Salahuddin.

    hi
    good
    i think here you want to delege the development class, if you want to delete the particular development class you have to go for se09 where after selecting the particular development class you can select the delete button.
    thanks
    mrutyun

  • Deleting the custom package from system

    Hello All,
    I have created a custom package and added few custom programs.
    I  have deleted the custom program first, they were deleted successfully.
    At last I try to delete the custom package, I am getting a message as "The package still contains subobjects".
    But actual all the objects related to package were deleted.
    Please let me know how to delete the custom package completely from the system?
    Thanks,
    Feroz.

    or I think you may remove the package (and its lock) from the transport request, delete the object directory entry of the package (SM30 TADIR), then you can delete the package. Or vice versa (I don't remember exactly).

  • The Firefox spell checker has the option for me to add custom words to the dicionary. Please tell me how to delete a word from this file of custom words because a mispelled word got in there by mistake.

    I want to know how to delete words from the custom dictionary in the spell checker that I put there by mistake.

    In your profile directory, the file is '''persdict.dat''' and you should know how to get to your profile. One way is to enter '''about:support''' in the location bar then click on "Open Containing Folder". Or go through the Help menu > Troubleshooting Information > ...
    You can edit with wordpad, or notepad++, but not with notepad,
    because there is one word per line and you will not see that in notepad after Firefox has updated it.&nbsp; Update after closing Firefox.
    I will have to change my Spell Check documentation to not suggest notepad
    :http://dmcritchie.mvps.org/firefox/tab_capacity/001_with_underscore.htm#spellcheck

Maybe you are looking for

  • What are the best settings to convert .mts files to Prores

    Hi friends, Trying to figure out some settings. I am a novice editor so please forgive lame terminology in advance: I have footage shot on a Canon Vixia HF M500. I am editing in Premiere Pro CC on a MAC with OS 10 Mavericks. I tried editing directly

  • How to get customer consignm orders (type of cat item KBN) updates LIS

    Good morning, we have an issue with this type of sales orders, we are trying to update an not standard info structure (created by us) but we have found that this type of category item is not relevant foe info structure updating (it has Statistics gro

  • Time warner

    has anyone gotten correct settings to get the sb6141 motorola and Airport Extreme Base station tower to work for Time Warner Cable?  I am not a network administrator...nor do I want to be .  I just want my family connected to wifi, play music, enjoy

  • Should I clean install when MBP arrives?

    Hello everyone. I know that there have been several posts that touch on this subject, but I havent found one dedicated to it. My MBP should arrive this week or the next and I have been reading a lot about people formatting the hard drive and then doi

  • PI 7.1 Installation on MSCS Cluster

    Hi Sapers,                      I'm In the middle of Installation of PI 7.1 on MSCS Cluster                      My Problem is while Installing In Node A I have chosen for Host Agent and SAPOSCOL a Shared Drive(G:) which                      Should a