Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations strongm on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Micros ISL script for cutomer list

Status
Not open for further replies.

Karliio

Programmer
Aug 7, 2010
26
US
I'm trying to make a ISL that we can enter our "vip" customers in that we can contact about promos and deals etc..
Though with a script where does the entered data get stored??
I want to be able to enter their name, phone number and maybe another field..

This will be my first script and I would really appreciate any guidance. I have already read the 3700 SIM Manual.
 
Wow, that's pretty ambitious for a first script!

You determine where data is stored through your script. The most common destinations are probably flat files or custom tables in the Micros database. Writing back to a file on the server through a UNC path or mapped drive get's sketchy when techs replace equipment, so if you're comfortable with SQL I'd suggest the going database route.

If you do, write a stored procedure to do the inserts that can check for existing key fields, (phone#, email, etc...), so you're not entering the same people over and over. Putting that logic in the database is much faster and easier than doing it in the SIM script.
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top