Hi Silvia
When the note mentions that the planning element is processed more than 20 times, it does not mean that it is displayed more than 20 times on the report results. It means that it is processed more than 20 times on the ABAP code behind the report.
If you want to make sure that the solution proposed on this note will work, please set a break-point on the following piece of code:
Program LM61NF30
IF lt_ioelx-sobes = sobesu. "Note 1000698
IF lt_ioelx-disst EQ pre_disstu
OR pre_disstu EQ SPACE.
lv_counter = lv_counter + 1.
IF lv_counter GE gc_recursion.
IF gs_profile-hier_level GE gc_recursion.
c_problem = ll_recursive. EXIT. <<<<<<<<<<<<
ENDIF.
If the highlighted line is reached, then the solution proposed on note 1837484 will resolve the issue.
BR
Caetano