Hello,
I tried to run tcode crm_ic but I got following error message from the internet explorer:
<b><b><b>The following error text was processed in the system CRO : Exception
condition "COMMUNICATION_ERROR" raised.
The error occurred on the application server sap1770_CRO_01 and in the
work process 0 .
The termination type was: RABAX_STATE
The ABAP call stack was:
Method: CREATE_SESSION of program CL_SAM_BSP_SESSION_LAUNCHER===CP
Method: START_WORKER_SESSION of program CL_ICWC_SESSION_REGISTRY======CPMethod: ONCREATE of program CLO23UTXK1DHIM8WX0QZD2TBW2KZ9CP
Method: %_ONCREATE of program CL_O23UTXK1DHIM8WX0QZD2TBW2KZ9CP
Method: DO_INIT of program CL_BSP_PAGE===================CP
Method: GET_PAGE_CONTEXT_CURRENT of program
CL_BSP_CONTEXT================CP
Method: ON_REQUEST_ENTER of program CL_BSP_RUNTIME================CP
Method: ON_REQUEST of program CL_BSP_RUNTIME================CP
Method: IF_HTTP_EXTENSION~HANDLE_REQUEST of program
CL_HTTP_EXT_BSP===============CP
Method: EXECUTE_REQUEST of program CL_HTTP_SERVER================CP</b></b></b>
Below is the abap dump message:
Runtime Errors RAISE_EXCEPTION
Date and Time 14.05.2007 04:05:51
-
-
Short text
Exception condition "COMMUNICATION_ERROR" raised.
-
-
What happened?
The current ABAP/4 program encountered an unexpected
situation.
-
-
What can you do?
Note down which actions and inputs caused the error.
To process the problem further, contact you SAP system
administrator.
Using Transaction ST22 for ABAP Dump Analysis, you can look
at and manage termination messages, and you can also
keep them for a long time.
-
-
Error analysis
A RAISE statement in the program "CL_SAM_BSP_SESSION_LAUNCHER===CP" raised the
exception
condition "COMMUNICATION_ERROR".
Since the exception was not intercepted by a superior
program, processing was terminated.
Short description of exception condition:
For detailed documentation of the exception condition, use
Transaction SE37 (Function Library). You can take the called
function module from the display of active calls.
-
-
-
How to correct the error
If the error occures in a non-modified SAP program, you may be able to
find an interim solution in an SAP Note.
If you have access to SAP Notes, carry out a search with the following
keywords:
"RAISE_EXCEPTION" " "
"CL_SAM_BSP_SESSION_LAUNCHER===CP" or "CL_SAM_BSP_SESSION_LAUNCHER===CM002"
"CREATE_SESSION"
or
"CL_SAM_BSP_SESSION_LAUNCHER===CP" "COMMUNICATION_ERROR"
or
"SAPMHTTP " "COMMUNICATION_ERROR"
If you cannot solve the problem yourself and want to send an error
notification to SAP, include the following information:
1. The description of the current problem (short dump)
To save the description, choose "System->List->Save->Local File
(Unconverted)".
2. Corresponding system log
Display the system log by calling transaction SM21.
Restrict the time interval to 10 minutes before and five minutes
after the short dump. Then choose "System->List->Save->Local File
(Unconverted)".
3. If the problem occurs in a problem of your own or a modified SAP
program: The source code of the program
In the editor, choose "Utilities->More
Utilities->Upload/Download->Download".
4. Details about the conditions under which the error occurred or which
actions and input led to the error.
-
-
System environment
SAP-Release 700
Application server... "sap1770"
Network address...... "217.67.56.37"
Operating system..... "Windows NT"
Release.............. "5.2"
Hardware type........ "4x Intel 801586"
Character length.... 16 Bits
Pointer length....... 32 Bits
Work process number.. 0
Shortdump setting.... "full"
Database server... "SAP1770"
Database type..... "MSSQL"
Database name..... "CRO"
Database user ID.. "cro"
Char.set.... "C"
SAP kernel....... 700
created (date)... "Jan 15 2006 23:05:36"
create on........ "NT 5.0 2195 Service Pack 4 x86 MS VC++ 13.10"
Database version. "SQL_Server_8.00 "
Patch level. 41
Patch text.. " "
Database............. "MSSQL 7.00.699 or higher, MSSQL 8.00.194"
SAP database version. 700
Operating system..... "Windows NT 5.0, Windows NT 5.1, Windows NT 5.2"
Memory consumption
Roll.... 8176
EM...... 4180896
Heap.... 0
Page.... 24576
MM Used. 3736976
MM Free. 442176
-
-
User and Transaction
Client.............. 100
User................ "DIAGBASIS"
Language Key........ "E"
Transaction......... " "
Program............. "CL_SAM_BSP_SESSION_LAUNCHER===CP"
Screen.............. "SAPMHTTP 0010"
Screen Line......... 2
Information on Caller ofr "HTTP" Connection:
Plug-in Type.......... "HTTP"
Caller IP............. "172.27.104.12"
Caller Port........... 8001
Universal Resource Id. "/sap/bc/bsp/sap/ic_base/main.htm"
-
-
Information on where terminated
Termination occurred in the ABAP program "CL_SAM_BSP_SESSION_LAUNCHER===CP" -
in "CREATE_SESSION".
The main program was "SAPMHTTP ".
In the source code you have the termination point in line 23
of the (Include) program "CL_SAM_BSP_SESSION_LAUNCHER===CM002".
-
-
Source Code Extract
-
Line
SourceCde
-
1
method CREATE_SESSION .
2
3
data: rfcdest type rfcdest.
4
data: status type i.
5
data: http_client type ref to if_http_client.
6
7
rfcdest = destination.
8
cl_http_client=>create_by_destination( EXPORTING destination = rfcdest IMPORTING client =
9
10
http_client->request->set_header_field( name = '~request_uri' value = uri
11
http_client->request->set_header_field( name = '~request_method' value = 'GET'
12
http_client->request->set_header_field( name = if_http_header_fields=>user_agent value = s
13
http_client->send( exporting timeout = 10 ).
14
http_client->receive( ).
15
data = http_client->response->get_data( ).
16
http_client->response->get_status( importing code = status ).
17
http_client->close( ).
18
19
data: s type string. "#EC NEEDED
20
s = cl_sam_toolkit=>x2s( data ).
21
22
if ( status <> 200 ).
>>>>>
raise communication_error.
24
endif.
25
26
27
endmethod.
-
Not sure how to solve this since couldn't find any relevant notes.
Thanks