Welcome to Portal
Hollo, Sejal,
I don't know why below codes returns Null? I tried zoho.books.getRecordsbyID("Salesorders", "XXXXX", "XXXX") and got the same result.
list getSO_Itemlines(string SO)
{
searchParam = {"salesorder_number":SO};
resp = zoho.books.getRecords("Salesorders","XXXXX",searchParam);
items = resp.get("line_items");
info items;
for each item in items
{
info item.get("name");
}
return items;
}
Carson Hu
Thank you! this was really helpful, but what about updating records in other applications?
for example If I change the (tax rate or currency type) in one app it will change it automatically in the second app
HI Mark,
Just struggling with the same issue as listed above. The field is a lookup which returns BIGINT.
Could you please confirm where I should add the additional field name in your below solution?
-------
Just add ".[field name]". For example:
Email.Email_Address
Thanks
Christie
Hi there everyone.
I managed to solve the issue of having a lookup field returns as BIGINT and the function requires a string input. When creating your function, specify the argument "examplearguement" as INT.
This allows for the lookup ID (BIGINT) in your field to be inserted into the function to output to STRING.
yay!
Hi all,
Is it possible to fetch image file or a doc file from another application? If yes, then pls help with an example.
Thank you!
Subscribe to receive notifications from this topic.
Hello Ahmed. I have the same problem. Did you somehow find a solution to update records in another application on succesful form submission in another app?