Report list duplicate customers

Is there a standard SAP way to check whether the customer database contains duplicate entries?
Customers has been created for a long time (9 years I guess) and we suspect that the database contains several double entries since there was no check at all. The total amount of customers is 230.000. The question is, is there a report with which we can analyse duplicate entries? I know there are some BADI 's which can be used for  third party solutions to check addresses but I think it should be available in standard SAP too and hope it is.
At this moment the customer has version 4.6C but will move next year to th latest version of SAP.
Thanks in advance.

G. Lakshmipathi,
Thanks for the fast respons, but this isn't the answer to the question. The customer database is already filled with double entries I need a report to determine which addresses are duplicated. Based on that list I will delete (archive) those customers from the database. At the same time we will take measures (regional codes, postal code checks and duplicate checks) to avoid double and faulty entries in the future.
So the question is, is there a report with which we can report duplicated entries?
Regards Kees

Similar Messages

  • Adding new row to the reports list page

    How can I add a new report row in the reports list of the reports tab.
    Ex: a new row to the report "users by Date of Join report" is to be added
    How can we add Please help me out in this

    I am facing the same problem!
    camickr wrote:
    Try adding an empty row containing a null value for the String instead of the empty String.camickr, it will not help, the DefaultRowSorter in the "*+compare(int model1, int model2)+*" method return -1 if the first value is null and 1 if the sacond value is null. and incase of DESCENDING it mult by -1.
                    // Treat nulls as < then non-null
                    if (v1 == null) {
                        if (v2 == null) {
                            result = 0;
                        } else {
                            result = -1;
                    } else if (v2 == null) {
                        result = 1;
                    } else {
                        result = sortComparators[counter].compare(v1, v2);
                    if (sortOrder == SortOrder.DESCENDING) {
                        result *= -1;
                    }And this is the real problem!
    The empty line is sorted as the smallest value and incase of DESCENDING it will be the first line (because of the mult by -1).
    We could have overide it and incase of the empty row(usualy the last row) do not mult by -1 in DESCENDING mode.
    But the problem is that the "+*compare*+" method and it's caller "*+Row+*" inner class are private :-(
    It is not wise to do it but we can do like kmp83 wrote:
    kmp83  wrote:
    copy/duplicate "private" code from DefaultRowSorter into my extended class.Anyone have another suggestion?

  • Monthly report listing out ALL open PO

    Hi,
    As our management requested, we need a monthly report listing out ALL open PO for CDG, APR   Someone tell me to input cost centre but it is time consuming to input it as we have over 100 cost centers.  Do you know if I can input SPG/profit center or other data to run this report instead ?  Please advise the transaction code and how to perform it, such as need to know the profit center #, organization code etc
    Thanks
    Raja

    hi
    go to ME2N
    then select Scope of list  ALV
    Selection parameters  as           WE101     Open goods receipt   (select as per ur need )
    then execute u will get the list for open po
    now if u want it to specify the  profit center then go to ME2N and select dynamic selecion  (shift +F4)
    now u will get a smaal scrren , in purchaseing doc item selct profit center
    now u can see the profit center selection field ,give a proper profit center and follow the process as given above
    hope it help
    regards
    kunal

  • Which table keeps the Discoverer Report list?

    Hi,
    I'm new to Discoverer, actually I haven't started to use yet.
    I would like to know is it possible to retrieve a list of reports created in Discoverer so that I can add them to the standard reports that I developed using Oracle Report builder in my application. If possible, which table can I get the report list?
    My second question, is it possible to run a Discoverer report directly if I have the report link? Or everytime I run I must enter the schema username and password?
    Please advise.
    Thank you.

    Hi
    With regards to question 1, I don't believe this is possible any more. The older versions were rather flexible in that approach but sadly, no more.
    With regards to question 2, using a VPD you can authenticate to your heart's content using any custom defined table you wish. This is just an out of the box idea, and I don't know whether it will work, but here goes.
    The table that stores public connections is this one: orasso.wwsso_psex_user_info$
    I am wondering what would happen if we put a restriction on SELECT from that table to not allow selection if the SSO user was not of a certain class or did not have a certain privilege.
    Would anyone else care to comment here?
    By the way, inside SQL, this code SYS_CONTEXT('USERENV', 'CLIENT_IDENTIFIER') will return the SSO user.
    For more info on public connections, look here: http://download-west.oracle.com/docs/html/B13918_03/conns.htm#i1016752
    Best wishes
    Michael

  • Unable to open reports listed in Workspace

    Hi All,
    I am using EPM 11.1.1.1.0 .
    I have created a few reports from the Financial Reporting Studio.
    And i have a user who has the "Administrator" provision for "Reporting and Analysis".
    When i log into workspace with this user id i get the "Explore" option and i can see the reports listed there but when i try to open it the following error pops up.
    Required application context reporting is not available. Please contact your administrator.
    I have checked my Financial Reporting Services and they are running fine.
    Regards.
    Alicia

    Hi Alicia,
    1. OK, then restart of services might help you .
    2. Try to restart FR services , and then do the restart of workspace application.
    Hope it works
    Sandeep Reddy Enti
    HCC
    http://hyperionconsultancy.com/

  • Reqd. T-code in which list of customers display with CIN Details

    Dear All,
    Is there any t-code in which the List of Customers with cin details Display?Like the MKVZ,
    this is the t-code for List of Vendors Display.
    Thanks,
    Sumit.

    Dear Sir,
    I have found another t-code VCUST  for customer detail but in this CIN DETAILS are not there.
    so pls. suggest something...
    Thanks,
    Sumit.

  • How many lines we can print using Non-alv report list ?

    Hi Experts,
    How many lines we can print using Non-alv report list ?
    regards
    vishnu

    Hi,
    It depends on the page size according to the page size we can set the no. of lines as follows,
    REPORT  program_name   NO STANDARD PAGE HEADING
    LINE-SIZE 290
    LINE-COUNT 65.
    Hope it helps you,
    Regards,
    Abhijit G. Borkar

  • SQL SELECT with GROUP BY: Retrieve records for a list of customers

    I need to write a SQL statement to retrieve a list of customers, which are in two tables of different natures, say T1 and T2.
    The customer is a FK in both tables. Both tables have a column which is the date of an order.
    INPUT:
    * list of customers, say '12345, 34567, 45678'
    OUTPUT
    * REF CURSOR to a recordset containing: {custID, startDate, endDate}
    Algorithm
    * For each customer, find the date of first order (from T1 and T2)
    * For that date, t0, startDate=t0-10 days; endDate := t0+15 days;
    I have a feeling some GROUP BY is involved to do the trick.
    Can it be done without any looping? I am just not experienced enough to solve this in an optimal way.
    Any help, please?
    Thank you.

    Hi,
    I'm not sure what your data is, or shat you want for output.
    If your tables can have many rows for the same customer_id, but your output should have only one row per customer_id, then it sounds like you do need to "GROUP BY custiomer_id".
    If the data is coming from two different tables, first do a UNION of those two tables in a sub-query (like union_data below), and then do a GROUP BY on the results of the sub-query.
    It will probably be more efficient if you GROUP BY in the sub-query, too.
    I believe you need something like this:
    WITH     union_data     AS
         SELECT       customer_id
         ,       MIN (order_date)     AS start_dt
         FROM       t1
         WHERE       customer_id     IN (12345, 34567, 45678)
         GROUP BY  customer_id
    UNION ALL
         SELECT       customer_id                    -- column names may be different from t1
         ,       MIN (order_date)     AS start_dt
         FROM       t2
         WHERE       customer_id     IN (12345, 34567, 45678)
         GROUP BY  customer_id
    SELECT       customer_id
    ,       MIN (start_date)      AS start_date
    ,       MIN (start_date) - 10      AS t0
    ,       MIN (start_date) + 5      AS end_date
    FROM       union_data
    GROUP BY  customer_id;If you need help, post a little sample data (CREATE TABLE and INSERT statements for both tables, relevant columns only), and the results you want to get from that data.

  • Designed Reports are not showing in the Analysis Report List

    Hello Master's,
    I have designed one report as per our client requirement, and assigned also, but its not showing in the analysis reports list.May i know what setting needs be done to appear in the reports list?.
    How to create and add the characteristics(New Fields) in the reports, here we can able to create and add the key figures.
    Kindly update the solutions with steps.
    For you reference please find the below screen shot.
    Thanks in Advance......!
    Kind Regards
    Shankarappa H L

    Hi Shankarappa,
    The Analysis -> Reports shows a list of views. Hence, once you create a report you need to complete two mandatory steps.
    1. Create a View
    2. Assign Report
    For more information, please refer to the following link: In conversation with Sebastine Augustine, product manager redefining Business Analysis that forms an integral part of th…
    Thanks,
    Sebastine

  • Looking for a bapi that gets the list of customers with a credit limit

    Hello SAP gurus
    I want to know if there is a standard bapi that I can use to find all customers with a credit limit of $10000 and that have exceeded this limit.
    Any response/feedback will be highly appreciated.
    Tks
    Ram

    Thanks J@Y,
    I had read that discussion about the tables with the info. However, I have an external program that is integrated to SAP sytem (using webservices). The external program when needed has to retrieve the list of customers who have exceeded certain credit limit. So I was wondering if there is any standard BAPI which I can use. Or do I need to write my own BAPI using the tables info that you have indicated.
    Tks
    Ram

  • List of customers in a credit account

    List of customers in a credit account or refer to a credit account. And that credit account used for Credit Limit for Groups of Customers.

    Try t.code FD11, execute and once you get the details, click on single account button on the top, where in you can see the customer numbers tied to that account.
    Regards,

  • Table  name in  CRM   to  get  the list  of  customers

    Hi  Gurus
    What is the  Table name  or  T  code  in  CRM  for   getting the list of  customers  with  reference to  sales   area. ie  Sales  org , Distribution channel  and  Division.
    Similar  to  the    KNVV table in   SD
    Regards
    Raj

    Hi Raj,
    There are some tables with this information. You can use CRMM_BUT_LNK0011, but you can also check for tables with prefix CRMM_BUT_LNK0* for more information.
    You have to use the partner GUID, to read this information.
    Kind regards,
    Garcia

  • TO SER FIELS BOX IN REPORT LIST SCREEN

    i WANT TO SET 2 RADIO BUTTON AND 2 FIELD BOX IN THE  REPORT LIST SCREEN WHERE I WANT TO ENTER DATA MANUALLY IN THE FIELD BOX. AND I WANT TO SET ONE PUSH BUTTON .I WANT TO SET ALL THERE IN LIST SCREEN NOT IN SELECTION SCREEN.
    CAN ANYBODY SUGGEST ME.
    THANKS

    hi check this..
    REPORT Z_TEST7 .
    *Table declaration
    tables: vbak,vbap.
    *internal table
    data: begin of i_sales occurs 0,
    vbeln like vbak-vbeln,
    erdat like vbak-erdat,
    audat like vbak-audat,
    kunnr like vbak-kunnr,
    vkorg like vbak-vkorg,
    matnr like vbap-matnr,
    netpr like vbap-netpr,
    check type c, "checkbox
    end of i_sales.
    type-pools: slis.
    data: v_fieldcat type slis_fieldcat_alv,
    gt_fieldcat type slis_t_fieldcat_alv,
    gt_layout type slis_layout_alv,
    gt_sort type slis_sortinfo_alv,
    fieldcat like line of gt_fieldcat.
    *Selection screen
    parameters: p_vkorg like vbak-vkorg.
    select-options: s_vbeln for vbak-vbeln.
    *start of selection.
    start-of-selection.
    perform get_data.
    perform fill_fieldcatalog.
    perform write_data.
    FORM get_data .
    select avbeln aerdat aaudat akunnr avkorg bmatnr b~netpr into
    corresponding fields of table i_sales from vbak
    as a inner join vbap as b on avbeln = bvbeln
    where a~vkorg = p_vkorg and
    a~vbeln in s_vbeln.
    ENDFORM. " get_data
    FORM write_data .
    CALL FUNCTION 'REUSE_ALV_LIST_DISPLAY'
    EXPORTING
    I_CALLBACK_PROGRAM = sy-repid
    IS_LAYOUT = gt_layout
    IT_FIELDCAT = gt_fieldcat
    TABLES
    T_OUTTAB = i_sales .
    ENDFORM. " write_data
    FORM fill_fieldcatalog .
    sort i_sales by vbeln.
    clear v_fieldcat.
    "for check box
    v_fieldcat-col_pos = 1.
    v_fieldcat-fieldname = 'CHECK'.
    v_fieldcat-seltext_m = 'chek'.
    v_fieldcat-checkbox = 'X'.
    v_fieldcat-input = 'X'.
    v_fieldcat-edit = 'X'.
    append v_fieldcat to gt_fieldcat.
    clear v_fieldcat.
    v_fieldcat-col_pos = 2.
    v_fieldcat-fieldname = 'VBELN'.
    v_fieldcat-seltext_m = 'Sales Document'.
    append v_fieldcat to gt_fieldcat.
    clear v_fieldcat.
    v_fieldcat-col_pos = 3.
    v_fieldcat-fieldname = 'ERDAT'.
    v_fieldcat-seltext_m = 'Creation Date'.
    append v_fieldcat to gt_fieldcat.
    clear v_fieldcat.
    v_fieldcat-col_pos = 4.
    v_fieldcat-fieldname = 'AUDAT'.
    v_fieldcat-seltext_m = 'Document Date'.
    append v_fieldcat to gt_fieldcat.
    clear v_fieldcat.
    v_fieldcat-col_pos = 5.
    v_fieldcat-fieldname = 'KUNNR'.
    v_fieldcat-seltext_m = 'Customer'.
    append v_fieldcat to gt_fieldcat.
    clear v_fieldcat.
    v_fieldcat-col_pos = 6.
    v_fieldcat-fieldname = 'VKORG'.
    v_fieldcat-seltext_m = 'Sales Organization'.
    append v_fieldcat to gt_fieldcat.
    clear v_fieldcat.
    v_fieldcat-col_pos = 7.
    v_fieldcat-fieldname = 'MATNR'.
    v_fieldcat-seltext_m = 'Material'.
    append v_fieldcat to gt_fieldcat.
    clear v_fieldcat.
    v_fieldcat-col_pos = 8.
    v_fieldcat-fieldname = 'NETPR'.
    v_fieldcat-seltext_m = 'Net Value'.
    append v_fieldcat to gt_fieldcat.
    clear v_fieldcat.
    endform.

  • Report for vendors/customers

    In sap can be get a report for vendors/ customers showing debit column and credit column separately
    what is the transaction code for the report
    thanks in advance
    Joseph David

    Hi,
    I am afraid, such report is not available in SAP. I have not seen such a report. You can get it sign wise + and - for debit / credit or H\S  indicator wise. But column wise debit / credit is not available.
    Pl confirm
    Regards,
    Gov

  • T.Code for viewing list of customers of particular account group - Reg

    Hi,
    Can anyone suggest me T.code to view list of customer of particular account group?
    IS there any other method to view the list of customers in a particular account group?
    Please, it is an urgent requirement.
    Rewards sure
    Regards,
    SP.Balaji
    Message was edited by:
            balaji soundarapandian

    Hi Sai Srinivas,
    Already solved it and thanx for your help
    Regards,
    S.P.Balaji

Maybe you are looking for