‎2007 Apr 17 11:34 AM
Hello everyone,
I am calling fbl3n tcode from my zprogram using
SUBMIT RFITEMGL
WITH FREE SELECTIONS TEXPR
* WITH FREE SELECTIONS rt_dyn_trange
WITH SD_SAKNR-LOW = L_HKONT
WITH SD_BUKRS = P_BUKRS
WITH SO_BUDAT = P_BUDAT
WITH XOPSEL = 'X'.I display alv list and if user presses field on alv list it will do the submit.
I am able to display the alv list and also fbl3n list when pressed a field on alv. The problem is when i press the back button on displayed fbl3n list, the control goes to initial screen instead of displaying the alv list. How can i get the control back to alv list so that user can select another field for processing.
Regards
‎2007 Apr 17 11:37 AM
Hi Kesi,
Try with this code.
SUBMIT RFITEMGL
WITH FREE SELECTIONS TEXPR
WITH FREE SELECTIONS rt_dyn_trange
WITH SD_SAKNR-LOW = L_HKONT
WITH SD_BUKRS = P_BUKRS
WITH SO_BUDAT = P_BUDAT
WITH XOPSEL = 'X' <b>AND RETURN.</b>
Thanks,
Vinay
‎2007 Apr 17 11:37 AM
Hi Kesi,
Try with this code.
SUBMIT RFITEMGL
WITH FREE SELECTIONS TEXPR
WITH FREE SELECTIONS rt_dyn_trange
WITH SD_SAKNR-LOW = L_HKONT
WITH SD_BUKRS = P_BUKRS
WITH SO_BUDAT = P_BUDAT
WITH XOPSEL = 'X' <b>AND RETURN.</b>
Thanks,
Vinay
‎2007 Apr 17 11:37 AM
Hi,
Write AND RETURN and see.
SUBMIT RFITEMGL
WITH FREE SELECTIONS TEXPR
WITH FREE SELECTIONS rt_dyn_trange
WITH SD_SAKNR-LOW = L_HKONT
WITH SD_BUKRS = P_BUKRS
WITH SO_BUDAT = P_BUDAT
WITH XOPSEL = 'X' AND RETURN.
reward if useful
regards,
Anji
‎2007 Apr 17 11:40 AM
Hi..,
You are not using AND RETURN here .. so the calling program will be deleted from the working memory of the program !! so how can it go back to ALV list .. when the list is deleted !!
use..
SUBMIT RFITEMGL
WITH FREE SELECTIONS TEXPR
WITH FREE SELECTIONS rt_dyn_trange
WITH SD_SAKNR-LOW = L_HKONT
WITH SD_BUKRS = P_BUKRS
WITH SO_BUDAT = P_BUDAT
WITH XOPSEL = 'X' <b>and return</b>.
regards,
sai ramesh
‎2007 Apr 17 11:56 AM
Hey Rahul
SUBMIT RFITEMGL
WITH FREE SELECTIONS TEXPR
WITH FREE SELECTIONS rt_dyn_trange
WITH SD_SAKNR-LOW = L_HKONT
WITH SD_BUKRS = P_BUKRS
WITH SO_BUDAT = P_BUDAT
WITH XOPSEL = 'X'
<b>AND RETURN</b>.
rahul, in subject u kept submit and return ,but u forgot d same in ur prgram :-).
regards,
ramesh.