... of Zoho Inventory. In this task, we are simply getting a CSV with all the order IDs for a particular year output as a spreadsheet.
How?
Similar to how we retrieved the eBay active listings (see ...
... in this row is start date (retrieved from field "Actual Start Date" on this record)
var v_StartDateValue = ZDK.Page.getField('Actual_Start_Date').getValue();
var v_LocalStartDate = new Date(v_StartDateValue);
...
... uncomment this when all products retrieved and to run this to just get latest products
// m_ActiveList.put("Sort","ItemIDDescending");
m_ActiveList.put("Sort","ItemID");
m_Params.put("ActiveList",m_ActiveList);
//
// ...
... attach to CRM record
// Note: Because record cannot be retrieved with search in 1 workflow, run this 2 minutes after Modified_Time
// retrieve crm id
v_CrmSoID=0;
v_RecordID = ifnull(input.ID,0);
if(v_RecordID ...
... = $db->loadResult();
-- using the data
echo $my_value; // will equal the retrieved value of "email"
Single Row Result - loadRow()
This type of query is for when you want any of ...
... far we have just retrieved information from the webpage. Now lets start controlling the webpage. Note - if the JavaScript doesn't end with a Method, use void 0.Focus on a Webpage Element - focus()
...
... "DataSet1"), "3pt", "1pt")
-- where "Field1" is a column in my dataset and "DataSet1" is my dataset
-- and Count(Fields!Field1.Value, "DataSet1") returns the maximum number of rows retrieved
Yields ...
We use cookies to improve your experience on our website. By browsing this website, you agree to our use of cookies. Read more about our Privacy Policy.