Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Code Block
CREATE OR REPLACE PACKAGE kfs_kim_role_maint AS  -- spec
PROCEDURE add_dta_role_member( PrincipalName IN VARCHAR2, HomeDepartmentCode IN VARCHAR2 );
PROCEDURE remove_dta_role_member( PrincipalName IN VARCHAR2, HomeDepartmentCode IN VARCHAR2, EndDate IN DATE DEFAULT SYSDATE );
END kfs_kim_role_maint;
  • The PL/SQL code for the kfs_kim_role_maint package is under version control in SVN
  • The responsibility for maintaining the package lies with the Rice team. Any additions or changes to the package should be made in the form of a Jira request assigned to the Rice team.

Example Utilization

An example script making use of the kfs_kim_role_maint package is shown below:

...