DBA Data[Home] [Help]

APPS.GMD_SS_TEST_WF_PKG dependencies on FND_APPLICATION

Line 91: /* Get application_id from FND_APPLICATION */

87:
88:
89: IF P_FUNCMODE='RUN' THEN
90:
91: /* Get application_id from FND_APPLICATION */
92: select application_id into l_application_id
93: from fnd_application where application_short_name='GMD';
94:
95: /* Check which event has been raised */

Line 93: from fnd_application where application_short_name='GMD';

89: IF P_FUNCMODE='RUN' THEN
90:
91: /* Get application_id from FND_APPLICATION */
92: select application_id into l_application_id
93: from fnd_application where application_short_name='GMD';
94:
95: /* Check which event has been raised */
96: wf_log_pkg.string(6, 'Dummy','Entered Stability Study Testing '||l_event_key);
97:

Line 236: /* Get application_id from FND_APPLICATION */

232: l_form varchar2(240);
233: BEGIN
234:
235: /* Get Next Approver */
236: /* Get application_id from FND_APPLICATION */
237: select application_id into l_application_id
238: from fnd_application where application_short_name='GMD';
239:
240: ame_api.getNextApprover(applicationIdIn => l_application_id,

Line 238: from fnd_application where application_short_name='GMD';

234:
235: /* Get Next Approver */
236: /* Get application_id from FND_APPLICATION */
237: select application_id into l_application_id
238: from fnd_application where application_short_name='GMD';
239:
240: ame_api.getNextApprover(applicationIdIn => l_application_id,
241: transactionIdIn => l_event_key,
242: transactionTypeIn => l_transaction_type,