Information Technology Reference
In-Depth Information
a very different number of units for every product. i will go into detail on how to track
the latter shortly.
Figure 4.2 A custom report showing individual items sold
89
note that the same variable syntax from chapter 2 applies here: The variable
must not be longer than 75 characters, and you must not use non-ascii characters. in
addition, do not use any of the following characters in the variable:
' < > # & ; : ? - * ~ ` ´ ) ( = % ! “
Working with Multiple Currencies
You read the section in chapter 2 about how to track revenue in multiple currencies, and
working with multiple currencies in merchandising is similar. as you've probably noticed,
we did not apply a currency code to the _S_AMOUNTS variable. That leaves you with one
variable with a currency code applied and another one without any currency code.
Version 4
var ACTION='01';
var _S_SKU='DM112899';
var _S_UNITS='2';
var _S_AMOUNTS='100.00';
var ORDERID='10099802';
var AMOUNT='USD100.00';
Version 5
YWATracker.setAction(“01“);
YWATracker.setSKU(“DM112899“);
YWATracker.setUnits(“2“);
YWATracker.setAmounts(“100.00“);
YWATracker.setOrderId(“10099802“);
YWATracker.setAmount(“USD100.00“);
Search WWH ::




Custom Search