DBA Data[Home] [Help]

APPS.IBY_DISBURSE_SUBMIT_PUB_PKG dependencies on FND_APPLICATION

Line 4228: fnd.application_short_name

4224: * Get the shortname of the calling app from the calling
4225: * app id.
4226: */
4227: SELECT
4228: fnd.application_short_name
4229: INTO
4230: l_app_short_name
4231: FROM
4232: FND_APPLICATION fnd

Line 4232: FND_APPLICATION fnd

4228: fnd.application_short_name
4229: INTO
4230: l_app_short_name
4231: FROM
4232: FND_APPLICATION fnd
4233: WHERE
4234: fnd.application_id = p_calling_app_id;
4235:
4236: IF ( G_LEVEL_STATEMENT >= G_CURRENT_RUNTIME_LEVEL) THEN

Line 4234: fnd.application_id = p_calling_app_id;

4230: l_app_short_name
4231: FROM
4232: FND_APPLICATION fnd
4233: WHERE
4234: fnd.application_id = p_calling_app_id;
4235:
4236: IF ( G_LEVEL_STATEMENT >= G_CURRENT_RUNTIME_LEVEL) THEN
4237: print_debuginfo(l_module_name, 'Calling app short name: '
4238: || l_app_short_name);

Line 5760: fnd.application_short_name

5756: * Get the application name of the calling app. This
5757: * will be used in the callout.
5758: */
5759: SELECT
5760: fnd.application_short_name
5761: INTO
5762: l_app_short_name
5763: FROM
5764: FND_APPLICATION fnd,

Line 5764: FND_APPLICATION fnd,

5760: fnd.application_short_name
5761: INTO
5762: l_app_short_name
5763: FROM
5764: FND_APPLICATION fnd,
5765: IBY_PAY_SERVICE_REQUESTS req
5766: WHERE
5767: fnd.application_id = req.calling_app_id AND
5768: req.payment_service_request_id = p_payreq_id

Line 5767: fnd.application_id = req.calling_app_id AND

5763: FROM
5764: FND_APPLICATION fnd,
5765: IBY_PAY_SERVICE_REQUESTS req
5766: WHERE
5767: fnd.application_id = req.calling_app_id AND
5768: req.payment_service_request_id = p_payreq_id
5769: ;
5770:
5771: IF ( G_LEVEL_STATEMENT >= G_CURRENT_RUNTIME_LEVEL) THEN