2008 Dec 22 3:51 PM
hi,
i want to pass idoc number to bd87 screen through my program .
i tried using the submit statement as there is no parameter id for sx_docnu field like this:
lv_docnum =(having idoc number)
r_docnum2-sign = 'I'.
r_docnum2-option = 'EQ'.
r_docnum2-low = lv_docnum.
append r_docnum2.
SUBMIT rbdmon00
WITH sx_docnu in r_docnum2
via selection-screen
AND RETURN.
but this is not working.can anybody tell me how to do this????
hi,
i want to pass idoc number to bd87 screen through my program .
i tried using the submit statement as there is no parameter id for sx_docnu field like this:
lv_docnum =(having idoc number)
r_docnum2-sign = 'I'.
r_docnum2-option = 'EQ'.
r_docnum2-low = lv_docnum.
append r_docnum2.
SUBMIT rbdmon00
WITH sx_docnu in r_docnum2
via selection-screen
AND RETURN.
but this is not working.can anybody tell me how to do this????
2008 Dec 22 4:03 PM
Hi
Try this
DATA: rspar_tab TYPE TABLE OF rsparams.
rspar_line-selname = 'SX_DOCNU'.
rspar_line-kind = 'S'.
rspar_line-sign = 'I'.
rspar_line-option = 'EQ'.
rspar_line-low = '002'. "Idoc number
APPEND rspar_line TO rspar_tab.
SUBMIT rbdmon00
WITH selection-table rspar_tab
via selection-screen
AND RETURN.
Cheers
Joginder
2008 Dec 22 4:09 PM
hi joginder,
its still not working....why dont u yourself try in the code and execute.
2008 Dec 22 4:05 PM
Try to use program RBDAPP01 (inbound processing) or RSEOUT00 (outbound processing)
Instead of BD87
a®