DBA Data[Home] [Help]

APPS.GMD_SS_BATCH_WF_PKG dependencies on GMD_DEBUG

Line 95: gmd_debug.log_initialize('StabStudyBatch');

91:
92: BEGIN
93:
94: IF (l_debug = 'Y') THEN
95: gmd_debug.log_initialize('StabStudyBatch');
96: END IF;
97:
98: IF (l_debug = 'Y') THEN
99: gmd_debug.put_line('Event Name ' || l_event_name);

Line 99: gmd_debug.put_line('Event Name ' || l_event_name);

95: gmd_debug.log_initialize('StabStudyBatch');
96: END IF;
97:
98: IF (l_debug = 'Y') THEN
99: gmd_debug.put_line('Event Name ' || l_event_name);
100: gmd_debug.put_line('Event Key ' || l_event_key);
101: END IF;
102:
103: open get_from_role ;

Line 100: gmd_debug.put_line('Event Key ' || l_event_key);

96: END IF;
97:
98: IF (l_debug = 'Y') THEN
99: gmd_debug.put_line('Event Name ' || l_event_name);
100: gmd_debug.put_line('Event Key ' || l_event_key);
101: END IF;
102:
103: open get_from_role ;
104: fetch get_from_role into l_from_role ;

Line 161: gmd_debug.put_line('Approver ' || l_user);

157: end if;
158: end if ;
159:
160: IF (l_debug = 'Y') THEN
161: gmd_debug.put_line('Approver ' || l_user);
162: END IF;
163:
164: l_itemtype:='GMDQSBAT';
165: l_itemkey:=l_event_key||'-'||to_char(sysdate,'dd/mm/yy hh:mi:ss');

Line 175: gmd_debug.put_line('Going to set workflow attributes ');

171: process => l_workflow_process );
172:
173:
174: IF (l_debug = 'Y') THEN
175: gmd_debug.put_line('Going to set workflow attributes ');
176: END IF;
177:
178: /* Set the User Attribute */
179: WF_ENGINE.SETITEMATTRTEXT(itemtype => l_itemtype, itemkey => l_itemkey,

Line 251: gmd_debug.put_line('Finished setting workflow attributes ');

247: /* start the Workflow process */
248: wf_log_pkg.string(6, 'Dummy','Starting Process');
249:
250: IF (l_debug = 'Y') THEN
251: gmd_debug.put_line('Finished setting workflow attributes ');
252: END IF;
253:
254: /* As this a pure FYI notification we will set the approver to approve status */
255: Approver.approval_status := ame_util.approvedStatus;