DBA Data[Home] [Help]

APPS.CN_SCA_WF_PKG dependencies on FND_APPLICATION

Line 609: FROM fnd_application fa

605: BEGIN
606: -- get application_id based on transaction source
607: SELECT fa.application_id
608: INTO l_appId
609: FROM fnd_application fa
610: WHERE fa.application_short_name = l_trxSrc;
611:
612: -- if not found, then set to -1 (custom/noop)
613: EXCEPTION

Line 790: FROM fnd_application fa

786: BEGIN
787: -- get application_id based on transaction source
788: SELECT fa.application_id
789: INTO l_appId
790: FROM fnd_application fa
791: WHERE fa.application_short_name = UPPER(TRIM(p_trx_source));
792:
793: -- if not found, then set to -1 (custom/noop)
794: EXCEPTION