C
caylali
Guest
I had a trigger to create a new record if the the same name is not already existed. I tried below code, but it always returns false no matter the record is exist or not. var m_Name = '{!name#text}'; var isExist = rbv_api.selectQuery("SELECT firstName FROM Merchant where name=?", 1, m_Name); if (!isExist) { return true; } else return false;
Continue reading...
Continue reading...