Siebel Interactive Selling Transact Server Interface Reference > ShoppingCartBean API >

Quote Header Functions


Function
Description
Syntax
Example
getQuoteID
Returns the unique numerical identifier for the quote.
public int getQuoteID()
<td><font face="VERDANA" size=
-2><b>Quote ID:</b></font></td><td><font face="VERDANA" size=
-2><%= bean.getQuoteID() %>
</font></td>
getQuoteUser
Returns the user_id of the user who created the quote.
public String getQuoteUser()
<td><font face="VERDANA" size=
-2><b>Created By:</b></font>
</td><td><font face="VERDANA" size= -2><%= bean.getQuoteUser() %>
</font></td>
getQuoteDateCreated
Returns the date the quote was created in locale-specific format.
public String getQuoteDateCreated()
<td><font face="VERDANA" size=
-2><b>Date Created:</b></font>
</td><td><font face="VERDANA" size= -2><%= bean.getQuoteDateCreated() %></font></td>
getQuoteDateModified
Returns the date the quote was last modified in locale-specific format.
public String getQuoteDateModified()
<td><font face="VERDANA" size=
-2><b>Date Created:</b></font>
</td><td><font face="VERDANA" size= -2><%= bean.getQuoteDateCreated() %></font></td>
getQuoteDateSubmitted
Returns the date the quote was submitted to the OMS in locale-specific format.
getQuoteDateSubmitted
<td><font face="VERDANA" size=
-2><b>Date Created:</b></font>
</td><td><font face="VERDANA" size= -2><%= bean.getQuoteDateSubmitted() %></font></td>
getQuoteName()
Returns the name provided by the user when the quote was saved. This always needs to be included as an input on the form, even if it is not visible, so that previous values are not lost, and when a user does provide a name there is a place to put it in the form. The field name must be QUOTE_NAME.
public String getQuoteName()
<input type="hidden" name="QUOTE_NAME" value="<%= bean.getQuoteName() %>">
getQuoteAccountID
Returns the account ID associated with this quote. Should be the same as the account of the user who created the quote.
public String getQuoteAccountID()
<td><font face="VERDANA" size=
-2><b>Account ID:</b></font>
</td><td><font face="VERDANA" size= -2><%= bean.getQuoteAccountID() %>
</font></td>
getTotalPackages()
Returns the total number of line items in this quote.
public int getTotalPackages()
<% bean.getTotalPackages() %>
getQuoteHeaderPrefix
Returns the prefix string used by Transact ("HEADER_") to identify fields that should be saved as custom header information for the quote. Put your own name for the field after the prefix in the name property of the form element.
public String getQuoteHeaderPrefix()
<td><font face="VERDANA" size= -2>
<b>Cost Center:</b></font></td>
<td><input type="text" name="<%=bean.getQuoteHeader()%>
CostCenter"><%= bean.getQuoteHeader("CostCenter") %>
</font></td>
getQuoteHeader
Returns the value for the header field specified by the name argument. The name should be the name you specified to follow the header prefix. If there is no value for the field in this quote yet, it will show up as empty (returns "").
public String getQuoteHeader(String name)
<td><font face="VERDANA" size=
-2><b>Cost Center:</b></font>
</td><td><input type="text" name="<%=bean.getQuoteHeader()%>
CostCenter"><%= bean.getQuoteHeader("CostCenter") %>
</font></td>
getBillingName
Returns the billing name for the account from LDAP.
public String getBillingName()
<% bean.getBillingName() %>
getBillingStreet
Returns the billing street address for the account from LDAP.
public String getBillingStreet ()
<% bean.getBillingStreet() %>
getBillingCity
Returns the billing city for the account from LDAP.
public String getBillingCity()
<% bean. getBillingCity () %>
getBillingState
Returns the billing state for the account from LDAP.
public String getBillingState()
<% bean. getBillingState () %>
getBillingZip
Returns the billing ZIP Code for the account from LDAP.
public String getBillingZip()
<% bean. getBillingZip() %>
getBillingCountry
Returns the billing country for the account from LDAP.
public String getBillingCountry()
<% bean. getBillingCountry () %>
getShippingName
Returns the shipping name for the account from LDAP.
public String getShippingName()
<% bean.getShippingName() %>
getShippingStreet
Returns the shipping street address for the account from LDAP.
public String getShippingStreet ()
<% bean.getShippingStreet() %>
getShippingCity
Returns the shipping city for the account from LDAP.
public String getShippingCity()
<% bean. getShippingCity () %>
getShippingState
Returns the shipping state for the account from LDAP.
public String getShippingState()
<% bean. getShippingState () %>
getShippingZip
Returns the shipping ZIP Code for the account from LDAP.
public String getShippingZip()
<% bean. getShippingZip() %>
getShippingCountry
Returns the shipping country for the account from LDAP.
public String getShippingCountry()
<% bean. getShippingCountry () %>


 Siebel Interactive Selling Transact Server Interface Reference 
 Published: 18 April 2003