‎2007 Jun 11 5:56 AM
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
‎2007 Jun 11 6:06 AM
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
‎2007 Jun 11 7:16 AM
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
‎2007 Jun 11 7:27 AM
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,