Limit Number of active sessions for wlan user in Cisco Prime

Is there a way to limit the number of logins from a particular set of credentials in Cisco Prime 2.1? I want to set a maximum of 2 logins from a particular user on the wlan. I have a guest wlan using layer 3 security and an internal wlan using RADIUS (Windows). Would appreciate the help

There is, but it isn't due to PI. It is a function of the WLC itself.
Under Security, there is a Concurrent User Login, set to 0(which is default) it is unlimited logins. This value can be changed to be the number of concurrent logins that work for your situation.
Be advised, this is not a Per WLAN setting, it is a controller wide setting.
HTH,
Steve

Similar Messages

  • Reserving the sessions for a user in Oracle database

    Hi,
    Suppose the Oracle database is running in dedicated mode.
    I want sys or abc user to have some sessions reserved for them.
    This is because if there is heavy load on the system and all the sessions are used up then we can not connect to database to see what is happening inside.
    However, if we have got some policy on the number of reserved sessions for a user then we can always log in as that user and see what is happening inside the database.
    Consider any version of database, if you can get what I am asking then try answering it, else I can elaborate it further.
    Please note that I do not want to change the server mode from Dedicated to Shared.
    Any help will be appreciated.
    Thank you.
    --Harvey.                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   

    Hi Guys,
    There has to be some way to achieve this. But your sugestions are correct to have a user connected always if we are going to face an issue.
    Any ways if there is no other way to achive this then we can not do any thing, else Oracle come up with something.
    --Harvey                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   

  • Impact on roaming profile accounts if we Change User logon Name to Employee Number format in Active Directory for all User accounts

    I want to understand if we change User logon Name to Employee Number format in Active Directory for all User accounts, then what would be the impact on existing profile. Whether we need to change it manualy or it will connect to same profiles in terminal
    session.
    As i observed it create new profile after logon name changed to employee number where existing users profile settings get fails to load and prompt for new settings (such as outlook reconfiguration, share drive mapping etc.).
    Kindly let me know the proper process to overcome with this, how to connect same existing roaming profile with employee number format change.

    Hi,
    What if we change the user name of user account, will it have impact on roaming profiles.
    Yes, it will affect roaming profiles. Please rename the roaming profile folder as the new user account name, in addition, change the profile path in ADUC.
    Here is an related article below for you:
    How to Rename a Windows 7 User Account and Related Profile Folder
    http://social.technet.microsoft.com/wiki/contents/articles/19834.how-to-rename-a-windows-7-user-account-and-related-profile-folder.aspx
    Best Regards,
    Amy

  • ACSE - Max. number of simultaneous sessions for a given user?

    Hi,
    I know in the ACSE one can limit the number of simultaneous sessions for a given user; but is there a maximum number of sessions any one user can have open if they aren't specifically limited? (i.e. - Is there anything to prevent one user from having, say 50 sessions open?)
    Thanks,Nick

    Hi Nick,
    ACS only provide authentication (and authorization and accounting) services with various ability like limiting LOGIN sessions to/through a device, controlling what command to execure (tacacs+) and so on.
    However, I don't think ACS has the ability to limit how many sessions can be opened/established from a client to a server or application. This should be controlled by either by the servers or applications.
    A device like firewall (PIX/ASA) can only limit connection to a server, but not from a device.
    Rgds,
    AK

  • The number of active sessions isn't decreasing in OC4J instance

    Hi Guru’s,
    Could you help me, please?
    The number of active sessions isn’t decreasing in OC4J instance after our clients closed the application.
    Our partner use Oracle AS 10gR3 (10.1.3.4.0) with J2EE and HTTP mode.
    When we monitoring our OC4J instance with Performance tab on Oracle EM, we appreciate that the value of Active Sessions on ‘Servlets and JSPs’ are very high. If users close our applications, then number of active sessions isn’t decreasing and active status isn’t becoming inactive.
    Which OC4J settings responsible for managing active sessions and how can I get more information about the active session details?
    Thanks in advance,
    Zoltan

    Dinesh.Rajak wrote:
    When I deployed this code Tomcat, it is giving the output as 0, hence tried with accessing the jsp file in multiple browsers but still it is showing the count of active session as 0 - plz helpPlease, don't resurrect old threads, and it's still the wrong forum. Create a new thread if you have a specific question, and create the thread in the correct forum. I'm closing this thread.
    Kaj

  • How to open multiple sessions for one user?

    Sorry for the silly question but I couldn't find it googling or searching through this forum, so I started wondering whether it's possible in SQL Developer to open multiple sessions for one user. I'm fairly new to SQL Developer and databases in general.
    When I open SQL Developer and connect to a schema, a worksheet opens named MYSCHEMA. If I disconnect then connect, another worksheet opens, named MYSCHEMA~1. I assumed these were different sessions, but if I enter into one worksheet:
    select col1 from my_table where row_id = 1
    -- shows result is 1
    update my_table set col1 = 0 where row_id = 1
    select col1 from my_table where row_id = 1
    -- shows result is 0and then enter into the second worksheet:
    select col1 from my_table where row_id = 1
    -- shows result is 0I would have expected the second worksheet to report 1 because the first worksheet did not issue a COMMIT. Thus, I'd guess both worksheets are the same session? Is that right? If so, how do I have two sessions open simultaneously (opened by same user)?
    I'm trying to implement the code at the bottom of this post, for which testing requires at least two sessions:
    Re: Help with Procedure
    Edited by: tem on Apr 18, 2012 6:44 AM

    Thanks Jim,
    Ctrl-Shift-N doesn't do anything for me. I'm on a mac -- by experimenting it looks like command-N does what you're looking for. This appears to be the same as left-clicking on the "New" icon in the top left corner of SQL Developer, or selecting from the pull-down menu, File > New.
    This opens "Create a New" window that appears to be a wizard. What would I select at this point? Options are: Database Connection, Table, View, Package, ...
    I don't see an option for "Worksheet".
    UPDATE:
    OK, I found that if I select "SQL File", a worksheet becomes available. Perhaps this is what you intended. However, when I issue the command
    select col1 from my_table where row_id = 1;it still returns 0 instead of 1. Hmm, maybe my initial assumption was wrong -- if this is a second (e.g. different) session, should I expect the changes made in the first session in SQL Developer (the UPDATE command) WITHOUT a commit, to be observed in this second session? I thought that changes made in one session were not viewable in a different session until these changes are committed in the first session? If so, how to show this in SQL Developer? I must be missing something basic here.
    Or, is SQL Developer issuing some sort of "auto-commit" without my knowledge?
    Edited by: tem on Apr 18, 2012 8:00 AM

  • Import local net users to Cisco Prime 1.2

    Hi,
    We have 4400 WLC that has about 400 local users configured under local net users and we are deploying Cisco Prime 1.2 in our company. Does anyone know how to import these users to Cisco prime? I was told that it could only be done manually like re entering all 400 entries to Cisco Prime! if this is the case it 'll be tedious.
    Thanks for any help.

    Hello,
    Complete the following steps to migrate data from WCS:
    1. Place the WCS export ZIP file (for example, wcs.zip) in a repository or folder (for example, repositories).
    2. Log in as the admin user and stop the Cisco Prime Infrastructure server by entering the ncs stop  command. Configure the FTP repository on the Cisco Prime Infrastructure  appliance using the repository command as shown in configuration  snippet below:
    pi-appliance/admin# configure
    pi-appliance/admin(config)# repository pi-ftp-repo
    pi-appliance/admin(config-Repository)# url ftp://209.165.200.227/backup
    pi-appliance/admin(config-Repository)# user ftp-user password plain ftp-user
    Note: Make sure the archived file is available with the show repository command.
    3. Enter the ncs migrate command in order to restore the WCS database.
    pi-appliance/admin# ncs migrate wcs-data wcs.zip repository pi-ftp-repo
    4. By default, no WCS events are migrated. Enter the ncs start  command in order to start the Cisco Prime Infrastructure server after  the upgrade is completed. Log in to the Cisco Prime Infrastructure user  interface with the root login and the root password.
    For mmore information you can refer to the cisco prime infrastructure deployment guide:
    http://www.cisco.com/en/US/prod/collateral/netmgtsw/ps6504/ps6528/ps12239/deployment_guide_c07-721232.html#wp9000654

  • [Forum FAQ] Restrict number of Active Sessions in RDS 2012 and 2012 R2

    As everyone knows with the introduction of Windows Server 2012 & 2012 R2, there are various changes and no more availability for RDSH configurations or Remote Desktop Service Manager;
    now we can manage all the settings under Server Manager and group policy.
    Configuration 1: Remote Desktop Timeout settings:
    Here, we will see the Remote Desktop timeout settings. You can maintain the settings under below mention path (Figure 1 and Figure 2).
    Open the
    Server Manager, select Remote Desktop Services.
    In Remote desktop Services, in right side you can drop down to
    collections.
    Select the
    collection which you want to edit the settings.
    Under
    collections Properties, select Task and then Edit Properties.
    In Properties dialog box, select
    Session.
    You can find all the
    timeout settings under session collection properties; edit according to your requirements and then
    OK.
    Figure 1: Selecting Collection Properties
    Figure 2: Configuring screen for Timeout and reconnection Settings
    Group policy setting:
    The same settings can also be applied by Group Policy.
    You can also configure timeout and reconnection settings by applying the following Group Policy settings, you can check the figure 3 for graphical view.
    Set time limit for disconnected sessions
    Set time limit for active but idle Remote Desktop Services sessions
    Set time limit for active Remote Desktop Services sessions
    End session when time limits are reached
    In addition to this another group policy available with the help of which you can bale to set time limit for logging off the RemoteApp according to our desired time. This setting
    can be applied with addition to above mentioned policy.
    Set time limit for logoff of RemoteApp Sessions
    These Group Policy settings are located in the following locations:
    Computer Configuration\Policies\Administrative Templates\Windows Components\Remote Desktop Services\Remote Desktop Session Host\Session Time Limits
    User Configuration\Policies\Administrative Templates\Windows Components\Remote Desktop Services\Remote Desktop Session Host\Session Time Limits
    These Group Policy settings can be configured by using either the Local Group Policy Editor or the Group Policy Management Console (GPMC).
    Note:
    These Group Policy settings will take precedence over the settings configured in Remote Desktop Session Host Configuration. If both the Computer Configuration and the User Configuration policy
    settings are configured, the Computer Configuration policy settings take precedence.
    Figure 3: Group Policy for setting Timeout and reconnection setting
    Configuration 2:
    Restrict & Enable user to a single & multiple session
    Under Windows Server 2012 & 2012 R2, there is no specific setting under RDP-TCP as it is not available.
    Restrict User to Single session:
    To restrict the user to single session (Disable Multiple RDP Session) you can configure the setting under group policy (Figure 4).
    Computer Configuration\ Administrative Templates\ Windows Components\ Remote Desktop Services\ Remote Desktop Session Host\ Connections
    Restrict Remote Desktop Services users to a single Remote Desktop Services session     Enabled
    Figure 4: Group policy for Restrict user to Single session
    Enable user to multiple session:
    To enable the user to multiple session you can configure the setting under below (Figure 5).
    Computer Configuration\ Administrative Templates\ Windows Components\ Remote Desktop Services\ Remote Desktop Session Host\ Connections
    Restrict Remote Desktop Services users to a single Remote Desktop Services session     Disabled
    Figure 5: Group Policy for Enable user to Multiple Session
    In addition you can also edit the registry setting for allowing multiple RDP session as per below (Figure 6).
    HKEY_Local_Machine\SYSTEM\CurrentControlSet\Control\Terminal Server
    fSingleSessionPerUser     REG_DWORD     0x00000000
    Note: By default the registry value is set to 1, but you need to change to 0.
    Figure 6: Display the registry settings
    Also you can edit the policy “Limit number of connections” and set RD Maximum collection as per your company
    requirements (Maximum limit: 999999) for above mention group policy path (Figure 7).
    Figure 7: Group Policy for Limit number of Connections
    Apart from this, if you have not specified any policy or registry setting and still you want to restrict the new session, then in Windows Server 2012 & 2012 R2 there is option where you
    need to follow below steps (Figure 8 and Figure 9).
    Right click a Remote Desktop Session Host in specified location of Host Server and select “Do not allow new connections”.
    After clicking that it will ask you for your confirmation, click yes and no new connection will be allowed.
    Figure 8: Setting displaying “Do not allow new connections”
    Figure 9: Confirmation popup
    RD Gateway Connection Properties:
    If you have deployed RD Gateway under your environment you can also limit the number of simultaneous connections through RD Gateway by configuring
    policy under RD Gateway Manager. For this you need to follow below mention path.
    Open RD Gateway Manager, select the server which you want to modify.
    Right click Properties.
    Under General Tab
    -Limit maximum allowed simultaneous
    connections to:Specify the number of connection you want to able to provide connection.
    -Allow the maximum
    supported simultaneous connections:This
    setting will allow maximum supported connections at a time.
    -Disable new connections:This
    setting will not allow new connections through RD Gateway but Active connection will not be automatically disconnected.
    Select the option as per requirement which able to allow the connection
    Figure 10: Connections setting under RD Gateway Manager
    Configuration 3: Configure keep-alive connection interval
    As per above mention in initial post you can able to change the setting for Keep alive connection interval. In addition to this also verify the
    registry setting must be set as per following (Figure 11 and Figure 12).
    HKEY_Local_Machine \ SOFTWARE \ Policies \ Microsoft \ Windows NT \ Terminal Services
    KeepAliveEnable       REG_DWORD           0x00000001 (1)
    KeepAliveInterval     
    REG_DWORD           0x00000001 (1)
    Figure 11: Group Policy setting for Keep alive
    Figure 12: Registry setting for keep alive
    If you need further assistance, welcome to post your questions in our
    Remote Desktop Services (Terminal Services) forum.
    If you would like to achieve this in Windows Server 2008 or Windows Server 2008 R2, please move on to the next post.

    Applies to Windows Server 2008 and Windows Server 2008 R2
    Configuration 1: Remote Desktop Timeout settings:
    1. Open the property dialog for RDP-Tcp connection in Remote Desktop Services Manager.
    2. In the Sessions tab, you can configure the following settings:
    Active Session Limit
    Idle session limit
    Action when session limit is reached or connection is broken
    End a disconnected session
    Additionally, you can configure the settings with the help of Group Policy also by below mention path.
    Computer Configuration\Policies\Administrative Templates\Windows Components\Remote Desktop Services\Remote Desktop Session Host\Session Time Limits
    User Configuration\Policies\Administrative Templates\Windows Components\Remote Desktop Services\Remote Desktop Session Host\Session Time Limits
    Configuration 2: Restrict each user to a single session
    By using this configuration or policy setting, each user can only maintain one session to the certain terminal server; when another session is started by the same user, the original one will
    lose the connection. In that way, the total number of possible active sessions won’t exceed the total remote users. You can implement this as below mention steps.
    Remote Desktop Host (RDP-Tcp) configuration:
    Edit Settings – Restrict each user to a single session: Yes
    Group Policy: Computer Configuration\Administrative Templates\Windows Components\Remote Desktop
    Services (Terminal Services)\Remote Desktop Services Session Host (Terminal Server)\Connections\
    Restrict Remote Desktop Services (Terminal Services) users to a single remote session:    Enabled
    Configuration 3: Configure keep-alive connection interval
    By specifying the minutes that the TS holds a remote session actually disconnected, the server will detect the session status after each period. The session that are actually offline will
    be changed to disconnected status:
    Group Policy:  
    Computer Configuration\Administrative Templates\Windows Components\Remote Desktop Services (Terminal Services)\Remote Desktop Services Session Host (Terminal Server)\Connections\
    Configure keep-alive connection interval:         Enabled and Specify the Value
    Please click to vote if the post helps you. This can be beneficial to other community members reading the thread.

  • Set "Maximum number of recipients" option for specific users in Exchange 2010

    I have some set of users who usually send bulk emails outside. I need to increase the value for these users for"Maximum number of recipients" as 999.
    Any help or suggestion is appreciated.
    Thanks,
    RIWAA
    RIWA

    Hi Riwa ,
    Really sorry for providing the wrong value on MaxRecipientEnvelopeLimit in my previous post.
    The default value for MaxRecipientEnvelopeLimit is 5000
    Reference Link : http://technet.microsoft.com/en-us/library/bb124151%28v=exchg.150%29.aspx
    MaxRecipientEnvelopeLimit
    Optional
    Microsoft.Exchange.Data.Unlimited
    This parameter is available only in on-premises Exchange 2013.
    The MaxRecipientEnvelopeLimit parameter specifies the maximum number of recipients in a message. The default value is 5000. The valid input range for this parameter is from 0 through 2147483647.
    If you enter a value ofUnlimited, no limit is imposed on the number of recipients in a message. Exchange treats an unexpanded distribution group as one recipient.
    ANDY thanks a lot for intimating and making me to have a clear understanding on this case.
    Thanks & Regards S.Nithyanandham

  • Can't setup Tooltalk session for mulitple users

    I want to create a single tooltalk session that can be shared by a dynamic number of users. How would I set this up? What is difference between xauth and ttauth? I tried to join remote sessions and create/send messages using ttsnoop, but I get TT_ERR_SESSION. The /.TTauthority is in our home directory and is shared by all users. However, we cannot see each others sessions. I've read a lot of documentation out there with no solution nor examples for multiple users, so please help!

    I don't think the latest Sun Studio tools use tooltalk anymore.
    I think there is a CDE development environment for Linux,
    perhaps that software has a support forum with people who know
    more about tooltalk. I don't know where else to ask. If there
    are "desktop" related forums on opensolaris.org, you might find
    people there who know more.
    --chris                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           

  • Free Visual Composer session for BPM Users (and win an iPod!)

    Hello to all BPM fans and users!
    We would like to invite you to a free online session that focuses on creating UIs for your human tasks in BPM, using Visual Composer ! Forget all these Web Dynpro APIs and focus on what's really important - your user. With Visual Composer, you can seamlessly create UIs that use data coming from the BPM process and send data from the task to the process.
    You can integrate a variety of UI elements and manipulate data inside the Visual Composer model, insert Flex elements, and also add Web Dynpro components and UI if you realize that something is still missing.
    The first of several online sessions will take place on Thursday 3/6/2010 13:00 GMT+2 and you're all invited. Attend the session for a chance to win an iPod !
    Weu2019ll have more of these sessions, focusing on other more advanced topics of Visual Composer. To receive the session connection data, please send us an email to visualcomposer @ sap.com and tell us a bit about yourself: your role in your company, the kind of projects you usually do, and the level of knowledge and experience you have with Visual Composer (if any).

    Hello to all BPM fans and users!
    We would like to invite you to a free online session that focuses on creating UIs for your human tasks in BPM, using Visual Composer ! Forget all these Web Dynpro APIs and focus on what's really important - your user. With Visual Composer, you can seamlessly create UIs that use data coming from the BPM process and send data from the task to the process.
    You can integrate a variety of UI elements and manipulate data inside the Visual Composer model, insert Flex elements, and also add Web Dynpro components and UI if you realize that something is still missing.
    The first of several online sessions will take place on Thursday 3/6/2010 13:00 GMT+2 and you're all invited. Attend the session for a chance to win an iPod !
    Weu2019ll have more of these sessions, focusing on other more advanced topics of Visual Composer. To receive the session connection data, please send us an email to visualcomposer @ sap.com and tell us a bit about yourself: your role in your company, the kind of projects you usually do, and the level of knowledge and experience you have with Visual Composer (if any).

  • Any way to get number of active sessions

    Hi,
              With the deprecation of the HttpSessionContext interface as of Servlet API
              2.1 for security reasons, is there any way to know how many sessions are
              currently active in a given WebLogic instance?
              Thanks,
              Sanjiv
              

    You could make it a singleton. The overhead is nothing ... trust me. Run
              WebLogic through a profiler if you don't ;-)
              Good luck,
              Cameron Purdy, LiveWater
              "Sanjiv Gulati" <[email protected]> wrote in message
              news:[email protected]...
              > Thanks for sharing this technique. Although I haven't used the
              > HttpSessionBindingListener interface myself, this will work as long as I
              add
              > an instance of SessionCounter in each new session. The only modifications
              > I'll add to the code below would be a synchronized block within the
              > valueBound and valueUnbound methods so that modifications to m_cSessions
              are
              > thread safe.
              >
              > The overhead associated with this approach will be the following:
              > 1) For every session there will be an associated SessionCounter, and
              > 2) Serialization of requests that end up invoking the valueBound &
              > valueUnbound methods.
              >
              > But I guess this cannot be avoided.
              >
              > Thanks,
              > Sanjiv
              >
              > Cameron Purdy <[email protected]> wrote in message
              > news:[email protected]...
              > > The only portable implementation is to have all requests go through your
              > > servlet code (or JSP code) and check if the session is new
              > > (HttpSession.isNew). If so, register a value with the session that
              > > implements HttpSessionBindingListener. Something like:
              > >
              > > class SessionCounter implements HttpSessionBindingListener {
              > > // count of active sessions
              > > private static int m_cSessions;
              > > // accessor for count of active sessions
              > > public int getSessionCount() {
              > > return m_cSessions;
              > > }
              > > // this object placed on a session
              > > void valueBound(...) {
              > > ++m_cSessions;
              > > }
              > > // this object removed from a session
              > > void valueUnound(...) {
              > > --m_cSessions;
              > > }
              > > // end class
              > > }
              > >
              > > It is host-local ... meaning it only tracks one host in a cluster.
              > > Actually, it only tracks sessions within one classloader on one host in
              a
              > > cluster, but don't worry about that distinction.
              > >
              > > And no, I've never done it, but it is apparent that you could, if you
              > chose
              > > to:
              > >
              > > 1) Count sessions
              > > 2) Track all session instances
              > > 3) Have session-level events, such as onCreate/onDestroy
              > >
              > > Hope it helps,
              > >
              > > Cameron Purdy, LiveWater
              > >
              > > "Sanjiv Gulati" <[email protected]> wrote in message
              > > news:[email protected]...
              > > > Hi,
              > > >
              > > > With the deprecation of the HttpSessionContext interface as of Servlet
              > API
              > > > 2.1 for security reasons, is there any way to know how many sessions
              are
              > > > currently active in a given WebLogic instance?
              > > >
              > > > Thanks,
              > > > Sanjiv
              > > >
              > > >
              > >
              > >
              >
              >
              

  • Activity report for end-user ?

    Hi,
    One of my customers wish to get information about the use of it´s application. He is not the adminsitrator of the workspace.
    As an administrator of the workspace you can run reports about activity for applications/users.
    I would like to build it as a part of the application of my customer.
    Can anyone point me in the right direction ?
    Any reaction will be appreciated.
    Leo

    Hello Leo,
    Maybe one of these views contain the data you need (to prevent you from re-inventing the wheel):
              APEX_WORKSPACE_ACTIVITY_LOG
                   APEX_WORKSPACE_LOG_SUMMARY
                   APEX_WORKSPACE_LOG_SUMMARY_USR
    Greetings,
    Roel
    http://roelhartman.blogspot.com/
    http://www.bloggingaboutoracle.org/
    http://www.logica.com/

  • Infinite session for single user SAP BIBO 4.1 SP4 patch2

    Hello,
    I am currently using SAP BI BO 4.1 SP4 Patch2 on Windows server 2008R2 and Sybase as database.
    On BI launch pad after 20 minutes session expire but when user click on OK button after that BO creating infinite session in CMC for same user.
    Any Idea on same.

    Hi Atul,
    The user sessions are not killed in BI is one of the known issues in Business Objects. Please refer following documents to kill the sessions manually or automate the kill session process.
    https://websmp130.sap-ag.de/sap(bD1lbiZjPTAwMQ==)/bc/bsp/sno/ui_entry/entry.htm?param=69765F6D6F64653D3030312669765F7361…
    https://websmp130.sap-ag.de/sap(bD1lbiZjPTAwMQ==)/bc/bsp/sno/ui_entry/entry.htm?param=69765F6D6F64653D3030312669765F7361706E6F7465735F6E756D6265723D3230313834383926
    How to Delete Stale BI4 User Sessions with biUserSessionKillScript
    Regards,
    Hrishikesh

  • Help in estimating number of dialogue steps for portal user scenarios

    I am looking for your expert advice in determining the number of dialogue steps for SAP portal users in the following scenarios:
    1) External users accessing a SAP portal to access utilities services such as viewing bills, paying bills, update meter readings etc. The system needs to support 6000 concurrent users.
    2) Internal users (customer service agents) accessing IS-U, CRM (potentially BW) via an internal SAP portal. The system needs to support 2000 concurrent users. .
    It would be extremely helpful to hear from anyone that has been involved in SAP portal implementations who could advise me on number of dialogue steps to use for each user scenario.
    Many thanks,
    Celia

    I am looking for your expert advice in determining the number of dialogue steps for SAP portal users in the following scenarios:
    1) External users accessing a SAP portal to access utilities services such as viewing bills, paying bills, update meter readings etc. The system needs to support 6000 concurrent users.
    2) Internal users (customer service agents) accessing IS-U, CRM (potentially BW) via an internal SAP portal. The system needs to support 2000 concurrent users. .
    It would be extremely helpful to hear from anyone that has been involved in SAP portal implementations who could advise me on number of dialogue steps to use for each user scenario.
    Many thanks,
    Celia

Maybe you are looking for