Database: attr.dbf
Module: lib\db.m
| Fields |
Type |
Field Description |
Related Database/Field |
| id |
NUMBER |
Unique attribute identifier generated by the system. |
baskopts.dbf/attr_id opts.dbf/attr_id ordopts.dbf/attr_id |
| product_id |
NUMBER |
Unique product identifier to which this attribute belongs. |
products.dbf/id |
| default_id |
NUMBER |
Unique identifier for the default option. |
|
| order |
NUMBER |
Order of appearance of this attribute. |
|
| code |
CHAR( 50 ) |
Attribute code entered by a store manager (or user with appropriate privileges). |
baskopts.dbf/attr_code |
| type |
CHAR( 20 ) |
Type of selector: Radio button (radio), drop-down list (select), checkbox, text field (text), or text area (memo). |
|
| prompt |
MEMO |
Text entered as customer prompt by a store manager (or user with appropriate privileges). |
|
| price |
NUMBER (10.2 ) |
Additional price for this attribute. |
|
| cost |
NUMBER (10.2 ) |
Attribute cost (e.g. wholesale). |
|
| required |
BOOL |
Whether or not this is a required attribute. |
|
| image |
CHAR( 254) |
Path for an image. |
|
Database: baskchrg.dbf
Module: lib\db.m
| Fields |
Type |
Field Description |
Related Database/Field |
| basket_id |
NUMBER |
Unique basket identifier generated by the system. |
baskets.dbf/id |
| charge_id |
NUMBER |
Unique identifier generated by the system. |
|
| module_id |
NUMBER |
Unique identifier of the module that created that created the record. |
|
| type |
CHAR( 50 ) |
Classification of this charge. (For example "shipping" or "tax." ) |
|
| desc |
CHAR( 100 ) |
Description of this charge. |
|
| amount |
NUMBER( 10.2 ) |
Amount of this charge (which is added to Total). |
|
| disp_amt |
NUMBER( 10.2 ) |
Amount displayed only, and not added to total. |
|
| tax_exempt |
BOOL |
Whether or not this charge is tax exempt. |
|
Index: baskchrg.dbf
| Index |
Index File |
Expression |
Flags |
| Index1 |
bchg_bid.mvx |
BasketCharges.d.basket_id $ ':' $ padl(BasketCharges.d.charge_id, 10, '0') |
unique, ascending, string |
| Index2 |
bchg_typ.mvx |
BasketCharges.d.basket_id $ ':' $ BasketCharges.d.type $ ':' $ padl(BasketCharges.d.charge_id, 10, '0') |
unique, ascending, string |
| Index3 |
bchg_mod.mvx |
BasketCharges.d.basket_id $ ':' $ BasketCharges.d.module_id $ ':' $ padl(BasketCharges.d.charge_id, 10, '0') |
unique, ascending, string |
Database: basklist.dbf
Module: lib\db.m
| Fields |
Type |
Field Description |
Related Database/Field |
| session_id |
CHAR( 40 ) |
Unique identifier generated by the system. |
|
| cust_id |
NUMBER |
Unique identifier generated by the system. |
customer.dbf/id |
| basket_id |
NUMBER |
Unique identifier generated by the system. |
baskets.dbf/id |
| lastupdate |
CHAR( 10 ) |
A unique time identifier generated by the system (used with Basket Timeout). |
|
| order_id |
NUMBER |
Unique identifier generated by the system. |
|
| order_proc |
BOOL |
Whether or not the order has been processed. |
|
| ship_fname |
CHAR( 50 ) |
First Name |
|
| ship_lname |
CHAR( 50 ) |
Last Name |
|
| ship_email |
CHAR( 50 ) |
Email Address |
|
| ship_comp |
CHAR( 50 ) |
Company |
|
| ship_phone |
CHAR( 50 ) |
Phone Number |
|
| ship_fax |
CHAR( 50 ) |
Fax Number |
|
| ship_addr |
CHAR( 100 ) |
Address |
|
| ship_city |
CHAR( 50 ) |
City |
|
| ship_state |
CHAR( 50 ) |
State/Province or Other State/Province |
|
| ship_zip |
CHAR( 50 ) |
Zip/Postal Code |
|
| ship_cntry |
CHAR( 50 ) |
Country |
|
| bill_fname |
CHAR( 50 ) |
First Name |
|
| bill_lname |
CHAR( 50 ) |
Last Name: |
|
| bill_email |
CHAR( 50 ) |
Email Address |
|
| bill_comp |
CHAR( 50 ) |
Company |
|
| bill_phone |
CHAR( 50 ) |
Phone Number |
|
| bill_fax |
CHAR( 50 ) |
Fax Number |
|
| bill_addr |
CHAR( 100 ) |
Address |
|
| bill_city |
CHAR( 50 ) |
City |
|
| bill_state |
CHAR( 50 ) |
State/Province or Other State/Province |
|
| bill_zip |
CHAR( 50 ) |
Zip/Postal Code |
|
| bill_cntry |
CHAR( 50 ) |
Country |
|
| tax |
NUMBER( 10.2 ) |
Enter State/County Sales Tax |
|
| shipping |
NUMBER( 10.2 ) |
Identifier for the shipping type (UPS, etc.) |
|
| ship_id |
NUMBER |
Unique shipping module identifier. |
|
| ship_data |
CHAR( 100 ) |
Value provided by the shipping module. |
|
| pay_id |
NUMBER |
Unique payment module identifier. |
|
| pay_data |
CHAR( 100 ) |
Value provided by the payment module. |
|
| total |
NUMBER( 10.2 ) |
Total price of all charges. |
|
Database: baskopts.dbf
Module: lib\db.m
| Fields |
Type |
Field Description |
Related Database/Field |
| line_id |
NUMBER |
Line number identifier of the product within the basket. |
baskets.dbf/line_id |
| attr_id |
NUMBER |
Unique attribute identifier generated by the system. |
attributes.dbf/id |
| attr_code |
CHAR( 50 ) |
Attribute code entered by a Store manager (or user with appropriate privileges). |
attributes.dbf/code |
| option_id |
NUMBER |
Unique option identifier generated by the system. |
opts.dbf/id |
| opt_code |
CHAR( 50 ) |
Option code entered by a Store manager (or user with appropriate privileges). |
opts.dbf/code |
| price |
NUMBER( 10.2 ) |
Options price. |
|
| data |
CHAR( 254 ) |
Data entered by customer for options (such as text for a monogram, name on a T-shirt, etc.) into the Text field. |
|
| data_long |
MEMO |
Data entered by customer for options into the Text Area. |
|
Database: baskets.dbf
Module: lib\db.m
| Fields |
Type |
Field Description |
Related Database/Field |
| id |
NUMBER |
Unique basket identifier generated by the system. |
baskchrg.dbf/basket_id basklist.dbf/basket_id |
| line_id |
NUMBER |
Identifier for the line number of product within the basket. |
baskopts.dbf/line_id |
| product_id |
NUMBER |
Unique identifier generated by the system. |
products.dbf/id |
| code |
CHAR( 50 ) |
Product Code (entered by a Store manager (or user with appropriate privileges). |
|
| name |
CHAR( 100 ) |
Product Name. |
|
| price |
NUMBER( 10.2 ) |
Product Price. |
|
| weight |
NUMBER( 10.2 ) |
Product Weight. |
|
| taxable |
BOOL |
Identifies whether or not the product is taxable. |
|
| upsold |
BOOL |
Identifies whether or not the product is an upsale. |
|
| quantity |
NUMBER |
Quantity (of this product) added to basket |
|
File: domain.dbf
Module: lib\db.m
| Fields |
Type |
Field Description |
Related Database/Field |
| name |
CHAR( 100 ) |
Domain name. |
|
| license |
CHAR( 25 ) |
Miva Merchant's license for the domain. |
|
| version |
CHAR( 10 ) |
Miva Merchant version. |
|
| owner |
CHAR( 100 ) |
Store owner's name. |
|
| email |
CHAR( 50 ) |
Store owner's email. |
|
| company |
CHAR( 100 ) |
Store owner's company. |
|
| address |
CHAR( 100 ) |
Store owner's address. |
|
| city |
CHAR( 50 ) |
Store owner's city. |
|
| state |
CHAR( 50 ) |
Store owner's state. |
|
| zip |
CHAR( 50 ) |
Store owner's zip. |
|
| country |
CHAR( 50 ) |
Store owner's country. |
|
| phone |
CHAR( 50 ) |
Store owner's phone. |
|
| fax |
CHAR( 50 ) |
Store owner's fax. |
|
| mm_url |
CHAR( 254 ) |
Non-secure URL to Miva Merchant. |
|
| mm_surl |
CHAR( 254 ) |
Secure URL to Miva Merchant. |
|
| admin_surl |
CHAR( 254 ) |
Secure URL to Administration. |
|
| image_root |
CHAR( 254 ) |
Root Directory for Graphics. |
|
| base_url |
CHAR( 254 ) |
Base URL for Graphics. |
|
| base_surl |
CHAR( 254 ) |
Secure Base URL for Graphics. |
|
| mod_root |
CHAR( 254 ) |
Root Directory for Modules. |
|
| mod_sroot |
CHAR( 254 ) |
Secure Root Directory for Modules. |
|
| admexp |
NUMBER |
Administration Session Timeout (in minutes). |
|
| mailhost |
CHAR ( 254 ) |
Mail Server. |
|
| mail_angl |
BOOL |
Whether or not to add angle brackets to email addresses. |
|
| ui_id |
NUMBER |
|
|
Database: opts.dbf
Module: lib\db.m
| Fields |
Type |
Field Description |
Related Database/Field |
| id |
NUMBER |
Unique option identifier generated by the system. |
attr.dbf/default_id baskopts.dbf/id ordopts.dbf/option_id |
| attr_id |
NUMBER |
Attribute ID to which this option belongs, generated by the system. |
attr.dbf/id baskopts.dbf/attr_id |
| order |
NUMBER |
Order of appearance of this option. |
|
| code |
CHAR( 50 ) |
Option code entered by a store manager (or user with appropriate privileges). |
baskopts.dbf/opt_code |
| prompt |
MEMO |
Text entered as customer prompt by a store manager (or user with appropriate privileges). |
|
| price |
NUMBER (10.2 ) |
Additional price for this option. |
|
| cost |
NUMBER (10.2 ) |
Option cost (e.g. wholesale). |
|
| image |
CHAR( 254 ) |
Path for an image. |
|
Database: orders.dbf
Module: lib\db.m
| Fields |
Type |
Field Description |
Related Database/Field |
| id |
NUMBER |
Unique identification, entered by Miva Merchant |
orditems.dbf/order_id ordrchrg.dbf/order_id |
| batch_id |
NUMBER |
Unique batch identification |
batches.dbf/id |
| processed |
BOOL |
Indicates whether Order has been processed or not. |
|
| date |
CHAR( 10 ) |
Date order was placed |
|
| cust_id |
NUMBER |
|
customer.dbf/id |
| ship_fname |
CHAR( 50 ) |
First Name |
|
| ship_lname |
CHAR( 50 ) |
Last Name |
|
| ship_email |
CHAR( 50 ) |
Email Address |
|
| ship_comp |
CHAR( 50 ) |
Company |
|
| ship_phone |
CHAR( 50 ) |
Phone Number |
|
| ship_fax |
CHAR( 50 ) |
Fax Number |
|
| ship_addr |
CHAR( 100 ) |
Address |
|
| ship_city |
CHAR( 50 ) |
City |
|
| ship_state |
CHAR( 50 ) |
State/Province or Other State/Province |
|
| ship_zip |
CHAR( 50 ) |
Zip/Postal Code |
|
| ship_cntry |
CHAR( 50 ) |
Country |
|
| bill_fname |
CHAR( 50 ) |
First Name |
|
| bill_lname |
CHAR( 50 ) |
Last Name |
|
| bill_email |
CHAR( 50 ) |
Email Address |
|
| bill_comp |
CHAR( 50 ) |
Company |
|
| bill_phone |
CHAR( 50 ) |
Phone Number |
|
| bill_fax |
CHAR( 50 ) |
Fax Number |
|
| bill_addr |
CHAR( 100 ) |
Address |
|
| bill_city |
CHAR( 50 ) |
City |
|
| bill_state |
CHAR( 50 ) |
State/Province or Other State/Province |
|
| bill_zip |
CHAR( 50 ) |
Zip/Postal Code |
|
| bill_cntry |
CHAR( 50 ) |
Country |
|
| tax |
NUMBER( 10.2 ) |
Enter State/County Sales Tax |
|
| shipping |
NUMBER( 10.2 ) |
Identifier for the type of shipping |
|
| ship_id |
NUMBER |
Unique shipping module identifier. |
|
| ship_data |
CHAR( 100 ) |
Value provided by the shipping module. |
|
| pay_id |
NUMBER |
Unique payment module identifier. |
|
| pay_data |
CHAR( 100 ) |
Value provided by the payment module. |
|
| total |
NUMBER( 10.2 ) |
Total (cost of order) |
|
Database: ordrchrg.dbf
Module:
| Fields |
Type |
Field Description |
Related Database/Field |
| order_id |
NUMBER |
Unique identifier generated by the system. |
orders.dbf/id |
| charge_id |
NUMBER |
Unique identifier generated by the system. |
|
| module_id |
NUMBER |
Unique identifier of the module that created the record. |
|
| type |
CHAR( 50 ) |
Classification of this charge. (For example "shipping" or "tax." ) |
|
| desc |
CHAR( 100 ) |
Description of this charge. |
|
| amount |
NUMBER( 10.2 ) |
Amount of this charge (which is added to Total). |
|
| disp_amt |
NUMBER( 10.2 ) |
Amount displayed only, and not added to Total. |
|
| tax_exempt |
BOOL |
Whether or not this charge is tax exempt. |
|
Index
| Index |
Index File |
Expression |
Flags |
| Index1 |
ochg_oid.mvx |
OrderCharges.d.order_id $ ':' $ padl(OrderCharges.d.charge_id, 10, '0') |
unique, ascending, string |
| Index2 |
ochg_typ.mvx |
OrderCharges.d.order_id $ ':' $ OrderCharges.d.type $ ':' $ padl(OrderCharges.d.charge_id, 10, '0') |
unique, ascending, string |
| Index3 |
ochg_mod.mvx |
OrderCharges.d.order_id $ ':' $ OrderCharges.d.module_id $ ':' $ padl(OrderCharges.d.charge_id, 10, '0') |
unique, ascending, string |