DBA Data[Home] [Help]

APPS.GMD_QMTES dependencies on FND_APPLICATION

Line 145: /* Get application_id from FND_APPLICATION */

141: close get_from_role ;
142:
143:
144: IF P_FUNCMODE='RUN' THEN
145: /* Get application_id from FND_APPLICATION */
146: select application_id into l_application_id
147: from fnd_application where application_short_name='GMD';
148:
149: /* Check which event has been raised */

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

143:
144: IF P_FUNCMODE='RUN' THEN
145: /* Get application_id from FND_APPLICATION */
146: select application_id into l_application_id
147: from fnd_application where application_short_name='GMD';
148:
149: /* Check which event has been raised */
150: wf_log_pkg.string(6, 'Dummy','Entered Test Transactions with event_key '||l_event_key);
151:

Line 403: /* Get application_id from FND_APPLICATION */

399: Approver ame_util.approverRecord;
400: l_form varchar2(240);
401: BEGIN
402: /* Get Next Approver */
403: /* Get application_id from FND_APPLICATION */
404: select application_id into l_application_id
405: from fnd_application where application_short_name='GMD';
406:
407: ame_api.getNextApprover(applicationIdIn => l_application_id,

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

401: BEGIN
402: /* Get Next Approver */
403: /* Get application_id from FND_APPLICATION */
404: select application_id into l_application_id
405: from fnd_application where application_short_name='GMD';
406:
407: ame_api.getNextApprover(applicationIdIn => l_application_id,
408: transactionIdIn => l_event_key,
409: transactionTypeIn => l_transaction_type,