Hi,
i'm calling transaction SE38 from my report.
First try was this:
set parameter id 'RID' field selfield-value. call transaction 'SE38' and skip first screen.
But the first screen is not skipped, it just stays on the entry screen with the reportname correctly filled.
After that i tried
bdcdyn 'SAPLWBABAP' '0100'. bdcfil 'BDC_OKCODE' '=SHOP'. bdcfil 'RS38M-PROGRAMM' selfield-value. bdcfil 'RS38M-FUNC_EDIT' 'X'. CALL TRANSACTION 'SE38' USING it_bdc MODE 'E'.
This is working, but the old editor is called and not the new one.
So at least, its working, but i really would like to call the new editor (which is configured in utilities/settings) instead od the backend editor.
Any idea why in the first example the editor is noit called?