DBA Data[Home] [Help]

APPS.ECX_UTIL_API dependencies on WF_CORE

Line 50: l_insmode := wf_core.translate('WF_INSTALL');

46:
47: -- Identiy the installation mode and based on the build the query.
48: -- For Standalone, refer to WF_LOOKUPS otherwise refer to ECX_LOOKUP_VALUES.
49:
50: l_insmode := wf_core.translate('WF_INSTALL');
51:
52: IF l_insmode = 'EMBEDDED' THEN
53: l_Select := 'SELECT 1 ' ||
54: ' FROM ecx_lookup_values' ||

Line 334: l_insmode := wf_core.translate('WF_INSTALL');

330:
331: -- Identiy the installation mode and based on the build the query.
332: -- For Standalone, refer to WF_LOOKUPS otherwise refer to ECX_LOOKUP_VALUES.
333:
334: l_insmode := wf_core.translate('WF_INSTALL');
335:
336: IF l_insmode = 'EMBEDDED' THEN
337: l_Select := 'SELECT 1 ' ||
338: ' FROM ecx_lookup_values' ||

Line 384: l_insmode := wf_core.translate('WF_INSTALL');

380:
381: -- Identiy the installation mode and based on the build the query.
382: -- For Standalone, refer to WF_LOOKUPS otherwise refer to ECX_LOOKUP_VALUES.
383:
384: l_insmode := wf_core.translate('WF_INSTALL');
385:
386: IF l_insmode = 'EMBEDDED' THEN
387: l_Select := 'SELECT 1 ' ||
388: ' FROM ecx_lookup_values' ||

Line 523: l_insmode := wf_core.translate('WF_INSTALL');

519: -- Identiy the installation mode and based on the installation mode,
520: -- call different procedures dynamically.
521:
522: x_ret_code := 1;
523: l_insmode := wf_core.translate('WF_INSTALL');
524:
525: IF l_insmode = 'EMBEDDED' THEN
526: -- Call the Java Wrapper API that validates the password
527: -- fnd_web_sec.validate_login(p_username,p_password);

Line 748: ecx_utils.g_install_mode := wf_core.translate('WF_INSTALL');

744:
745: begin
746:
747: if (ecx_utils.g_install_mode is null) then
748: ecx_utils.g_install_mode := wf_core.translate('WF_INSTALL');
749: end if;
750:
751: if ecx_utils.g_install_mode = 'EMBEDDED'
752: then

Line 759: l_validate := wf_core.translate('ECX_XML_VALIDATE_FLAG');

755: :l_validate);
756: end;';
757: execute immediate i_string USING OUT l_validate;
758: else
759: l_validate := wf_core.translate('ECX_XML_VALIDATE_FLAG');
760: end if;
761:
762: /* if profile option is not set assume that the validation should happen */
763:

Line 778: ecx_utils.g_install_mode := wf_core.translate('WF_INSTALL');

774: l_size Number;
775: begin
776:
777: if (ecx_utils.g_install_mode is null) then
778: ecx_utils.g_install_mode := wf_core.translate('WF_INSTALL');
779: end if;
780:
781: if ecx_utils.g_install_mode = 'EMBEDDED'
782: then

Line 789: l_size := wf_core.translate('ECX_XML_MAXIMUM_SIZE');

785: :l_size);
786: end;';
787: execute immediate i_string USING OUT l_size;
788: else
789: l_size := wf_core.translate('ECX_XML_MAXIMUM_SIZE');
790: end if;
791:
792: if(l_size is null) then
793: l_size := 2000000;