Capturing report output into one internal table
Do you know a way to place the output of a report or screen into an internal table? Better yet let me rephrase the question: Is there a way capture report output into one internal table?
Do you know a way to place the output of a report or screen into an internal table? Better yet let me rephrase the question: Is there a way capture report output into one internal table?
Use SUBMIT ... EXPORTING LIST TO MEMORY (help on SUBMIT, addition 7, in 4.6C). It saves the output of a report into memory. Use the function modules LIST_FROM_MEMORY, WRITE_LIST and DISPLAY_LIST.