N
ew
F
ilter
Select a group to view, or see individual customers and products in the lists below.
Step 1: Choose a group
Customer Group
cursor = database.cursor( "Select CustGroupName, CustGroupID "+ "From CustomerGroup "); write("
"); write("
ALL"); while( cursor.next() ) { write("
" + cursor.CustGroupName + " "); } cursor.close (); write("
");
Product Group
cursor = database.cursor( "Select GroupName, ProdGroupID "+ "From ProductGroup "); write("
"); write("
ALL"); while( cursor.next() ) { write("
" + cursor.GroupName); } cursor.close (); write("
")