Need to close RFC connection

Hi all,
Currently we developed a application in NWDS, the same is operational from portal.
As per the requirment we have to run the RFC many times to extract the data from R/3. After running the RFC many times
we are getting the following Error "Error connecting using JCO.client: null"
But if we redeploy the application the problem is solved but after a while the same issue is persisting.
Please suggest how the problem can be solved ??
Thanks,
vijay.

Hi venkat,
Thanks for the example suggested by you.
The following is the RFC iam executing many times.
Z_Hr_Aprsl_Init_Input input= new Z_Hr_Aprsl_Init_Input();
input.setI_Usrid("UserId");
wdContext.nodeZ_Hr_Aprsl_Init_Input_new().bind(input);
wdContext.nodeZ_Hr_Aprsl_Init_Input().currentZ_Hr_Aprsl_Init_InputElement().modelObject().execute();
the code iam using to close the connection is
JCO.Client client = JCO.getClient(" "); // Please specify the parameter to be used to refer the above RFC
client.disconnect();
Please suggest the required the parameter to close the RFC connection
Thanks
vijay

Similar Messages

  • Open and close RFC connection with portals...

    Hi Experts,
    I created a RFC having a query which is taking a long time to execute. So i want to close RFC connection with portals which is via java connector(JCO)  before that query and open the connction again after that query.
    Please advice is it possible to achieve this. If yes, then how.
    Regards,
    Guddan

    Hi Guddan,
    I created a RFC having a query which is taking a long time to execute. So i want to close RFC connection with portals which is via java connector(JCO) before that query and open the connction again after that query.
    I guess i will need to understand your requirement a little more in detail, as i understand you have an RFC which has a query within to fetch some data and is taking a long time to do so. In the meantime you don't want to keep the connection open?
    My question would be, Is the role of this RFC to only execute the query and fetch the data or does it do something else?
    If it does other things and these are independent of the query execution, then you can span a parallel call within the RFC to execute the query and in the meantime the RFC does the other things (or vice versa) hence reducing the overall time taken.
    If the sole purpose of this RFC is to execute the query, then you will not be able(i mean to say there is no simple and direct way of doing this) to close the connection after the Query is started and re-establish the connection after its execution, for a simple reason that - how will you know if the query has completed it's execution, so that you can establish the connection back.
    Alternate solutions, make this a two way asynchronous call, 1) You invoke the RFC asynchronously and close the connection, the RFC in turn will execute the query and transfer the data to JCO via another RFC call.
    If this needs to be a synchronous call, then you will need to optimize the query to its best.
    Regards,
    Chen

  • How to close RFC connection in one script coding

    In one script, I am using the REF command to call another 2 scripts and these called scripts shd be run on same C36 ( test system). I shd close RFC connection between these 2 scripts.
    That is , once the 1s script over the RFC shd be closed and the user has to give usename and pwd  then  2nd script shd run.
    I have tried with the following code…. But it says RFC is not open……
    REF ( Y04S_FC_RM_CJ88_112 , Y04S_FC_RM_CJ88_1 , C36_999 ).   (when execute this script RFC to C36 will be created and after execution that RFC shd be closed so I included following ABAP code)
    ABAP.
      data : dest type RFCDEST.
      move 'S4_SAPC36999' to dest.                                       
      move dest to v_dest.
    *--Close the connection before opening it incase it is opened
              call function 'RFC_CONNECTION_CLOSE'
                   exporting
                        destination          = dest
                   exceptions
                        destination_not_open = 1
                        others               = 2.
              if sy-subrc <> 0.
              endif.
              move sy-subrc to v_subrc.
    ENDABAP.
    REF ( Y04S_FC_RM_CJ44_112 , Y04S_FC_RM_CJ44_1 , C36_999 ). (here agagin the RFC will be created and this script will be exectued.)

    In one script, I am using the REF command to call another 2 scripts and these called scripts shd be run on same C36 ( test system). I shd close RFC connection between these 2 scripts.
    That is , once the 1s script over the RFC shd be closed and the user has to give usename and pwd  then  2nd script shd run.
    I have tried with the following code…. But it says RFC is not open……
    REF ( Y04S_FC_RM_CJ88_112 , Y04S_FC_RM_CJ88_1 , C36_999 ).   (when execute this script RFC to C36 will be created and after execution that RFC shd be closed so I included following ABAP code)
    ABAP.
      data : dest type RFCDEST.
      move 'S4_SAPC36999' to dest.                                       
      move dest to v_dest.
    *--Close the connection before opening it incase it is opened
              call function 'RFC_CONNECTION_CLOSE'
                   exporting
                        destination          = dest
                   exceptions
                        destination_not_open = 1
                        others               = 2.
              if sy-subrc <> 0.
              endif.
              move sy-subrc to v_subrc.
    ENDABAP.
    REF ( Y04S_FC_RM_CJ44_112 , Y04S_FC_RM_CJ44_1 , C36_999 ). (here agagin the RFC will be created and this script will be exectued.)

  • Do v need to Close the Connection

    Hi plz tel me
    1. Do v need to Close the Database Connection ?
    2. which is better to use Statement or ResultSet Interface ?
    Thanx in Advance

    Hi plz tel me
    1. Do v need to Close the Database Connection ?
    2. which is better to use Statement or ResultSet
    Interface ?
    Thanx in AdvanceHi sumit.manhas,
    For your info, refer these links....
    http://java.sun.com/j2se/1.4.2/docs/api/java/sql/Statement.htmlpublic interface Statement
    The object used for executing a static SQL statement and returning the results it produces.
    By default, only one ResultSet object per Statement object can be open at the same time. Therefore, if the reading of one ResultSet object is interleaved with the reading of another, each must have been generated by different Statement objects. All execution methods in the Statement interface implicitly close a statment's current ResultSet object if an open one exists.
    http://java.sun.com/j2se/1.4.2/docs/api/java/sql/ResultSet.htmlpublic interface ResultSet
    A table of data representing a database result set, which is usually generated by executing a statement that queries the database.
    A ResultSet object maintains a cursor pointing to its current row of data. Initially the cursor is positioned before the first row. The next method moves the cursor to the next row, and because it returns false when there are no more rows in the ResultSet object, it can be used in a while loop to iterate through the result set.
    Regards,
    JavaDriver

  • Close RFC Connection

    Hi,
    I have some problems with the availibility of my WebDynpro-Application. It seems to be, that to much connections are opened at the same time. Is it necessary to close the connection in the code or should it closed by the system automatically?
    To use a model I use the following code(example):
    wdContext.nodeZ_Rfc_GetData_Input().bind(new Z_Rfc_GetData_Input());
    wdContext.currentZ_Rfc_GetData_InputElement().modelObject().execute();
    wdContext.nodeOutput().invalidate();
    I don't know if there is a option to close the connection.

    Hi,
    Use below code:
    wdContext.currentRFC_InputElement().modelObject().modelInstance().disconnectIfAlive();
    Please check below forum ,
    webdynpro JCO - RFC Connections are not closing  in back end ECC (SM51)
    Regards
    Deepak

  • How to close RFC connections

    The RFC connections to the R/3 backend system are not closed when I close my iviews which are created in the Visual Composer. Each time the iview is reloaded, an additional RFC connection is opened...
    Has someone a solution for this problem?
    Kind regards
    Frank

    Hi Frank,
    The connector pool keep the connection alive to be reused by the model iViews datasource, those connections will be closed at the timeout or when CLEANUP runs.
    It's not a problem is the way how the connector framework works
    You can adapt the timeout according SAP Notes 913483 & 314530
    Best Regards, Luis

  • RFC Connection to SQL Server

    Can someone explain me in detail the steps that are necessary to setup a RFC connection from BI (NW 2004s SP11) to a SQL Server in the network? I need this to export data to the SQL Server using OpenHub's API.
    All I know so far is that the magic has to happen somewhere in SM59, correct?
    Thank you,
    Dennis

    Thank you for the first pointers. I know that we could export to a flat file, but we would like to use the more powerful OpenHub API which needs a working RFC connection according to this thread:
    Re: Open Hub Destination-Third Party Tool
    In SM59, the connections are grouped by protocol. For SQL Server, would it be a TCP connection?
    The "new connection" screen is pretty crowded. What other essential information do I have to maintain here?
    Thank you,
    Dennis

  • Remote Desktop Connection has encountered a problem and needs to close. We are sorry for the inconvenience.

    Remote Desktop Connection has encountered a problem and needs to close. We are sorry for the inconvenience.

    Hiya,
    What O/S versions(RDP) are you connecting to and from? Try and open the target machines event log and see what it throws when you try to connect.

  • Access Connection​s fails to launch - "has encountere​d a problem and needs to close..."

    I have an R61 with XP, SP3 installed.  The underlying functionality of Access Connections appears to be working properly (I have access to both Ethernet and wireless using profiles previously established), but when I attempt to launch Access Connections (from system tray icon, Programs, etc.) I get the error message,  "Access Connections has encountered a problem and needs to close.  We are sorry for the inconvenience," and the option to send or not send an error report to Microsoft.  This makes it impossible to create or edit location profiles.  I first encountered this error several months ago with AC version 5.33 (might have also seen it under 5.3).  Subsequently I have upgraded to version 5.50 and have the same problem. Today I uninstalled AC, restared, reinstalled ver 5.5 (from a fresh download), and restarted.  I still encountering the problem. 
    Additional information:  Norton Internet Security (2010) is installed.  Microsoft and ThinkVantage patches are up to date.
    Please recommend "next steps" in troubleshooting or a way to resolve this issue.
    Thanks 

    Hmmm... could be a corrupt profile.
    Try this.
    1.  Uninstall Access Connections (but don't delete the profiles)
    2. After the reboot, open REGEDIT.
    3. In the left pane, expand HKEY_LOCAL_MACHINE, then SOFTWARE, then Lenovo
    4. Still in the left pane, right click on Access Connection and choose export
    5. Assign an appropriate filename and click Save (I suggest somewhere on the Desktop).
    6. Right click on Access Connections again and choose delete.
    7. Open Windows Explorer and go to C:\Program Files\Thinkpad\ConnectUtilities directory.
    8. Delete any files in this directory.
    9. Reinstall Access Connections v5.50
    10. Try and create a profile.
    If you still get an error trying to create a profile, then something else is broken.  Be sure you have .NET 3.5 SP1 (it may be under optional downloads in Windows Update).
    If it works fine, then you have a bad profile.  Unfortunately, there isn;t an easy way to figure out which one other than try and error of delete profiles and trying one at a time.
    To restore your profiles.
    1. Unistall Access Connections. Reboot.
    2. Double click the saved .reg file on your Desktop and answer Yes to merge it into the registry.
    3. Install Access Connections. Reboot.

  • Acrobat Connect Add-in 7.0 r455 has encountered a problem and needs to close

    Maybe this should have been posted here instead of the
    Acrobat Connect Professional forum? I guess i don't know the
    different between the two products. :) We are running an Adobe
    Connect Enterprise Server.
    Greetings!
    My support group is currently working with several end-users
    of Adobe Connect Professional. These users are presenters and are
    encountering an issue whenever they try to start their Camera and
    Voice Pod. I've sent this up the chain towards Adobe on our end...
    but figured I'd make a post on the forums here to see if anyone
    else has been having this issue. I was able to find one mention of
    the error on some site that was all in Spanish... but that site was
    having timeout issues and I couldn't hack around them. (Plus my
    knowledge of tech -spanish is very limited)
    If the Acrobat Connect add-in is NOT installed on these
    users' PCs then they are able to use the Camera and Voice Pod
    without any issues. Once the Add-In is installed, however, as soon
    as they click to activate the Camera and Voice Pod the add-in
    crashes with the error "Acrobat Connect Add-in 7.0 r455 has
    encountered a problem and needs to close. We are sorry for the
    inconvenience."
    These users are using Windows XP, Windows 2000 SP4 and
    Windows 200 Sp3... all are having the same problem. We've had them
    try different microphones, different browsers... nothing seems to
    affect this. Some other troubleshooting steps include
    removing/reinstalling Flash, clean-boot in Windows XP, disabling
    all security, and uninstalling/reinstalling the Add-in itself.
    Any ideas / suggestions from anyone would be greatly
    appreciated. Thanks!

    Was this problem resolved? I'd be keen to hear details of the fix please?
    I'm seeing the same on v9.3 R110.
    Thank you,
    Sam

  • My iPod Touch 3rd Generation won't connect to iTunes. It keeps saying MobileDeviceService has encountered a problem and needs to close.How can I get it to work?

    My iPod Touch 3rd Generation won't connect to iTunes. It keeps saying MobileDeviceService has encountered a problem and needs to close.How can I get it to work?

    My iPod was working fine and then my oldest son put in a flash drive to download some music and now my iPod will not connect to iTunes.
    Doublechecking something. Are you still back at SP2 for your XP? Or do you have SP3 in place?

  • Need to make an rfc connection to R/3 side.

    Hi BW experts,
    I have an urgent requirement to display data from R/3 system at BW side based on the report value. We were doing RRI call to an ABAP report from a query at BW-side where parameters are passed to same ABAP report on R/3 side.
    For this solution, the user should have an access to the R/3 system in order to Jump to the ABAP report. We want to avoid this.
    So now the requirement is, user should be able to fetch the data from R/3 for display based on the ABAP report (developed in R/3) without actually logging in the R/3 system.
    Can you provide me with some hints on this? This can be done using RFC connection Call but it is again asking for user id and password.
    Regards,
    Vipul Goyal

    Hi Walter,
    i had already done this part.
    now i had created the abap report in bw-system itself and from there i am calling the remote function module by passing required parametes.
    But problem is that it is still asking for username and password whlile login to the R/3 system.
    Regarding the trusted/trusting relatonship i dont have access for that.
    Can u tell me how this process is followed in extractors as  no username and password is asked during extraction process?
    and can i follow the same process in this abap program.
    and last how to create that special user which you have told in your first reply.

  • RFC Connection remains open after portal logoff

    Hi,
    We have configured Universal Worklist in our EP7 EHP1 SPS4 Portal.
    When a user connects to the Portal and launches the UWL it creates an RFC connection to the backend ECC. However, when the user moves away from UWL iview or logs out or closes the browser the RFC connection in the backend still
    remains and is released only after the timeout value reached as set in ECC.
    Are there any settings on the portal or ECC to release the session immediately once  user moves away from UWL or logs out of portal ?
    Thanks,
    Savy.

    Hi my friend
    It costs time and resources to establish an RFC connection, therefore it is not immediately deleted but maintained by the system to be reused. But in case there're special purpose to control RFCs, here're 2 parameters to do so:
    The parameter gw/gw_disconnect is a timeout in seconds to close the TCP connection between two SAP gateways if there is no RFC connetion on it for the given timeout. But if there is an active RFC connection onit it will not be closed even if there is no traffic on that RFC connection. Thats why you need another parameter.
    The parameter gw/keepalive is used to periodically check all active RFC (and other) gateway connections if there was no traffic on them for the given time.
    Regards,

  • Saposcol.exe encountered a problem and needed to close.

    Some days ago I successfully installed trial version 7.02 on a virtual Windows XP: Host Windows 7 professional 64 bit.
    Immediately after installation I created SAPLOGON, started the system using SAPMMC and logged on as BCUSER in client 001. I did some work and everthing was fine.
    Two days later there is an error message when XP mode has started:
    saposcol.exe encountered a problem and needed to close.
    If I try to start the system using SAPMMC it turns to green but shortly after that it is yellow.
    Syslog shows following messages:
    Info:  SAP Basis System: Buffer SCSA     Generated with Length      4096
    Info:  SAP Basis System: Start Msg Server,  1 times since system startup. PID     2996
    Info:  SAP Basis System: Start SAP System, SAPSYSTEM 00, Dispatcher Pid     3004
    Info:  SAP Basis System: Active ICU Version    3.4; Compiled With ICU    3.4; Unicode Version    4.1
    Info:  SAP Basis System: Connection to message server (on                  VXP) established
    Info:  SAP Basis System: MsgServer Hardware ID Was Determined
    Info:  SAP Basis System: Start Workp.   0, Pid     2276
    Info:  SAP Basis System: Start Workp.   1, Pid     3112
    Info:  SAP Basis System: Start Workp.   2, Pid     3120
    Info:  SAP Basis System: Start Workp.   5, Pid     3148
    Info:  SAP Basis System: Start Workp.   7, Pid     3164
    Info:  SAP Basis System: Start Workp.   6, Pid     3156
    Info:  SAP Basis System: Start Workp.   3, Pid     3128
    Info:  SAP Basis System: Start Workp.   4, Pid     3140
    Info:  Communications data: SAP Gateway Started (PID:       2304)
    Error:  Communications data: Service initialization failed
    Info:  SAP Basis System: ICM started on host VXP (PID: 2300)
    Warning: Database: SQL error -1070 occurred (possible network problems?). Work process is stopped
    Error: Database: Database error -10709 at CON 
    Database: > Connection failed (RTE:[5] database not running)  
    Error: SAP Basis System: Initialization           DB-Connning:ect Failed, Return Code  000256
    Warning: Database: SQL error -1070 occurred (possible network problems?). Work process is stopped
    Error: Database: Database error -10709 at CON  
    Database: > Connection failed (RTE:[5] database not running)
    Warning: Database: SQL error -1070 occurred (possible network problems?). Work process is stopped
    Error: Database: Database error -10709 at CON
    Database: > Connection failed (RTE:[5] database not running)
    Error: SAP Basis System: Initialization           DB-Connect Failed, Return Code  000256
    Warning: Database: SQL error -1070 occurred (possible network problems?). Work process is stopped
    Error: Database: Database error -10709 at CON
    Database: > Connection failed (RTE:[5] database not running) 
    Error: SAP Basis System: Initialization           DB-Connect Failed, Return Code  000256
    Warning: Database: SQL error -1070 occurred (possible network problems?). Work process is stopped
    Error: Database: Database error -10709 at CON   
    Database: > Connection failed (RTE:[5] database not running) 
    Error: SAP Basis System: Initialization           DB-Connect Failed, Return Code  000256
    Warning: Database: SQL error -1070 occurred (possible network problems?). Work process is stopped
    Error: Database: Database error -10709 at CON 
    Database: > Connection failed (RTE:[5] database not running)
    Error: SAP Basis System: Initialization           DB-Connect Failed, Return Code  000256
    Warning: Database: SQL error -1070 occurred (possible network problems?). Work process is stopped
    Error: Database: Database error -10709 at CON
    Database: > Connection failed (RTE:[5] database not running) 
    Error: SAP Basis System: Initialization           DB-Connect Failed, Return Code  000256
    there are more messages and I stop to give them all.
    Does anybody have an idea how I can solve my problems? Why does the saposcol error occur when I start XP?
    Thanks
    Otto

    Hi Nirmal,
    this is the error signature of saposcol.exe:
    szAppName: saposcol.exe   szAppVer: 7200.71.18.26355  szModName: unknown
    szModVer: 0.0.0.0     offset: 00020005
    Sorry Nirmal it is not possible to send all three log files in one message because it extends maximum message length,
    the two other logfile are in a separate message
    this is logfile dev_w0:
    trc file: "dev_w0", trc level: 1, release: "720"
    ACTIVE TRACE LEVEL           1
    ACTIVE TRACE COMPONENTS      all, MJ
    M sysno      00
    M sid        NSP
    M systemid   560 (PC with Windows NT)
    M relno      7200
    M patchlevel 0
    M patchno    70
    M intno      20020600
    M make       multithreaded, Unicode, optimized
    M profile   
    VXP\sapmnt\NSP\SYS\profile\NSP_DVEBMGS00_VXP
    M pid        3396
    M

    M Thu Feb 03 21:29:33 2011
    M  kernel runs with dp version 129000(ext=118000) (@(#) DPLIB-INT-VERSION-129000-UC)
    M  length of sys_adm_ext is 588 bytes
    M  ***LOG Q0Q=> tskh_init, WPStart (Workp. 0 3396) [dpxxdisp.c   1330]
    I  MtxInit: 30000 0 0
    M  DpSysAdmExtCreate: ABAP is active
    M  DpSysAdmExtCreate: VMC (JAVA VM in WP) is not active
    M  DpIPCInit2: read dp-profile-values from sys_adm_ext
    M  DpShMCreate: sizeof(wp_adm)          20000     (2000)
    M  DpShMCreate: sizeof(tm_adm)          4323912     (21512)
    M  DpShMCreate: sizeof(wp_ca_adm)          32000     (64)
    M  DpShMCreate: sizeof(appc_ca_adm)     32000     (64)
    M  DpCommTableSize: max/headSize/ftSize/tableSize=500/8/556056/556064
    M  DpShMCreate: sizeof(comm_adm)          556064     (1104)
    M  DpSlockTableSize: max/headSize/ftSize/fiSize/tableSize=0/0/0/0/0
    M  DpShMCreate: sizeof(slock_adm)          0     (96)
    M  DpFileTableSize: max/headSize/ftSize/tableSize=0/0/0/0
    M  DpShMCreate: sizeof(file_adm)          0     (80)
    M  DpShMCreate: sizeof(vmc_adm)          0     (1792)
    M  DpShMCreate: sizeof(wall_adm)          (40056/34360/64/192)
    M  DpShMCreate: sizeof(gw_adm)     48
    M  DpShMCreate: sizeof(j2ee_adm)     3920
    M  DpShMCreate: SHM_DP_ADM_KEY          (addr: 094A0040, size: 5055296)
    M  DpShMCreate: allocated sys_adm at 094A0048
    M  DpShMCreate: allocated wp_adm_list at 094A2F28
    M  DpShMCreate: allocated wp_adm at 094A3020
    M  DpShMCreate: allocated tm_adm_list at 094A7E48
    M  DpShMCreate: allocated tm_adm at 094A7E70
    M  DpShMCreate: allocated wp_ca_adm at 098C78C0
    M  DpShMCreate: allocated appc_ca_adm at 098CF5C8
    M  DpShMCreate: allocated comm_adm at 098D72D0
    M  DpShMCreate: system runs without slock table
    M  DpShMCreate: system runs without file table
    M  DpShMCreate: allocated vmc_adm_list at 0995EEF8
    M  DpShMCreate: system runs without vmc_adm
    M  DpShMCreate: allocated gw_adm at 0995EF50
    M  DpShMCreate: allocated j2ee_adm at 0995EF88
    M  DpShMCreate: allocated ca_info at 0995FEE0
    M  DpShMCreate: allocated wall_adm at 0995FEF8
    M  DpCommAttachTable: attached comm table (header=098D72D0/ft=098D72D8)
    M  DpRqQInit: use protect_queue / slots_per_queue 0 / 2001 from sys_adm
    M  rdisp/queue_size_check_value :  -> on,50,30,40,500,50,500,80
    X  EmInit: MmSetImplementation( 2 ).
    X  MM global diagnostic options set: 0
    X  <ES> client 0 initializing ....
    X  Using implementation view
    X  <EsNT> Using memory model view.
    M  <EsNT> Memory Reset disabled as NT default
    X  ES initialized.
    M  DpVmcSetActive: set vmc state DP_VMC_NOT_ACTIVE

    M Thu Feb 03 21:29:34 2011
    M  ThStart: taskhandler started
    M  ThInit: initializing DIA work process W0

    M Thu Feb 03 21:29:39 2011
    M  ThInit: running on host VXP

    M Thu Feb 03 21:29:40 2011
    M  calling db_connect ...
    B  Loading DB library 'C:\usr\sap\NSP\DVEBMGS00\exe\dbsdbslib.dll' ...

    B Thu Feb 03 21:29:41 2011
    B  Library 'C:\usr\sap\NSP\DVEBMGS00\exe\dbsdbslib.dll' loaded
    B  Version of 'C:\usr\sap\NSP\DVEBMGS00\exe\dbsdbslib.dll' is "720.00", patchlevel (0.65)

    C  DBSDBSLIB : version 720.00, patch 0.065 (Make PL 0.70)
    C  MAXDB shared library (dbsdbslib) patchlevels (last 10)
    C    (0.065) Send wp type to the database (note 1340617)
    C    (0.062) Row counter limit set to 65535 (note 1340617)
    C    (0.054) ABAP: Return technical database PPMS information (note 1419552)
    C    (0.053) ABAP: Return technical database PPMS information (note 1419552)
    C    (0.047) Connection table corrected (note 1466271)
    C    (0.045) Unknown primary key (note 1459400)
    C    (0.039) Define your own command buffersize (note 1340617)
    C    (0.031) Dbm commands support added (note 1420733)
    C    (0.027) Count of records for bulk insert optimized (note 1340617)
    C    (0.021) Connect with special xuser key (note 1390464)


    C  Loading SQLDBC client runtime ...
    C  SQLDBC Module  : C:\sapdb\clients\NSP\pgm\libSQLDBC77.dll
    C  SQLDBC SDK     : SQLDBC.H  7.7.4    BUILD 009-123-173-450
    C  SQLDBC Runtime : libSQLDBC 7.8.1    BUILD 018-121-240-252
    C  SQLDBC client runtime is MaxDB 7.8.1.018 CL 240252
    C  SQLDBC supports new DECIMAL interface : 1
    C  SQLDBC supports VARIABLE INPUT data   : 1
    C  SQLDBC supports VARIABLE OUTPUT data  : 1
    C  SQLDBC supports Multiple Streams      : 1
    C  SQLDBC supports LOB LOCATOR KEEPALIVE : 1
    C  SQLDBC supports LOB LOCATOR COPY      : 1
    C  SQLDBC supports BULK SELECT with LOBS : 1
    C  INFO : SQLOPT= -I 0 -t 0 -S SAPR3
    C  Try to connect (DEFAULT) on connection 0 ...
    C  *** ERROR => Connect to database failed, rc = -10709 (Connection failed (RTE:[5] database not running))
    [dbsdbsql.cpp 139]

    B Thu Feb 03 21:29:42 2011
    B  ***LOG BV3=> severe db error -10709    ; work process is stopped [dbsh         1241]
    B  ***LOG BY2=> sql error -10709 performing CON [dblink       540]
    B  ***LOG BY0=> Connection failed (RTE:[5] database not running) [dblink       540]
    M  ***LOG R19=> ThInit, db_connect ( DB-Connect 000256) [thxxhead.c   1474]
    M  in_ThErrHandle: 1
    M  *** ERROR => ThInit: db_connect (step 1, th_errno 13, action 3, level 1) [thxxhead.c   11060]

    M  Info for wp 0

    M    pid = 3396
    M    severity = 0
    M    status = 0
    M    stat = WP_NEW
    M    waiting_for = NO_WAITING
    M    reqtype = DP_RQ_DIAWP
    M    act_reqtype = NO_REQTYPE
    M    req.req_info =
    M    req.tid = -1
    M    req.uid = 4294967295
    M    req.mode = 255
    M    req.len = 0
    M    req.rq_id = 65535
    M    req.rq_source =
    M    last_tid = 0
    M    last_uid = 0
    M    last_mode = 0
    M    act_cs_count = 0
    M    csTrack = 0
    M    csTrackRwExcl = 0
    M    csTrackRwShrd = 0
    M    mode_cleaned_counter = 0
    M    control_flag = 0
    M    int_checked_resource(RFC) = 0
    M    ext_checked_resource(RFC) = 0
    M    int_checked_resource(HTTP) = 0
    M    ext_checked_resource(HTTP) = 0
    M    report = >                                        <
    M    action = 0
    M    tab_name = >                              <
    M    attachedVm = no VM

    M  ThIErrHandle: current request:

    M  -IN-- sender_id ?                 tid  -1    wp_ca_blk   -1      wp_id -1
    M  -IN-- action    -                 uid  -1    appc_ca_blk -1      type  -   
    M  -IN-- new_stat  NO_CHANGE         mode 255   len         0       rq_id -1

    M  *****************************************************************************
    M  *
    M  *  LOCATION    SAP-Server VXP_NSP_00 on host VXP (wp 0)
    M  *  ERROR       ThInit: db_connect
    M  *
    M  *  TIME        Thu Feb 03 21:29:42 2011
    M  *  RELEASE     720
    M  *  COMPONENT   Taskhandler
    M  *  VERSION     1
    M  *  RC          13
    M  *  MODULE      thxxhead.c
    M  *  LINE        11337
    M  *  COUNTER     1
    M  *
    M  *****************************************************************************

    M  PfStatDisconnect: disconnect statistics
    M  Entering TH_CALLHOOKS
    M  ThCallHooks: call hook >ThrBtcCallLgCl< for event BEFORE_DUMP
    M  ThCallHooks: hook >ThrBtcCallLgCl< o.k.
    M  ThCallHooks: call hook >ThrSaveSPAFields< for event BEFORE_DUMP
    M  *** ERROR => ThrSaveSPAFields: no valid thr_wpadm [thxxrun1.c   779]
    M  *** ERROR => ThCallHooks: event handler ThrSaveSPAFields for event BEFORE_DUMP failed [thxxtool3.c  303]
    M  ThCallHooks: hook >ThrSaveSPAFields< o.k.
    M  ThIErrHandle: entering ThSetStatError
    M  ThIErrHandle: do not call ThrCoreInfo (no_core_info=0, in_dynp_env=0)
    M  Entering ThReadDetachMode
    M  call ThrShutDown (1)...
    M  ***LOG Q02=> wp_halt, WPStop (Workp. 0 3396) [dpnttool.c   339]
    Thanks a lot  for your support
    Otto

  • InterVideo WinDVR Application has encountered a problem and needs to close.

    My TV Anywhere has suddenly stopoed working and the message "InterVideo WinDVR Application has encountered a problem and needs to close.  We are sorry for the inconvenience." appears each time I try to open the program.  MSI Radio works fine.  I have uninstalled and re-installed the programe (originally MSIPVS now MSIPVS3). I did try to download the new Beta drivers just to try, but the zip file shows 0 bytes!
    Has anyone come across this, or can anyone suggest what I can try to resolve the issue?
    Many thanks in anticipation
    Gareth

    Jeremy:
    I should point out that I am much more confident with software issues.  I am not a hardware person and  have never attempted to open up the box!
    Realtek is the card on the motherboard. 
    I hope this is the information required:
    OS Information:
    Property   Value
    OS Name       Microsoft Windows XP Professional|C:\WINDOWS|\Device\Harddisk0\Partition1
    Service Pack       2.0
    OS Manufacturer       Microsoft Corporation
    Windows Directory       C:\WINDOWS
    Processor:
    Property   Value
    Current Clock Speed       3000
    Description       x86 Family 15 Model 2 Stepping 9
    Manufacturer       GenuineIntel
    Name        Intel(R) Pentium(R) 4 CPU 3.00GHz
    Memory (RAM):
    Property   Value
    Bank Label       RAS 0 & 1
    Capacity       536870912
    Bank Label       RAS 2 & 3
    Capacity       536870912
    Total Memory Deteced in Hardware: ~1024 MB
    Memory Reported to Operating System: 1023MB
    Disk Drives:
    Property   Value
    Description       Disk drive
    Manufacturer       (Standard disk drives)
    Model       Maxtor 6Y160M0
    Media Type       Fixed hard disk media
    Size       163921605120 (~153 GB)
    Number of Partitions       2
    Description       Disk drive
    Manufacturer       (Standard disk drives)
    Model       Canon MP Memory Card USB Device
    Media Type      
    Number of Partitions      
    Description       Disk drive
    Manufacturer       (Standard disk drives)
    Model       IC35L060 AVV207-0 USB Device
    Media Type       Fixed hard disk media
    Size       61492193280 (~57 GB)
    Number of Partitions       1
    Installed Printers:
    Property   Value
    Name       PaperPort Color Image
    Port Name       BIPORT
    Default       False
    Driver Name       PaperPort Color Printer Driver
    Name       PaperPort Black & White Image
    Port Name       BIPORT
    Default       False
    Driver Name       PaperPort Mono Printer Driver
    Name       Microsoft Office Document Image Writer
    Port Name       Microsoft Document Imaging Writer Port:
    Default       False
    Driver Name       Microsoft Office Document Image Writer Driver
    Name       Generic / Text Only
    Port Name       LPT1:
    Default       False
    Driver Name       Generic / Text Only
    Name       Canon MP370 Series Printer
    Port Name       USB001
    Default       True
    Driver Name       Canon MP370 Series Printer
    Name       Auto Microsoft Office Document Image Writer on GARETH-14ETIB74
    Port Name       \\GARETH-14ETIB74\Printer
    Default       False
    Driver Name       Microsoft Office Document Image Writer Driver
    Motherboard:
    Property   Value
    Manufacturer       MICRO-STAR INC.
    Model      
    Name       Base Board
    Part Number      
    Product       MS-6758
    Serial Number       00000000
    Version       2.00
    BIOS:
    Property   Value
    Manufacturer       American Megatrends Inc.
    Name       Version 1.00
    Release Date       20040324000000.000000+000
    Version       AMIINT - 10
    Monitor:
    Property   Value
    Description        SyncMaster 173V/172V/173S/173B
    Name        SyncMaster 173V/172V/173S/173B
    Screen Height       768
    Screen Width       1024
    Keyboard:
    Property   Value
    Description       Easy Internet Keyboard
    Pointing Device:
    Property   Value
    Manufacturer       Logitech
    Name       HID-compliant Wheel Mouse
    Sound Card:
    Property   Value
    Manufacturer       Creative Technology, Ltd.
    Description       Creative EMU10K1 Audio Processor (WDM)
    Device ID       PCI\VEN_1102&DEV_0002&SUBSYS_80661102&REV_0A\4&1F7DBC9F&0&08F0
    Manufacturer       Realtek
    Description       Realtek AC'97 Audio
    Device ID       PCI\VEN_8086&DEV_24D5&SUBSYS_75851462&REV_02\3&13C0B0C5&0&FD
    Video Card:
    Property   Value
    Adapter Compatibility       NVIDIA
    Adapter RAM       268435456
    Description       NVIDIA GeForce FX 5600XT
    Installed Display Drivers       nv4_disp.dll
    Driver Version       6.14.10.6693
    Driver Date       29/10/2004 16:50:00
    Video Mode Description       1024 x 768 x 4294967296 colors
    DirectX Installation:
    Property   Value
    Version       6.03.01.0146
    Modem:
    Property   Value
    Network Adapters:
    Property   Value
    Description       Intel(R) PRO/1000 CT Network Connection - Packet Scheduler Miniport
    Description       Packet Scheduler Miniport
    Description       Microsoft TV/Video Connection
    Description       1394 Net Adapter
    Description       1394 Net Adapter
    External Ports:
    Property   Value
    External Reference Designator       Def
    External Reference Designator       Sanjoy
    Expansion Slots:
    Property   Value
    Slot Designation       PCI1
    Slot Designation       PCI2
    Slot Designation       PCI3
    Slot Designation       PCI4
    Slot Designation       PCI5
    Slot Designation       AGP
    Copy To Clipboard
    I do very much appreciate the help from you all!
    Gareth

Maybe you are looking for

  • Syncing iPhone and iPod Touch to same calendar

    DH has an iPhone and I'm about to get an iPod touch. We're setting up iCal on the home computer and we both want to sync our devices to our iCal calendar, so we both have record of birthdays/appointments etc. Currently I've set iCal up with only the

  • Apple  id is not going in what do i do

    hi sorry to bother u but when ever i put in my apple id because i just got it for christmas it dose not go in my apple id is [email protected] and when ever i put in the password it go to Cannot connect to itunes store and i dont know because i have

  • Match image at location on screen

            Hi, I am practicing with image matching and having some trouble figuring it out. I have a folder that has twelve images in it that are 12x12 pixels each. I have a program running that will show a picture randomly, centered at a co-ordinate (p

  • Time Machine is making a full backup into another directory

    Hi, ive been using Time Machine for a month then im stopped using it cause a travel outside the country. When im come back (4 days ago) I try to backup again and i see that is backing up the entire machine again... Looked in the Finder under backupdb

  • Garbled text under the wireless section of my Airport Extreme?

    I'm trying to enable 5 Ghz on my Airport Extreme and it doesn't give me a readable page/button to click.  I'm able to click the 5 Ghz button when I click away from it within the garbled text.. but nothing happens, the network seems quite as slow as 2