Application Development Discussions
Join the discussions or start your own on all things application development, including tools and APIs, programming models, and keeping your skills sharp.
cancel
Showing results for 
Search instead for 
Did you mean: 

passing data to BD87 screen

Former Member
0 Kudos

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????

3 REPLIES 3

joginder_singh
Active Participant
0 Kudos

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

0 Kudos

hi joginder,

its still not working....why dont u yourself try in the code and execute.

former_member194669
Active Contributor
0 Kudos

Try to use program RBDAPP01 (inbound processing) or RSEOUT00 (outbound processing)

Instead of BD87