Hello All,
Here is the ST22 details
Category ABAP Programming Error
Runtime Errors RAISE_EXCEPTION
ABAP Program CL_RSRA_MESSAGE===============CP
Application Component BW-BEX
Date and Time 25.09.2014 13:20:45
Short text
Exception condition "PROCESS_BCI_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_RSRA_BCI===================CP"
exception
condition "PROCESS_BCI_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.
-
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_RSRA_BCI===================CP" or "CL_RSRA_BCI===================CM003"
"PROCESS_BCI"
or
"CL_RSRA_BCI===================CP" "PROCESS_BCI_ERROR"
or
"RSPC_MONITOR " "PROCESS_BCI_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.
em environment
SAP Release..... 702
SAP Basis Level. 0013
Application server... "sapbms"
Network address...... "192.168.137.117"
Operating system..... "Linux"
Release.............. "2.6.32-279.el6.x86_6"
Hardware type........ "x86_64"
Character length.... 16 Bits
Pointer length....... 64 Bits
Work process number.. 12
Shortdump setting.... "full"
Information on where terminated
Termination occurred in the ABAP program "CL_RSRA_BCI===================CP" -
in "PROCESS_BCI".
The main program was "RSPC_MONITOR ".
In the source code you have the termination point in line 36
of the (Include) program "CL_RSRA_BCI===================CM003".
The program "CL_RSRA_BCI===================CP" was started as a background job.
Job Name....... "RSPC_MONITOR"
Job Initiator.. "ABC-AN"
Job Number..... 12204100
Source Code Extract
Line SourceCde
6 l_t_container TYPE to_t_container,
7 l_msgty TYPE sy-msgty.
8
9 l_t_container = i_t_container.
10
11 CALL FUNCTION 'SWO_INVOKE'
12 EXPORTING
13 access = 'C'
14 object = o_s_ref_bci-handle
15 verb = i_method
16 persistent = ' '
17 IMPORTING
18 return = l_s_swotreturn
19 TABLES
20 container = l_t_container.
21
22 swc_bci_error_set l_s_swotreturn.
23
24 IF ( NOT l_s_swotreturn IS INITIAL ) AND
25 ( l_s_swotreturn-code <> 8017 ). " Cancel
26 IF sy-msgty = 'E'.
27 l_msgty = 'S'.
28 ENDIF.
29 IF sy-batch = space.
30 l_msgty = 'I'.
31 MESSAGE ID sy-msgid TYPE l_msgty NUMBER sy-msgno
32 WITH sy-msgv1 sy-msgv2 sy-msgv3 sy-msgv4.
33 ELSE.
34 MESSAGE ID sy-msgid TYPE l_msgty NUMBER sy-msgno
35 WITH sy-msgv1 sy-msgv2 sy-msgv3 sy-msgv4.
>>>>> RAISE process_bci_error.