Assuming info is required, the following 132 results were found.
Weeks which overlap at the end/start of the year need to be observed. As per the documentation: dateValue = '29-Dec-2019'; info dateValue.toString("yyyy"); // returns 2019 dateValue = '29-Dec-2019'; info dateValue.toString("YYYY"); // returns 2020 You...
{ v_CountDuplicates = l_Customers2.size() - l_Customers1.size(); v_Grammar = if(v_CountDuplicates == 1,"","s"); info v_CountDuplicates + " record" + v_Grammar + " are duplicates!"; // // return a distinct list l_Customers2.removeAll(l_Customers1); // //...
as a system administrator Click on the cog icon in the top right to go to the setup screen. Update 2025: Click on "Employee Information" > "Automation" > "Schedulers" > "Custom Schedulers" Pre Zoho People v5: Under "Automation", click on "Scheduler"...
you can send to. Here's some code to get the last 50 events: // // *********************************** // get Zoho Projects information v_BaseURL = "https://projectsapi.zoho.com"; v_Heading = ""; // // get all portals v_EndpointPortals = v_BaseURL +...
+ "/orders/" + p_OrderID + ".json"; r_GetOrder = invokeurl [ url :v_Endpoint type :GET headers:m_Header ]; info r_GetOrder; Now Continuing... Using the API Admin Access Token: r_ShopifyAPI = API_Integration[Connection_Name == "Shopify API"]; v_ClientID...
our sales team to be able to click on a button off the CRM account record which will call an API returning all the credit information about a company. Unfortunately, if you do this simply using Zoho Deluge in a button, there are no new lines/carriage...
what I've been searching for for the past hour and although you may think I'm just adding to the cyberspace pile of useless info, at least I'm not just copying and pasting from other sites to add content to my own. And I'm not just adding content, the...
Hello setup ms-settings:signinoptions-launchfaceenrollment ms-settings:signinoptions-launchfingerprintenrollment Your info ms-settings:yourinfo Apps Apps & Features ms-settings:appsfeatures App features ms-settings:appsfeatures-app Apps for websites...
// set url curl_setopt($ch, CURLOPT_VERBOSE, 1); // For debugging purposes (read CURL manual for nore info) curl_setopt($ch, CURLOPT_CONNECTTIMEOUT, 30); // Timeout options curl_setopt($ch, CURLOPT_TIMEOUT, 30); // Timeout options curl_setopt($ch,...
for each r_User in l_Users { if(r_User.get("email")==zoho.loginuserid) { v_CurrentUserID = r_User.get("id"); } } info v_CurrentUserID; Method #3: getRecords("users") // get current user id m_UserTypes = Map(); r_Response = zoho.crm.getRecords("users");...
":" + v_CreatorTime.toString("Z").subString(3); // OR (2023) v_CrmTime = v_CreatorTime.toString("yyyy-MM-dd'T'HH:mm:ssXXX"); info v_CrmTime; // yields 2021-09-10T12:49:31-07:00 and vice-versa CRM to Creator Depends on the format of the datetime in your...
Method #5: MS-DOS Command Prompt dir c:\*.* /os /s -- bear with me as i try to create a for loop one to omit all the header info
FileExist( sFile:=A_LoopFileLongPath ) { Return } SplitPath, sFile, _FileExt, _Dir, _Ext, _File, _Drv If ( p[p.length()] = "xInfo" ) ; Last parameter is xInfo { p.Pop() ; Delete parameter fex.SetCapacity(11) ; Make room for Extra info fex["_Attrib"] :=...
Forum Ruleshttps://www.joellipman.com/component/content/article/forum-rules.html?catid=50&Itemid=165
run out). If you made the thread because you need help with something, you may post again as long as you include additional information about your problem (the fact that you really really want it fixed does not count as additional information). You must...
moderators, posts/topics, and opening any other can of worms, etc). Either use the website to contact me or email me at info@joellipman.com. I will do my best to get back to you as soon as I can so that we at least open a line of communication. If...
* Joes Brains v0.1 alpha -- http://joellipman.com/ Future Considerations: Any suggestions? Send them to info@joellipman.com
r_Update = zoho.books.updateRecord("Invoices",v_BooksOrgID,v_InvoiceID,m_UpdateInvoice); info r_Update; Update 2023 If the above doesn't work, consider making an API call to the following endpoint: m_Params = Map(); m_Params.put("invoice_ids", );...
= v_ThisFrom || v_CompareDateFrom = v_ThisTill) { v_TotalClashes = v_TotalClashes + 1; v_ClashOrNot = "Clashes with "; } info v_ClashOrNot + r_TimeOff.get("Employee_ID") + ":" + v_ThisFrom + "-" + v_ThisTill; } } } Note: Play around with the Status,...
m_Data.put("Last_Name","Person"); m_Data.put("id","2"); l_Data.add(m_Data); v_Data = l_Data.toString(); info v_Data; // yields // {"First_Name":"Joel","Last_Name":"Lipman","id":"1"},{"First_Name":"Another","Last_Name":"Person","id":"2"} Some formatting...