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 393: gmd_debug.put_line('Target Status ' || lTargetStatus);

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

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

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