How to see all the customers under one company code?

hi,
I would like to know, is there any standard transaction code to see all the customers under one company code?
thanks.

Hi,
You can check through :
1). SAP Menu ->  Accounting -> Financial Accounting -> Accounts Recievables ->Information Syatem -> Reports for Account recievable accounting -> Master Data -> Customer List
2). Run Txn SE16 -> Enter Table name (KNB1) -> Enter Company Code -> Execute.
Reward Points if this helps.
Regards,
Harsh

Similar Messages

  • How to Delete all the Assets in a Company Code

    HI GURUS n EXPERTS,
    The asset module is configured in my system but we were not using it. Now my company want to use it. During the analysis, I found:
    The assets are created but for maximum assets Value is Zero. But there is some assets have some value.
    Now, When we try to delete these assets with AS06. We are able to delete the asset with zero values. But when we try to delete the assets which have some value, system gives a message:
    Deleting is not possible. The asset already has values.
    Is there any way to delete such type assets. Or can we use Reset Company Code Transaction - OABL.
    Please suggest. Early response will highly appreciated.
    DSC

    Hi,
    Transactions OABL for data deletion are very critical  transactions to use. Please read carefully the IMG documentation.     
    For a start the reset of a company code is only allowed when in  "test status".
    I'm sorry per forum I an give you no recommendation to reset the cocd (OABL) and Reset Posted Depreciation (OAGL)   
    The impact have to be check on the spot.
    regards Bernhard

  • How to see all the enterprise services in a Discovery system

    Hi,
    Please let me know how to see all the enterprise sevices in a  discovery system.
    Please let me know how to load the enterprise services into webdynpro from discovry system
    Thanks and Regards,
    Naveen N M

    Hello all,
    I can't figurate how to list all the root directories
    (C:/> , D:/>, E:/> etc.) in a system.
    I know how to recursively check the content of a
    directory and all its subdirectories when a
    predefined path is defined. However what I' d like to
    do is actually give the option to pick one of the
    root directories to start the iteration. I have been
    looking around but I can' really find anything
    helpful.
    If any of you has any idea on how to achieve the
    above objective some clarification would be really
    appreciated.
    Thanks in advance for your help!How to installing the Javax.comm package

  • How to get all the values in one column of a JTable

    How to get all the values in one column of a JTable as a Collection of String.
    I don;t want to write a for loop to say getValueAt(row, 1) eg for 2nd column.

    I don;t want to write a for loop to say getValueAt(row, 1) eg for 2nd column. You could always write a custom TableModel that stores the data in the format you want it. It would probably be about 50 lines of code. Or you could write a loop in 3 lines of code. I'll let you decide which approach you want to take.

  • HT1918 Hi - I think I have different apple devices recorded under different apple IDs. Now I would like to consolidate all the devices under one Apple-ID.  I have tried to do this going through the manage accoung like, but it timed out - could somebody he

    Hi - I think I have different apple devices recorded under different apple IDs. Now I would like to consolidate all the devices under one Apple-ID.  I have tried to do this going through the manage accoung like, but it timed out - could somebody help, pls

    Purchases of multple Apple ID accounts cannot be merged as noted here >  Frequently asked questions about Apple ID

  • How to see all the list of tables in APEX

    Hi
    COuld anyone of you help me find out how to see all the tables present in APEX ?
    I can see all the list of tables when i give the command : select * from tab
    But apart from finding like this , is there any way to find out all the list of tables ?
    Regards,
    Tasha

    Hi Tasha,
    For Apex 3.2 ;
    select * from dba_tables where owner in
    (select workspace from APEX_030200.APEX_WORKSPACES)
    tab is a synonym for user_tables
    http://www.oreillynet.com/pub/a/network/2002/10/28/data_dictionary.html
    hope this helps you
    regards
    mozkavra

  • How to see all the tables in ABAP

    how to see all the tables in ABAP
    i need to see all the tables present in tcode se16.

    Hi Thiru ,
    its tough to give all.so pls see the below links u can get all.
    http://www.erpgenie.com/abap/tables.htm
    https://www.sdn.sap.com/irj/sdn/advancedsearch?query=listofalltablesin+abap&cat=sdn_all
    http://www.guidancetech.com/people/holland/sap/abap/
    http://www.sap-img.com/ab017.htm
    http://abap-gallery.blogspot.com/
    thanks
    karthik

  • How to export all the views in one schema?

    Hi,
    I have more than 1000 views in one shcema.
    How to export all the views in one schema?
    Amy

    Hi,
    It's not a very easy question, I have develop a script wich create a script to create view from old database to new database :
    /* &1: Oracle SID Source
    /* &2: Oracle Schema Source
    SET HEAD OFF
    SET VERIFY OFF
    SET PAGESIZE 0
    SET LONG 40000000
    SET LONGCHUNKSIZE 2000
    SET LINESIZE 2000
    SET FEEDBACK OFF
    CREATE TABLE RECREATE_VIEW(VIEW_NAME VARCHAR2(30), TEXT LONG);
    /* Selection du texte de la vue */
    DECLARE
    w_text long;
    w_text_debut long;
    w_text_column long;
    w_view varchar2 (30);
    w_schema varchar2 (8):='&2';
    CURSOR w_cursor IS
    SELECT a.view_name, a.text
    FROM dba_views a
    WHERE a.owner = w_schema;
    CURSOR w_column IS
    SELECT DECODE (ROWNUM,
    1, 'CREATE OR REPLACE FORCE VIEW ' || '&' || '1..'
    || a.table_name || chr(10)
    || '('
    || a.column_name
    || DECODE (ROWNUM, nbcolumns, ')' || chr(10) || 'AS' || chr(10), ',' || chr(10))
    FROM (select column_name,table_name
    FROM dba_tab_columns
    WHERE owner = '&1'
    AND table_name = w_view
    order by column_id ) a,
    (SELECT COUNT (1) nbcolumns
    FROM dba_tab_columns
    WHERE owner = '&1'
    AND table_name = w_view
    GROUP BY owner, table_name) b
    order by rownum;
    BEGIN
    OPEN w_cursor;
    LOOP
    FETCH w_cursor INTO w_view, w_text;
    EXIT WHEN w_cursor%NOTFOUND;
    w_text_debut := NULL;
    w_text_column := NULL;
    OPEN w_column;
    LOOP
    FETCH w_column INTO w_text_column;
    EXIT WHEN w_column%NOTFOUND;
    w_text_debut := w_text_debut || w_text_column || ' ';
    w_text_column := NULL;
    END LOOP;
    CLOSE w_column;
    w_text := w_text_debut||w_text||';';
    insert into RECREATE_VIEW(VIEW_NAME, TEXT) VALUES (w_view, w_text);
    COMMIT;
    w_text := NULL;
    w_view := NULL;
    END LOOP;
    CLOSE w_cursor;
    END;
    SPOOL scripts_views_&1..sql
    PROMPT SPOOL scripts_views_&1..log
    PROMPT
    SELECT TEXT
    FROM RECREATE_VIEW;
    PROMPT
    PROMPT SPOOL OFF
    PROMPT
    SPOOL off
    PROMPT /* Formattage du fichier SQL */
    !sed 's/[ ]*$//' scripts_views_&1..sql > aprilia.tmp
    !rm scripts_views_&1..sql
    !mv aprilia.tmp scripts_views_&1..sql
    DROP TABLE RECREATE_VIEW;
    EXIT
    I hope that help you.
    Nicolas.

  • In Layoout how to see all the lead columns presented in that.

    Hi Friends,
    Could you please suggest me how to see all the lead columns presented in the Layout.
    Appreciate your help through points.
    Regards,
    PJ

    Hi Ravi,
    When I opend the layout in change mode we are able to see the Layout, when click on continue we can see Header area,lead coulmns,data columns. In Lead columns I am able to see only 20 rows only. But I want to see all rows in that lead columns. When click on continue we are able to see the layout in ALV grid format. In that we can see lot of rows. Now my question is How to see all the rows present in Lead columns. Still if you have any details please give me ur id I will send some screen shots or give ur no. I will talk to you.
    Thanks & Regards,
    PJ

  • Retrive all the items under one folder

    Hi,
    I am new to ContentArea API's in 9ias.
    I am looking for Sepecific API's to retrive all the Items
    under one folder.
    thanks
    sha

    I'd love to know that API also. I have resorted to accessing the tables containing that information.
    wwv_corners contains an entry for each folder. wwv_things contains an entry for each folder item. You can join the two tables as
    wwv_corners.id = wwv_things.cornerid
    You could do something like:
    select folders.name, items.id
    from portal30.wwv_corners folders
    ,portal30.wwv_things items
    where folders.id = items.cornerid
    and folders.id = 99999;
    (where 99999 is the folder id.)
    Mike Kleiman

  • On iPhoto I can see all the pictures for one event, but about 9 out of 106 I can't move to print or place it anywhere else?

    On iPhoto I can see all the pictures for one event, but about 9 out of 106 I can't move to print or place it anywhere else?

    Basics from the manual are restrt, reset, restore.
    Have you tried each of these?

  • Customers Transport one company code to another company code

    Dear gurus,
    I have customers in one company code 100, now i want to transfer all those customers to 200 company code.. how can i do...
    Thanks
    Ramki

    You can either extend customer trough XD01 entering the new company code , or else for huge data you can use ABAP program to upload
    Or else A CATT can do what you are trying to do. If you are not familiar with  them go to google and enter CATT in SAP you will get several links that  explain how this transaction works.
    Message was edited by:
            SHESAGIRI.G

  • Multiple currencies under one company code for contracts

    Gooday!
    We have a new schenario ( In RE-FX) where we have a couple of contracts which were negotiated with the landlord that needs to be settled in Rand, whilst the company code are setup for another currency, which is dollar (caters for the bulk of the contracts). So each time you create a new contract the currency is already greyed out (Dollar), which obviously means that it cannot be changed there.
    Apparently the company code can be setup in FI to accommodate secondary currencies, however, this seems not to be the case in RE-FX.
    My question is this, is it possible to have multiple currency contracts under one company code in RE-FX, and if so, do one set it up in FI or RE-FX?
    Any assistance would be greatly appreciated!

    Conditions in Foreign Currency (New)
    As of SAP ECC 6.0, Enterprise Extension Financials, Enhancement Package 2 (EA-FIN 602), Business Function Real Estate (RE_GEN_CI_1), you can enter conditions for contracts, rental objects, or contract offers that are in a currency that differs from the local currency of the company code.
    You can enter the currency directly when processing conditions. You can also enter a currency translation rule in the posting term. The rule is then used for all conditions to which this posting term is assigned.
    You specify in Customizing which currency translation rules are allowed for each contract type and usage type.
    See SAP Note 123819.

  • Plant to plant subcontracting(Under one company code)

    Hi,
    I need a help on one issue.
    We are having multiple plants under one company code.
    Material goes with 57F4 challan for subcontracting plant to plant.
    How to do the subcontracting process for plant to plant.
    Please explain step by step.
    I know the normal process (with vendor)
    Also, if I have create a subcontracting PO, how the receiving plant will come to know about this?
    How will he receive the material which I have send?
    How the production activities at their end?
    Do I need to do the MIRO?
    Please thrwo some light.
    Thanks in advance,
    Piyush

    1)  Create Subcontracting Purchase Order with `0` Cost
    2) Transfer of Components to Subcontractor
    3) Create Subcontracting Challan
       a)Receive the Components as non valuated Materials
       b)Process the Materials to get the SF Product
       c)Create the Outbound Delivery without Ref. To Sales Order
       d)Endorse the Subcontract Challan Manually
    4) Post Goods Receipt
    5) Reconcile Subcontracting Challan
    6) Complete / Reversal / Re-credit SubcontractingChallan
    During Reconcile the Subcontract Challan - J1IFQ,Enter Manually into the Assigned Quantity Field the Components that are actually assigned for this Subcontracting Process.
    Regards,
    eswarmanu...

  • Sevaral Balance Sheet under one Company Code in SAP

    Is it possible to generate profit center wise, branch wise, balance sheets and income statements including other reports under one company code in SAP separatly.

    Yes. It is possible through Financial Statement Version. Further Report Writer or Report Painter helps to create your own Profit Center Reports.
    Regards
    Sampath
    Edited by: PSampath on Nov 25, 2009 11:08 AM
    Edited by: PSampath on Nov 25, 2009 11:08 AM

Maybe you are looking for