In class declaration write this
//in the start
#define.CurrentVersion(2)
//in the end
#localMacro.CurrentList
fromDate,
toDate,
fromDataAreaId,
toDataAreaId,
generalType,
mainAccounts,
division
#endMacro
Make this method in the dialog form
container pack()
{
return [fromDate,toDate,fromDataAreaId,toDataAreaId,generalType,mainAccounts,division];
}
Make this method in the dialog form
boolean unpack(container _packedValues)
{
[fromDate,toDate,fromDataAreaId,toDataAreaId,generalType,mainAccounts,division] = _packedValues;
return true;
}
//in the start
#define.CurrentVersion(2)
//in the end
#localMacro.CurrentList
fromDate,
toDate,
fromDataAreaId,
toDataAreaId,
generalType,
mainAccounts,
division
#endMacro
Make this method in the dialog form
container pack()
{
return [fromDate,toDate,fromDataAreaId,toDataAreaId,generalType,mainAccounts,division];
}
Make this method in the dialog form
boolean unpack(container _packedValues)
{
[fromDate,toDate,fromDataAreaId,toDataAreaId,generalType,mainAccounts,division] = _packedValues;
return true;
}