cancel
Showing results for 
Search instead for 
Did you mean: 

Process chain error

Former Member
0 Kudos
242

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.

Accepted Solutions (0)

Answers (2)

Answers (2)

Former Member
0 Kudos

Hi,

Can you please tell exactly in which situation you are facing this dump?

--

rgds,

Former Member
0 Kudos

After Creating Start varient , it is going to short dump.

Former Member
0 Kudos

Can you show more of the short dump? can give some more clues

Former Member
0 Kudos

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.

Former Member
0 Kudos

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

Former Member
0 Kudos

Try running this report in SE38 RS_PERS_ACTIVATE which activates your personalization settings. See if this fixed the issue with your process chain.

Former Member
0 Kudos

The process chain is doing something for the DSO 0PERS_BOD from the Technical content.

Is the object active completely?