Max. no. of sessions reached - using ITS on WAS

Hi All,
We are facing an issue wherein whenever we try to create a new session in SAP GUI we are getting an error saying
"Maximum no. of sessions reached"
We are using ITS on WAS(webgui) i.e.using the WAS URL we are signing in where we can see the SAP Easy Acess screen.Whenever we are giving /ose38 it throws up a popup saying max.no. of sessions reached.
Can any1 tel me how this can be avoided?
Is there a ITS parameter through which we can change the max limit of sessions per user? If yes,can you tel me how to do it?
Also how many sessions can be opened in parallel using SAP logon pad ?? And how many sessions when are we acessing the backend frm the browser window?
Regards,
Abhishek

Abhishek,
the following parameters (set them with RZ10) should solve your problem:
rdisp/max_alt_modes             (maximum number of sessions per user)
login/disable_multi_gui_login   ( enable / disable multi-login)
kr, achim

Similar Messages

  • How can i get the value stored in the session object using its sessionid

    how can i get the value stored in the session object using its sessionid by running stand alone java application

    myforum wrote:
    how can i get the value stored in the session object using its sessionid by running stand alone java applicationThis does not seem to make sense! You need at least to give a lot more detail of what you are doing.

  • Can we access the session scoped variable by simply using its name

    The Java EE 6 Tutorial contains a "Duke's Bookstore Case Study Example”. I could not understand following statements of this case study:
    *bookdetails.xhtml*
    {code}
    <h:outputText value="#{selected.title}"/>
    {code}
    *BookstoreBean.java*
    {code}
    public String details() {
    context()
    .getExternalContext()
    .getSessionMap()
    .put(
    "selected",
    getFeatured());
    return ("bookdetails");
    {code}
    I want to know can we access the session scoped variable in bookdetails.xhtml by simply using its name as done above?

    It is basic Expression Language (EL) functionality, it isn't even specific to JSF. And it isn't specific to the session scope either, you can put beans in any scope (page, request, session, application, flash, conversation, whatever custom scope you create) and reference it using EL by only its name. The thing that you have to take care of is that the bean lives in SOME scope, which can be achieved using JSF specific annotations or configuration files, through CDI or by manually putting the bean in a specific scope through Java code. It's flexible, which is the nature of the Java platform.

  • Max no session reached problem

    hi,
    the problem is that when navigating through the screens in the project comprise of menupainter, screenpainter, the problem like
    <b>"maximum number of internal sessions reached"</b> appeared in middle of the navigation and coming out of the project. pls give ur idea to overcome this.

    hi karthigayan,
    is sap it accepts only upto 6 sessions , if it exceeds then show the message 'maximum number of internal sessions reached',
    u can close the unnecessary session that's all.
    reward points if helpful,
    regards,
    seshu.

  • 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

  • LDAP "ServerListener" stops responding (Max number of connections reached)

    Hi --
    The last four work days, in the evening, our OAS 10G server stopped processing portal logon requests. The response to login requests was this message:
    Internal error WWC-00006 Unexpected error
    encountered in wwsec_app_priv.process)signon
    (User-Defined Exception) (WWC-41417)
    An exception was raised when accessing the
    Oracle Internet Directory 81: Can't contact
    LDAP server. Details:
    Operation dbms_ldap.simple_bind_s (The message also included other details such as the host, port and DN, and a reference to error message WWC-41743.)
    Suspecting an LDAP problem, we looked on the server, and in ORACLE_HOME/LDAP/LOG I found recent log files (oidldapd[instance]s[pid].log) with several megs of messages that look like this:
    2005/06/17:17:59:33 * ServerListener :2 * ERROR :
    ServerListener : Max numbers of connections reached.
    Num Conns = 874, Max Conns = 874, Closing the
    connection. These messages repeated, several times per minute, overnight and the next day until I restarted the server. The same thing happened again the next night.
    A metalink search pointed to docid "293391.1" which, in part, suggests that the problem may be caused by improper programming, and that the solution may be to, "investigate the applications that connect to OID and where possible modify them to perform an explicit disconnect."
    Does anyone have any reference to how an application can perform an explicit disconnect from the OID? We do have a relatively new application which follows the "Java API for Oracle Internet Directory" -- documention found here: http://download-west.oracle.com/docs/cd/B10501_01/network.920/a96577/oid_java.htm -- but in that document we cannot find any reference for how to "perform an explicit disconnect".
    The application already calls the "context.close()" method, which according to the documentation closes the connection to the OID, but we cannot find any other "explicit disconnect". And, since the problem happens even though our app is already calling the context.close(), there must be something else.
    Opened this up as a Metalink question related to Portal, but they said it's not their problem, and we should ask over here.
    Any thoughts?

    Looks like that's helped. While the errors persist, OID isn't dieing.
    For anyone with similar problems, it looks like docid 437493.1 is useful. Upgrade clients to at least 10.2.0.3 to defeat a sqlnet problem.
    Just tried it with the 10.2.0.5 patchset and it seems to be working and not generating the 104 error on the OID server.

  • 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.

  • OID Max numbers of connections reached.

    OID version 9.0.4.1.0. There're constant error messages '* ServerListener:2 * ERROR : ServerListener : Max numbers of connections reached. Num Conns
    = 900, Max Conns = 900, Closing the connection." in the ldap.log file, but netstat -a|grep port|wc -l always return connections lower than 150.
    I'd like to know what caused the error message being populated. Thanks

    Looks like that's helped. While the errors persist, OID isn't dieing.
    For anyone with similar problems, it looks like docid 437493.1 is useful. Upgrade clients to at least 10.2.0.3 to defeat a sqlnet problem.
    Just tried it with the 10.2.0.5 patchset and it seems to be working and not generating the 104 error on the OID server.

  • Inactive sessions while using Iplanet server

    Hi all,
    I am facing a strange problem. On application level we use 'apps' user to login in oracle. It was working fine earlier. But now a days when we login thru it the performance becomes slow,when I checked the sessions, it shows me 250 inactive sessions.The max limit of sessions is 400.
    Then I have to manually kill the inactive sessions and application starts working fine . Any idea about this problem?
    Oracle version is 10g version 2
    Thanx and regards

    I am not very sure but there must be some property from which you can kill the inactive session which has taken more time.
    Cheers

  • "Hard limit on number of sessions reached".

    Hi,
    We have problem with out discoverer (10.1.2)
    We are lunching Disco viewer from a link in our Portal.
    Once the total session reach 100, we get the error
    "Hard limit on number of sessions reached".
    Also, we have noticed that, Even after closing the disco viewer (using browser x button) we see that the process runs till the default Timeout of 60 min.
    How to make the sessions cleanup after the viewer is closed
    Thanks

    You can do what Tamir mentioned from your Application Server Control. Or you could raise a service request and ORacle will guide you pretty quickly ont his.
    The best way to get out of a query is "File --> Close" X-ing out of the window will keep the query going.
    Thanks,
    -Esther

  • 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

  • Error Message-"Maximum number of internal sessions reached"

    Hi,
       In one of the User defined screen , we are getting error as
    "Maximum number of internal sessions reached".
       This error is not coming each & every time.This screen is used to store the values in Z-table.
       This error is coming after entering 6-9 entries.  
       What may be the problem.
       The code is as follows :
       when 'save'.
            INSERT zmmt001_grn_gate FROM wk_zmmt01.
            INSERT zmmt002_grn_item FROM TABLE it_zmmt02.
            IF sy-subrc EQ 0.
              COMMIT WORK.
              MESSAGE I002 WITH wk_sno.
              CLEAR wk_lifnr.
              CLEAR wk_ebeln.
              CLEAR wk_name.
              CLEAR wk_appval.
              CLEAR wk_chal.
              CLEAR wk_form38.
              REFRESH it_temp_tc1 .
              CALL TRANSACTION 'ZMMI001'.
            ELSE.
              ROLLBACK WORK.
              MESSAGE e000 WITH text-006.
            ENDIF.
      Whether CALL TRANSACTION 'ZMMI001' statement having problem..
      Pls give your suggestion on this.
    Thanks in Advance,
    Best Regards,
    Pavan.

    Hi
    I agree on the reason of the problem, too. SAP limits the number of internal sessions. By calling the transaction with <b>"CALL TRANSACTION ..."</b> statement, you keep the current transaction's program data and open a new internal session. To handle things technically, SAP forces an internal session number limit.
    The solution is to use <b>"LEAVE TO TRANSACTION ..."</b> which ends the current transaction session, rolls out the relevant program and then opens the new session.
    *--Serdar
    [email protected]

  • Workflow erro: maximum number of nodes for a session reached

    Hi
       a number of workflows went into error with message maximum number of nodes for the session reached 11000 . what can be the reason . is there some settings thats need to be made in production . because it is working in dr3 and qr3

    Hi,
    Check the condition on the loop for you workflow. It seems its getting into infinite loop.
    Also check for the possibility FM which might be triggering your workflow is getting executed in an infinite loop. So it might trigger multiple instances of the same workflow.
    Regards,
    Niraj

  • Max number of sessions in database instance?

    Is there a max for the sessions that Oracle 8i database instance can handle?
    In the corba/transaction/multiSessions example, by just changing the number of sessions from 3 to 10 would cause the following exception in my system(8.1.6):
    ClientThread constructor exception: org.omg.CORBA.COMM_FAILURE: java.io.IOException: Peer disconnected socket
    minor code: 0 completed: No
    org.omg.CORBA.COMM_FAILURE: java.io.IOException: Peer disconnected socket minor code: 0 completed: No
    Why is this?
    null

    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 do I find the max number of sessions ever recorded?

    Hi,
    I see sessions_highwater column in v$license shows the max number of sessions since the database startup time, but I'm wondering if there is a view that shows the max number of sessions ever recorded? (i.e. before the last database restart)
    Thanks!
    Jon

    You can check the number of sessions from the below query using hist views. But you can only go back upto  the retention policy setting.
    SELECT   res.snap_id, s.begin_interval_time, s.end_interval_time,
             res.instance_number, res.resource_name, res.current_utilization,
             res.max_utilization
        FROM dba_hist_resource_limit res, dba_hist_snapshot s
       WHERE s.snap_id = res.snap_id AND res.resource_name = 'sessions'
    ORDER BY s.begin_interval_time, res.instance_number

Maybe you are looking for

  • Creating indesign files using xml & c#

    hey... i need to make an indesign template/doc from an XML file using C# as the language. can anyone of you please help me in this. Thanks in advance to all of you.

  • Displaying text editor

    Hello Experts, I have a pushbutton on a screen and clicking on that would display a text editor along with long text of that pushbutton.I dont know how to create container etc, so I am not able to make out how to solve this problem.Can anyone please

  • ZIP file download throws java.lang.IllegalStateException: Response already

    Hello. In my application I need to implement a functionality where user will able to download multiple image files of their choice in compressed zip format. To implement it I used af:fileDownloadActionListener. I need to submit the form before going

  • I'm trying to make a AUTO slide show. I can select all the other actions like mouse clicks etc. but

    I'm trying to make a AUTO slide show. I can select all the other actions like mouse clicks etc. but ON load will not work. PLEASE HELP> I do not know how to reload/reinstall "ADOBE" golive default actions. I'm using golive cs mac version and "ON LOAD

  • CFChart Displaying False Data

    I posted a question previously about grouping CFChart output that was answered by MikeRoo. I thought it was solved and marked it as such. However, this morning I discovered that the Chart contained invalid data -- data that is not in the database. I