Users with Company Code

Hi All,
Can anybody please tell me the best possible way to find out the company code (Organisational Assignment) for Users without getting into each role and checking the Company code through the Organisational Assignment.
Fo Eg: Suppose i have 10,000 Users in my Company and i need to check what company code has been assigned to each User.
One way   -> is to first check all the roles in the User, then checking Organisational level Assigment for each role.
Second way -> In SU01 -> Environment -> Organisational Asignment but not able to find aything from that.
Revert if there is any other solution for this.
Thanks & Regards

You can check through SUIM -> Where used list -> Authorization values - > in Users -> Execute - > Authorization Object (F4 - to check company code object)  -> Entry Values (enter your company code value) and Execute.
Cheers
Shaji

Similar Messages

  • Display users along with company code assigned to them

    Hi,
         I would like to display list of users with company code assigned to them
    Thanks & Regards,
    Rajesh Kale

    Hi himanshu,
    I want list of user using complex selection criteria.
    It can be display using tools -> Administration -> User maintenance -> Information System -> Users by complex selection criteria.
    Here, I am facing the problem that which authorization object I should put so that I can get list of users in which in front of every user I get the company code assigned to them.
    Regards,
    Rajesh

  • Assign chart of dep with company code

    Hi All SAP Guru,
    I want to Assign new chart of dep in company code. When i assign the system is not allow. It is not showing white color field.  Please advice how can i assign the new COD.
    Regards,
    Pankaj

    Hi,
    Thanks for your quick reply. The COD is already assigned with company code. Client want to change COD. When i try to assign another COD. It is not allow.
    Company code   Company         COD                                               text
    1000                  ABC LTD        BP00(want to assign new COD)
    Regards,
    Pankaj

  • DMS Document relationship with company code

    Hi All,
    I have to delete all DMS Documents for Document Type AAA and company code 8200. I am not able to find relationship between Document info records and company code in table level so can you please guide me How to get the relationship.
    I checked with tables : DRAW, DRAD, AUSP... but not got proper answer.
    -Thanks,
    Ajay

    Hi All,
    Thanks for your replay. This issue is resolved.
    In transaction CV04N with classification tab I have to option of Company code. I am able to get list of DIR's with company code and document type.
    -Thanks,
    Ajay

  • If Company has one to one relationship with Company code

    Dear All,
    If Company has one to one relationship with company code in the transaction system (ECC),
    can we use company in place off company code - in the BCS system?
    That is, in this case - under consolidation units
    - company,
    i will be using the ECC companies rather than ECC company codes as consolidation units.
    Request your insights.
    Cheers
    Kumar

    Actually, I almost always use the company, not the company code. The difference is in the different number of attributes, and the type CHAR 4 or 6. 0COMPANY is the standard infoobject for using in SEM-BCS.
    Though, I also used the custom infoobject for ConsUnit. Not a problem. Everything works. Just one needs to be careful with infoobjects which are the references to the Company IO.

  • Peculiar problem in LDB ADA with company code selection

    <h5>Hello Colleagues, </h5>
    Faced a peculiar problem with company code selections in LDB ADA. Entered depreciation area, dep posting perios, lower and higher value of company code and would like to except few companies from selections. On pressing extension button, error message "Depreciation area 01 is not defined in chart of depreciation" is popping up and not allowing to provide exceptions for company codes. But working well in development systems. We are using ECC 6.0 systems and in both systems we have same lines of code for SAPDBADA.
    During debug, found that in development system, control coming to initial statements after PAI event. But in other systems, control skips few initial commands after PAI and directly jumps to later commands. Due to this FNAME parameter in PAI subroutine setting with '*' in other systems and 'BUKRS' in dev system.
    Could anybody give me some thoughts of why system behaving differently?
    Thanks and Regards,
    Prasanth

    Some - or most? - ODBC driver, especially MS for SQLServer and Access, don't support these advanced JDBC features.
    Like the messages says: they are optional features, and the driver doesn't implement them.
    A good news:
    you don't need them.
    Just go through your ResultSets only forward by next(), and do all inserts, updates and deletes with executeUpdate() and SQL commands.

  • I want my users (8 company code). each company see only theirs asset class

    < MODERATOR:  Message locked.  Please read the [Rules of Engagement|https://www.sdn.sap.com/irj/sdn/wiki?path=/display/home/rulesofEngagement] before posting next time. >
    i have 8 company to configuration.
    and each company have various kind of asset class. such as company A have 350 asset class. company B have 400 asset class.
    so i want my users (8 company code) . each company see only theirs asset class
    (company A can only see asset class of company A )
    how can i do ? 
    please help
    Thank you in advance

    Hi,
    you can restrict it through the user profiles. advise basis team to restrict based on the below 2 auth objects:-
    A_S_ANLKL  Asset Master Data Maint: Company Code/Asset Class
    A_S_GSBER  Asset Master Data Maintenance: Company Code/Business Area
    Rgds.

  • Assignment of Purchase Organization with Company Code and Plant

    Please give me solution to Assign Purchase Organization with Company Code and Plant. While creating a material in organization level plant and purchase organization should be assigned.
    Please help me out.
    Thanks

    Hi,
    I am not sure if i have really understood your query.
    Material creation means creating master data, as far as creation and assignment of organization elements with other organizational elements are concern for eg : purchase org in you case is part of standard configuration.
    You create Purchase org using t-code OX08 here you copy from and existing one and then chane the description of Pur org as per your requirement.
    You assign Purchase Org using t-code OX01 to company code assignment, t- codeOX17 for plant assignment to Purchase Org.
    Normally you do all your changes in Devlopment server save the changes in an transport request then move it to quality and production enviornment.
    Hope this helps.
    BR

  • Authorization issue with Company code/ Cost center combination

    Hi,
    I am currently trying to restrict user access by company code and cost center combination.
    We have roles defined for each user and I am trying to use the standard authorization object A_S_KOSTL in this role . It seems that since it is not a 'maintianed' object no activity can be assigned to this autorization object.
    currently the values are :
    company Code : 1110 , 1112, 1114
    Cost Center : *
    i am getting sy-subrc as 0 even when i test for company code : 1110 for a user with the above role.
    My code is :
    AUTHORITY-CHECK OBJECT 'A_S_KOSTL'
        ID 'BUKRS' FIELD '1110'.
    F sy-subrc EQ 0.
      AUTHORITY-CHECK OBJECT 'A_S_KOSTL'
      ID 'KOSTL' FIELD '*' .
      IF sy-subrc EQ 0.
        MESSAGE 'Success with KOSTL also' TYPE 'S'.
      ELSE.
          MESSAGE 'Success with BUKRS only' TYPE 'S'.
      ENDIF.
    ELSE.
          MESSAGE 'Failure' TYPE 'S'.
    ENDIF .
    I get a subrc NE 0 for the KOSTL part. The test passes for BUKRS.
    Please advise on how to proceed.
    Thanks and Regards
    Soumya

    Okay, I misread the "NE". Sorry.
    Have you done a syntax check on it?
    Also compare to:
    AUTHORITY-CHECK <object>
    ID 'KOSTL' '*'.
    I cannot confess to ever have done a "full" AUTHORITY-CHECK myself, but it is most likely the same as with DUMMY ->  you should not use the FIELD statement as '' value if the data element does not know what a '' is...
    Cheers,
    Julius

  • How to find document attached to user and Company code?

    Hi all,
    Requirement: Select a list of Business documents ( Sales order/PO....) created or changed by <b>specific users</b> which belong to a <b>Specific Company code</b>.
    ie,To develop a report which lists the Documents created/updated/changed based on specified date and users.
    I think we can find from CDHDR & CDPOS  tables.  But i need to filter these documents or pick documents based on a Specific Company code.
    ie.,from the list of records obtained from CDHDR table....how to filter these documents based on Company code......
    valuable inputs needed.
    Thanks,
    Subba

    Hi
    Most of the application document Heade tables(VBAK,EKKO etc ) will have the field CRETAED by  like ERNAM. and all these tables will have BUKRS field also in them
    So compnay code wise User created documents list you will get.
    Only problem is the Changed/Modified list by user with related Company code.
    Anyhow you will get the User who changed the documents from CDPOS table.
    But for linkthem to Company code I feel You need the
    help of HR related Tables .
    with the UNAME which you get from CDPOS table go to PA0105 infotype and get the PERNR linked with that user.
    And get the attached BUKRS Company code from PA0001 infotype.
    Hope this will solve your problem.
    reward points if useful
    regards
    Anji

  • CATSSHOW with Company code

    Hi experts,
    I have a requirement to create a report which works similar to the report CATSSHOW (TCODE: CADO: display timesheet data) but with a further selection filter of COMPANY CODE.
    But before I create this I wanted to just check whether there is any standard report which caters to the need.
    Your help would be definitely awarded.
    Regards
    RadhaMadhav

    Hi Radha,
    I suggest two options before going for a Customized report.
    First click on further selections and select the company code .and set this as a variant to the respective users who could see the reports only based on the company codes which they need to see.
    This could be done from the respective users login.
    Second option is based on authorizations :
    Create roles for this Tcode restricted based on Company Codes.
    The first one should work fine .
    Let me know if you need more inputs.....

  • Transfer for sp stock with company code

    Hi
    Need your help on the following scenario
    The scenario involves 2 company codes A & B
    company A creates a STO with account assignment sales order, since the STO is assigned to sales order, when company B delivers the product, SAP system does not find special stock, so company B first transfers the stock from unrestricted stock to sp stock and then creates a delivery.
    The question is it possible to deliver from company B without sp stock assignment as company B is independent and not aware of company A's business.
    Looking forward
    Regards

    Hi,
    Your scenario seems like intercompany sales..
    pls refer to the following links:
    [http://www.sap-basis-abap.com/sd/configuring-intercompany-billing.htm]
    [Intercompany sales process;
    And you'll find many more discussions on this topic--pls search the forum.
    Regards,
    Raghu.

  • Invalid Business Area in combination with company code

    Dear Expert,
    I have just created a new business area, however, when doing a posting against the new business area I got prompted an error message "Invalid Business Area 7000 with combination of company code 0001". Could anyone tell me what setting did I miss?
    Thank you

    Hi...
    As per your issue..i think your company is using validation for your   business area avoiding miss usage.
    In this case once created new business area you have to update new business area in GGB0 T.code at company code level
    So go to GGB0 and click on Financial accounting -> line item -> here select your company code and click on business area here enter your new business area and save it after that come back one step and select your company code go to Validation at menu bar select transport.
    I hope it will helps you and let me know if you have any doubts
    Regards
    vamsi

  • Users per company code

    Hi
    Is there any report of Funtion module to get the list of uses per company code
    Do let me know if you know anything about this
    thanks
    sameer

    Hi,
    Please try these reports. They should help you with this requirement.
    RHXSTR00                       Organizational Structure
    RHXSTR01                       Organizational Structure with Positions
    RHXSTR02                       Organizational Structure with Persons
    RHXSTR03                       Organizational Structure with Work Centers
    RHXSTR04                       Report Structure with Persons
    RHXSTR05                       Report Structure Without Persons
    RHXSTR06                       Work Centers per Organizational Unit
    RHXSTR07                       Activity Profile for Positions Along Organizational Structure
    RHXSTR08                       Activity Profile of Positions with Persons Along Org. Structure
    Regards
    Kathirvel

  • Plant Abroad functionality for South Korea with Company Code in India

    Hi,
    I need help on SD functionality set up with regards to Plants abroad functionality for the Parent company in India and a manufacturing Plant in South Korea. 
    Has anyone work on such scenarios with plant abroad in South Korea.  If yes, please help with the SD setup especially CIN and taxation requirements from SD side w.r.t. a South Korean Plant. 
    Thanks a ton in advance.
    Sameer

    Hello Sameer,
    I am working for Plants Abroad Funtionality for one Company Code with several Plants across Countries in Europe. Here there is a Standard feature given by SAP for INTRASTAT (Eupore) reporting. Also in Europe we can transfer stock from say plant in Germany to another PLant in France with charging any Tax.
    But in your case you have Indian Company Code having Plant in South Korea... I don't know whether it is supported in SAP or not...
    Also legally I wonder whether Indian Companies can own Plant in South Korea?
    Infact most probably in your case there will be a seperate Company Code for Korean Plant... If that is the case then you don't require Plants Functionality.
    Can you please further details of your Business Requirements?
    Thanks,
    Jignesh Mehta

Maybe you are looking for

  • DragnDrop row in JTable

    I need to add dragndrop functionality to my JTable. I am using AbstractTableModel since I need to control the data at runtime. Can anyone give sample code to insert row.

  • Transaction variant vs screen variant

    Hi. Created a transaction variant.  The variant has two screen variants. (for VA01).  one for the main screen, and one for the sales overview screen. If I click test for the screen variant, it is working fine as expected. But if I click the test for

  • Document Title Variable Text for Footer

    I am fairly new to InDesign and did as much searching as possible before posting this. I took a three-day class for InDesign, but we never got into variables. This is for a technical document template I am creating. What I am trying to do is create a

  • Building Objects with JAXB...

    How on earth do I write the .xjs file for this DTD? It should be simple but           I'm really stumped. What I want is for all of the elements within <inpea>           to end up in a single list (<choice collection="list"....>) so that I can       

  • PDFs rendered on AIX and Linux different file sizes

    Hello, If I render a PDF on AIX my file size is around 400K. If I render the the same PDF on Linux, the file size is around 1.2MB. I am using the same XDP and XML file. I am using LiveCycle Forms v7. Any ideas? Thanks, Greg