Application Development and Automation 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: 
Read only

to insert the values into select-option using BDC

Former Member
0 Likes
1,198

HI,

I created a BDC , in that one of the field datas have to be given in select-options screen, obviously in the selection-option u can insert upto 8 rows for inserting more values u will scroll down and insert the values , what I need was how to scroll down and insert the rest of the values into the select-options using BDC, First 8 datas are inserted properly, the other values above 8 couldn't be inserted.I need help immediately

REGARDS,

Janani.s

3 REPLIES 3
Read only

Former Member
0 Likes
709

Hi,

Can you use SUBMIT to execute the report instead of BDC..Then use the WITH option to pass multiple values to the select-options..

RANGES: R_MATNR FOR MARA-MATNR.

**YOu can pass multiple values to the ranges internal table..

SUBMIT ZREPORT WITH SO_MATNR IN R_MATNR.

Thanks,

Naren

Read only

0 Likes
709

Hi Naren ,

No I don't want to use submit I want this problem to be solved through BDC

are u having any Idea about this

regards,

janani

Read only

Rashid_Javed
Contributor
0 Likes
709

Well if you do not want to use "Submit" and insist on using BDC, I think folloiwng might help.

In the select option input screen there is a button for 'Insert Line'. I think you should use this button instead of inserting data in batches of 8. The function code for 'Insert Line' button is

Program : SAPLALDB

Function : LINS

It will insert the line above the current line. So you can insert records one by one, calling insert line function function after each record.

Hope this will help,

RJv