Integrated Application Platform › Forums › General › Updating records in a database › Re: Re: Updating records in a database
September 26, 2012 at 9:51 pm
#946
Moderator
You need to save the data in a local variable and pass that to your function something like this:
On_OK()
{
data = .Data.Get()
Alert(‘You are about to update all customer prices’ Title: ‘ALERT’)
Inv_price_update(data)
}
Jeff Ferguson