cancel
Showing results for 
Search instead for 
Did you mean: 

abstract list

Former Member
0 Kudos

hi

i have problem with setting data to the RFC

ZMatch input = new ZMatch(); (RFC Model)

ZCAR car = new ZCAR();

car.setpcar(gcar);

car.setpmodel(gmodel);

car.setpboody(gbody);

input.addcar(car);

input.execute();

here gcar, g model , gbody are the string elements which

are getting the data from the itemlistbox.

now the problem is i have called the RFC in the wddoinit()

method which will populate data in the 3 itemlistboxes

and there is table which i have to get data from the

itemlistbox and set to a structure called ZCAR

this ZCAR i have added to RFC MODEL ZMATCH

and then executed the RFC , now after executing the

RFC all data on the itemlistbox is getting invalidated

i mean all the data is getting removed .

can any one help me ? it urgent ?

Accepted Solutions (0)

Answers (1)

Answers (1)

Former Member
0 Kudos

Kishore wat i understood is there are 3 itemlist which are populated at init() method either by 3 RFC or local dictionary.... then as the user select the data from these itemlist.. its populated it in to table ....now u have to send these three values as a structure to R/3 usinf BAPI/RFC..... u are calling that RFC at any button click or when?... if its a button clickk ... hows its invalidate above 3 RFC data :(... pls explain in little more detail

regards,

Sumit

Former Member
0 Kudos

hi

thanks for the reply

but there is only one RFC being called

that is called at the first time in init() method

and after populating the data in itemlistbox , i am

filtering the itemlistbox with some conditions

now i have picked up the filtered data in some

STRING variables and then set it to a structure

called IT_CAR , then i am setting this structure to the

RFC and executing the RFC(same RFC)

then when for the time i have populated in the itemlistbox

is getting blank or invalidated.

problem is we are using single functional module

any suggestions ?