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

Short dump while executing report group.

Former Member
0 Likes
704

Hi,

We are upgrading to ECC6.0 from 4.6C

Now while testing the report group i got short dump.

This is due to to the 'Exception condition "LOAD_PROBLEMS" raised.'

**************************

Error analysis

A RAISE statement in the program "SAPLSLDB" raised the exception

condition "LOAD_PROBLEMS".

Since the exception was not intercepted by a superior

program, processing was terminated.

Short description of exception condition:

For detailed documentation of the exception condition, use

Transaction SE37 (Function Library). You can take the called

function module from the display of active calls.

-

Function module 'SELOPTS_AND_PARAMS' in this that statement was there.

Can some one help me out. what i have to do further.

Thanks in advance.

Regards,

Deepak.

3 REPLIES 3
Read only

Former Member
0 Likes
542

check out the type compatibility of the parameters of the function.

Read only

Former Member
0 Likes
542

Hi,

The load_parameters will raise when sy-subrc is not equal to zero.

PERFORM LOAD_SSCR TABLES L_SSCR

USING PROGRAM

CHANGING L_SUBRC.

IF L_SUBRC NE 0.

RAISE LOAD_PROBLEMS.

ENDIF.

may be you need to check screen no and program. may you set a breake point ans test it. may you can get some clue.

Rgds,

Hemanth.

Read only

0 Likes
542

Hi Hemanth,

Actually what I analysed is what ever the exception raised due to this sy-subrc that exception i think the superior program is not receiving. I think due to this it is going for short dump.

Let me know if you have any idea further.

Thanks,

Deepak.

Message was edited by:

Deepak Kudaravalli