... 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? ...
... of an "Attachments.csv" file that needs the correct values in each column and the "Attachments.zip" containing the files to attach that needs some formatting as well:
Note that any IDs used in the snippets ...
... let v_DealID = r_DealLookup.id;
let r_DealDetails = ZDK.Apps.CRM.Deals.fetchById(v_DealID);
// get Deal/Opportunity fields we need to refer to
var v_OppType = r_DealDetails.Type_of_Opportunity;
...
What?
An article on the reasoning and steps to generate a dataset using Zoho's ANSI-SQL queries to generate the margins of each invoice in ZohoBooks.
Why?
We need to create a profits/losses dashboard ...
... deals against a deal owner and needed to repeat this for all the invoices against a sales person.
It adds to the effect on loading the page that a widget has clearly defined values based on the filters ...
... of weeks thereafter). This needs to be dynamic as it is a schedule run daily checking the availability of a staff member for the upcoming week.
How?
As mentioned, using leftpad takes 2 parameters, ...
... CRM record.
STEP 1: REGISTER A NEW CLIENT
First, you need to register your application with Zoho’s developer console to get your Client ID and Client Secret. (Login as the client super admin or ascentcloud ...
... you can parse the multi-line into a nice HTML table. But on a mobile device, it's somewhat better to use the built-in interfaces provided by Zoho Creator.
What I really needed was a way to display ...
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.