Retrieving order guide information for an ordered itemIssue <!-- div.margin{ padding: 10px 40px 40px 30px; } table.tocTable{ border: 1px solid; border-color:#E0E0E0; background-color: rgb(245, 245, 245); padding-top: .6em; padding-bottom: .6em; padding-left: .9em; padding-right: .6em; } table.noteTable{ border:1px solid; border-color:#E0E0E0; background-color: rgb(245, 245, 245); width: 100%; border-spacing:2; } table.internaltable { white-space:nowrap; text-align:left; border-width: 1px; border-collapse: collapse; font-size:14px; width: 85%; } table.internaltable th { border-width: 1px; padding: 5px; border-style: solid; border-color: rgb(245, 245, 245); background-color: rgb(245, 245, 245); } table.internaltable td { border-width: 1px; padding: 5px; border-style: solid; border-color: #E0E0E0; color: #000000; } .title { color: #D1232B; font-weight:normal; font-size:28px; } h1{ color: #D1232B; font-weight:normal; font-size:21px; margin-bottom:-5px } h2{ color: #646464; font-weight:bold; font-size:18px; } h3{ color: #000000; font-weight:BOLD; font-size:16px; text-decoration:underline; } h4{ color: #646464; font-weight:BOLD; font-size:15px; text-decoration:; } h5{ color: #000000; font-weight:BOLD; font-size:13px; text-decoration:; } h6{ color: #000000; font-weight:BOLD; font-size:14px; text-decoration:; } --> Retrieving order guide information for an ordered item | Best Practice Background For releases prior to Helsinki, there is no way to determine on a base system whether a requested item was ordered via an order guide. One workaround is to use the current_guide, current_guide_active, current_guide_serial values from the sc_cart record to retrieve the order guide information. On the sc_cart record, these fields are used internally to facilitate the order guide process: to track the current order guide in use (current_guide), the current active catalog item (current_guide_active), variable values entered for the order guide (current_guide_serial) for applying the rule base and cascading variables to catalog items. Once the cart is checked out, these fields are not cleared and still contain values. If a customization uses the mentioned fields to retrieve the order guide information, an item might incorrectly show that it has been ordered from an order guide. Therefore, using these values is not recommended. Using the order guide field on the sc_cart_item and sc_req_item record Releases from Helsinki onward include a new order_guide field for the sc_cart_item and the requested item (sc_req_item) records. This field contains the order guide used to order the catalog item. If empty, the item was not ordered through an order guide. Because a request (sc_request) record may contain requested items ordered through an order guide and not through an order guide, the order guide field is stored in the request item record rather than the request record. Because of the existence of this new field, prior customizations on the requested item record to store the requested item are no longer needed for releases from Helsinki onward. If prior customizations store the order guide information on the request record, update the customizations to retrieve order guide information from the order_guide field of sc_cart_item or sc_req_item records instead.