... at least 1 line item is mandatory
l_CrmProductLineItems = r_CrmProductLineItems.get("data").get(0).get("Quoted_Items");
for each r_CrmLineItem in l_CrmProductLineItems
{
m_BooksLineItem = Map();
v_BooksItemID ...
... "ITEM CREATE RESPONSE FOR " + v_ItemID;
info r_CreateItem.get("message");
Error(s) Encountered
items with opening stock cannot be deleted, set the opening stock to zero: Guess who's going to hav ...
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?
Following on from my article: ZohoCRM: Get All eBay Active Listings, this is how to get all the orders from a client's eBay.
Why?
Our use-case is a data migration from eBay to a fresh instance ...
... in a JSON or ZohoDeluge Map format
m_Response = Map();
l_JsonProducts = List();
//
// start preparing CSV file to email for export
v_ReportCSV = "ItemID,ItemName,Price,CurrencyCode,QuantityAvailable,SKU,DateCreated";
l_CsvFileRows ...
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 ...
... ntity")
OR invitm."SO ItemID" = t1."SO Item ID"
LEFT OUTER JOIN( SELECT
i2."Invoice ID" AS "Invoice ID",
COUNT(ii2."Quantity") AS "InvItm Line Count"
FROM "Invoice Items" ii2
LEFT JOIN "Inv ...
... Name: fn_eBay_UploadPhoto
Display Name: Fn - eBay - Upload Photo
Description: What it says on the tin
Category: Standalone
Click on Create
Give it the parameter/argument p_InventoryitemID as ...
... can use the following code, note that the parameter is the eBay Item ID:
void API.fn_eBayQuery_GetItemTransaction(int p_ItemID)
{
/*
Function: fn_eBayQuery_GetItemTransaction()
Input: ...
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 ...
... uncomment this when all products retrieved and to run this to just get latest products
// m_ActiveList.put("Sort","ItemIDDescending");
m_ActiveList.put("Sort","ItemID");
m_Params.put("ActiveList",m_ActiveList);
//
// ...
... up a reference map from the line items of the newly created sales order
m_NewLineItems = Map();
for each r_NewLineItem in r_NewSoDetails.get("line_items")
{
v_NewSoItemID = r_NewLineItem.get("item_id");
...
... entry and the end-user will be none the wiser.
OLD: Dataset to populate the dropdown
SELECT
Name,
ItemID
FROM
Catalog
WHERE
Type = 2
ORDER BY
Name ASC
NEW: ...
... c ON e.ReportID = c.ItemID
WHERE
e.[ReportID] = @ReportParameter1
union all
SELECT TOP 1
c.[Name] AS [ReportName]
, e.[ReportID] AS [ReportID]
, e.[TimeStart] AS [TimeStamp]
, e.[Parameters] ...
...
e.TimeDataRetrieval + e.TimeProcessing + e.TimeRendering AS TotalTime
FROM
[ExecutionLog] e
INNER JOIN [Catalog] c ON c.ItemID=e.ReportID
WHERE c.Name='My Amazing Report' -- just change the value ...
... ,a.[Status]
,a.[ByteCount]
,a.[RowCount]
FROM [ReportServer].[dbo].[ExecutionLog] a
INNER JOIN [ReportServer].[dbo].[Catalog] b
ON a.ReportID = b.ItemID
The Top 5 Most ...
... AS YearRun,
COUNT(Catalog.Name) AS Counter
FROM
ExecutionLogStorage
INNER JOIN
Catalog ON ExecutionLogStorage.ReportID = Catalog.ItemID
WHERE
(Catalog.Type = 2)
AND ...
... .’&Itemid=’. $Itemid;
mosRedirect( $link, _THANK_MESSAGE )
replace that code with the URL for the contact Thank-you page as defined as follows:
$link = sefRelToAbs( 'index.php?option=com_contact&task=view&contact_id='. ...
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.