Skip to Content
-1
Sep 27 at 07:11 AM

Submit program can't return for submit program with submit another program

170 Views Last edit Sep 27 at 07:12 AM 4 rev

Hi All,

In program_1, I am using the following code for submit program_2:

  cl_salv_bs_runtime_info=>set(
  exporting display = abap_false
  metadata = abap_true
  data = abap_true ).


  submit (v_program_2)
  with free selections texpr
  with selection-table i_select
  and return.

In program_2, I am using submit to program_3 with similar code.

When running program_1, the program will stop on the alv display of program_2 and can not receive data from memory.

How to solve this problem?