home *** CD-ROM | disk | FTP | other *** search
- DATABASE leads
- SCREEN
- {
-
- SALESPERSON INFORMATION
-
- Employee number [s01 ]
- Position [s02 ]
- Last name [s03 ]
- First name [s04 ]
- Address 1 [s05 ]
- Address 2 [s06 ]
- Address 3 [s07 ]
- City [s08 ]
- State [a9]
- Zip [s10 ]
- Phone [s11 ]
- }
-
- TABLES sperson
-
- ATTRIBUTES
- s01 = sperson.empnum, AUTONEXT;
- s02 = sperson.position, AUTONEXT;
- s03 = sperson.lname, AUTONEXT;
- s04 = sperson.fname, AUTONEXT;
- s05 = sperson.add1, AUTONEXT;
- s06 = sperson.add2, AUTONEXT;
- s07 = sperson.add3, AUTONEXT;
- s08 = sperson.city, AUTONEXT;
- a9 = sperson.state, UPSHIFT, AUTONEXT;
- s10 = sperson.zip, AUTONEXT;
- s11 = sperson.phone, PICTURE = "###/###-####", AUTONEXT;
-