2013 Jan 17 10:13 AM
Hi Friends,
I tried with one example related to Submit statement.
report ztest.
data : lv_car(3) type c value 'AC'.
export lv_car to memory id 'LVCARRID'.
submit ztest1 and return.
report ztest1.
data : lv_carr(3) type c .
import lv_carr from memory id 'LVCARRID'.
parameters : p_carr type sflight-carrid default lvcarrid.
but my problem is i am not getting selection screen in ztest1 after execution
Please guide me.
Thanks
Raghunadh.K
Moderator Message - Basic ABAP syntax. Read the ABAP documentation on SUBMIT.
Message was edited by: Suhas Saha
2013 Jan 17 10:31 AM
Hi Raghunadh ,
For that you need to call SUBMIT with VIA SELECTION SCREEN addition.
For details please refer the below thread :
https://help.sap.com/saphelp_nw04/helpdata/en/9f/dba51a35c111d1829f0000e829fbfe/content.htm
2013 Jan 17 1:31 PM
Hi Sijin,
I can't Follow the link can you send the syntax for the Submit statement.
Ok thanks for your help i got it finally
Thanks,
Raghunadh.K