AS Java sessions are not closed until they time out

Hello Experts,
we have a SAP PI system to integrate SAP R/3 with external applications and recently we are facing a problem with inactive sessions. There's a new application we are setting up that consumes a webservice published by this SAP PI system. The scenario is SOAP --> PI --> PROXY. What we have noticed is that when the application sends loads of requests sometimes the system fails. This is because we are reaching the maximum number of open sessions in AS Java (1000). Investigating a bit more we found out that the sessions are not "closed" once the communication between the application and SAP PI has finished. Those sessions are open until they are automatically timed-out by the system after 1800 sec.
We have found the notes below in SAPNet:
Note 1363751 - ICM: Java Web sessions are not terminated
Note 1307940 - New HTTP session opened for every web service call
However, none of them are applicable to our system because it is more updated:
SAP PI 7.1 EHP1 SP002
Kernel Patch Level: 87
We have tried to close connections from the application that consumes the webservice but with no success. The sessions remain in the server until they are timed-out. Could you please tell us if this is the normal behavior of an AS Java system? Is this the way it should work? If so, can you tell us how to decrease this timeout so the inactive sessions are cleaned faster? We tried to find it but we didn't manage. Is there any way to close the session once the communication has finished?
Thank you in advance.
Roger Allué i Vall

Hi Roger,
You can do the following things to help solving your issue:
1. Decrease session timeout default value of the web container: Use the NetWeaver Administrator
Open Application Modules plugin within NWA
Configuration Management -> Infrastructure -> Application Modules
Set the desired timeout web module you are using, in minutes.
The default value 0 in the NWA means that the value is not modified
and the default value of 30 minutes timeout will be used.
2. Increase the max. no. of Sessions in Configtool
The max. number of Sessions can be set in Configtool in the Expert
mode. There is no limitation for the parameter.
Thanks,
Anderson

Similar Messages

  • Buddies are not visible until they come online.

    I'm having a problem on my iBook. When I log into iChat on buddies online are shown. All the other are hidden from sight. It isn't that big of a deal, but it is slightly annoying. Is there anyway to fix this problem without having to re-install the OS?
    Thanks,
    Stephen

    HI Jerseygirl,
    I actually use Textspander
    This is a System Preference Pane add-on.
    It come with several Presets for adding date and time to documents.
    I have several of my own preset now that include the HTML code to work here.
    So I type the required keys that Textspander recognises and substitues the HTML code for the Sig.
    The code is a simple case of telling an image to be put in place. It goes on to add Date and Time of post.
    The actual pic was created in Photoshop Elements 2. It was written by hand with a Graphire Wacom pad, which gave it a slightly more natural look. I used .gif format so that the background can be removed and stay clear. I messed about with Layer Styles to create the shadow.
    The Image was then posted to Flickr There is also other services that will hold your pics or you could use any webspace you have.
    The image can in fact be anything
    For instance is http://static.flickr.com/1/130427790_1b4487a5c6.jpg?v=0
    I held the mouse down and selected Properties from the menu.
    The Address of the Pic has to be highlighted and then Use Control and C to copy to the clipboard. (The menu item for Copy does not work for this).
    The rest is just the HTML code to make the pic show up.
    <img src="add your pic http address here">
    1:49 PM Thursday; May 18, 2006

  • PDFs are not downloading completely, they stall-out. I am on OS X 10.8.4.

    I have been having issues for weeks getting PDFs to download. I am on OS X 10.8.4 and have the most recent Adobe Reader installed. I unistalled the old version and installed this one today.  I access a PDF, click to down load, it starts up and then stalls-out, dies. I don't get my file. Help, please.

    If you right-click or control-click on the url to download the file does it happen any quicker? Does the download complete? If not the issue is not Reader, but either your internet connection or where you are downloading the files from.

  • Cursors are not closed when using Ref Cursor Query in a report  ORA-01000

    Dear Experts
    Oracel database 11g,
    developer suite 10.1.2.0.2,
    application server 10.1.2.0.2,
    Windows xp platform
    For a long time, I'm hitting ORA-01000
    I have a 2 group report (master and detail) using Ref Cusor query, when this report is run, I found that it opens several cursors (should be only one cursor) for the detail query although it should not, I found that the number of these cursors is equal to the number of master records.
    Moreover, after the report is finished, these cursors are not closed, and they are increasing cumulatively each time I run the report, and finally the maximum number of open cursors is exceeded, and thus I get ORA-01000.
    I increased the open cursors parameter for the database to an unbeleivable value 30000, but of course it will be exceeded during the session because the cursors are increasing cumulatively.
    I Found that this problem is solved when using only one master Ref Cursor Query and create a breake group, the problem is solved also if we use SQL Query instead of Ref Query for the master and detail queries, but for some considerations, I should not use neither breake group nor SQL Query, I have to use REF Cursor queries.
    Is this an oracle bug , and how can I overcome ?
    Thanks
    Edited by: Mostafa Abolaynain on May 6, 2012 9:58 AM

    Thank you Inol for your answer, However
    Ref Cursor give me felxibility to control the query, for example see the following query :
    function QR_1RefCurDS return DEF_CURSORS.JOURHEAD_REFCUR is
    temp_JOURHEAD DEF_CURSORS.JOURHEAD_refcur;
              v_from_date DATE;
              v_to_date DATE;
              V_SERIAL_TYPE number;
    begin
    SELECT SERIAL_TYPE INTO V_SERIAL_TYPE
    FROM ACC_VOUCHER_TYPES
    where voucher_type='J'
    and IDENT_NO=:IDENT
    AND COMP_NO=TO_NUMBER(:COMPANY_NO);
         IF :no_date=1 then
                   IF V_SERIAL_TYPE =1 THEN     
                   open temp_JOURHEAD for select VOCH_NO, VOCH_DATE
                   FROM JOURHEAD
                   WHERE COMP_NO=TO_NUMBER(:COMPANY_NO)
                   AND IDENT=:IDENT
              AND ((TO_NUMBER(VOCH_NO)=:FROM_NO and :FROM_NO IS NOT NULL AND :TO_NO IS NULL)
              OR (TO_NUMBER(VOCH_NO) BETWEEN :FROM_NO AND :TO_NO and :FROM_NO IS NOT NULL AND :TO_NO IS NOT NULL )
              OR (TO_NUMBER(VOCH_NO)<=:TO_NO and :FROM_NO IS NULL AND :TO_NO IS NOT NULL )
              OR (:FROM_NO IS NULL AND :TO_NO IS NULL ))
                   ORDER BY TO_NUMBER(VOCH_NO);
                   ELSE
                   open temp_JOURHEAD for select VOCH_NO, VOCH_DATE
                   FROM JOURHEAD
                   WHERE COMP_NO=TO_NUMBER(:COMPANY_NO)
                   AND IDENT=:IDENT               
              AND ((VOCH_NO=:FROM_NO and :FROM_NO IS NOT NULL AND :TO_NO IS NULL)
              OR (VOCH_NO BETWEEN :FROM_NO AND :TO_NO and :FROM_NO IS NOT NULL AND :TO_NO IS NOT NULL )
              OR (VOCH_NO<=:TO_NO and :FROM_NO IS NULL AND :TO_NO IS NOT NULL )
              OR (:FROM_NO IS NULL AND :TO_NO IS NULL ))     
                   ORDER BY VOCH_NO;          
                   END IF;
         ELSE
                   v_from_date:=to_DATE(:from_date);
                   v_to_date:=to_DATE(:to_date);                         
              IF V_SERIAL_TYPE =1 THEN
                   open temp_JOURHEAD for select VOCH_NO, VOCH_DATE
                   FROM JOURHEAD
                   WHERE COMP_NO=TO_NUMBER(:COMPANY_NO)
              AND IDENT=:IDENT                         
                   AND ((voch_date between v_from_date and v_to_date and :from_date is not null and :to_date is not null)
                   OR (voch_date <= v_to_date and :from_date is null and :to_date is not null)
                   OR (voch_date = v_from_date and :from_date is not null and :to_date is null)
                   OR (:from_date is null and :to_date is null ))     
                   ORDER BY VOCH_DATE,TO_NUMBER(VOCH_NO);     
              ELSE
                   open temp_JOURHEAD for select VOCH_NO, VOCH_DATE
                   FROM JOURHEAD
                   WHERE COMP_NO=TO_NUMBER(:COMPANY_NO)
                   AND IDENT=:IDENT                         
              AND ((voch_date between v_from_date and v_to_date and :from_date is not null and :to_date is not null)
                   OR (voch_date <= v_to_date and :from_date is null and :to_date is not null)
                   OR (voch_date = v_from_date and :from_date is not null and :to_date is null)
                   OR (:from_date is null and :to_date is null ))     
                   ORDER BY VOCH_DATE,VOCH_NO;          
              END IF;
         END IF;               
         return temp_JOURHEAD;
    end;

  • My voice mail messages are not appearing as they are left. Often no voicemails show up until 4 weeks after they have been left

    I am having trouble with my voice mail on the iPhone. The voicemails are not appearing until 3 even 4 weeks after they are left by a caller. Last night 10 voice messages came through all at once, one left before Thanksgiving. Is this an iPhone issue or an issue with the carrier?

    I'm having the same issue. It began three or four days ago. I'd notice that I'd miss a call but the person wouldn't leave a message.
    Two days later, suddenly three or four new voicemails will pop up from the past couple of days. The time stamp on the messages is correct-- it will show that the caller left the vmail a day or two before.
    Also, in what has to be a related problem, some of the voicemails appear to be corrupted and cannot be played.
    I have a 4s and my software is up-to-date. I have made no material changes to my phone, other than automatic software updates to explain this.
    It's enormously frustrating and as a job seeker, I can't afford to miss voicemails. Does anyone know if this is the phone or the carrier (AT&T)?
    Any help and input will be enormously appreciated.

  • Hi, I have a problem wih Photoshop. I am trying to press the buttons but they don't work at all. Also the program are not closed. How can i fix this? FYI, Illustrater is working normally.

    Hi, I have a problem wih Photoshop. I am trying to press the buttons but they don't work at all. Also the program are not closed. How can i fix this? FYI, Illustrater is working normally.

    You have not provided any useful technical information like system specs, error messages or whatever. We don't even know your exact product version.
    Mylenium

  • JMS session is not closed even after calling close()

    Hi All,
    I am using JMS to receive and publish topics for a process,in my java code i
    am creating new JMS Session on demand(ie., whenever a new topic is
    received) after processing the topic i am closing the session with close(),but
    still the session is not closed.In a period of time more sessions are created
    and FD leaks occurs which stops the process functionality.
    Later i moved the on demand session code to a static block, its working fine
    and no FD leak occurs.
    Is this a known behavior or any java bug is there to point this issue,please
    help me regarding this.
    Thanks,
    Ants Balajei

    You should try avoid creating sessions on demand but cache/pool them...
    http://activemq.apache.org/how-do-i-use-jms-efficiently.html
    James
    http://www.iona.com/
    Open Source the Enterprise Way

  • TS4057 I did this and now my videos are not working. They show the pictures aren't there on some and on others it shows they are there, but doesn't show them in the player. When I try to Share anything it just says Waiting for Processing for hours. What d

    I did this and now my videos are not working. They show the pictures aren't there on some and on others it shows they are there, but doesn't show them in the player. When I try to Share anything it just says Waiting for Processing for hours. What do I do?
    I also got Motion and can't figure out how to use it with Final Cut Pro X. Any help woud be great. Thanks

    I have no idea what may have caused your MacBook to stop working, but from your description it kind of sounds like it may have started before you ran Software Update and installed the new Apps. Just the general slow feeling and bugginess is what tips me off. You said that you weren't sure if you had closed all open windows, that doesn't matter if the computer restarts itself. It automatically closes all other open applications when restarting.
    As to your data being retrievable, if when you take it in they do a fresh install of the OS, then no, it will not be unless you want to pay several thousand dollars to a software retrieval company.
    I am glad to hear that you have taken into the Apple Store to get it fixed, and that you have all of your purchased music backed up to your iPod. You should be able to just transfer it all back to iTunes once you get your computer back should it be necessary.
    As a side note, the proper place for this topic would probably in the MacBook forums, not iTunes since there is no evidence that iTunes started the issue.

  • Could not find an installed JDK, SCM Java Tools may not work until registry

    Hello all,
    I've downloaded the latest full version of Designer (10.1.2.3), but getting installation error: Could not find an installed JDK, SCM Java Tools may not work until registry
    Any solution?

    3. install the Designer 10.1.2.3 patch to the Developer suite home.When I try to do this at C:\oracle\product\Ora10gDSR2, I get a message OUI-10137: An Oracle Home with name OUIHome already exits at C:\OraHome (a directory that doesn't exist) please specify another name for Oracle Home.
    I don't want to just specify another name because cleaning up these faulty installations requires deleting registry keys, etc, since the deinstall does't really remove everything sufficiently to start with a clean slate.
    I also got the Java JDK message because the JDK 5 is no longer being put straight onto the C drive, it is buried in C:\Sun\SDK\jdk, so some java programs have to be pointed to it. The Oracle installer doesn't provide this option.
    Also, Michael, your post, "Re: Designer 10.1.2.3 on windows Xp Posted: Oct 20, 2007 7:05 AM in response to: mmehdi" is full of unreadable characters and question marks. Maybe I don't have a font you are using. There are also references to a zip file and a Word document that aren't there.
    Anyway, thanks for all your time and effort,
    Edward

  • Jboss sessions are not deleted automatically under tmp/sessions folder

    /server/default/tmp/sessions
    In my Production and develppment IDM ; OUt Jboss tmp/.sessions are not not clering once it reaches 31988 files the production systems stops working until we clear the sessions folder any idea will be appreciated?
    Edited by: ark on Jul 16, 2010 1:52 PM

    You won't get much help here on this issue.
    I know neither you could get any help on internet.
    Try Jboss forums at community.jboss.org and also post the query on coderanch at: http://www.coderanch.com/forums/f-63/JBoss

  • Some of my contact names are not appearing when they text message me.  They are just showing up as their numbers. I have them saved in my phone so i am not really sure why their names aren't showing up when they message me?

    some of my contact names are not appearing when they text message me.  They are just showing up as their numbers. I have them saved in my phone so i am not really sure why their names aren't showing up when they message me?

    I have this identical problem.  For a while my group texts didnt show up on my ipad.  Then one day they did, maybe everyone in the group started using the same os version or something.  Ever since my first reply to the group there have been complaints of multiple threads.  I can not find a pattern for when my group text's decide they want to create a new thread. (it doesnt happen every time)  Everyone in the group has deleted the thread, we've all toggled imessage on/off etc.  There still hasn't been a solution.
    Any help would be appreciated.
    Thanks

  • I sometimes have blue and red square-shaped dots appear on my MBP; especially but not exclusively when I'm watching videos.  The dots don't stay in the same place; and also they are not there all the time.

    I sometimes have blue and red square-shaped dots appear on my MBP; especially but not exclusively when I'm watching videos.  The dots don't stay in the same place; and also they are not there all the time.  Also, sometimes my animations (applications opening, windows being dragged, etc.) will glitch as well.  Again, this is not a continual thing; it just happens variously throughout my day.  MBP Model A1212, OS X 10.6.8, 2.33 Ghz 3GB RAM.

    Did the original songs that do not appear on the car player play in the Music app on the iPod? Sometimes glitches happen and they do not. Also, If y ohave a 5G iPod/iOS 7, purchase songs  will show with an cloud icon by them if they are not downloaded if Shall All is turned on in Settings>iTunes and App Store

  • Data of different session are not getting refreshed.

    We used select one choice and it is bind to the iterator. Data of different session are not getting reflected.
    Problem Scenario : Two browsers are open with same screen . In browser-1, I am adding new item which display on drop down of same screen. But drop down of browser-2 is not displaying the new added value.
    Please let me know how to refresh the data of browser-2 if I added data on different session.
    //JSFF entry
    <af:selectOneChoice binding="#{backingBeanScope.Product.ICTCSTName}"
    id="iCTCSTName" simple="true"
    label="#{bindings.tpCrudeSuperTypeFindAllPopulatedCT.label}"
    required="#{bindings.tpCrudeSuperTypeFindAllPopulatedCT.hints.mandatory}"
    value="#{bindings.tpCrudeSuperTypeFindAllPopulatedCT.inputValue}"
    autoSubmit="true">
    <f:selectItems value="#{bindings.tpCrudeSuperTypeFindAllPopulatedCT.items}"
    binding="#{backingBeanScope.Product.si2}"
    id="si2"/>
    </af:selectOneChoice>
    //Pagedef entry
    <list IterBinding="tpCrudeSuperTypeFindAllPopulatedCTIterator"
    ListOperMode="navigation"
    ListIter="tpCrudeSuperTypeFindAllPopulatedCTIterator"
    id="tpCrudeSuperTypeFindAllPopulatedCT" DTSupportsMRU="true">
    <AttrNames>
    <Item Value="superTypeName"/>
    </AttrNames>
    </list>

    Are you sure backingBeanScope is the correct scope for your scenario?
    Session scope sound more appropriate to me.
    binding="#{backingBeanScope.Product.si2}"

  • Notification on apps are not showing until i open them ??

    notification on apps are not showing until i open them

    Hello captin007,
    Thanks for the question. After reviewing your post, it sounds like apps show notification only after you open the app. I would recommend that you read this article, it may be able to help the issue.
    Understanding notifications on iPhone, iPad, and iPod touch - Apple Support
    If you're not receiving notifications for a specific app, try these steps:
    Verify that the app supports notifications. 
    After installing an app or restoring a backup to a different iOS device, open the app to begin receiving notifications. If the app requires entering or logging in to an account, you will need to do this before receiving notifications.
    Check Settings > Notification Center to ensure that the app is configured for notifications. If notifications do not appear in the Notification Center, verify that the Notification Center setting for the app is enabled.
    Thanks for using Apple Support Communities.
    Have a nice day,
    Mario 

  • JAVA servers are not starting

    Hi SAP Gurus,
    some days back i did system refresh from prod. now ABAP is running but only java servers are not starting. other nodes dispatcher & SDM running. please suggest.
    here is dev_server1 file
    =============================================
    -> arg[ 36]: -Djstartup.whoami=server
    -> arg[ 37]: -Djstartup.debuggable=no
    -> arg[ 38]: -DSAPINFO=BQN_51_server
    -> arg[ 39]: -DSAPSTART=1
    -> arg[ 40]: -DCONNECT_PORT=64990
    -> arg[ 41]: -DSAPSYSTEM=51
    -> arg[ 42]: -DSAPSYSTEMNAME=BQN
    -> arg[ 43]: -DSAPMYNAME=cpcsapv1_BQN_51
    -> arg[ 44]: -DSAPPROFILE=/usr/sap/BQN/SYS/profile/BQN_DVEBMGS51_cpcsapv1
    -> arg[ 45]: -DFRFC_FALLBACK=ON
    -> arg[ 46]: -DFRFC_FALLBACK_HOST=localhost
    -> arg[ 47]: -DSAPSTARTUP=1
    -> arg[ 48]: -DSAPSYSTEM=51
    -> arg[ 49]: -DSAPSYSTEMNAME=BQN
    -> arg[ 50]: -DSAPMYNAME=cpcsapv1_BQN_51
    -> arg[ 51]: -DSAPDBHOST=cpcsapv1
    -> arg[ 52]: -Dj2ee.dbhost=cpcsapv1
    [Thr  4] Fri Feb  3 14:28:34 2012
    [Thr  4] JHVM_LoadJavaVM: Java VM created OK.
    JHVM_BuildArgumentList: main method arguments of node [server1]
    [Thr 27] Fri Feb  3 14:28:36 2012
    [Thr 27] JHVM_RegisterNatives: registering methods in com.sap.bc.krn.perf.PerfTimes
    [Thr 27] JHVM_RegisterNatives: registering methods in com.sap.bc.proj.jstartup.JStartupFramework
    [Thr 27] JLaunchISetClusterId: set cluster id 515639851
    [Thr 27] Fri Feb  3 14:28:44 2012
    [Thr 27] JLaunchISetState: change state from [Initial (0)] to [Waiting for start (1)]
    [Thr 27] JLaunchISetState: change state from [Waiting for start (1)] to [Starting (2)]
    Fri Feb  3 14:29:13 2012
    40.606: [GC 40.606: [ParNew: 87040K->5145K(130560K), 0.0272228 secs] 87040K->5145K(1005056K), 0.0273939 secs]
    Fri Feb  3 14:30:59 2012
    147.504: [GC 147.505: [ParNew: 92185K->4232K(130560K), 0.0099921 secs] 92185K->4232K(1005056K), 0.0101364 secs]
    Fri Feb  3 14:31:32 2012
    180.020: [GC 180.020: [ParNew: 91272K->11482K(130560K), 0.0398227 secs] 91272K->11482K(1005056K), 0.0400287 secs]
    Fri Feb  3 14:31:35 2012
    182.991: [GC 182.992: [ParNew: 98522K->16449K(130560K), 0.0520708 secs] 98522K->16449K(1005056K), 0.0522291 secs]
    Fri Feb  3 14:31:37 2012
    184.671: [GC 184.671: [ParNew: 103489K->16840K(130560K), 0.0362919 secs] 103489K->16840K(1005056K), 0.0364886 secs]
    Fri Feb  3 14:31:38 2012
    185.955: [GC 185.955: [ParNew: 103880K->17465K(130560K), 0.1179448 secs] 103880K->17465K(1005056K), 0.1181308 secs]
    Fri Feb  3 14:31:39 2012
    187.030: [GC 187.030: [ParNew: 104505K->19470K(130560K), 0.0490249 secs] 104505K->19470K(1005056K), 0.0492104 secs]
    Fri Feb  3 14:31:40 2012
    187.892: [GC 187.892: [ParNew: 106510K->20973K(130560K), 0.0462993 secs] 106510K->20973K(1005056K), 0.0464782 secs]
    Fri Feb  3 14:31:41 2012
    188.624: [GC 188.625: [ParNew: 108013K->22480K(130560K), 0.0549972 secs] 108013K->22480K(1005056K), 0.0551496 secs]
    Fri Feb  3 14:31:42 2012
    189.855: [GC 189.856: [ParNew: 109520K->26140K(130560K), 0.0483116 secs] 109520K->26140K(1005056K), 0.0485971 secs]
    [Thr 139] Fri Feb  3 14:31:47 2012
    [Thr 139] JHVM_RegisterNatives: registering methods in com.sap.mw.rfc.driver.CpicDriver
    [Thr 139] JHVM_RegisterNatives: registering methods in com.sap.i18n.cp.ConverterJNI
    [Thr 139] JHVM_RegisterNatives: registering methods in com.sap.mw.rfc.engine.Compress
    Fri Feb  3 14:31:48 2012
    196.478: [GC 196.479: [ParNew
    Fri Feb  3 14:31:49 2012
    : 113180K->34002K(130560K), 0.0845910 secs] 113180K->34002K(1005056K), 0.0848079 secs]
    Fri Feb  3 14:32:14 2012
    221.647: [GC 221.647: [ParNew: 121042K->43127K(130560K), 0.0901828 secs] 121042K->43127K(1005056K), 0.0904040 secs]
    Fri Feb  3 14:32:15 2012
    223.343: [GC 223.343: [ParNew: 130143K->37620K(130560K), 0.0733509 secs] 130143K->46470K(1005056K), 0.0735802 secs]
    Fri Feb  3 14:32:16 2012
    224.069: [GC 224.069: [ParNew: 124591K->40179K(130560K), 0.0747273 secs] 133442K->49029K(1005056K), 0.0749214 secs]
    Fri Feb  3 14:32:17 2012
    224.682: [GC 224.683: [ParNew: 127211K->40700K(130560K), 0.0815027 secs] 136062K->52675K(1005056K), 0.0816996 secs]
    225.187: [GC 225.187: [ParNew: 127724K->40534K(130560K), 0.0587785 secs] 139699K->54340K(1005056K), 0.0589684 secs]
    [Thr 130] Fri Feb  3 14:35:11 2012
    [Thr 130] JHVM_RegisterNatives: registering methods in com.sap.security.core.server.vsi.service.jni.VirusScanInterface
    [Thr 149] Fri Feb  3 14:35:12 2012
    [Thr 149] ***LOG S98=> STISearchConv, no conv (14387978) [r3cpic_mt.c  6137]
    [Thr 149]
    [Thr 149] *  LOCATION    CPIC (TCP/IP) on local host with Unicode
    [Thr 149] *  ERROR       no conversation found with id 14387978
    [Thr 149] *
    TIME        Fri Feb  3 14:35:12 2012
    [Thr 149] *  RELEASE     701
    [Thr 149] *  COMPONENT   CPIC (TCP/IP) with Unicode
    [Thr 149] *  VERSION     3
    [Thr 149] *  RC          473
    [Thr 149] *  MODULE      r3cpic_mt.c
    [Thr 149] *  LINE        6138
    [Thr 149] *  COUNTER     1
    [Thr 149] *
    [Thr 149] *****************************************************************************
    [Thr 149]
    **[Thr 149] *  LOCATION    CPIC (TCP/IP) on local host with Unicode**
    **[Thr 149] *  ERROR       illegal parameter value ( function=SAPCMTIMEOUT2 /**_
    ***              parameter=conversationID / value=14387978 )**_
    **[Thr 149] ***
    ***  TIME        Fri Feb  3 14:35:12 2012**
    **[Thr 149] *  RELEASE     701**
    **[Thr 149] *  COMPONENT   CPIC (TCP/IP) with Unicode**
    **[Thr 149] *  VERSION     3**
    **[Thr 149] *  RC          769**
    **[Thr 149] *  MODULE      r3cpicmt.c**_
    **[Thr 149] *  LINE        7354**
    **[Thr 149] *  COUNTER     2**
    **[Thr 149] ***
    **[Thr 149] *******************************************************************************
    [Thr 27] JLaunchISetState: change state from [Starting (2)] to [Starting applications (10)]
    399.717: [GC 399.717: [ParNew: 127574K->43520K(130560K), 0.0996730 secs] 141380K->60028K(1005056K), 0.0999462 secs]
    Fri Feb  3 14:35:15 2012
    402.992: [GC 402.993: [ParNew: 130425K->39664K(130560K), 0.0697386 secs] 146933K->65055K(1005056K), 0.0699946 secs]
    Fri Feb  3 14:35:18 2012
    406.083: [GC 406.083: [ParNew: 126695K->36855K(130560K), 0.0698643 secs] 152086K->67926K(1005056K), 0.0701081 secs]
    Fri Feb  3 14:35:19 2012
    407.337: [GC 407.338: [ParNew: 123895K->36788K(130560K), 0.0644911 secs] 154966K->67859K(1005056K), 0.0646924 secs]
    Fri Feb  3 14:35:20 2012
    Excluding compile:  com.sap.engine.services.webservices.jaxrpc.encoding.TypeMappingImpl::initializeRelations
    Fri Feb  3 14:35:21 2012
    409.075: [GC 409.075: [ParNew: 123700K->38997K(130560K), 0.0669356 secs] 154771K->70069K(1005056K), 0.0671589 secs]
    Fri Feb  3 14:35:24 2012
    411.813: [GC 411.814: [ParNew: 126037K->41099K(130560K), 0.0865503 secs] 157109K->72170K(1005056K), 0.0867652 secs]
    ==============================================================

    Hi,
    From the logs, looks like the Java is not able to connect to the ABAP via the RFC.
    ERROR no conversation found with id 14387978
    Check the SAPJSF user which is required for communication between ABAP and Java stacks. Check for roles and if it is locked. Also you could try a server restart, which may reset the conversation IDs.
    Regards,
    Srikishan

Maybe you are looking for

  • I'm looking for a "tools" tab w/internet options on it and can't find it

    I recently downloaded Mozilla and in looking over the new page i noticed that there is no tool bar w/File, Edit, View, Favorites, Tools, and Help like there is in Internet Explorer. I'm just wondering if it exists and if it does can you please tell m

  • Suggestion - Peoplesoft documentation in HTML format

    Hi, Currently, we can find all the Peoplesoft documentation on the following link : http://www.oracle.com/technology/documentation/psftent.html That really nice, but the purpose format is only pdf style, is it possible to add the HTML format which is

  • CIN-STO

    Hello We have a bonded warehouse. Client import the Material but donot pay the CVD, Customs Duty, ED cess &H ED cess on CVD, ED CESS &HED CESS obN Basic Customs duty through import PO. A stock transport order is created with supplying plant as Bonded

  • Huge backup size for iCloud

    My Friend's iCloud backup is huge but she doesn't have much on, so why.  I have over 200 photos and it says my photo file is 227 mgb, hers only has 40 pics and her photo file is 421mgb. What do you think is wrong?  She has an iPad Air And doesn't hav

  • Error in loading report

    Hi to all I have problem with loading report. i have connection to oracle database by third party driver(i made odbc by this driver). when i design my report is not problem and even see preview report by live informations. but when i want to test my