DBA Data[Home] [Help]

APPS.GMD_SS_APPROVAL_WF_PKG dependencies on GMD_DEBUG

Line 119: gmd_debug.log_initialize('StabStudyStatus');

115: begin
116:
117:
118: IF (l_debug = 'Y') THEN
119: gmd_debug.log_initialize('StabStudyStatus');
120: gmd_debug.put_line('SS ID ' || lSSId );
121: END IF;
122:
123: open get_from_role ;

Line 120: gmd_debug.put_line('SS ID ' || lSSId );

116:
117:
118: IF (l_debug = 'Y') THEN
119: gmd_debug.log_initialize('StabStudyStatus');
120: gmd_debug.put_line('SS ID ' || lSSId );
121: END IF;
122:
123: open get_from_role ;
124: fetch get_from_role into l_from_role ;

Line 135: gmd_debug.put_line('Getting approvers ');

131: -- following API removes previous instance of approval group from AME tables
132: --
133:
134: IF (l_debug = 'Y') THEN
135: gmd_debug.put_line('Getting approvers ');
136: END IF;
137:
138:
139: ame_api.clearAllApprovals(applicationIdIn => applicationId,

Line 182: gmd_debug.put_line('Approver ID ' || l_userID);

178: l_userID := nextApprover.user_id;
179: END IF;
180:
181: IF (l_debug = 'Y') THEN
182: gmd_debug.put_line('Approver ID ' || l_userID);
183: END IF;
184:
185:
186: wf_engine.setitemattrtext(p_itemtype, p_itemkey,'USER_ID',l_userID);

Line 226: gmd_debug.put_line('Setting workflow attributes');

222: fetch get_ss_time_unit into l_grace_time_unit;
223: close get_ss_time_unit ;
224:
225: IF (l_debug = 'Y') THEN
226: gmd_debug.put_line('Setting workflow attributes');
227: END IF;
228:
229: l_requester := GET_FND_USER_NAME(disp_attr_rec.LAST_UPDATED_BY);
230: l_owner := GET_FND_USER_NAME(disp_attr_rec.OWNER);

Line 392: gmd_debug.put_line('Target Status ' || lTargetStatus);

388: raise APPLICATION_ERROR;
389: END IF;
390:
391: IF (l_debug = 'Y') THEN
392: gmd_debug.put_line('Target Status ' || lTargetStatus);
393: END IF;
394:
395: if (lTargetStatus = 400) then
396: -- We got approved, so kick off API to create sampling events

Line 405: gmd_debug.put_line('Called needed APIs');

401: lSSId);
402: end if;
403:
404: IF (l_debug = 'Y') THEN
405: gmd_debug.put_line('Called needed APIs');
406: END IF;
407:
408: p_resultout := 'COMPLETE:N';
409: ELSE