|
|
马上注册,结交更多好友,享用更多功能,让你轻松玩转社区。如果您注册时有任何问题请联系客服QQ: 83569622 。
您需要 登录 才可以下载或查看,没有帐号?注册
x
If you want to only show work orders & equipment for a given location, based upon the user login, this is a way of solving it. Connect to the database using your favorite SQL program(ex. PLSQL Developer) and run these two statements:
update userrestrictions set restrictions= \'(location in (\'\'IDG-CELL\'\',\'\'MXM-CELL\'\'))\' WHERE MODULE = \'WO\' AND APP IN (\'QUICKREP\',\'WOREQ\',\'WOTRACK\') AND USERNAME IN (SELECT USRNAME FROM MAXUSERGROUPS WHERE GRPNAME = \'RFDMFG\')
update userrestrictions set restrictions= \'(location in (\'\'IDG-CELL\'\',\'\'MXM-CELL\'\'))\' WHERE MODULE = \'EQUIPMNT\' AND APP IN (\'EQUIPMNT\') AND USERNAME IN (SELECT USRNAME FROM MAXUSERGROUPS WHERE GRPNAME = \'RFDMFG\')
|
|