DBA Data[Home] [Help]

APPS.GMD_QMTES dependencies on FND_APPLICATION

Line 141: /* Get application_id from FND_APPLICATION */

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

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

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

Line 395: /* Get application_id from FND_APPLICATION */

391: Approver ame_util.approverRecord;
392: l_form varchar2(240);
393: BEGIN
394: /* Get Next Approver */
395: /* Get application_id from FND_APPLICATION */
396: select application_id into l_application_id
397: from fnd_application where application_short_name='GMD';
398:
399: ame_api.getNextApprover(applicationIdIn => l_application_id,

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

393: BEGIN
394: /* Get Next Approver */
395: /* Get application_id from FND_APPLICATION */
396: select application_id into l_application_id
397: from fnd_application where application_short_name='GMD';
398:
399: ame_api.getNextApprover(applicationIdIn => l_application_id,
400: transactionIdIn => l_event_key,
401: transactionTypeIn => l_transaction_type,