Assuming retrieved is required, the following 10 results were found.
$db->setQuery($query); $my_value = $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 the values from one resulting row. You will...
my dataset and "DataSet1" is my dataset -- and Count(Fields!Field1.Value, "DataSet1") returns the maximum number of rows retrieved Yields something like: This is the bottom left of a report where both the above examples (fill and borders) have been...
MsgBox % COM_Invoke(pwb, "document.getElementsByTagName[input].item[3].value") Controlling the WebPage So far we have just retrieved information from the webpage. Now lets start controlling the webpage. Note - if the JavaScript doesn't end with a...
// // ********************************************************** // 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 =...
m_ActiveList.put("Pagination",m_Pagination); // 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");...
which allows us to compare to the rows already present in the subform // first column to add 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();...
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 article link above), we're going to use the GetOrders call for order (sales) management. /*...
r_Account = zoho.crm.getRecordById("Accounts",v_AccountID.toLong()); if(!isNull(r_Account.get("id"))) { v_Output = "Info: Retrieved Record of CRM Account ID: " + v_AccountID; } } // // format output v_OutputHtml = " Hullo World! "+v_Output+" "; return...
add line items to the invoice m_UpsertCrmInvoice.put("Invoiced_Items",l_CrmLineItems); // // let's add the billing address retrieved earlier to the invoice m_UpsertCrmInvoice.put("Billing_Street",l_AddressStreet.toString(", "));...
// -------------------------------- Quote Address -------------------------------- // // // let's add the billing address retrieved earlier to the Quote m_UpsertCrmQuote.put("Billing_Street",l_AddressStreet.toString(", "));...