Customers list

Dear all
How to get list of Customers created in a  month?

Hi
Goto SE16, enter KNA1 table.
Choose Fields for selection in settings from menu bar. Select the ERDAT & ERNAM fields and other required fields.
Enter the range in ERDAT field( 08/01/2008 to 08/31/2008) Press execute. system will give the list of customer created in that period.
Regards,
Chandra

Similar Messages

  • Regarding finding of customers list

    Hi All,
    Can anybody tell me what is the relation between <b>non-domestic customers, sales orgs , exchange rate type, customer master extensions</b>.
    I need to find out Non_Domestic Customers based on other fields.
    Thanks in advance.
    Thanks and Regards,
    Deep.

    Deep ,
    u will create Customer Under One Sales ord ,So check table KNVV.
    regards
    prabhu

  • Grouping customers and view customer open items list - Group wise

    Hi.
    I have some requirement from my client.
    He says that he want to view customer open items list group wise.
    In FBL5N we can give the selection of multiple customers. But he wants to group the specific customers and then view the open items for this group.
    For example: Client has 10 customers and out of these customers he wants to select and group 5 customers. And then he want to view open items list for this group.
    Can anyone help me how to group these specific customers in the total customers list. Also request you to provide me the option to view open items for this group of customers.
    Regards,
    Padmavathi

    Hi Padmavathi,
    It is possible. use Worklist for Customers.
    Go to OB55 and define a Worklist for Customers, and mention the list of Customers that you want to see under that Worklist.
    After this, when you to to FBL5N, you will get an option to select Worklist to run the list of open items.. and it would show open items of all customers that you have defined in your worklist.
    Also note that you will have to go to FB00, tab Line Items, and tick Worklists available. This is at User Level, so only that user will be able to see the worklist in his FBL5N transaction code.
    Regards,
    SAPFICO
    Edited by: SAPFICO on Feb 10, 2011 11:43 AM

  • Importing a list of customers - Company not listed

    Hello. I've imported a contacts list using the method instructed by BC shown here, http://kb.worldsecuresystems.com/kb/customer-records.html#id_9773  I created a Tab Delimited file with 5 columns :email, title, first name,  last name, and company name, and it has uploaded successfully and the contacts all appear in the Customers list, but the Company name has not been included with the customer's details, it has been given a separate entry. Why is this? And am I able to make it so that all of the data gets listed together?
    Grant

    Hi Grant.
    That is the expected behavior. Company is always listed separately and contacts are associated with the company.
    Regards,
    Aishvarya Raj Rastogi

  • How to list customers blocked report  in creidit managment seperatly and combined

    Dear sd Experts ,i have checked in Google but i did not find in any post please tell me
    i want to list of customer who are blocked irrespective of sales order /delivery/pgi
    ex: i have 20000 customers  some are blocked at sales order and some are blocked Del/ and pgi ..some are not blocked
    Now requirement is i want to reports
    1) i want to make one list who are blocked customers ?
    2) i want to make list of customers order level blocked / del/ And pgi level separately
    Thanks To all sap Mentors

    Dear ,
    i want to make one list who are blocked customers ?
    This is FI Consultant will Do , Go to T.code : S_ALR_87012189
    Give your company code and Activate posting block  check box
    Then you can find customers list who are blocked in your company code ,Irrespective of sales order /del/pgi
    But it will show Only whos transactions are blocked may be some times Manuel also we can block posting to fi ( VOFA )
    So check from that point of view also
    i want to make list of customers order level blocked / del/ And pgi level separately
    By using VKM1,VKM2, VKM5 , you can find it with some parameters
    and
    In this link lakshmipathi sir explained how to find unblocked customers list
    may be helpful
    i want to check only UNBLOCKED CUSTOMERS
    Thanks a lot
    venu gopal

  • Query to list customers by BP code

    Hello experts,
    I need your help in pulling the customers list from SAP based on BP code.I was able to get the entire list but I need a filter where I can only pull retail customers.the BP code for retail customers begin with the 'C' and is followed by 5-6 digits.See below
    SELECT T0.[CardCode], T0.[CardName], T0.[Phone1], T0.[CntctPrsn], T0.[E_Mail], T1.[Address], T1.[Street], T1.[Block], T1.[ZipCode], T1.[City], T1.[Country], T1.[State] FROM OCRD T0  INNER JOIN CRD1 T1 ON T0.CardCode = T1.CardCode WHERE T1.[CardCode] ='C00018'
    Thanks

    Hi Sheena.....
    Try this......
    SELECT T0.CardCode, T0.CardName, T0.Phone1, T0.E_Mail, T1.Address, T1.Street,
    T1.Block, T1.ZipCode, T1.Country, T1.State FROM OCRD T0 INNER JOIN CRD1 T1
    ON T0.CardCode = T1.CardCode WHERE T1.CardCode Like 'C%%'
    and Len(T1.CardCode) in (5,6) And T1.AdresType = 'B' AND T0.CardType = 'C'
    If you see in your query carefully you have mistakenly put Comma after (5,6) which is wrong syntax for Where clause.......
    Regards,
    Rahul

  • How to get Date value from database and display them in a drop down list?

    Hello.
    In my Customers table, I have a column with Date data type. I want to create a form in JSP, where visitors can filter Customers list by year and month.
    All I know is this piece of SQL that is convert the date to the dd-mm-yyyy format:
    SELECT TO_CHAR(reg_date,'dd-mm-yyyy') from CustomersAny ideas of how this filtering possible? In my effort not to sound like a newbie wanting to be spoonfed, you can provide me link to external notes and resources, I'll really appreciate it.
    Thanks,
    Rightbrainer.

    Hi
    What part is your biggest problem?? I am not experienced in getting data out of a database, but the way to get a variable amount of data to show in a drop down menu, i have just messed around with for some time and heres how i solved it... In my app, what i needed was, a initial empty drop down list, and then using input from a text-field, users could add elements to a Vector that was passed to a JComboBox. Heres how.
    package jcombobox;
    import java.awt.*;
    import java.awt.event.*;
    import java.util.Vector;
    import javax.swing.*;
    public class Main extends JApplet implements ActionListener {
        private Vector<SomeClass> list = new Vector<SomeClass>();
        private JComboBox dropDownList = new JComboBox(list);
        private JButton addButton = new JButton("add");
        private JButton remove = new JButton("remove");
        private JTextField input = new JTextField(10);
        private JPanel buttons = new JPanel();
        public Main() {
            addButton.addActionListener(this);
            remove.addActionListener(this);
            input.addActionListener(this);
            buttons.setLayout(new FlowLayout());
            buttons.add(addButton);
            buttons.add(remove);
            add(dropDownList, "North");
            add(input, "Center");
            add(buttons, "South");
        public void actionPerformed(ActionEvent e) {
            if (e.getSource() == addButton) {
                list.addElement(new SomeClass(input.getText()));
                input.setText("");
            } else if (e.getSource() == remove) {
                int selected = dropDownList.getSelectedIndex();
                dropDownList.removeItemAt(selected);
        public void init(String[] args) {
            setSize(400,300);
            getContentPane().setLayout(new BorderLayout());
            getContentPane().add(new Main());
    }And that "SomeClass" is show here
    package jcombobox;
    public class SomeClass {
        private String text;
        public SomeClass(String input) {
            text = input;
        public String toString() {
            return text;
    }One of the things i struggled a lot with was to get the dropdown menu to show some usefull result. If the list just contains class references it will show the memory code that points to that class. Thats where the toString cones in handy. But it took me some time to figure that one out, a laugh here is welcome as it should have been obvious :-)
    When the app is as simple as this one, using a <String> vector would have been easier, but this is just to demonstrate how to place classes in a vector and get some usefull info out of it, hope this answered some of your question :-)
    The layout might have been easier to write, than using the toppanel created by the JApplet and then the two additional JPanels, but it was just a small app brewed together in 15 minutes. Please comments on my faults, so that i can learn of it.
    If you need any of the code specified more, please let me know. Ill be glad to,

  • Report  S_ALR_87012167 top list based on amount of overdue items

    Hello,
    We are using report S_ALR_87012167 (Accounts Receivable Information System).
    In this report, it is possible to customize how many customers should be involved in the TOP list, the other customers are summarized in REST.
    This works fine.
    However, we would like to select the TOP customers based on (OVER)DUE open items amount, instead of total of open items amount.
    If a customer has a large amount open, but not (over)due (yet), in fact the customer is not giving problems (yet).
    If a customer has a large amount (OVER)DUE, but the total of open items is not in the top of our customers, it is stated in REST, where we would like to see that customer in TOP (with details).
    Is there customizing available to change the TOP and REST selection?
    Is there another (simular) report that selects customers on (over)due amount?
    I know I can choose a variant for report RFDRRE01, but only number of top customers, list sorted by days are and which parts to create are available for customizing there.

    I have debugged these programs quite a lot, but it seems to be very difficult to find the correct place. There are lots of source code to be debugged. I just thought that 'Dynamic Selections' is a standard way to handle extra selections and someone could know, a little bit more specific, from where to look for.

  • Appropriate permissions for the custom list

    Hi,
    Recently
    I have taken up SharePoint 2013 exam and I got bit confused for one of the question i.e.
    Case Study: Consolidated Messenger
    You are the lead architect developer and web administrator of SharePoint 2013 for your company.
    Consolidated Messenger is a national company with hundreds of franchises
    Consolidated Messenger sells franchises to franchisees. Franchisees have three user types
    User and its Role
    Franchise Manager- Response for managing the franchise
    Franchise Employee- Responsible for managing accounts and setting pick-up and drop-off locations for couriers
    Courier- Responsible for picking up and dropping off packages
    You need to set appropriate permissions for the franchise employees
    customer list and customer sub site access. What should you do?
    A) Add franchise employees to the Members group in the CorporateSiteCollection site collection.
    Break inheritance at the
    franchisee sub site level.
    Create a custom role definition at the
    franchisee sub site level.
    Add franchise employees to the custom role.
    B)
    Create a custom role definition in the CorporateSiteCollection site collection with the limited access to the customers list.
    Add franchise employees to the custom role at the CorporateSiteCollection site collection
    Break inheritance at the
    sub site level.
    Add franchise owners to the Owners group
    at the
    sub site level.
    C)
    Create a custom role definition in the CorporateSiteCollection site collection with the limited access to the customers list.
    Add franchise employees to the custom role.
    Add full inheritance of the role definition and permissions at the site level
    D) Add franchise employees to the Visitors group in the CorporateSiteCollection site collection.
    Break inheritance at the
    franchisee sub site level.
    Create a custom role definition at the
    sub site level with Full Control permissions.
    Add franchise employees to the custom role.
    I feel that both options B and C are applicable but I couldn’t come to conclusion.
    Please
    share your opinion the same.
    Regards,
    Sudheer
    Thanks & Regards, Sudheer

    @Naga, As per non disclosure agreement that you have signed / agreed with Microsoft, I think you should not share confidential exam questions or answers. That would amount to violation of NDA.
    Hope this helps!
    MCITP: SharePoint 2010 Administrator
    MCTS - MOSS 2007 Configuring, .NET 2.0
    | SharePoint Architect | Evangelist |
    http://www.sharepointdeveloper.in/
    http://ramakrishnaraja.blogspot.com/

  • Standard Report for Customer Listing

    Hi Gurus
    Is there any standard report available for Customer listing which display customer details.
    Points will be rewarded..
    Regards
    Happy

    Hey Happy,
    I think there is no standard report functionality to get the list of the customer but you can get that in this way,
    Go to SE16 transaction enter the table KNVV then execute system will give the all customer which are maintaining sales area data.
    Take the table KNA1 to get the general data customers list
    Take the table KNB1 to the company code data customers list
    I hope it will help you
    Regards,
    Murali.

  • Lookup Column Issue - List View Threshold exceeded

    We use Sharepoint Foundation 2010 and we have 2 Lists in a site. Those are:
    1. Customers List.
    2. Sale Invoices List.
    Customers List has Title field as Unique & Indexed Column.
    Sale Invoices List has a lookup column (i.e., Customer) from the Customers List (Title).
    My issue is:
    Customers List has just crossed 5000 items. When I try to add a List Item in Sale Invoices List (where I have Lookup Column from Customers List), it throws an error as given below:
    Error Message:- This is a lookup column that displays data from another list that currently exceeds the List View Threshold defined by the
    administrator (5000). To add items to the current list, please ask the list owner to remove this column.
    I have increased temporarily the List View Threshold Limit to 6000 Items. It’s working fine now.
    Is there any solution to fix the issue without increasing the List Items Threshold Limit?
    Thanks in Advance.

    Hi Sri,
    If this activity (adding item) is done programmatically, then we can set
    SPList.EnableThrottling = false
    but this approach is not recommended though.
    Please let us know if this fixes your issue.
    Thanks,
    M.Gubendra Raj

  • Find customers IN, NOT IN from two transaction tables using DAX

    I have two identical fact (sales) tables in Power Pivot. I need to classify customers in 3 categories.
    Existing in both tables
    Existing exclusively in table 1
    Existing exclusively in table 2
    What approach do I choose? UNION both the tables in model or keep them as separate tables? Also, what code is to be written to classify the customers in these 3 categories? I need to do Power View reporting on the categories - Distinct Customers, SalesAmt,
    Sales Volume etc.
    Thanks, Ashish Singh

    Try these sollutions:
    1.You can append both tables using Power Query ad-in. Even if a list of customers change in any of your tables you will not have to manually correct them in model. Refreshing Power Query table allow to have always updated data in model. Also if both tables
    are differ but have a common column as "customers" that's enough to get appendable list of customers. Power Query allows to get distinct values without duplicates. Created table can be linked as a table to your Powerpivot model. No measures are nessesary.
    You should receive a simple table with distinct customers names. Lets call it "List of all custumers"
    To receive exclucive lists create relations between Table1 and Table2 using "List of all custumers". Now you can use all you need in one pivot table.
    2. You can do the same without Power Querry but your data will not be autmaticaly refresh. Appendable table with customers list can be created manualy. This case also not require any formulas or measures.
    Of course you can also try Greg's solution
    Gordonik

  • How to find Get Customer list scenario

    Hi Friends,
    I was integrate to R/3 system thru XI. I want to get the customers list from one of R/3 system.
    Now where I can find Getcustomer list Business scenerio.
    I mean which software component I can use for this purpose.
    Please give me helpful answer.
    Regards,
    chandra

    Hi,
    you can create your own for this purpose
    and create all "customer related" interfaces inside it
    Regards,
    michal

  • How to create a report of email subscribers

    Hello
    This seems like a simple thing, but I've searched the forums and tried a few things in admin but can't work this out!
    I have a very simple online form on my website with 'name' and 'email' - it is a newsletter subscribe box. I would like to provide a simple way for my clients to login to their admin and export this list of all subscribers but I am stuck. 
    I have tried in the REPORTS - CUSTOM REPORTS section - but the subscribe form does not show anywhere in the filter criteria so I can not pinpoint this form data on its own (the report I generated brings in the customers for ALL forms using the 'name' and 'email address' fields as I have 3 different forms on the website and ofcourse each form has these two fields)
    I have also tried in: CRM - CASES - then filter by the 'subscribe form' - which is nearly what we need, it is a list of everyone who has used the form which is great, but it does not show their email address only the name and creation date, and if you export it as a spreadsheet it only shows this info.
    We are after a simple spreadsheet or export file that just shows their name and email address.
    Any help appreciated,
    Thanks

    You can create a custom report with Double Opt-In Status checked for your site's CRM database and it will generate a report which will include the list.
    If you want to generate the report for specific form then repeat the same step and select the form from "Custom CRM Form Filter" which will include customers list who has used the form.( it should be standard form )
    Rest if you are looking for customers subscribed for any specific campaign , then email campaign reports includes all the information.
    Sanjit

  • How to remove the edit icon in interactive report?

    Hi All,
    I am using the Customer Tracker 1.1 sample and I would like to remove the edit icon on the Customers list. (Instead I would like the Customer name to be the link itself).
    However, nothing I do on the reports properties seems to have any effect on this icon!
    I have even remove the A.ID column from the underlying SQL query but I still see the little pencil!
    Any ideas?
    Regards,
    Pawel.

    Sorry for the spam!
    I just discovered the whole new section in the Interactive Report - Link Column - just needed to exlude the link.
    P.

Maybe you are looking for

  • Display using and HDMI Cable

    I'm having trouble connecting my MacBook Pro to my TV using an HDMI cable. I know I have the right cable and I know I am plugging it in correctly. However, I cannot find the right setting for my screen to display on the TV. I've tried changing the di

  • Dark images for greyscale and lab luminous channel

    For my B&W conversion I normally use the luminous channel from lab. I do this in photoshop of course because Aperture can't. All the photos come out darker in Aperture then in PS. Actually any greyscale image (non-RGB) comes out darker. It's just not

  • Earpiece not working_can't hear caller,

    My earpiece isn't working.  Cannot hear unless I switch over to speaker or plug in a headset.  Any ideas on how to fix?

  • What are the benefits of arch linux ?

    What are the benefits of arch linux ? default package management /software installation tool .

  • Hidden fields in a transaction

    Hello gurus, Someone knows if there is a way to know which fields are hidden in the screen of the transaction ie01, ie02, ie03 I want to reuse some fields or perhaps is it possible to add more fields only for a specific country? thanks gurus