Search found 1 match

by Vicente
Thu Jan 23, 2014 4:28 pm
Forum: Using OpenEMM
Topic: Action to update user field
Replies: 3
Views: 5827

Re: Action to update user field

You need to indicate that changes have been made.

#set($Customer.changeFlag = true)

The variable where you load the data can not be called like having parameters,

## ERROR
#set($requestParameters=$Customer.getCustomerDataFromDb())

## OK
#set($parametros=$Customer.getCustomerDataFromDb ...