cancel
Showing results for 
Search instead for 
Did you mean: 

IBP Query Execution Error - ABAP Debugger Starts

Former Member
0 Kudos

Hi Experts,

I am facing the below issue from last 1 week. Previously it was all working fine.

Issue: when i execute the query in RSRT the query successfully executes with out any errors, In the report there are few fields where i can input my planning values (say for eg: JAN=10,000) when i try to save the values it goes to the ABAP Debugger Screen. (below code) it stops at the break point.

IF cl_rsr_mdx_ui_services=>is_debug( ) EQ rs_c_true.
BREAK-POINT. "#EC NOBREAK
ELSEIF sy-tcode EQ 'RSRTRACE'
OR sy-tcode EQ 'RSRCATTTRACE'
OR sy-tcode EQ 'RSRT'
OR sy-tcode EQ 'RSRT2'
OR sy-tcode EQ 'RSRAM'
OR sy-tcode EQ 'RSTT'
OR sy-cprog EQ 'RSTT_EXECUTE_TRACE'.
*_____________________________________________________________________

* error in >> l_repid <<
* >> l_include <<
* >> l_source_line <<
*__________________________^^^^^^^^^^^^^^_____________________________
BREAK-POINT. "#EC NOBREAK
l_message = rs_c_true.

=> Now if i press F8 it comes back to the Report Screen and it will allow to inuput the values as well as save the values.

ERROR Displayed for Pressing F8 are:

1.Inconsistent input parameter (parameter: I_PDIMID, value 54)

RS_EXCEPTION 101

Kindly help me in resolving the issue.

Regards

Abdullah

Accepted Solutions (0)

Answers (1)

Answers (1)

snitwipro
Active Participant
0 Kudos

Hi,

Please see the type of variable I_PDIMD. It may happen that it is of type single value and you are trying to enter a range (just an example). You can also find out the info object name (on which the variable is created) and see in the SID table if the value you are trying to enter exists there ?

Can you provide a step by step process (screenshots) to reproduce the situation.