-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
1 changed file
with
14 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
create or replace | ||
PROCEDURE "ADS_AP_GET_AWARD_NUMBER" | ||
(l_award_id IN VARCHAR2, my_award_number OUT VARCHAR2) | ||
IS | ||
BEGIN | ||
SELECT award_number | ||
INTO my_award_number | ||
FROM gms_awards_all gaa | ||
WHERE gaa.AWARD_ID = l_award_id; | ||
EXCEPTION | ||
WHEN others THEN | ||
my_award_number := '6001'; | ||
END; | ||
|