Noob problems in a very basic app...
Can anyone tell me what's wrong here :S (i know is more usefull if i do another list to don't repeat account names, but i'm trying to test the apis)
Thanks in advance ! ^^
potential_list = zoho.crm.getRecords("Potentials");
for each pot in potential_list
{
if (pot.get("Stage") == "Ganado")
{
/* Name of the "app" */
insert into shared_view
[
id = pot.get(("Account Name"))
wins = 1
]
}
}