Versions Compared

Key

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

...

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';

Update IP Status

Code Block
languagesql
themeEclipse
title1. View IP status values
select * from proposal_status;
Code Block
languagesql
themeEclipse
title2. View status of selected proposal
select proposal_number, proposal_id, proposal_sequence_status, status_code from proposal where proposal_sequence_status='ACTIVE' and proposal_number='00173838';
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';

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

...