... it when I ran into this error:
// initialize
m_QuoteRecord = Map();
//
// build quote request
m_QuoteRecord.put("Name.first_name",v_SellerName_Firstname);
m_QuoteRecord.put("Name.last_name",v_SellerName_Lastname);
m_QuoteRecord.put("Email",v_SellerEmail);
//
// ...
... set first and last name
v_FirstName = "BILLIE-JO";
v_LastName = "MCDONALD-O'LEARY ii OF CAMBRIDGE-worcester-OXFORD";
//
// let's deal with double or triple barrelled first names
v_FirstName = v_FirstName.replaceAll("-", ...
What?
This is a not-so-quick article that queries an eBay order and creates the relevant ZohoInventory item, contact, sales order, package slip, shipment order, invoice, payment records...
Why? ...
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 ...
What?
This is an article documenting how to parse the notification from eBay and using it to create an order in Shopify.
Why?
Previously, we would receive an eBay notification and create an ...
... in the last name field and creating a contact called "Firstname Firstname Lastname" (eg. "Joel Joel Lipman" - when Joel is not my middle name).
How?
This is a setting that is enabled by default in ...
What?
So this is a quick note to myself as I was playing with the relevance heuristics of a query. This example adds a column of relevance and sorts the rows accordingly.
How?
This has to be ...
...
User Query
$t_value = $the_team_id_that_i_want_to_look_at;
$user_list_query="
SELECT DISTINCT
u.UserID,
CONCAT(u.FirstName, ' ', u.LastName) AS 'Fullname'
FROM
Users u
WHERE
u.StatusType ...
... table for just the name value...
The one query to rule them all
SELECT
CONCAT(s.LogID, ' ') AS ActivityID,
t.TeamName AS Team,
CONCAT(u.Firstname, ' ', u.Lastname) AS StaffName,
CASE ...
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.