on 2010 Oct 06 9:34 AM
error while creating process chain
What happened?
Error in the ABAP Application Program
The current ABAP program "CL_RS_PERS_PHK================CP" had
terminated because it has
come across a statement that unfortunately cannot be executed.
The following syntax error occurred in program "GPD8X53N0CFTUTF
in include "GPD8X53N0CFTUTFXFNDR6UYHLT1 " in
line 29:
"Type "/BI0/APERS_BOD00" is unknown"
" "
" "
" "
Error in the ABAP Application Program
The current ABAP program "CL_RS_PERS_PHK================CP" had
terminated because it has
come across a statement that unfortunately cannot be executed.
Hi,
Can you please tell exactly in which situation you are facing this dump?
--
rgds,
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Include CL_RS_PERS_PHK================CM008
Row 21
Module type (METHOD)
Module Name GET_DATA
Source Code Extract
Line SourceCde
1 method GET_DATA .
2 data: l_subrc type sy-subrc.
3 data: l_s_pershead type rspershead.
4 * Initialise
5 call method get_pershead
6 exporting i_applnm = i_applnm
7 importing e_s_pershead = l_s_pershead
8 exceptions not_exist = 1.
9 if sy-subrc = 1. raise no_processing. endif.
10 if l_s_pershead-active = rs_c_false. raise no_processing. endif.
11 if l_s_pershead-query is initial. raise x_message. endif.
12
13 * Recieve Data
14 try.
15 perform pers_read
16 in program (l_s_pershead-query)
17 tables e_t_data
18 using i_maxrows
19 i_t_sel
20 changing l_subrc.
>>>> if l_subrc ne 0. raise x_message. endif.
22 catch cx_root. raise x_message.
23 endtry.
Thanks. It is strange behavior as the method/class where dump is occurring is related to personalization data whereas the error is coming in creating the process chain
Appreciate if you can check if the error is coming for some other user ID as well? Also try the same with ID who has full authorization
The process chain is doing something for the DSO 0PERS_BOD from the Technical content.
Is the object active completely?
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
User | Count |
---|---|
67 | |
8 | |
8 | |
6 | |
6 | |
6 | |
6 | |
6 | |
5 | |
5 |
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.