Posting Records

Dear All,

I am opening a customized form , here if i select some particular record and want to post (insert into some another table).

how can i do ?

till now i have written code on "on push " of command button

Currform.setselectionfilter(Rec); /// Here i get the selected lines.

now i want to insert the selected lines in say tab1

so ,… tab1.init;

tab1.field1:=rec.field1;

please help for the same.

Hi Amol,

You question shows that you have understood most of it, but take a look at how its done in example sales invoices and when you post sales invoices. Now even if your setup is not as complex, then you should always try to create the same concept as used by Microsoft. So I suggest that you create your code in a codeunit and calls the codeunit from the form. Otherwise it’s difficult to see from your question what you’re are actually trying to do, and what you need to know.

Thanks Ernst,

thanks i got a solution , i was inserting wrong record in setselectionfilter().