home *** CD-ROM | disk | FTP | other *** search
/ Liren Large Software Subsidy 6 / 06.iso / a / a610 / 6.ddi / DEMO / FGL / F_QCONTA.PER < prev    next >
Encoding:
Text File  |  1989-12-08  |  1.2 KB  |  44 lines

  1. DATABASE leads
  2. SCREEN
  3. {
  4. UPDATE CONTACT INFORMATION
  5. To display the row for updating, fill in some fields, then press ESCAPE.
  6. Once the row is displayed, update the appropriate fields, then press ESCAPE.
  7.  
  8. CONTACT INFORMATION:
  9.                Date [c01       ]
  10.         Salesperson [c02]
  11.                Next [c03       ]
  12.    Next salesperson [c04]
  13.            Comments [c05                                     ]
  14.                Type [c]
  15.  
  16. PROSPECT INFORMATION:
  17.           Last name [p01            ]
  18.        Company name [p02                                     ]
  19.  
  20. SALES INFORMATION:
  21.        Product code [s01]
  22.       Quantity sold [s02 ]
  23.            Discount [s3]
  24. }
  25.  
  26. TABLES contact prospect sale
  27.  
  28. ATTRIBUTES
  29.    c01   = contact.cdate;
  30.    c02   = contact.empnum;
  31.    c03   = contact.ndate;
  32.    c04   = contact.nemp;
  33.    c05   = contact.notes;
  34.    c     = contact.ctype, UPSHIFT, INCLUDE = (C, I, Q, S),
  35.            COMMENTS = "S=sale  C=complaint  I=info  Q=query", AUTONEXT;
  36.    p01   = prospect.lname;
  37.    p02   = prospect.company, UPSHIFT;
  38.    s01   = sale.pcode;
  39.    s02   = sale.quantity;
  40.    s3    = sale.discount;
  41.  
  42. INSTRUCTIONS
  43.    SCREEN RECORD sr_consale (contact.cdate THRU sale.discount);
  44.