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


Side Note: Besides updating status_code for the proposal, we may also need to make sure the proposal's document status matches the new proposal status_code. For example, if we change the proposal status to 'cancelled', we also need to make sure the document status is set to 'cancelled'. In document table 'krew_doc_hdr_t', column 'doc_hdr_id' is the document number.

Code Block
languagesql
themeEclipse
titleFind document number for PD proposal
select proposal_number, document_number, status_code from eps_proposal where proposal_number='1234';


Code Block
languagesql
themeEclipse
titleupdate PD proposal document status
update krew_doc_hdr_t set doc_hdr_stat_cd='S' where doc_hdr_id='486290';


Remove Previous Grants.gov Tracking ID from PD

Request: Cannot remove previous Grants.gov tracking ID from proposal

...