Versions Compared

Key

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

Proposal Development (PD)

...

Update PD Proposal Status

Code Block
languagesql
themeEclipse
title1. View proposal status values
select * from proposal_state;

...

Code Block
languagesql
themeEclipse
title2. Remove value for GG Tracking ID from selected proposal
update s2s_app_submission set GG_TRACKING_ID=null where proposal_number='1234';

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

...