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 Mike Lewis on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Cashier UWS for Dummies MICROS 3700

Status
Not open for further replies.

Chuck J

Technical User
Jul 3, 2018
18
US
thread693-1735502
I went through the above thread and I'm wondering if we can take it one step further. Is there a way to permanently assign a cashier to the workstation? For example, I always need WS1 to be cashier WS1. When the bartenders get involved they dont always assign the correct cashier to each workstation (yes, the site has tried to train better to no avail.) They mix them up or assign the same cashier to multiple workstations. I want to take the employee out if it. WS1 is always WS1 cashier, WS2 is always WS2 cashier, etc. Is there an EOD process I can use to assign the cashiers? Or is there a way to assign them once manually and never have to again?

Thanks in advance
 
Haven't looked at Micros in a long time but there used to be a way to assign a button that is linked to a user, like a quick login key vs having to swipe a card or enter your user number. Maybe you assign the button to the user and if that can carry forward each day they will stop screwing it up.
 
You can set it in the Table
select * from micros.uws_status
cshr_ttl_seq

The Sequence you will find in
select * from micros.cshr_ttl_def

Update Statement
update micros.uws_status
set micros.uws_status.cshr_ttl_seq = (select cshr_ttl_seq from micros.cshr_ttl_def where obj_num = 1111) where micros.uws_status.uws_seq = (SELECT micros.uws_def.uws_seq FROM "micros"."uws_def" JOIN "micros"."uws_status" ON "micros"."uws_def"."uws_seq" = "micros"."uws_status"."uws_seq" where micros.uws_def.obj_num = 2222)

1111 = Number of Cashier in POSCFG
2222 = UWS Obj Number from POSCFG


 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top