‎2009 Nov 10 5:39 AM
hello experts...
my question is we have a report that generates and download a loan report in SAP...
but the problem is when we execute the program it auto exit.
when i debug the program during start-of-selection it auto exit. Then i debug it again
but i can now generate a report and download the loan report... but only in my development id
it other dev id its still the same when they try to generate it auto exit once executed...
please help
‎2009 Nov 10 5:49 AM
Hello,
Have a look at the code if any checks based on SY-UNAME is placed in the start-of-selection event. If not this its hard to predict for us the reason without having a look at the code
Vikranth
‎2009 Nov 10 5:49 AM
Hello,
Have a look at the code if any checks based on SY-UNAME is placed in the start-of-selection event. If not this its hard to predict for us the reason without having a look at the code
Vikranth
‎2009 Nov 10 5:56 AM
Hi Bernadette,
Can you paste your code just before and after that event to check with the issue.
If it is passing to any select query after the event then check with the STOP keyword.
Genrally we will use if the data is not available then to stop the process and exit the program.
IF T_PRCTSC IS INITIAL.
MESSAGE : I007(ZMSSG) WITH 'Data not available for this entry'.
STOP.
ENDIF.
However, if this is not the case then paste your code for better understanding.
Regards,
Kittu