Application Development and Automation Discussions
Join the discussions or start your own on all things application development, including tools and APIs, programming models, and keeping your skills sharp.
cancel
Showing results for 
Search instead for 
Did you mean: 
Read only

Error in ABAP table

Former Member
0 Likes
416

Hi,

I am executing script logic in SAP BPC. however it's back end is SAP BI and i am getting this following error

"A dump error occourred in ABAP stack". while i have tried to pull error info by going through ST22, i can see this below error.

The current ABAP program "CL_UJK_RUN_LOGIC==============CP" had to be

terminated because it has

come across a statement that unfortunately cannot be executed.

The following syntax error occurred in program

"BADI_UJ_CUSTOM_LOGIC==========CP " in include

"BADI_UJ_CUSTOM_LOGIC==========CM000 " in

line 9:

"The specified type cannot be converted into the target variables."

" "

" "

" "

The include has been created and last changed by:

Created by: "DDIC "

Last changed by: "DDIC "

Error in the ABAP Application Program

The current ABAP program "CL_UJK_RUN_LOGIC==============CP" had to be

terminated because it has

come across a statement that unfortunately cannot be executed

Any advices.

1 REPLY 1
Read only

Former Member
0 Likes
365

Hi,

The easiest way to debug custom BPC BADI is to put a break point in you BADI and run script that calls it from transaction UJKT.

if you want to debug any script logic run it from UJKT as well and put your break-point in Method RUNLOGIC of Class CL_UJK_RUN_LOGIC. Methods PREPROCESS_LGF, GENERATE_LGX and EXECUTE_LGX process different steps of script execution.

If you can't run your script in UJKT, than you can debug it from DM Package. Scott's blog at /people/scott.cairncross/blog/2010/03/14/troubleshooting-bpc-netweaver-data-manager-packages is an excellent guide to that.

Prabhudas