HOW MANY ROLES ARE ELGIBLE FOR THE USER

hello gurus,
how many roles can we assign to the user... what is the maximum limit of the roles  and profiles for the user.
thanks in advance!
sri

Dear Srinivas,
About roles it's indeed not to easy to tell..just imagine the scenario:
1. Maximum number of profile is 312 ... (however due to some known bug system reads about 300). So, let's say 300 profile maximum can be assigned to an user
2. Now you can have single ABAP role which generally one-to-one to profile. So, this theory says if you are only assigning single ABAP roles, you can assign maximum 312 (or 300) roles.
3. But, you might also have Composite ABAP role. A composite ABAP role can have one or more Single/Composite ABAP role. So, one Composite ABAP role can correspond to any number of Profile which is determined by number of individual Single roles under than composite role. So, when you are assiging Composite ABAP role, you have to take care underlying number of profiles and make sure total does not exceed 312 (or 300 without note correction)
4. Now, last part of complication (and my favourite one). Sometimes, there is an empty Role which does not have any ABAP authorization assigned to it. But, this type of roles are used to map a authorization role in JAVA system. These roles does not have any Profile (as it does not have any ABAP authorization). Now, that brings my confusion ..What happens you assign 300 ABAP profiles via ABAP Roles and another 20 empty role for JAVA system without profile. You see my point
Hope this clarifies a bit
Cheers !!
Satya.

Similar Messages

  • How to find how many cursors are opend for application user

    Hi all,
    how to find out how many cursors are opend for application user and how many are opend for database user
    Regards,
    RM

    Oracle does not know the difference between an "application user" and a "database user".
    Oracle deals with a session. This session services a client. The client can be a J2EE application. It can be a Delphi client. It can be a SQL*Plus command line tool. It can be TOAD. Etc.
    Oracle does not care who/what/where the client is when dealing with cursors and SQL. It deals with the session that services that client.
    How many cursors does a session have opened?
    Refer to V$OPEN_CUSOR in [url http://download.oracle.com/docs/cd/B19306_01/server.102/b14237/dynviews_2008.htm#sthref3807]Oracle® Database Reference.
    A select count on V$OPEN_CURSOR for a specific SID (Session ID) will return the number of open cursor handles in that session.

  • How many calls are held in the call log for the iPhone 3g?

    How many calls are held in the call log for the iPhone 3g?

    Creating a separate CSQ is the way to do it. Keep in mind that depending on your error handling, a single request could still generate more than one call into the CSQ. You would want to look at the CCDR table for the call ID or write the ImplementationID into one of the Enterprise Data variables that gets stored to the DBA to act as a UID. 

  • Report to show me how many invoices are being processed by users

    Hi, 
    I am currently working as a Accounts Payable Supervisor and I would like to run a report to show me how many invoices are being processed by users in my team. 
    Currently I am using Transaction F.98  (Posted Docs by user report), but this report includes posting from intercompany so all users will have duplicate invoices showing on this report. 
    Is there any other report I could run to get the result I am after?
    Many thanks
    Alex

    Hello Alex,
    You can also use the GL line item report (FBL3N) with the offsetting accounts (for example GR/IR A/c) which would be posted while posting the invoice. You can display the results with User Name and also can create a layout of your own which can be used time and again.
    Kind Regards // Shaubhik
    Edited by: Shaubhikg on Nov 10, 2010 6:02 AM

  • No portal roles are assigned for this user.If this problem persists, contac

    I am trying to access portal first time using j2ee_admin user. It is saying "No portal roles are assigned for this user.If this problem persists, contact your system administrator."
    iam using abap+java enginee how config in abap enginne ,iwant which role to assign  j2ee_admin  user
    i already asiigned sap_j2ee_admin,SAP_BC_JSF_COMMUNICATION,SAP_BC_JSF_COMMUNICATION_RO   but it show same problem
    please help me..
    Edited by: Mugala Balu on Aug 7, 2010 5:53 PM
    Edited by: Mugala Balu on Aug 8, 2010 7:48 AM

    Balu,
    Well this issue has been discussed many a times in forums. You would have to point your data source to ABAP system.
    Check this thread in [here|J2EE Failed to start  , after changing UME datasource;.
    Good Luck!
    Sandeep Tudumu

  • Customizing Message "No portal roles are assigned for this user"?

    Hello,
    we would like to give the user some hint on who to speek with in case he has no portal roles assigned.
    So we would like to customize the messaage "No portal roles are assigned for this user" to some customer spezific text or to redirekt to a customer specific iView.
    I would appreciate any kind of hints.
    Best regards,
    Lutz Rottmann

    Hi,
    Check these threads.
    Customizing message "No portal roles are assigned for this user"
    No portal roles are assigned for this user
    Regards,
    Harini S

  • Cusomize message "No portal roles are assigned for this user"?

    Hello,
    we would like to give the user some hint on who to speek with in case he has no portal roles assigned.
    So we would like to customize the messaage "No portal roles are assigned for this user" to some customer specific text or to redirect to a customer specific iView.
    I would appreciate any kind of hints.
    Best regards,
    Lutz Rottmann

    Hi,
    Check this thread.
    Customizing message "No portal roles are assigned for this user"
    No portal roles are assigned for this user
    Regards,
    Harini S

  • How many GB are recommended for downloading and watching movies on an ipad?

    how many GB are recommended for downloading and watching movies on an ipad?

    I agree. With a 16 gig you'll find that you only have room for a couple of movies once the operating system and any other apps take up their space.
    The other alternative would be to look into something like a wireless harddrive, where you can store your movies and stream them to your iPad via an app. However if you're purchasing content from iTunes that may/may not work. So if you consider that you may want to dig a little deeper and make sure it'll do what you want it to do.

  • How many memory is used for the process of one connection?

    Hi,
    how many memory is used for the process of one connection in unix
    when the user connects to the database?
    Thanks,

    Write some queries using v$sesstat, v$statname, v$session to find the statistics for different stats. Query name from v$statname and find whatever you wants. I don't think there is a common rule that tells how much memory will be used for each connection, it depends on different factors like , resources available, type of databases, database memory settings etc.
    Example query.
    select s.osuser osuser,s.serial# serial,se.sid,n.name,
    max(se.value) maxmem
    from v$sesstat se,
    v$statname n
    ,v$session s
    where n.statistic# = se.statistic#
    and n.name in ('session pga memory','session pga memory max',
    'session uga memory','session uga memory max')
    and s.sid=se.sid
    group by n.name,se.sid,s.osuser,s.serial#
    order by 2
    ;

  • Vodafone tell me that is be waiting for unlock by IMEI by Apple, how many days are necesary for it?

    I called vodafone to unlock my iphone 4 by IMEI, they told me that now they are waiting the password from Apple, how many days are necesary for it? thanks

    You don't say where you are but process is
    Carrier approves your request to unlock ?
    they instruct Apple to update their servers to release the lock which is activated via iTunes
    Depends on how fast Vodafone work and how fast Apple update their servers
    For you to activate you need to insert a non Vodafone sim  and connect to iTunes
    When Apple have updated you will get a message
    "congratulations your iPhone is now unlocked "

  • How many gb are actually on the 16 gb model

    How many gb are actually on the 16 gb model new iPad is it the same as the iPad 2

    On your iPod menu, Settings>About. Click the centre button to move through the screens until you get to the one that tells you how many songs, videos etc. you have. You can also see the information by connecting your iPod to iTunes. Connect your iPod and when it shows in the iTunes 7 source list click on the chevron (the little triangle) to the left of the iPod icon This will display the various icons for the iPod itself, Music, Movies, TV Shows and Playlists. Click on Music and you'll see the usual song list, on the grey bar at the bottom you'll see how many songs are there.

  • How many people are there in the Creator team?

    Can it be made available that how many people are working for deveolping this IDE? How many softwate engineers and developers? How many managers?
    thanks.

    No, we can't give you that level of detail. Resource staffing at Sun, like most companies, is strictly company confidential information.

  • How many characters are allowed in the memo field?

    how many characters are allowed in the memo field? In iTunes in the get info section to add data to this field.

    It is 255, as are most text fields. Use the lyrics field if you want to record a large amount of information.
    tt2

  • How many characters are recognized in the Boot-up Password field?

    How many characters are actually recognized when I create my Boot Password in Mac OS X 10.4.10?
    At one time OS X only recognized the first 8 characters. Any more than 8 where ignored.
    Is this the same today?
    Message was edited by: niteowl

    I googled around and found this:
    Dave Schroeder
    Actually, Panther does not limit the password length to 8 characters. They can be much longer. The issue is that if you have upgraded from a previous version of Mac OS X to Panther using 'Upgrade' or 'Archive and Install' (keeping your existing user accounts), your existing user accounts will still use the legacy "crypt" passwords, which are limited/truncated to 8 characters.
    Any new users will be created with the new password style, which does several things:
    * does not restrict password length to 8 characters, and does not truncate at 8 characters
    * does not display the crypt password in NetInfo Manager
    * uses the functional equivalent of the /etc/shadow framework on other systems, concealing the encrypted password from other users
    * changes the password type from ;Basic; to ;ShadowHash; in NetInfo manager, and uses the new authentication scheme
    To enable this behavior for existing users, simply reset the password using the Accounts pane in System Preferences, or the 'passwd' command.

  • I cannot see how many messages are in or the size of the trash or sent folders after upgrading to 3.1.10

    I recently upgraded my Thunderbird client to 3.1.10 from 2.2xx and I no longer can see the size of folders or how many messages are in certain folders. The folders do show how many are unread, but not the total messages or size of data in folder as I could with the previous version. If these options have been removed for some reason is there a problem with reverting to the previous version? Thanks, Dave English

    That was exactly what I was looking for. Thanks

Maybe you are looking for

  • I bought a brand new iMac and now i have had five crashes with it.

    Can you help me please! I have no idea. I uninstalled and installed everthing new. The problem wasn´t solved. greetings Sascha This is the information: Anonymous UUID:       8EA6700C-CF68-684F-C5EE-2C42840EDB82 Sun Feb 16 21:35:41 2014 panic(cpu 0 ca

  • Lumia 520 store

    i am a new owner of lumia 520 , i have problem on store connectivity. when i am download/update/installation of any apps will load error massage is we can't connect to the microsoft at the moment. Please could someone put me out of my misery and tell

  • Extracting attribute value works in 9i, but not in 10g

    Hello, My XML goes as following: <msg:msg xsi:schemaLocation="http://www.scala.net/ScaInternalMsg/1.1 http://scshost/schemas/Scala/ScaInternalMsg.xsd" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:msg="http://www.scala.net/ScaInternalMs

  • Hide composite documents in Framemaker 9

    I'd like to be able to control the display of composite documents in Framemaker 9 the same as other documents, as I did in earlier versions. That is, when the focus is on a .fm document, it occupies the whole interface and the book file is hidden. I

  • Error creating home directory - Access is denied.

    Hi, I am getting one issue on the task while provisioning homedrive and homedirectory on AD resource. Error creating home directory '\\rusehf06\home\rc9782rf': ': Access is denied Please help. Thanks in advance.