Problem : Primary key is not just the result of _concat(subscriber.AccountNum,' : ', subscriber.Name)
this is the code on look up table selection...
concat(subscriber.Account_Num,' : ', subscriber.Name)
this event is during beforeAdd event process....so that i can check first if the account already existed....
.... "Select * FROM Subscriber Where Account_Num='".$values["Account_Num"]."'"
i am not new to phprunner but i just wondering why during my mysql query the result of the above drop down menu code is the whole concatenated value.. EX RESULT : 00001 : MYNAME that makes the result to nothing
How can i get only the subscriber's account number only that can be use in $values["Account_Num"] for my query../??