... you have sent the code to either create or update the estimate in ZohoBooks. You will need the returned estimate ID and I'm not 100% sure the attention/phone number goes along as my client didn't include ...
What?
This is a very quick article on sending an email with Deluge which needs a dynamic number of files attached to it.
Why?
This came up during a call with another developer and it occurred ...
... that key. I can't sit there entering one customer at a time. Even a loop would hit a statement execution limit.
Why?
My use-case is that I need this done over a dataset of 20k+ contact records ...
... 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"); ...
What?
A quick article on getting the payment terms in Zoho Books along with their IDs.
Why?
I often need to send through an automatic payment term on the creation of an invoice but lots of my ...
What?
If you're lucky enough to build an application for a client based in a country that changes its clocks twice a year, then I'm opening this article without a 100% certain solution as I need to wait ...
... deal module, the Zip field is 20 characters... but we need these to match if we want to map them in the "Lead Conversion Mapping" page.
How?
This is a bit of a hack and most likely not recommended... ...
... how to troubleshoot issues with this. One important thing to note is that the setup needs to be done by whoever manages the domain for the client.
Who owns the domain (eg. mycompany.com)
So this ...
...
I'm storing this here as a reference and taking the bits that I need for the various clients that request an eBay integration. This is a comprehensive snippet which does the whole lot.
How?
Using ...
... on the employee record
So now we just need to append the following code which loops through the map / associative array we just created and shove this onto every employee's record. My employee recor ...
... specify your DHL API Key (no need for the secret or base64 encoding)
v_DHL_API_Key = "1234567890ABCDEFGHIJKLMNOPQRSTUVWXYZ";
//
// build up header
m_Header = Map();
m_Header.put("DHL-API-Key",v_DHL_API_Key);
// ...
... Pivot" cp ON cp."Contact Id"=c."Id"
Caveat(s)
You may have noted a few caveats with this solution:
This query needs each campaign name specified to see the results per contact person.
You can ...
... && v_Message!="Ask ChatGPT")
{
//
// Need to add your own OpenAI token here
v_Token = "sk-XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX";
//
// build header of request
m_Header = Map();
m_Header.put("Authorization","Bearer ...
... in certain cases
v_NewLineChar = hextoText("0A");
Thought I needed to add the following but this makes absolutely no difference:
f_CSVFile.setCharSet("UTF-8");
f_CSVFile.setFileType("csv");
...
What?
An article on how I can query all the orders for yesterday without using the eBay GUI Selling website. I've included the code to parse out the information as well.
Why?
Because I need this ...
... the displayed note of "Add your Note here...")
input.CSS_Overrides = v_CssNotes;
Additional
If you don't want to apply this to the every subform on that form, you will need to brush up a little ...
... 100 products are modified in a day... We need to be able to do more than 100 or at least resume from a record... We need pagination.
How?
To resolve this, I'm building on top of my initial GraphQL ...
... contains a question mark, send it to OpenAI
if(v_Message.contains("?"))
{
v_Question = v_Message;
//
// Need to add your own OpenAI token here
v_Token = "sk-abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789";
//
// ...
... defaults certain arguments to any prompt you submit. I don't really recommend this unless you're doing a batch of images which need to match the same style and dimensions. To start,
type /prefer suffix ...
... module which then allows you to link the Candidates to the Job Openings; but my client needed to be able to query this via API and the "Associate" table or whatever it is, was not visible in API...
How? ...
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.