DBA Data[Home] [Help]

APPS.GMS_ACC_GEN_API dependencies on APP_EXCEPTION

Line 67: app_exception.raise_exception;

63: IF C_exp_award%ISOPEN THEN
64: CLOSE C_exp_award ;
65: END IF ;
66:
67: app_exception.raise_exception;
68: END get_award_id ;
69:
70:
71: -- ============================================================

Line 131: app_exception.raise_exception;

127:
128: if x_award_set_id is NULL then
129: x_err_code := 1;
130: x_err_msg := 'GMS_SSP_AWARD_SET_ID_NULL';
131: app_exception.raise_exception;
132: end if;
133:
134: open get_award_id_wo_doc_type (x_award_set_id);
135: fetch get_award_id_wo_doc_type into l_award_id;

Line 150: app_exception.raise_exception;

146:
147: if nvl(x_document_type, 'REQ') not in ('REQ','PO','AP','APD','ENC','OPI') then
148: x_err_code := 1;
149: x_err_msg := 'GMS_SSP_INVALID_DOC_TYPE';
150: app_exception.raise_exception;
151: end if;
152:
153: if x_document_type is NULL then
154: open get_award_id_wo_doc_type (x_award_set_id);

Line 198: app_exception.raise_exception;

194: IF x_err_msg = '' THEN
195: x_err_msg := 'GMS_SSP_AWARD_SET_ID_NULL';
196: END IF ;
197:
198: app_exception.raise_exception;
199:
200: END GET_AWARD_ID;
201: ---------------------------------------------------------------------
202: