How to pass values from a temp record to actual recordset

nazunazu Member Posts: 70
Hi All,

I am inserting some values in an Item table which is defined as temporary.Now I want to only show those records in the actual table.How do i achive this?
what is did was i defined another recordset of item table & wrote as
if recitem.get(rectempitem."no.") then
recitem.mark(true);
recitem.markedonly(true);
form.run(0,recitem);

but it is showing all the records.Hos do iachive this
Sign In or Register to comment.