Maximum number of sessions in the portal

Hi,
Please, do you know the maximum number of sessions that a particular user can open in the portal 7 ?
and it´s posible to limit the number of sessions of a user
thanks in advance.

carlos,
you can set a maximum session limit for each web module. so, if you for example want to limit the number of sessions in your portal, you could do it for the Web Module "irj"
Use NWA and navigate to Configuration / Application Module
check: http://help.sap.com/saphelp_nw70/helpdata/EN/b9/665b42cfca5542e10000000a1550b0/frameset.htm
kr, achim

Similar Messages

  • Maximum number of Sessions ever reached in the last two days

    DB version:11gR1
    We are studying the number of sessions created by one of our JAVA oltp application. We would like to know the maximum number of sessions reached in the last two days.
    I can see max_utilization column from the query
    select * from v$resource_limit where resource_name='processes'But i don't know the time interval (no of days) on which this value is based upon.

    Hi,
    One alternate option will be noting the value before you start the experiment using following statement.
    select value from v$sysstat where name = 'user calls';
    And running this SQL after you are done with making calls. Then you can subtract the two values to get the users calls made between the two times. Keep in mind that this will include all calls made to the database.
    Regards

  • SRM 5.00 web Maximum number of sessions reached

    hello
    it seems a problem very simple anyway i don't know how to resolve it.
    the error "Maximum number of sessions reached" occurs in the ITS of SRM 5.00 using the web.
    It happens on all transactionsn anyway it works properly in abap gui but not in webgui.
    If I go in all transactions and i try to open another mode the popup appears with the error descrpted.
    the session with that user are very few ...anyway the number of sessions is smaller than the parameter limit set in rdisp/max_alt_modes
    Do you have any idea?
    thanks
    Nick

    Hello Nick,
    Nicola Blasi wrote:
    If I go in all transactions and i try to open another mode the popup appears with the error descrpted.
    I do not understand what you mean by "all transactions" and "open another mode". Where do you open it? You can not open another mode from the SAP GUI for HTML (Webgui) itself, since this is not supported. You will need to start a new session.
    Best regards,
      TJ

  • Maximum number of sessions is capped at 3

    After installing a demo license for Web Tools 2007.0.625, I get the following error message:
    Maximum number of sessions is capped at 3. License is for test purposes only.
    Why would this happen, and what can I do to resolve it? I've tried restarting IIS and refreshing the cache, but nothing happened. This error was not existing a few hours ago - do license keys expire? If not, how can I cut sessions, or even see which sessions are open? This is a big problem, as development is currently held up as a result of the site being locked down.

    For anyone who was wondering, I have resolved the issue.
    The problem in question arose when copying another instance of Web Tools onto the same machine. The private keys need to be different, and if the key isn't changed in the Web.config file and it's still pointing at a different instance, you get the error I mentioned.
    Feel free to drop a comment if you're having difficulty with this and I can explain further.

  • Maximum Number of sessions reached!!

    Hi, when I am trying to release 8-10 production orders in a single transaction and it is giving an error message below of the screen saying 'Maximum Number of sessions reached'. I have only two external sessions open at single point of time.
    Please help me how resolve this error message. Thanks.

    Hi Sagar Sahoo ,
                              Check the below thread :
    http://sapfans.com/forums/viewtopic.php?t=206077
    You better need to use the Update task function module instead of submit and return.
    Thanks,
    Greetson

  • Maximum Number of Sessions per User

    I am using OAM 11.1.1.5.0 running on Solaris 10. When we change the "Maximum Number of Sessions per User" to 1 (per customer requirement), a user is restricted to having one active OAM session at a time (as expected). However, if the user does not explicitly log out (e.g. they just close their browser), they are unable to log back in to OAM until their existing OAM session times-out/expires. Given the above max sessions of 1 requirement, is it possible to config OAM to auto-kill the user's session and create a new one if they attempt to login before their initial OAM session times-out/expires? This was possible in Sun's Access Manager. Is it possible in Oracle's OAM? Thank you in advance for your reply.

    Hi,
    Maximum session per user 0-9 and how can configure see the below link:-
    http://help.sap.com/saphelp_nw70/helpdata/en/97/76a341ac57ef0be10000000a1550b0/content.htm
    Regards,
    Anil

  • Maximum number of sessions has already been reached...

    I have a web application which is made up of a servlet and some jsps. I run a test which puts a load on the webserver which sends multiple requests to the webserver so we can monitor the load.
    The problem is, my application is not handling anything gracefully when the webserver reaches it's max # of sessions. I don't want to change the default 1000 sessions, but I want to direct users to a friendly error page if this situation ever occurs.
    This is the beginning of my doGet method:
    public void doGet(HttpServletRequest request, HttpServletResponse response)
    throws ServletException, IOException {
    try {
    java.sql.Date fromDate = null;
    java.sql.Date toDate = null;
    String storySection = null;
    int history = 0;
    int numberOfRecords = 0;;
    HttpSession session = request.getSession(true);
    System.out.println("Checking if session is null***");
    if(session == null) throw new SQLException("SESSION IS NULL!");
    if(request.isRequestedSessionIdValid() == false) throw new SQLException("SESSION NOT VALID!");
    System.out.println("Session passed fine!!!!!!!!!!!!!!");
    This is the output from iPlanet 4.1SP5 errors log file:
    --- (messages before this point were just loading jsp + servlets; i.e. no errors before this point) ---
    [28/Feb/2002:09:44:21] info (21849): Internal Info: loading servlet /mmd/SquawkMessage.jsp
    [28/Feb/2002:09:48:09] warning (21849): SimpleSessionManager: cannot create a new session as the limit on maximum number of sessions has already been reached: (1000)
    [28/Feb/2002:09:48:09] failure (21849): Internal error: exception thrown from the servlet service function (uri=/mmd/SquawkHeadlines.jsp): java.lang.NullPointer
    Exception, Stack: java.lang.NullPointerException
    at jsps.mmd._SquawkHeadlines_jsp._jspService(Compiled Code)
    at org.apache.jasper.runtime.HttpJspBase.service(Compiled Code)
    at javax.servlet.http.HttpServlet.service(Compiled Code)
    at com.netscape.server.http.servlet.NSServletRunner.Service(Compiled Code)
    --- (messages after this point were more of the same until I killed the load test) ---
    Any advice? I need to find out how to handle this problem gracefully.
    Thank you,
    Karen
    [email protected]

    Hi,
    You can have an application variable that increments by one, when each new session is started. That way you can check whether the total no.of sessions have reached 1000, if yes, u can redirect the user to an error page.
    Please get back to me if u still can't get the problem solved.
    SURESH B
    [email protected]

  • Is this an error? IWSSessionManager: Maximum number of sessions is 1000

    Hi,
    When this line appear in the error log of Iplanet 6 or Sun ONE 6.1... Is this an error?
    IWSSessionManager: Maximum number of sessions is 1000
    on what situation does this usually appear? (i.e. startup) ?
    thanks

    This is an "info" message and normally is seen upon startup. If you run out of sessions you should see something like follows:
    "IWSSessionManager: cannot create a new session as the limit on maximum number of sessions has already been reached: (1000)"
    Thanks
    Manish

  • ORA-00018 maximum number of session

    Hello:
    We have a strange problem with a sql statement that when is invoked inside a php or asp program generates the following error:
    ORA-00018 maximum number of session
    We are using Oracle 9i installed over Red Hat with IIS 5.0. This query works fine in sqlplus. The query is:
    select * from vnoticias_p WHERE contains(titulo, '" . $nom . "') > 0
    titulo is a context type index formed with two concatenated fields.
    The problem had caused serious problems for us, because hangs our server every time the script is being executed.
    We ran this script only with one user connected, and we don´t understand how this query generates too many sessions?
    Appreciate your help
    Thanks

    Thanks for update.
    It is supposed that PROCESSES is the default value during installation. I don't know what is the default PROCESSES value of Oracle 11g in Solaris 10. Can you tell me so that I can correct SESSIONS?
    During Oracle 11g installation on Solaris 10, why did I get the following errors?
    ORA-12801: error signaled in parallel query server P072
    ORA-00018: maximum number of sessions exceeded
    ORA-06512: at "SYS.UTL_RECOMP", line 629
    ORA-06512: at "SYS.UTL_RECOMP", line 671
    ORA-06512: at line 1
    What is the best method to solve the above problem for Oracle 11g installation?
    SPFILE can not be modified manually. "ALTER SYSTEM " is one way. When I create another new Oracle instance, new Oralce instance uses the default PREOCESSES value or new PROCESSES value which I changed by "alter system"?
    Thanks,
    Jerry

  • This Apple ID has already restored to the maximum number of devices in the last 90 days

    Has anyone seen this error message "This Apple ID has already restored to the maximum number of devices in the last 90 days"? We get this when we use iCloud to restore a master backup to iPads in a school computer lab. The first 9 or so restores go without a problem and then we start getting the error. The iPads are running iOS 5.01.
    We previously used iTunes to do the restore and did not have a problem, but it takes a long time to deploy to the 25 iPads. We were hoping that using iCloud would be faster.

    9. You’re limited to a maximum of 10 devices. With the ability to re-download content from everywhere, Apple has limited the number of devices that can participate in iTunes in the Cloud for a given account. The new terms allow for a total of 10 devices, five of which can be computers running iTunes. This means you could have five iOS devices and five computers authorized, or one computer and nine iOS devices, or any combination of the two.
    Fortunately, this limitation only applies to iTunes in the Cloud features—you can still sync content directly from an authorized iTunes library to an unlimited number of iPods or iOS devices; the limitation only applies to authorizing devices to re-download or automatically download content directly from the iTunes Store.

  • Increasing the maximum number of sessions

    Hi,
    I am working on a web application which requires 3000 concurrent users as a part of the NFR and almost all of them would trigger operations which would require DB hits. Hence my Oracle server (10g) needs to support at least 3000 sessions. I checked the value in the V$parameter. Currently the value for sessions and process is set to 170.
    I guess to increase the value i would need to change it in the init ora file and restart the DB. I have the following doubts -
    1. What would be the basic system configuration (for the server machine) to support 3000 sessions?
    2. What are the other related parameters which need to changed? What values need to be set for the same and how do we calculate the same. Is there any model which can be used for calculations purposes.
    3. Are there any in built mechanisms supported by Oracle to handle such high load? I presume there should be available and i am blissfully unaware about of it !
    Request you to kindly guide me accordingly. Any help / pointers are greatly appreciated !!
    Thanks & Regards,
    Sriram

    The problem i face is if i limit the pool size to 300; then there is a good probability that while 3000 users access the application simultaneously reposes will be greatly delayed as the connections would be used up. This would affect the NFR.
    Also setting the increment value for the pool does not help pas the server limits the maximum number of connections. I am simultaneously checking the code to ensure that there is no connection leak. As this might also aggravate the probelm. On initial analysis i do not find any such issues.
    I am also parallely looking into the design to check if any of the frequently used data can be cached on the application server to improve performance and reduce the number of DB hits.
    Hope i am on the right track. Do let know your thoughts and suggestions.
    Thanks a lot for highlighting the issue.
    Thanks & Regards,
    Sriram

  • Error 'Maximum number of sessions reached' while posting an idoc

    Hi,
       i got one requirement that when ever user enters so many materials with different quantities and version id's and when he executes,it has to post the idocs using FM .but if the number of records increases,iam getting error that 'maximum number of internal sessions exceeded' how can i avoid this for successfful posting.To avoid  this i called the FM in background .If i call the FM in background it is not at all posting even one idoc also.Can anybody please help on this .
    Thanks & Regards
    Roopa

    Hi,
       i got one requirement that when ever user enters so many materials with different quantities and version id's and when he executes,it has to post the idocs using FM .but if the number of records increases,iam getting error that 'maximum number of internal sessions exceeded' how can i avoid this for successfful posting.To avoid  this i called the FM in background .If i call the FM in background it is not at all posting even one idoc also.Can anybody please help on this .
    Thanks & Regards
    Roopa

  • BDC error :Maximum number of sessions reached

    Hi!
    I have created a BDC program which outputs the available Orders / delivberies for a particular plant with checakboxes to select each lines or multiple selection. On selecting one opr more line from output and clicking a GENERATE button on the output screen the bdc calls in VF01 transaction and subsequently the billing documenst are automatically generated and sent to the printer directly.
    The problem: The problem happend when more than 6 documents are selected or if the selected no. of items are more than the screens opened in any enviornment where we are running , it gives an error message that "maximum number of sessiosn reached" . This creates  aproblem is knowing which documenst or how many invoices have already printed and which ones did not.
    I was wondering if there is nay other way of stopping this problem of miximum number sessions recahed. I mean if there is anyway we can eliminate each processesed session so that it does not have to create so many screens even if more documents are selected.
    Thanks

    I have the sales document number that I am using to create the billing document. I am not prety sure where to use it. I ahve set the parameter ID AUN alread6.
    refresh: bdc_tab.
      perform update_bdc using: 'X' 'SAPMV60A'    '0102',
                                ' ' 'BDC_CURSOR'  'RV60A-FKART',
                                ' ' 'RV60A-FKART' lc_fkart,
                                ' ' 'BDC_OKCODE' '/00'.
      loop at it_vbeln into wa_vbeln.
        ln_index = sy-tabix.
    *   Up to the second delivery of the BDC add the Delivery to the screen,
    *   after that click the More Documents for every entry.  logic changed for DEVK902353
    *   changed again in added for every line DEVK910604
        case ln_index.
          when 1.
            concatenate 'KOMFK-VBELN' '(' ln_index ')' into lc_field.
            if li_lines = 1.
              perform update_bdc using: ' ' lc_field wa_vbeln.
            else.
              perform update_bdc using: ' ' lc_field wa_vbeln,
                                        ' ' 'BDC_OKCODE' 'FKAN'.
            endif.
          when others.
            if p_rdos  = 'X'.
              concatenate 'KOMFK-VBELN' '(2)' into lc_field.
              perform update_bdc using: ' ' lc_field wa_vbeln,
                                        'X' 'SAPMV60A'   '0102',
                                        ' ' 'RV60A-FKDAT' lc_date,
                                        ' ' 'BDC_OKCODE' 'FKAN'.
            else.
              concatenate 'KOMFK-VBELN' '(2)' into lc_field.
              perform update_bdc using: ' ' lc_field wa_vbeln,
                                        'X' 'SAPMV60A'   '0102',
                                        ' ' 'BDC_OKCODE' 'FKAN'.
            endif.
        endcase.
      endloop.
    * VF01 will go to a different screen if only one line selected
      if li_lines eq 1.
        perform update_bdc using: 'X' 'SAPMV60A' '0104',
                                  ' ' 'BDC_OKCODE' '=SICH'.
      else.
        perform update_bdc using: 'X' 'SAPMV60A' '0102',
                                  ' ' 'BDC_OKCODE' '=SICH'.
      endif.
      {color:green}call transaction 'VF01' using bdc_tab options from lwa_bdcoptions
                               messages into it_bdcmess .{color}
      write: / 'BDC Messages:'.
      skip.

  • Max number of sessions in the database for abt a month

    Hi,
    We are adding around 1000 additional users to our 11g database, how to find the impact of CPU, Memory etc.. And also we would like to know max number of sessions in last one month. Please let us know how to get this info.
    Thanks in advance.
    Edited by: 934825 on Dec 7, 2012 7:55 AM

    vlethakula wrote:
    You can join
    dba_hist_resource_limit and dba_hist_snapshot
    SELECT a.begin_interval_time, a.end_interval_time,
    b.resource_name, b.current_utilization,
    b.max_utilization
    FROM dba_hist_resource_limit b, dba_hist_snapshot a
    WHERE a.snap_id = b.snap_id AND b.resource_name = 'sessions'
    ORDER BY a.begin_interval_timeDon't forget that the use of these DBA_HIST* views or their underlying tables requires a license for the performance pack.

  • How to find out maximum number of sessions allowed to a user?

    Hello all,
    Can you please tell me how can I find out the maximum concurrent sessions are allowed to a particular or all users in the Oracle database?
    I am currently using the Oracle 9.0.2 database server.
    I tried to query v$license, it gave me NULL records.
    Thanks in advance
    Himanshu

    Users have a profile. example :
    CREATE PROFILE DEFAULT LIMIT
              SESSIONS_PER_USER UNLIMITED
              CPU_PER_SESSION UNLIMITED
              CPU_PER_CALL UNLIMITED
              CONNECT_TIME UNLIMITED
              IDLE_TIME UNLIMITED
              LOGICAL_READS_PER_SESSION UNLIMITED
              LOGICAL_READS_PER_CALL UNLIMITED
              COMPOSITE_LIMIT UNLIMITED
              PRIVATE_SGA UNLIMITED
              FAILED_LOGIN_ATTEMPTS UNLIMITED
              PASSWORD_LIFE_TIME UNLIMITED
              PASSWORD_REUSE_TIME UNLIMITED
              PASSWORD_REUSE_MAX UNLIMITED
              PASSWORD_LOCK_TIME UNLIMITED
              PASSWORD_GRACE_TIME UNLIMITED
              PASSWORD_VERIFY_FUNCTION NULL;
    SESSIONS_PER_USER is the one you are looking for. You can find more here:
    Select * FROM SYS.DBA_PROFILES WHERE PROFILE = :Name

Maybe you are looking for

  • Nokia Lumia 630 DS - Google Mail live tile icon

    New owner of a Lumia 630 DS running Windows Phone 8.1... Very happy overall, but noticed this minor problem with the Google Mail icon being the "default" email one when pinned as a live tile... Anyone else noticed this or have any ideas? Attachments:

  • Denon AVR 1709

    I cannot get Apple TV to work through my Denon AVR. Is this a common problem as I have now heard that there maybe compatibility issues.

  • MI Client 7.0 startup classpath problem

    hi experts, I have installed jdk1.5.0_11 and MI Client 7.0 on my system. Now when-ever i try to start my client it shows me an error "Time out 61, cannot connect to server ". I have run the  "startup.bat"  file in cmd and it shows following trace. C:

  • Hierarchies and Master Detail Linking

    I have a hierarchy field that I would like to use as my "Master" source to drive my report detail. I'm having trouble and am wondering if this is even possible given that in the table/graph prompt I can only set it up to listen for one channel. Very

  • Subcontracting-moving average price update in finished good

    Dear all, We are having make to order scenario in which we are sending raw material or semifinished goods to subcontractor through purchase order .The price control is v in material master ,when processing is done at subcontractors end we are doing g