Sort and Delete adjucent...

Hello Every one,
Small query.....in the following code am unable to sort table and delete adjucent
please give me the solution for following code.
Here the itab should be in sort order with out entering duplicates this code is correct but output is not correct.
Please check it out....i want 10,20,30,40,50
TYPES: begin of WA ,
        a type i,
        b type i,
      end of WA.
DATA : ITAB1 TYPE STANDARD TABLE OF WA ."OCCURS 0 WITH HEADER LINE.
DATA ITAB TYPE WA.
itab-a = 10.
itab-b = 10.
append ITAB TO itab1.
itab-a = 10.
itab-b = 10.
append ITAB TO itab1.
itab-a = 20.
itab-b = 20.
append ITAB TO itab1.
itab-a = 50.
itab-b = 50.
append ITAB TO itab1.
itab-a = 50.
itab-b = 50.
append ITAB TO itab1.
itab-a = 20.
itab-b = 20.
append ITAB TO itab1.
itab-a = 40.
itab-b = 40.
append ITAB TO itab1.
itab-a = 40.
itab-b = 40.
append ITAB TO itab1.
itab-a = 30.
itab-b = 30.
append ITAB TO itab1.
itab-a = 30.
itab-b = 30.
append ITAB TO itab1.
sort itab1 BY A B.
loop at itab1 INTO ITAB.
delete adjacent duplicates from itab1.
write:/ itab-a, itab-b.

hi
NO NEED TO PUT LOOP AND ENDLOOP
YOUR SORTING THE INTERNAL TABLE AND THEN DIRECTLY USE DELETE STATEMENT AND THEN USE LOOP AT FOR OUTPUT
*& Report  ZNNR_NNR2
REPORT  ZNNR_NNR2.
TYPES: begin of WA ,
a type i,
b type i,
end of WA.
DATA : ITAB1 TYPE STANDARD TABLE OF WA ."OCCURS 0 WITH HEADER LINE.
DATA ITAB TYPE WA.
itab-a = 10.
itab-b = 10.
append ITAB TO itab1.
itab-a = 10.
itab-b = 10.
append ITAB TO itab1.
itab-a = 20.
itab-b = 20.
append ITAB TO itab1.
itab-a = 50.
itab-b = 50.
append ITAB TO itab1.
itab-a = 50.
itab-b = 50.
append ITAB TO itab1.
itab-a = 20.
itab-b = 20.
append ITAB TO itab1.
itab-a = 40.
itab-b = 40.
append ITAB TO itab1.
itab-a = 40.
itab-b = 40.
append ITAB TO itab1.
itab-a = 30.
itab-b = 30.
append ITAB TO itab1.
itab-a = 30.
itab-b = 30.
append ITAB TO itab1.
sort itab1 BY A B.
delete adjacent duplicates from itab1.
loop at itab1 INTO ITAB.
write:/ itab-a, itab-b.
ENDLOOP.

Similar Messages

  • Hi my question is how can I sort and delete photo files which I have had backed up multiple times? Another way how can I get rid of from the duplicate?

    Hi my question is how can I sort and delete photo files which I have had backed up multiple times? Another way how can I get rid of from the duplicate?

    Provide the name of the program you are using so a Moderator may move this message to the correct program forum
    The Cloud is not a program, it is a delivery process... a program would be Photoshop or InDesign or Muse or ???

  • Do you know of a simple way of sorting and deleting duplicate photos on  aperture

    Hi , Do you know of a simple way of sorting and then deleting duplicate photos on Apeture.
    Thanks Phil

    There is no simple way. The best strategy really is to take care not to import duplicates.
    What is your Aperture 3 version?
    What kind of duplicates are you asking about? 
    If you imported exactly the same file multiple times, sorting your images in the Finder by filename or creation date will display them side by side.
    If you have diferently sized versions of the same image, edited versions, or versions converted to a different format, then sorting by creation date will not help; you might try to sort by capture date, but that may fail, if there were different imezone settings when you imported the images.
    You could also sort be filename, if you did not rename the images on import.
    If you renamed your versions, adjusted the date, modified the file properties by writing to the original files, try to sort by other tages - faces, location, keywords.
    There are some helper applications to scan your Aperture library and tag duplicates: (I have not really tested any of them)
    Duplicate Annihilator (Mac) - Download  good to detect accidentally imported thumbnails
    http://photosweeper.en.softonic.com/mac  : This app can actually detect edited duplicates based on statistic measures and histogram similarity.
    Duplicate Cleaner for iPhoto - free

  • Radix sort and deletions

    Strange problem here (but YAY it compiles G)...and I think it's in the delete method but I am not a hundred percent sure...
    I have a linked list that hold 5 pieces (word, date, orig, pos, def) of data per each linked list line. I also have a vector list that just holds the word itself for all entries into the dictionary. So, the theory is that I should be able to do a radixSort (or any other sort) on the vector and take what the vector returns and create a new list from the old linked list. Does that make sense?
    My list (from a text file) looks sort of like this...
    chereba;verb;to dance;05/02;jon smith;
    semrka;verb;to speak;03/01;jim jones;
    chersl;verb;to laugh;02/01;nancy doe;
    And when I run the print command in the main menu, I get this...
    Chapter c
    chersl (verb) to laugh 02/01
    nancy doe.
    chersl (verb) to laugh 02/01
    nancy doe.
    chersl (verb) to laugh 02/01
    nancy doe.
    Chapter s
    semrka (verb) to speak 03/01
    jim jones.
    chereba (verb) to dance 05/02
    jon smith.
    I think the problem is with the remove method...I don't think that it is doing what it is supposed to do...but I could be way off my rocker and totally missing what the real problem is. Can someone please take a look at this and shove me in the right direction?
    import java.util.Vector;
    public class neverishDictionary
        private Node head;
        public neverishDictionary()
             head = null;
        //begin inner node class
        private class Node
             private String word, pos, def, date, org;
             private Node next;
             public Node(String word1, String pos1, String def1, String date1, String org1)
             //1st constructor
                word = word1;
                pos = pos1;
                def = def1;
                date = date1;
                org = org1;
                next = null;
            public Node(String word1, String pos1, String def1, String date1, String org1, Node nextNode)
            //2nd constructor
                word = word1;
                pos = pos1;
                def = def1;
                date = date1;
                org = org1;
                next = nextNode;
            public String getWord()
                return word;
            public String getPos()
                return pos;
            public String getDef()
                return def;
            public String getDate()
                return date;
            public String getOrg()
                return org;
            public void setNext(Node nextNode)
                next = nextNode;
            public Node getNext()
                return next;
       }//ends the inner class
       public boolean isEmpty()
            return head == null;
       public void addList(String newWord, String newPos, String newDef, String newDate, String newOrg)
            Node curr;
            Node prev;
            Node newNode = new Node (newWord, newPos, newDef, newDate, newOrg);
            if(isEmpty())
                newNode.setNext(head);
                head=newNode;
            else
                newNode.setNext(head);
                head=newNode;
      /*      else
                prev = head;
                curr = head;
                while (curr != null)
                  if (newWord.compareTo(curr.getWord())<0)
                      prev.setNext(newNode);
                      newNode.setNext(curr);
                      break;
                   else
                       prev = curr;
                       curr = curr.getNext();
                       if (curr == null)
                           prev.setNext(newNode);
       public void remove(String temp)
            Node prev = head;
            Node curr = head;
            int x = 0;
            while (curr != null)
            if (curr.getWord().equals(temp) && curr == head)
                      String resultWord = curr.getWord();
                      String resultPos = curr.getPos();
                      String resultDef = curr.getDef();
                      String resultDate = curr.getDate();
                      String resultOrg = curr.getOrg();
                      head = curr.getNext();
            else 
                   if (x == 0)
                      temp = curr.getWord();
                      curr = curr.getNext();
                  else if(curr.getWord().equals(temp))
                String resultWord = curr.getWord();
                      String resultPos = curr.getPos();
                      String resultDef = curr.getDef();
                      String resultDate = curr.getDate();
                      String resultOrg = curr.getOrg();
                      curr = curr.getNext();
                else
                     curr=curr.getNext();
                x++;
      public Vector radixSort(Vector vlist)
       final int NUMCHARS = 128;
      // +----------------+------------------------------------------
      // | Public Methods |
      // +----------------+
       * Sort stuff (a vector of strings) alphabetically.
        // Set up the result vector.
        Vector result = (Vector) vlist.clone();
        // Set up the buckets.
        Vector[] buckets = new Vector[NUMCHARS]; 
        for (int i = 0; i < NUMCHARS; i++) {
          buckets[i] = new Vector();
        // Determine the number of strings.
        int numStrings = vlist.size();
        // Find the length of the longest string
        int len = 0;
        for (int i = 0; i < numStrings; i++) {
          String str = (String) result.get(i);
          if (str.length() > len) len = str.length();
        } // for
        // Step through the positions from right to left, shoving into
        // buckets and then reading out again
        for (int pos = len-1; pos >=0; pos--) {
          // Put each string into the appropriate bucket
          for (int i = 0; i < numStrings; i++) {
            String str = (String) result.get(i);
            int bucketnum;
            // If the string is too short, shove it at the beginning
            if (str.length() <= pos)
              bucketnum = 0;
            else
              bucketnum = str.charAt(pos);
            buckets[bucketnum].add(str);
          // Read it back out again, clearing the buckets as we go.
          result.clear();
          for (int i = 0; i < NUMCHARS; i++) {
            result.addAll(buckets);
    buckets[i].clear();
    } // for(i)
    } // for(pos)
    putitback (result);//put the vector into the list
    // That's it, we're done.
    return result;
    } // sort
    //method to pull out the string in the vector, add the other date in it
    //and throw it back onto the list in correct sorted order.
         public void putitback(Vector result)
              String temp = " ";
              Node prev = null;
         Node curr = head;
              for (int x = 0; x < result.size(); x++)
                   temp = result.remove(x).toString();
                   if (curr.getWord().equals(temp));
                   String word = curr.getWord();
                   String pos = curr.getPos();
                   String def = curr.getDef();
                   String date = curr.getDate();
                   String org = curr.getOrg();
                   remove(temp);
                   addList(word, pos, def, date, org);
    public void displayAll()
    //radixSort(vlist);
    Node prev = head;
    Node curr = head;
    String blah = " ";
    while (curr != null)
    if (blah.compareTo(curr.getWord().substring(0,1)) < 0)
         blah = curr.getWord().substring(0,1);
         System.out.println("\nChapter " + curr.getWord().substring(0,1));
    System.out.println(curr.getWord() + " (" + curr.getPos() + ") " + curr.getDef() + " " + curr.getDate());
    System.out.println(" " + curr.getOrg() + ".");
    prev = curr;
    curr = curr.getNext();

    Why not implement the Comparable interface (int compareTo(Object) method) and let the Arrays.sort function handle the sorting?

  • Sorting and deleting in SQ01..plz reply soon

    Hi all,
    i am developing ABAP query through transactions SQ01, SQ02 and SQ03.
    first i went to SQ03 then to SQ02 and then to SQ01.
    When i am going to SQ01, i want to sort the output based on one field.
    It shown there that if you want to sort on the basis of any field, drag that field to the main window.
    But i am not able to drag the field.
    And i want to sort in decending order and i want only the first record in the output, the remaining should get deleted.
    Can anyone help me out with this.
    Thanks in advance,
    Sonali

    Veerendra,
    If I remember correctly, simplest way is to put the applet ".class" file in the same directory (on the Web server) as the HTML page that contains the "applet" tag.
    I guess, when you click on a link, you can go to another HTML page containing the applet -- although I don't remember ever doing anything like this myself.
    Good Luck,
    Avi.

  • How do I see, organise and delete unsorted bookmarks? I am using Firefox 3.6.6 on a Mac with OS X 10.5.8

    How do I see, sort and delete unsorted bookmarks in Firefox 3.6.6? Using Mac OS X 10.5.8. All bookmarks not in folders already seem to be in a lump called unsorted bookmarks in the Library but I can't open this to see them. I have deleted some from the bookmarks menu via the blue star it does not work with sites without an icon. pls help

    I have this same problem. I want the ability to remove links from the unsorted bookmarks or the entire category altogether.
    If there is no resolution, I could delete all Firefox files after saving my important bookmarks to Safari then come back and reload Firefox.
    Why Mozilla does not take this concern whole heartily I do not know.
    I have seen complaint about this dating back over two years.

  • How to search and delete an email from the mailbox

    hi,
    have a hybrid scenario, exchange 2013 and office 365
    what command should I use to search and delete an email from the organization mailbox i.e. I do not want that email to be in any users inbox.
    I have tried this command but it does not work, it says search-mailbox is not recognized as the name of the command let.
    Get-Mailbox -ResultSize unlimited | Search-Mailbox -SearchQuery 'Subject:"Download this file"' -DeleteContent
    kindly assist.
    Kind Regards, Khuzema R.

    Hi Khuzema
    This can be accomplished by search-mailbox command
    First you need to create a new role group
    To Create –  New-RoleGroup “Mailbox Import-Export Management” -Roles “Mailbox Import Export”
    Then add the user to the group
    To Add user – Add-RoleGroupMember “Mailbox Import-Export Management” -Member Administrator
    Search the mailbox
    get-mailbox -ResultSize unlimited -IgnoreDefaultScope | search-mailbox -SearchQuery ‘Subject:”virus infected”’ -LogOnly -TargetMailbox administrator -TargetFolder filter -LogLevel Full
    Now we need to run the below command to search the infected emails and delete all of them in the whole organization
    get-mailbox -ResultSize unlimited -IgnoreDefaultScope | search-mailbox -SearchQuery ‘Subject:”virus infected”’ -TargetMailbox administrator -TargetFolder filter -deletecontent -LogLevel Full
    Also you can do a message tracking with the subject and delete them
    Get-ExchangeServer | where {$_.isHubTransportServer -eq $true -or $_.isMailboxServer -eq $true} | Get-MessageTrackingLog -Messagesubject “Virus Infected” | Select-Object Timestamp,ServerHostname,ClientHostname,Source,EventId,Recipients
    | Sort-Object -Property Timestamp
    I have written a blog with regards to the same. You can always refer this which might mostly  help you in your scenario
    http://exchangequery.com/2014/10/16/steps-to-delete-circulated-suspicious-emails-with-search-mailbox/
    Thanks 
    Remember to mark as helpful if you find my contribution useful or as an answer if it does answer your question.That will encourage me - and others - to take time out to help you Check out my latest blog posts on http://exchangequery.com Thanks Sathish
    (MVP)

  • My hard driver is apparently full - but it is full of "other" files.  I have cleared downloads and removed my music and pictures, but it still thinks it is full - how do I access and delete the files?

    I am having real trouble with the mac book air and i dont know what to do.  It thinks it is full, i get warning messages every day, but when i check how the storage is being used it is 45.79 GB of "other" and I can't work out where to locate and delete these files.  I have removed all my music and pictures, there are nearly no documents on the bloody thing, i have cleared the downloads, I have run a cc cleaner programme but nothing seems to touch this "other" amount.  Its so annoying as it is getting to a point where i can't use the computer properly anymore.  Do you have any clue what it could be or how i can deal with it?
    It did this last year but not as bad, i never solved it then i just removed all my own files but now "other" is taking that space too.  On a windows computer you would be able to click through and view what was taking up the space but you can't seem to do that on a mac. could it be a virus that makes the hard driver think it is full?
    Any ideas what I can do?

    For information about the Other category in the Storage display, see this support article.
    Empty the Trash if you haven't already done so. If you use iPhoto, empty its internal Trash first:
    iPhoto ▹ Empty Trash
    Do the same in other applications, such as Aperture, that have an internal Trash feature. Then reboot. That will temporarily free up some space.
    According to Apple documentation, you need at least 9 GB of available space on the startup volume (as shown in the Finder Info window) for normal operation. You also need enough space left over to allow for growth of the data. There is little or no performance advantage to having more available space than the minimum Apple recommends. Available storage space that you'll never use is wasted space.
    When Time Machine backs up a portable Mac, some of the free space will be used to make local snapshots, which are backup copies of recently deleted files. The space occupied by local snapshots is reported as available by the Finder, and should be considered as such. In the Storage display of System Information, local snapshots are shown asBackups. The snapshots are automatically deleted when they expire or when free space falls below a certain level. You ordinarily don't need to, and should not, delete local snapshots yourself. If you followed bad advice to disable local snapshots by running a shell command, you may have ended up with a lot of data in the Other category. Reboot and it should go away.
    See this support article for some simple ways to free up storage space.
    You can more effectively use a tool such as OmniDiskSweeper (ODS) to explore the volume and find out what's taking up the space. You can also 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.
    Deleting files inside an iPhoto or Aperture library will corrupt the library. Any changes to a photo library must be made from within the application that created it. The same goes for Mail files.
    Proceed further only if the problem isn't solved by the above steps.
    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.
    If you have more than one user account, make sure you're logged in as an administrator. The administrator account is the one that was created automatically when you first set up the computer.
    Install ODS in the Applications folder as usual. Quit it if it's running.
    Triple-click anywhere in the line of text below on this page to select it, then copy the selected text to the Clipboard by pressing the key combination command-C:
    sudo /Applications/OmniDiskSweeper.app/Contents/MacOS/OmniDiskSweeper
    Launch the built-in 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 to be careful. If you see a message that your username "is not in the sudoers file," then you're not logged in as an administrator.
    The application window will open, eventually showing all files in all folders, sorted by size with the largest at the top. It may take a few minutes for ODS to finish scanning.
    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 in doubt, leave it alone or ask for guidance.
    When you're done with ODS, quit it and also quit Terminal.

  • I want to delete my duplicate songs, but I have thousands of songs and cannot realistically go through and review and delete them one at a time.  Can I do it all at once?

    I want to delete my duplicate songs, but I have thousands of songs and cannot realistically go through and review and delete them one at a time.  Can I do it all at once?

    Apple's official advice is here... HT2905 - How to find and remove duplicate items in your iTunes library. It is a manual process and the article fails to explain some of the potential pitfalls.
    Use Shift > View > Show Exact Duplicate Items to display duplicates as this is normally a more useful selection. You need to manually select all but one of each group to remove. Sorting the list by Date Added may make it easier to select the appropriate tracks, however this works best when performed immediately after the dupes have been created.  If you have multiple entries in iTunes connected to the same file on the hard drive then don't send to the recycle bin.
    Use my DeDuper script if you're not sure, don't want to do it by hand, or want to preserve ratings, play counts and playlist membership. See this thread for background and please take note of the warning to backup your library before deduping.
    (If you don't see the menu bar press ALT to show it temporarily or CTRL+B to keep it displayed)
    tt2

  • How can i find and delete duplicate emails on my mac

    I use Apple Mail, Gmail and a third party email on my few Apple devices (iMac and Macbook Air both running Mavericks and iPhone 4s running current version iOS). 
    I would like to sort through, locate and delete duplicate emails (from several misguided approaches to Rules, Mailboxes, Smart Mailboxes, etc.)

    Hi,
    Presuming the Post is about the Messages app and iMessages.
    If you delete them they are gone or the Mac.
    An iMessages arrives  and is displayed in the App.
    there is a setting in the Preferences > General section about Saving on Close.
    The iMessages are also stored in the chat.db items (unless deleted) and this provides the "history" when you reconnect to a contact who is not currently on display in the main window.
    In Mavericks Saved Chats and the chat.db items (there are three in total) are held in different places.
    The app does not work like Mail where the emails can be left on the Server and "read" by other devices.
    The iMessages are pushed to the devices that then accepts them.
    After that the "sync" function ends (What you do with the iMessages on one device is not seen or changed on another)
    9:54 pm      Friday; October 31, 2014
    ​  iMac 2.5Ghz i5 2011 (Mavericks 10.9)
     G4/1GhzDual MDD (Leopard 10.5.8)
     MacBookPro 2Gb (Snow Leopard 10.6.8)
     Mac OS X (10.6.8),
     Couple of iPhones and an iPad

  • How can I select and delete rows based on the value in one column?

    I searched through the discussion board, and found a thread on deleting blank rows, but not sure how to modify it to work with my issue.
    I have put together a rather complicated spreadsheet for designing control systems, it calculates parts needed based on check boxes selected in a second spreadsheet.
    Since not all systems require all parts there are many rows that have a 0 quantity value, I would like to select these rows and delete them once I have gone through the design phase (checking off required features on a separate sheet).
    I like the way the other thread I found will gather all the blank rows at the bottom without changing the order of the rows with data in them.
    I don't understand exactly how the formula in the other thread works well enough to modify it to look for a certain column.
    I hope I made myself clear enough here, to recap, I would like to sort the rows based on a zero value in one (quantity) column, move them (the zero quantity rows) to the bottom of the sheet, and then delete the rows with a zero quantity (I can delete them manually, but would like to automate the sorting part).
    Thanks for any help anyone can provide here.
    Danny

    I apologize but, as far as I know, Numbers wasn't designed by Ian Flemming.
    There is no "this column will be auto-destructing after two minutes"
    You will have to use your fingers to delete it.
    I wish to add a last comment :
    if your boss has the bad habit to look over your shoulder, it's time to find an other one.
    As I am really pig headed, it's what I did. I became my own boss so nobody looked over my shoulder.
    Yvan KOENIG (VALLAURIS, France) mercredi 13 juillet 2011 20:30:25
    iMac 21”5, i7, 2.8 GHz, 4 Gbytes, 1 Tbytes, mac OS X 10.6.8
    Please : Search for questions similar to your own before submitting them to the community
    To be the AW6 successor, iWork MUST integrate a TRUE DB, not a list organizer !

  • My iPad is downloading my video purchases automatically, but it's only downloading two episodes from Supernatural S10 that I have watched and deleted. I can't stop it from downloading, and I can't download anything else because of it. Help!

    My iPad is downloading my video purchases automatically, but it's only downloading two episodes from Supernatural S10 that I have watched and deleted. I can't stop it from downloading, and I can't download anything else because of it. I don't know what to do. There is some sort of glitch happening and it's really affecting my iPad. I've tried letting it download but before it completes, it says it is unable to complete process and asks me to try again. I am on a limited interest data plan and can't afford these downloads to continue. What can I do?

    Have you tried deleting the App within the Settings menu (rather than from the Home Screen)?
    Settings>General>Usage>
    From the Apps list, find the App (press "Show all Apps" if the app is not in the immediately shown list), tap on the app you wish to delete, then tap "Delete App"

  • How to sort and filter all images when using stacks?

    I have a project where all images are arranged in stacks. I have also gone through and given each image a rating or rejected it. Now I want to sort out and display only a certain selection of images, i.e. rejected images for deletion or four star images etc. But the selection filter only seems to work on the stack pick. Can I change this so that the filter works on all images, even if they are part of an open stack? If not, how could I else single out all the rejected ones and delete them? I don't want to break the stacks.

    The only current way to do this is via Smart Albums, as there is a checkbox at the bottom of the settings HUD: 'Ignore Stack Groupings'.
    Ian
    P.S. If you'd like to see this added to the regular search HUD (I know I would), please leave feedback at http://www.apple.com/feedback/aperture.html

  • How do I identify and delete duplicates from itunes?

    Try as I might I cant figure it out. Googling tells me nothing.

    FreshaliciousOne wrote:
    I understand that i can manually delete duplicates one by one. Is there a way to automate the process? I have an extensive library that is full of duplicates.
    The problem you may face with pursuing automated approaches is that the dupicate check occurs on the basis of song title alone. Automating the removal would have it choosing between different versions of the same song - when you may actually want both since they aren't true duplicates.
    Examples:
    One is "unplugged" and the other is electric
    One is the studio version and the other is live
    One is the original version and the other is remastered
    One approach to delte multiple ones is to change the sort to being a manner that makes true duplicates more evident. (Album by artist, or date, date added, or whatever makes sense for your library.)
    Then you could paint multiple ones and delete them at once. (Select the first one, hold the shift key, then select the last one that you want to delete. Then press the delete or backspace key)
    You will likely have to do this more than once, but it should/may reduce the amount of manual actions while avoiding the concern of songs misperceived as duplicate being deleted.

  • Automatic blocking and deletion flag for temporary unblocked vendors/custom

    Hi All,
    Can you please help me IS there any Standard Reports for the Follwing,
    *"automatic blocking and deletion flag for temporary unblocked vendors/customers in Master Finance SAP machines"*.
    Please reply me as soon as possibly.
    Thanks & Regards,
    Pavithranad.
    Moderator message: please research before asking, do not assign higher urgency than normal.
    Edited by: Thomas Zloch on Mar 3, 2011 2:43 PM

    In XK06, flagging Vendor for deletion, I get warning "vendor xxxxx has open items in company code xxxx". Does this mean open Invoice Items, pending payment in FI? Since this is just warning I can hit enter and go ahead and save.
    - YES YOU ARE RIGHT. IT CAN ALSO INCLUDE OPEN PO.
    But, I can come back to XK06 and UNflag this same vendor for deletion? How would it affect the open items/POs...etc?
    - THAT'S WHY THE MESSAGE IS AN WARNING AND NOT AN ERROR. (My Opinion)
    Does basis has to do some sort of execution in order to actually delete the vendor master from the database? Would basis get a error when there are pending open items for vendors flagged for deletion?
    - NOT RECOMMENDED. ANY DATA CAN BE DELETED THOUGH. IF YOU ARE ON ECC 5.0 OR ABOVE AND USING SE16N TO DELETE, YOU WILL NOT GET AN ERROR.
    What's the advantage of using XK05 (blocking/unblocking) over XK06 (flagging/unflagging for deletion)?
    - NOT SURE IF THERE IS ANY ADVANTAGE.

Maybe you are looking for

  • Enable/disable problem with button on table toolbar

    Hello *, In my WD (ABAP) application, on a view I have a table, a toolbar within it and buttons on the toolbar. I am trying to control 'enable' property of one button, binding it to an attribute in view's context. When I do this trick just for any bu

  • Adobe Media Encoder CS5.5 (5.5.1) update available

    The Adobe Media Encoder CS5.5 (5.5.1) update is available. This update fixes a few major bugs. After you've installed the update, let us know how it works for you.

  • Not Able  to Compile Java code

    Hi Java Gurus I am not able to compile this code Pl help class For { public static void main (String [] args) { int I = 0; show:      if (I < 2) { System.out.print("I is " + I); I++; continue show; }

  • JDBC receiver and sender concern

    Hello, In one of the sender JDBC communication channel we have below queries, 1) Sender comm channel select * from table1 where flag = ' '   update table1 set flag ='X' where flag = ' '  We are setting the flag to X to identify which entries are read

  • How can I reset security questions. What is a rescue email.

    How can uI reset security questions. What is a rescue email.?