Changes between Version 2 and Version 3 of ztvclsaInsert
- Timestamp:
- 06/19/17 14:58:35 (7 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
ztvclsaInsert
v2 v3 1 1 = Creating New Base Classes in ZUAUSR = 2 2 3 == Overview == 3 4 Until ZUAUSR has been replaced by a more suitable tool, occasionally a new basic class must be created. One notable example is when we remove functions from ZUAUSR that are no longer requested via that mechanism, but Security Coordinators want a reminder that they need to request termination of a privilege. Another example is when a new Banner class is created to handle a particular circumstance and that new function will have roles granted in ZUAUSR. 4 5 … … 6 7 * Replacing Previous Functions with a Place Holder Class 7 8 * Creating New Banner Classes 9 * Classes of SCRIPT type 8 10 9 11 … … 43 45 ||ZTVCLSA_SECURITY_LEVEL|| || 44 46 ||ZTVCLSA_APPROVAL_FLAG|| || 45 ||ZTVCL DA_BAD_CLASS_FLAG|| ||47 ||ZTVCLSA_BAD_CLASS_FLAG|| || 46 48 47 See 49 == Classes of Script Type == 50 As Ellucian Banner migrates functionality from Banner 8 to Banner 9, several privileges are encapsulated to facilitate Single Sign On and integration between Banner 8 and Banner 9 functions. To ensure users are granted the appropriate access, to date, three scripts have been created that are associated to SUPER classes: INSERT_GURUSRI, GRANT_BANPROXY, and GRANT_BANJSPROXY. The full process for creating the new script and having it execute is described in [[https://iam.alaska.edu/trac/wiki/scriptHell|Creating, Modifying, and Deleting ZUAUSR Scripts]]. 51 52 One of the steps in the process is to create the new Script Base class. The following the basic template used: 53 {{{ 54 INSERT INTO ztvclsa 55 (ztvclsa_class_type, ztvclsa_class_inst, ztvclsa_class_name 56 ztvclsa_description) 57 VALUES 58 ('SCRIPT','PROD','INSERT_GURUSRI', 'Script to govern Financial Aid visibility among campuses for MEP records' 59 }}} 48 60 49 61