Home > Contents > Index >
CART.GETLEGALVALUES
Obtains the legal values for a parameter from the cart.
Syntax
<CART.GETLEGALVALUES NAME="cartname
" FIELD="fieldname
"
[STOREID="storeid
"] LISTVARNAME="varname
"/>Parameters
NAME
(required)- Input parameter. Name of the shopping cart.
FIELD
(required)- Input parameter. Name of the cart parameter for which to obtain legal values.
STOREID
(optional)- Input parameter. ID of the store for which legal values should be retrieved, if the cart represents more than one store. Use it to retrieve shipping-related legal values. May also be used to retrieve payment-related legal values. It is ignored otherwise.
LISTVARNAME
(required)- Input and output parameter. As input, name of the list to create on output with the following columns:
name
- is presented to the end uservalue
- is returned to set the cart parameterfield
.Description
The legal values returned by
CART.GETLEGALVALUES
may be supplied by Transact, and may be incomplete until the cart is checked. Shopping Cart Parameters, for cart parameter names and values. No list is created if the cart has not yet been checked, or if there are no fixed possibilities for the parameter.Example
<!-- Get the current cart. -->
<COMMERCECONTEXT.GETCURRENTCART VARNAME="thiscart"/><!-- Check the cart to enumerate payment methods. -->
<CART.CHECK NAME="thiscart" VARNAME="cartstatus"/> <!-- Now get the legal values for the payment types. --> <CART.GETLEGALVALUES NAME="thiscart" FIELD="paymentInfo-brandID"
LISTVARNAME="paylist"/>
Home > Contents > Index > ![]()
Oracle XML Tag Reference
Copyright (c) 2013, 2019, Oracle and/or its affiliates. All rights reserved.