| Dinesh Chadha 2004-02-12, 5:39 am |
| The 3 main pipelines which comes with solution site i.e
basket, total & checkout, requires to run previous ones
before you run the final.
The order is:
1. basket
2. total
3. checkout
So if you want checkout to run, you have to run #1 & #2
before that. Reason for this is that all the temporary
variables which starts with _ (eg _product_id etc.) lose
their value.. so you have to run all the pipelines to the
end..
-Dinesh Chadha
>-----Original Message-----
>We extended the retail site solution as our foundation
>
>I am wondering if it is neccessary to re-run the basket
>and total pipelines a second time. The summary page runs
>those pipelines first. Then re-runs them on the
>Confirmation page. My coded works fine as mentioned.
>But, I have added cybersource Tax service to my total
>pipeline and I perfer not to re-run the tax service
>component (Total.pcf). I have thought of several work-
>arounds - 1) remove tax component from the total.pcf and
>create a new pipeline. 2) check a flag to determine
>whether to re-run the tax component.
>3) Run basket, total pipelines once. Then on the
>confirmation page, I would prefer to run the checkout.pcf
>(during initialization) and a final checkout
>(checkoutcomplete) once the user clicks on the process
>order. I was not able to execute the 3rd method
>successfully
>
>Thanks
>
>Mark
>.
>
|