Skip to main content.
July 31st, 2005

Roles with Restricted Company Codes and Values

Do you need to find out what roles you have set up with restricted company code values for specific authorization objects?

If your company has changed its company code (BURK) and if you have limited access to a particular company code in your roles, you will have to adjust the roles to use the new company code or to use * for any code.

But, how do you quickly find out what roles you need to adjust?

Simple. Query table AGR_1252 and check the contents of the LOW and HIGH fields. You can use your favorite query tool (Query Analyzer in SQL Server for example) or use transaction SE16 or SE11 within SAP.

Here is a sample query:

select MANDT, AGR_NAME, VARBL, LOW, HIGH
from AGR_1252
where MANDT=’100′
and (LOW <>‘’ or HIGH <>‘’)
and (LOW <>‘*’ and HIGH <>‘*’)
and AGR_NAME not like ‘SAP%’

The above query looks for any non-SAP role in client 100 where either LOW or HIGH have anything different than *.

You’ll get a list of the roles you need to adjust to use the new company code.

Posted by SAP Master in Useful Tips

This entry was posted on Sunday, July 31st, 2005 at 10:16 pm and is filed under Useful Tips. You can follow any responses to this entry through the comments RSS 2.0 feed. You can leave a response, or trackback from your own site.

Related Links: View Locked Transactions | Configuring SAP R/3 FI/CO: The Essential Resource for Configuring the Financial and Controlling Modules (Hardcover) | Frequently Asked Questions for SAP Basis / Technical | Facts about SAP | R/3 Functional Modules |

Leave a Reply

You must be logged in to post a comment.