... 2020-03-17
*/
// get all field names for the Invoices module via API
l_FieldApiNames = List();
r_Fields = invokeurl
[
url :"https://www.zohoapis.eu/crm/v2/settings/fields?module=Invoices"
type ...
... = ;
l_MonthNames = ;
Here's the standard code you'd expect if your Fiscal year starts in January (Divide by 3 and round up):
for each v_Month in l_Months
{
v_Quarter = (v_Month.toLong() / ...
What?
This is an article documenting how to access ZohoCRM with API v2 using PHP and cURL. The first few functions are to manage OAuth v2 and generate the refresh and access tokens. The second snippet ...
... lists
Day_Names = List:String();
Day_Abbreviations = List:String();
// get date field day abbreviation
Day_Abbreviation = My_Date.toString("E");
// find in array and return same index from ...
... function which uploads and names the file in a single request, and the third is a 'nice-to-have' upload to the specified folder.
Method #1: two requests
1. Send the media file
2. Update the name ...
... working on has just gone international and started including the names of places in other countries. This is nice but its search engine doesn't work properly as it thinks "riviere" is different to "rivière". ...
... the funny question marks in diamond symbols and how I solved it in my case.
Why?
My company has started using international country and region names which include foreign characters. When we ...
Applies to:
TravelPort Universal API
PHP 4 or 5
cURL
What?
An article on how to resolve errors and setup a standard ping request using the TravelPort Universal API. This is to be achieved using ...
What?
A quick article on how to get the value of 40°4′20″N 116°35′51″E into 40.079857, 116.603112.
How?
Let's pretend all the names are in column A, in Column B I have the coordinates that I want ...
... sensor level
- Map: display gallery of screenshots (+offline mode)
- Map: populate nearest cities for lat/lng to more accurate city names
- Map: use map touch listeners
- Map: timeout requests on idle
- ...
What?
A quick article on how to populate a database column from another table using a string comparison.
Why?
I have several database tables which replicate country names and I would rather they ...
... things to do really:
Add the xmlns:xsi namespace in the xsl:stylesheet tag so that "xsi:nil=true" is valid.
Test for a string length of greater than 0 (not blank) and change the attribute of the element ...
... Defines a group of elements to be used in complex type definitions
import Adds multiple schemas with different target namespace to a document
include Adds multiple schemas with the same target ...
Applies To:
MS SQL Server 2008 R2
MS Windows 7 Enterprise (Client)
MS Excel 2010
What?
A really quick note on how to insert a carriage return or new line into the column name/alias (the header). ...
... will be applied to names and addresses as well as job titles and departments.
Why?
We wanted a T-SQL version despite having successfully built a custom script component for SSIS.
How?
You ...
What?
This article is so that I don't spend so long in googling what the TxScript referenced assembly is when creating an SSIS custom component.
How?
This is simply the "Script Component" under ...
What?
A note for myself on some code to convert a string of two names into a string made up of the first name and then using the initial of the second name.
-- What I have
John Smith
Fred.Bloggs
-- ...
...
FROM [dbo].[XML_EVENTS]
-- to return unknown nodes from XML column - Event_XML
SELECT Event_XML.query('//* ')
FROM [dbo].[XML_EVENTS]
Parent/Child Node Names
-- to get name of parent ...
... solutions dotted about the web but the biggest improvement was the "SELECT TOP 100" brain wave:
-- DataSet1:
SELECT TOP 100
Reference, Forenames, Surname, DOB
FROM
PersonsTable
WHERE
(Reference ...
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.