I’m looking for an easy way to link to KE23N. It doesn’t seem to follow the usual “set parameter id … call transaction and skip first screen”, so I’m debugging the link from KE24 which goes like this:
data: ind type i.
data: dli_dialog(40) value 'RKE_KE23_1010'.
data: dli_dialog_n(40) value 'RKE_KE23N'.
data: begin of ep_tab2 occurs 1.
include structure ce01010.
data: end of ep_tab2.
ind = 2 which is the line I clicked on
export ep_tab from ep_tab2 to memory id 'KE23N'.
call dialog dli_dialog_n and skip first screen
exporting index_ep from ind
g_erkrs from rkb1x-erkrs
importing index_ep to ind.
So, we would need to fill the internal table of ep_tab2 prior to doing the call.