DBA Data[Home] [Help]

APPS.ECX_ACTIONS dependencies on DUAL

Line 664: cString := 'select '||i_seq_name||'.NEXTVAL from dual';

660: if (l_procedureEnabled) then
661: ecx_debug.push(i_method_name);
662: end if;
663:
664: cString := 'select '||i_seq_name||'.NEXTVAL from dual';
665: execute_string ( cString, o_value);
666:
667: if (l_procedureEnabled) then
668: ecx_debug.pop(i_method_name);

Line 711: select to_char(SYSDATE,'YYYYMMDD HH24MISS') into o_value from dual;

707: ecx_debug.push(i_method_name);
708: end if;
709:
710: if i_function_name = 'SYSDATE' then
711: select to_char(SYSDATE,'YYYYMMDD HH24MISS') into o_value from dual;
712:
713: else
714: cString := i_function_name;
715: cString := 'select '||cString||' from dual';

Line 715: cString := 'select '||cString||' from dual';

711: select to_char(SYSDATE,'YYYYMMDD HH24MISS') into o_value from dual;
712:
713: else
714: cString := i_function_name;
715: cString := 'select '||cString||' from dual';
716: execute_string (cString, o_value);
717: end if;
718:
719: if (l_procedureEnabled) then