DBA Data[Home] [Help]

APPS.GMD_QMREJ dependencies on FND_APPLICATION

Line 155: /* Get application_id from FND_APPLICATION */

151: close get_from_role ;
152:
153:
154: IF P_FUNCMODE='RUN' THEN
155: /* Get application_id from FND_APPLICATION */
156: select application_id into l_application_id
157: from fnd_application where application_short_name='GMD';
158:
159: /* Check which event has been raised */

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

153:
154: IF P_FUNCMODE='RUN' THEN
155: /* Get application_id from FND_APPLICATION */
156: select application_id into l_application_id
157: from fnd_application where application_short_name='GMD';
158:
159: /* Check which event has been raised */
160: wf_log_pkg.string(6, 'Dummy','Entered Sample Rejection Transaction with event_key '||l_event_key);
161:

Line 411: /* Get application_id from FND_APPLICATION */

407: l_form varchar2(240);
408: BEGIN
409:
410: /* Get Next Approver */
411: /* Get application_id from FND_APPLICATION */
412: select application_id into l_application_id
413: from fnd_application where application_short_name='GMD';
414:
415: ame_api.getNextApprover(applicationIdIn => l_application_id,

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

409:
410: /* Get Next Approver */
411: /* Get application_id from FND_APPLICATION */
412: select application_id into l_application_id
413: from fnd_application where application_short_name='GMD';
414:
415: ame_api.getNextApprover(applicationIdIn => l_application_id,
416: transactionIdIn => l_event_key,
417: transactionTypeIn => l_transaction_type,