Versions Compared

Key

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

...

Code Block
languagesql
themeEclipse
title3. Update status of selected proposal
update eps_proposal set status_code='6' where proposal_number='1234';

 


Fix Fiscal Year on PD Unrecovered F&A

...

Institutional Proposal (IP)

 

...


Update IP Status

Code Block
languagesql
themeEclipse
title1. View IP status values
select * from proposal_status;

...

Code Block
languagesql
themeEclipse
title3. Update status of selected proposal
update proposal set status_code='5' where proposal_sequence_status='ACTIVE' and proposal_number='00173838';

Award

 

...


Fix Award Stuck in 'Pending' State (Edit button doesn't appear)

...

Code Block
languagesql
themeEclipse
title2. If no ACTIVE version, set the PENDING version to ACTIVE
update award set award_sequence_status='ACTIVE' where award_sequence_status='PENDING' and award_id='111111';

...


Maintenance Tables

...

...


Add New State to State Table

...

Code Block
languagesql
themeEclipse
title2. Insert a new grant prefix
insert into ps_grant_prefix values ('ABC', sysdate, 'admin', 1, sys_guid());


Grant Admin permissions to a user (full access)

Code Block
languagesql
themeEclipse
title1. Assign admin permission to the given UTLN
exec give_user_admin_permissions('efitzp01'); -- Replace with user's UTLN