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: 

submit report

Former Member
0 Kudos
109

hi all,

i have submitted RSBDCSUB in a session method bdc and i can get the selection screen. here i want to pass the session given in the program by default into the selection screen. what is the code?

points will be rewarded

thank u

1 ACCEPTED SOLUTION

Former Member
0 Kudos
91

Hi ,

Use this code.

SUBMIT RSBDCSUB with MAPPE = session name

with VON = date

with BIS = date.

If you want for other fields also use the condition using WITH.

Regards

Sunil Kumar P

5 REPLIES 5

Former Member
0 Kudos
91

HI,

SM35

Former Member
0 Kudos
91

Hi ,

Try using IMPORT EXPORT statement.

refer these links.

[;

[;

Hope this helps.

reagrds

Sourabh Verma

Former Member
0 Kudos
92

Hi ,

Use this code.

SUBMIT RSBDCSUB with MAPPE = session name

with VON = date

with BIS = date.

If you want for other fields also use the condition using WITH.

Regards

Sunil Kumar P

Former Member
0 Kudos
91

Hi,

use IMPORT/EXPORT as like follows.

At first just find the memory variables of the parameters to whom you want to pass the values without calling the selection screen. Then do the following.

main program.

export <value> to memory id 'test'.

submit program RSBDCSUB and return.

Regards,

Sanki.

Former Member
0 Kudos
91

thank u all , got it myself