itemChilds is a temporary table. I want to modify and update every record in it so I thought the following code would do the job:
You should be aware that each object (variable) defined with a temporary table as datatype has its own private file with data.
If you have one object (tmp1) which is used to insert records into the temporary table, you will not be able to fetch the records with another object (tmp2) even if you have used the same datatype.
If you want to share the contents of one temporary table between two objects, you can use the following statement (tmp1 is currently having the records):
tmp2.setTmpData(tmp1);
Best regards, Bjørn Møller Pedersen Thy Data Center Devlopment A/S http://development.thydatacenter.dk/
Yahoo! Groups Sponsor
Your use of Yahoo! Groups is subject to the Yahoo! Terms of Service.

