Hi Experts,
I have a requirement that I have created a button on my form where I need to process the records based on a condition when the user press the button. I don't know how to select the records in the clicked methods (in other words arguments for clicked method).
Example:- SalesLine form, I need to select first 5 items by comparing line number with my counter and process them to update something else.
how to select the records of the respective sales order in the clicked method of the button ?
void clicked()
{
SalesLine salesline;
super();
while select forupdate salesline where salesline.linenum <= MyCounter
{
// do some update;
}
}
how to pass arguments to select only particular sales order, Thanks in advance

Report
All responses (
Answers (