DBA Data[Home] [Help]

APPS.QPR_WKFL_UTIL dependencies on FND_API

Line 57: l_ret_code varchar2(240):= fnd_api.g_ret_sts_success ;

53: l_resp_hdr_id number;
54: l_resp_user varchar2(500);
55: l_comments varchar2(2000);
56: l_app_complete varchar2(30);
57: l_ret_code varchar2(240):= fnd_api.g_ret_sts_success ;
58: begin
59:
60: if funcmode = 'RUN' then
61:

Line 75: if l_ret_code = fnd_api.g_ret_sts_success then

71: l_resp_user, 'APPROVE',
72: l_comments, true,l_app_complete,
73: l_ret_code
74: );
75: if l_ret_code = fnd_api.g_ret_sts_success then
76: resultout := 'COMPLETE';
77: else
78: resultout := 'ERROR';
79: end if;

Line 101: l_ret_code varchar2(240):= fnd_api.g_ret_sts_success ;

97: l_resp_hdr_id number;
98: l_resp_user varchar2(500);
99: l_comments varchar2(2000);
100: l_app_complete varchar2(30);
101: l_ret_code varchar2(240):= fnd_api.g_ret_sts_success ;
102: begin
103:
104: if funcmode = 'RUN' then
105:

Line 118: if l_ret_code = fnd_api.g_ret_sts_success then

114: l_resp_user, 'REJECT',
115: l_comments,true, l_app_complete,
116: l_ret_code
117: );
118: if l_ret_code = fnd_api.g_ret_sts_success then
119: resultout := 'COMPLETE';
120: else
121: resultout := 'ERROR';
122: end if;