‎2009 May 15 1:51 PM
Hi experts,
I am getting the short dump, when i am using the below statements.
what could be the reason.
Please guide me if i am making any mistake
FETCH NEXT CURSOR s_cursor
APPENDING TABLE it_ml_hd_it
PACKAGE SIZE s_s_if-maxsize.
If i remove appending table by fetching the cursor in do enddo it is working fine.
Thanks
Sai
‎2009 May 15 2:31 PM
Try this:
FETCH NEXT CURSOR s_cursor
into TABLE it_ml_hd_it
PACKAGE SIZE s_s_if-maxsize.
within Do enddo.
appedn this table to another table of same type and then refresh it_ml_hd_it.
‎2009 May 15 3:23 PM
There is not "the" short dump, there is many different types. Which one are you seeing, header and section "error analysis" would be interesting.
Thomas