Issue in Script Builder Updating a Long-List
Issue in Script Builder Updating a Long-List
I made a function to clear a long-list field type from my database, but it was reporting this error:
The only way I could get it to work was build the code in free-flow script mode:
void DELETE_MEMBERSHIP()
{
for each row in parent_database
{
row.Schools = List:Int();
}
}
Clearly a bug!
Cheers,
John Whitney