problem in Clob string running in function

Hello

Here is the procedure written to the clob input string.
create or replace FUNCTION Split
(
iv_String IN CLOB,
v_Delimiter IN VARCHAR2
)
RETURN sys_refcursor
AS
v_length NUMBER:= LENGTH(iv_String);
v_start NUMBER(10,0):=1;
V_temp2 NUMBER(10,0):=0;
v_index NUMBER;
v_temp SYS_REFCURSOR;
BEGIN
WHILE(v_start <= v_length)
LOOP
BEGIN
v_index:= INSTR(iv_String, v_delimiter, v_start);
IF v_index = 0 THEN
V_temp2:=V_temp2+1;
INSERT INTO tt_v_SplittedValues
VALUES (V_temp2 ,SUBSTR(iv_String, v_start) );
v_start := v_length + 1;
ELSE
V_temp2:=V_temp2+1;
INSERT INTO tt_v_SplittedValues
VALUES (V_temp2 ,SUBSTR(iv_String, v_start, v_index - v_start) );
v_start := v_index + 1;
END IF;
END;
END LOOP;
OPEN v_temp FOR
SELECT * FROM tt_v_SplittedValues;
return v_temp;


END Split;
Function has been created successfully
sql> variable x sys_refcursor
sql>exec :x:=split('asdf|dsdsd|fdfdf|kkhh','|');
sql> print :x


Output
1 asdf
2 dsdsd
3 fdfdf
4 kkhh
His giving the expected results when the chain is small.

When executing a long string, I am met with an error message
sql> variable x sys_refcursor
sql>exec :x:=split('1$-1$489$53$ProcessTest$Title$$2$$$$$$$$$$|2$-1$490$133$Quesion1$Question$1$2.2,2.1$$$$$$$$$$|1$2$-1$-50$70$Yes$$3$$|2$2$-1$50$70$No$$4$$|3$-1$440$233$Question2$Question$2.1$3.2,3.1$$$$$$$$$$|1$3$-1$-50$70$Yes$$4$$|2$3$-1$50$70$No$$4$$|4$-1$594$341$ExitPoint1$ExitPoint$3.2,3.1,2.2$$$$$$$$$1$$1$-1$489$53$ProcessTest$Title$$2$$$$$$$$$$|2$-1$490$133$Quesion1$Question$1$2.2,2.1$$$$$$$$$$|1$2$-1$-50$70$Yes$$3$$|2$2$-1$50$70$No$$4$$|3$-1$440$233$Question2$Question$2.1$3.2,3.1$$$$$$$$$$|1$3$-1$-50$70$Yes$$4$$|2$3$-1$50$70$No$$4$$|4$-1$594$341$ExitPoint1$ExitPoint$3.2,3.1,2.2$$$$$$$$$1$$1$-1$489$53$ProcessTest$Title$$2$$$$$$$$$$|2$-1$490$133$Quesion1$Question$1$2.2,2.1$$$$$$$$$$|1$2$-1$-50$70$Yes$$3$$|2$2$-1$50$70$No$$4$$|3$-1$440$233$Question2$Question$2.1$3.2,3.1$$$$$$$$$$|1$3$-1$-50$70$Yes$$4$$|2$3$-1$50$70$No$$4$$|4$-1$594$341$ExitPoint1$ExitPoint$3.2,3.1,2.2$$$$$$$$$1$$1$-1$489$53$ProcessTest$Title$$2$$$$$$$$$$|2$-1$490$133$Quesion1$Question$1$2.2,2.1$$$$$$$$$$|1$2$-1$-50$70$Yes$$3$$|2$2$-1$50$70$No$$4$$|3$-1$440$233$Question2$Question$2.1$3.2,3.1$$$$$$$$$$|1$3$-1$-50$70$Yes$$4$$|2$3$-1$50$70$No$$4$$|4$-1$594$341$ExitPoint1$ExitPoint$3.2,3.1,2.2$$$$$$$$$1$$1$-1$489$53$ProcessTest$Title$$2$$$$$$$$$$|2$-1$490$133$Quesion1$Question$1$2.2,2.1$$$$$$$$$$|1$2$-1$-50$70$Yes$$3$$|2$2$-1$50$70$No$$4$$|3$-1$440$233$Question2$Question$2.1$3.2,3.1$$$$$$$$$$|1$3$-1$-50$70$Yes$$4$$|2$3$-1$50$70$No$$4$$|4$-1$594$341$ExitPoint1$ExitPoint$3.2,3.1,2.2$$$$$$$$$1$$1$-1$489$53$ProcessTest$Title$$2$$$$$$$$$$|2$-1$490$133$Quesion1$Question$1$2.2,2.1$$$$$$$$$$|1$2$-1$-50$70$Yes$$3$$|2$2$-1$50$70$No$$4$$|3$-1$440$233$Question2$Question$2.1$3.2,3.1$$$$$$$$$$|1$3$-1$-50$70$Yes$$4$$|2$3$-1$50$70$No$$4$$|4$-1$594$341$ExitPoint1$ExitPoint$3.2,3.1,2.2$$$$$$$$$1$$1$-1$489$53$ProcessTest$Title$$2$$$$$$$$$$|2$-1$490$133$Quesion1$Question$1$2.2,2.1$$$$$$$$$$|1$2$-1$-50$70$Yes$$3$$|2$2$-1$50$70$No$$4$$|3$-1$440$233$Question2$Question$2.1$3.2,3.1$$$$$$$$$$|1$3$-1$-50$70$Yes$$4$$|2$3$-1$50$70$No$$4$$|4$-1$594$341$ExitPoint1$ExitPoint$3.2,3.1,2.2$$$$$$$$$1$$1$-1$489$53$ProcessTest$Title$$2$$$$$$$$$$|2$-1$490$133$Quesion1$Question$1$2.2,2.1$$$$$$$$$$|1$2$-1$-50$70$Yes$$3$$|2$2$-1$50$70$No$$4$$|3$-1$440$233$Question2$Question$2.1$3.2,3.1$$$$$$$$$$|1$3$-1$-50$70$Yes$$4$$|2$3$-1$50$70$No$$4$$|4$-1$594$341$ExitPoint1$ExitPoint$3.2,3.1,2.2$$$$$$$$$1$$1$-1$489$53$ProcessTest$Title$$2$$$$$$$$$$|2$-1$490$133$Quesion1$Question$1$2.2,2.1$$$$$$$$$$|1$2$-1$-50$70$Yes$$3$$|2$2$-1$50$70$No$$4$$|3$-1$440$233$Question2$Question$2.1$3.2,3.1$$$$$$$$$$|1$3$-1$-50$70$Yes$$4$$|2$3$-1$50$70$No$$4$$|4$-1$594$341$ExitPoint1$ExitPoint$3.2,3.1,2.2$$$$$$$$$1$$1$-1$489$53$ProcessTest$Title$$2$$$$$$$$$$|2$-1$490$133$Quesion1$Question$1$2.2,2.1$$$$$$$$$$|1$2$-1$-50$70$Yes$$3$$|2$2$-1$50$70$No$$4$$|3$-1$440$233$Question2$Question$2.1$3.2,3.1$$$$$$$$$$|1$3$-1$-50$70$Yes$$4$$|2$3$-1$50$70$No$$4$$|4$-1$594$341$ExitPoint1$ExitPoint$3.2,3.1,2.2$$$$$$$$$1$$1$-1$489$53$ProcessTest$Title$$2$$$$$$$$$$|2$-1$490$133$Quesion1$Question$1$2.2,2.1$$$$$$$$$$|1$2$-1$-50$70$Yes$$3$$|2$2$-1$50$70$No$$4$$|3$-1$440$233$Question2$Question$2.1$3.2,3.1$$$$$$$$$$|1$3$-1$-50$70$Yes$$4$$|2$3$-1$50$70$No$$4$$|4$-1$594$341$ExitPoint1$ExitPoint$3.2,3.1,2.2$$$$$$$$$1$$1$-1$489$53$ProcessTest$Title$$2$$$$$$$$$$|2$-1$490$133$Quesion1$Question$1$2.2,2.1$$$$$$$$$$|1$2$-1$-50$70$Yes$$3$$|2$2$-1$50$70$No$$4$$|3$-1$440$233$Question2$Question$2.1$3.2,3.1$$$$$$$$$$|1$3$-1$-50$70$Yes$$4$$|2$3$-1$50$70$No$$4$$|4$-1$594$341$ExitPoint1$ExitPoint$3.2,3.1,2.2$$$$$$$$$1$$1$-1$489$53$ProcessTest$Title$$2$$$$$$$$$$|2$-1$490$133$Quesion1$Question$1$2.2,2.1$$$$$$$$$$|1$2$-1$-50$70$Yes$$3$$|2$2$-1$50$70$No$$4$$|3$-1$440$233$Question2$Question$2.1$3.2,3.1$$$$$$$$$$|1$3$-1$-50$70$Yes$$4$$|2$3$-1$50$70$No$$4$$|4$-1$594$341$ExitPoint1$ExitPoint$3.2,3.1,2.2$$$$$$$$$1$$1$-1$489$53$ProcessTest$Title$$2$$$$$$$$$$|2$-1$490$133$Quesion1$Question$1$2.2,2.1$$$$$$$$$$|1$2$-1$-50$70$Yes$$3$$|2$2$-1$50$70$No$$4$$|3$-1$440$233$Question2$Question$2.1$3.2,3.1$$$$$$$$$$|1$3$-1$-50$70$Yes$$4$$|2$3$-1$50$70$No$$4$$|4$-1$594$341$ExitPoint1$ExitPoint$3.
2,3.1,2.2$$$$$$$$$1$$1$-1$489$53$ProcessTest$Title$$2$$$$$$$$$$|2$-1$490$133$Quesion1$Question$1$2.2,2.1$$$$$$$$$$|1$2$-1$-50$70$Yes$$3$$|2$2$-1$50$70$No$$4$$|3$-1$440$233$Question2$Question$2.1$3.2,3.1$$$$$$$$$$|1$3$-1$-50$70$Yes$$4$$|2$3$-1$50$70$No$$4$$|4$-1$594$341$ExitPoint1$ExitPoint$3.2,3.1,2.2$$$$$$$$$1$$1$-1$489$53$ProcessTest$Title$$2$$$$$$$$$$|2$-1$490$133$Quesion1$Question$1$2.2,2.1$$$$$$$$$$|1$2$-1$-50$70$Yes$$3$$|2$2$-1$50$70$No$$4$$|3$-1$440$233$Question2$Question$2.1$3.2,3.1$$$$$$$$$$|1$3$-1$-50$70$Yes$$4$$|2$3$-1$50$70$No$$4$$|4$-1$594$341$ExitPoint1$ExitPoint$3.2,3.1,2.2$$$$$$$$$1$$1$-1$489$53$ProcessTest$Title$$2$$$$$$$$$$|2$-1$490$133$Quesion1$Question$1$2.2,2.1$$$$$$$$$$|1$2$-1$-50$70$Yes$$3$$|2$2$-1$50$70$No$$4$$|3$-1$440$233$Question2$Question$2.1$3.2,3.1$$$$$$$$$$|1$3$-1$-50$70$Yes$$4$$|2$3$-1$50$70$No$$4$$|4$-1$594$341$ExitPoint1$ExitPoint$3.2,3.1,2.2$$$$$$$$$1$$1$-1$489$53$ProcessTest$Title$$2$$$$$$$$$$|2$-1$490$133$Quesion1$Question$1$2.2,2.1$$$$$$$$$$|1$2$-1$-50$70$Yes$$3$$|2$2$-1$50$70$No$$4$$|3$-1$440$233$Question2$Question$2.1$3.2,3.1$$$$$$$$$$|1$3$-1$-50$70$Yes$$4$$|2$3$-1$50$70$No$$4$$|4$-1$594$341$ExitPoint1$ExitPoint$3.2,3.1,2.2$$$$$$$$$1$$1$-1$489$53$ProcessTest$Title$$2$$$$$$$$$$|2$-1$490$133$Quesion1$Question$1$2.2,2.1$$$$$$$$$$|1$2$-1$-50$70$Yes$$3$$|2$2$-1$50$70$No$$4$$|3$-1$440$233$Question2$Question$2.1$3.2,3.1$$$$$$$$$$|1$3$-1$-50$70$Yes$$4$$|2$3$-1$50$70$No$$4$$|4$-1$594$341$ExitPoint1$ExitPoint$3.2,3.1,2.2$$$$$$$$$1$$1$-1$489$53$ProcessTest$Title$$2$$$$$$$$$$|2$-1$490$133$Quesion1$Question$1$2.2,2.1$$$$$$$$$$|1$2$-1$-50$70$Yes$$3$$|2$2$-1$50$70$No$$4$$|3$-1$440$233$Question2$Question$2.1$3.2,3.1$$$$$$$$$$|1$3$-1$-50$70$Yes$$4$$|2$3$-1$50$70$No$$4$$|4$-1$594$341$ExitPoint1$ExitPoint$3.2,3.1,2.2$$$$$$$$$1$$1$-1$489$53$ProcessTest$Title$$2$$$$$$$$$$|2$-1$490$133$Quesion1$Question$1$2.2,2.1$$$$$$$$$$|1$2$-1$-50$70$Yes$$3$$|2$2$-1$50$70$No$$4$$|3$-1$440$233$Question2$Question$2.1$3.2,3.1$$$$$$$$$$|1$3$-1$-50$70$Yes$$4$$|2$3$-1$50$70$No$$4$$|4$-1$594$341$ExitPoint1$ExitPoint$3.2,3.1,2.2$$$$$$$$$1$$1$-1$489$53$ProcessTest$Title$$2$$$$$$$$$$|2$-1$490$133$Quesion1$Question$1$2.2,2.1$$$$$$$$$$|1$2$-1$-50$70$Yes$$3$$|2$2$-1$50$70$No$$4$$|3$-1$440$233$Question2$Question$2.1$3.2,3.1$$$$$$$$$$|1$3$-1$-50$70$Yes$$4$$|2$3$-1$50$70$No$$4$$|4$-1$594$341$ExitPoint1$ExitPoint$3.2,3.1,2.2$$$$$$$$$1$$1$-1$489$53$ProcessTest$Title$$2$$$$$$$$$$|2$-1$490$133$Quesion1$Question$1$2.2,2.1$$$$$$$$$$|1$2$-1$-50$70$Yes$$3$$|2$2$-1$50$70$No$$4$$|3$-1$440$233$Question2$Question$2.1$3.2,3.1$$$$$$$$$$|1$3$-1$-50$70$Yes$$4$$|2$3$-1$50$70$No$$4$$|4$-1$594$341$ExitPoint1$ExitPoint$3.2,3.1,2.2$$$$$$$$$1$$1$-1$489$53$ProcessTest$Title$$2$$$$$$$$$$|2$-1$490$133$Quesion1$Question$1$2.2,2.1$$$$$$$$$$|1$2$-1$-50$70$Yes$$3$$|2$2$-1$50$70$No$$4$$|3$-1$440$233$Question2$Question$2.1$3.2,3.1$$$$$$$$$$|1$3$-1$-50$70$Yes$$4$$|2$3$-1$50$70$No$$4$$|4$-1$594$341$ExitPoint1$ExitPoint$3.2,3.1,2.2$$$$$$$$$1$$1$-1$489$53$ProcessTest$Title$$2$$$$$$$$$$|2$-1$490$133$Quesion1$Question$1$2.2,2.1$$$$$$$$$$|1$2$-1$-50$70$Yes$$3$$|2$2$-1$50$70$No$$4$$|3$-1$440$233$Question2$Question$2.1$3.2,3.1$$$$$$$$$$|1$3$-1$-50$70$Yes$$4$$|2$3$-1$50$70$No$$4$$|4$-1$594$341$ExitPoint1$ExitPoint$3.2,3.1,2.2$$$$$$$$$1$$1$-1$489$53$ProcessTest$Title$$2$$$$$$$$$$|2$-1$490$133$Quesion1$Question$1$2.2,2.1$$$$$$$$$$|1$2$-1$-50$70$Yes$$3$$|2$2$-1$50$70$No$$4$$|3$-1$440$233$Question2$Question$2.1$3.2,3.1$$$$$$$$$$|1$3$-1$-50$70$Yes$$4$$|2$3$-1$50$70$No$$4$$|4$-1$594$341$ExitPoint1$ExitPoint$3.2,3.1,2.2$$$$$$$$$1$$1$-1$489$53$ProcessTest$Title$$2$$$$$$$$$$|2$-1$490$133$Quesion1$Question$1$2.2,2.1$$$$$$$$$$|1$2$-1$-50$70$Yes$$3$$|2$2$-1$50$70$No$$4$$|3$-1$440$233$Question2$Question$2.1$3.2,3.1$$$$$$$$$$|1$3$-1$-50$70$Yes$$4$$|2$3$-1$50$70$No$$4$$|4$-1$594$341$ExitPoint1$ExitPoint$3.2,3.1,2.2$$$$$$$$$1$$1$-1$489$53$ProcessTest$Title$$2$$$$$$$$$$|2$-1$490$133$Quesion1$Question$1$2.2,2.1$$$$$$$$$$|1$2$-1$-50$70$Yes$$3$$|2$2$-1$50$70$No$$4$$|3$-1$440$233$Question2$Question$2.1$3.2,3.1$$$$$$$$$$|1$3$-1$-50$70$Yes$$4$$|2$3$-1$50$70$No$$4$$|4$-1$594$341$ExitPoint1$ExitPo
int$3.2,3.1,2.2$$$$$$$$$1$$1$-1$489$53$ProcessTest$Title$$2$$$$$$$$$$|2$-1$490$133$Quesion1$Question$1$2.2,2.1$$$$$$$$$$|1$2$-1$-50$70$Yes$$3$$|2$2$-1$50$70$No$$4$$|3$-1$440$233$Question2$Question$2.1$3.2,3.1$$$$$$$$$$|1$3$-1$-50$70$Yes$$4$$|2$3$-1$50$70$No$$4$$|4$-1$594$341$ExitPoint1$ExitPoint$3.2,3.1,2.2$$$$$$$$$1$$';
,'|');


I am getting an below error

errror:SP2-0027: Input is too long (> 2499 characters) - line ignored
Any help really appreciated

Why not use the pipeline feature?

satyaki>
satyaki>select * from v$version;

BANNER
----------------------------------------------------------------
Oracle Database 10g Enterprise Edition Release 10.2.0.3.0 - Prod
PL/SQL Release 10.2.0.3.0 - Production
CORE    10.2.0.3.0      Production
TNS for 32-bit Windows: Version 10.2.0.3.0 - Production
NLSRTL Version 10.2.0.3.0 - Production

Elapsed: 00:00:00.01
satyaki>

satyaki>create or replace type clob_obj as object
  (
    buff  clob
  );

Elapsed: 00:00:00.97

satyaki>create or replace clob_rec as table of clob_obj;
Elapsed: 00:00:00.97

satyaki>
satyaki>create or replace FUNCTION Split(
  2                                       p_string IN clob,
  3                                       p_delimiter IN VARCHAR2 default ','
  4                                     )
  5  return clob_rec
  6  pipelined
  7  is
  8    v_length NUMBER := LENGTH(p_string);
  9    v_start NUMBER := 1;
 10    v_index NUMBER;
 11  begin
 12   WHILE(v_start <= v_length)
 13   LOOP
 14     v_index := INSTR(p_string, p_delimiter, v_start);
 15
 16      IF v_index = 0 THEN
 17        PIPE ROW(c_l_o_b_obj(SUBSTR(p_string, v_start)));
 18        v_start := v_length + 1;
 19      ELSE
 20        PIPE ROW(c_l_o_b_obj(SUBSTR(p_string, v_start, v_index - v_start)));
 21        v_start := v_index + 1;
 22      END IF;
 23    END LOOP;
 24   return;
 25  end Split;
 26  /

Function created.

Elapsed: 00:00:00.51
satyaki>
satyaki>select * from table(cast(Split('asdf|dsdsd|fdfdf|kkhh','|') as clob_rec));

BUFF
--------------------------------------------------------------------------------
asdf
dsdsd
fdfdf
kkhh

Elapsed: 00:00:00.97
satyaki>
  1  select * from table(cast(Split('1$-1$489$53$ProcessTest$Title$$2$$$$$$$$$$|2$-1$490$133$Quesion1$Question$1$2.2,2.1$$$$$$$$$$|1$2$-1$-50$70$Yes$$3$$|2$2$-1$50$70$No$$4$$|3$-1$440$233$Question2$Question$2.1$3.2,3.1$$$$$$$$$$|1$3$-1$-50$70$Yes$$4$$|2$3$-1$50$70$No$$4$$|4$-1$594$341$ExitPoint1$ExitPoint$3.2,
  2* as clob_rec))
satyaki>/

BUFF
--------------------------------------------------------------------------------
1$-1$489$53$ProcessTest$Title$$2$$$$$$$$$$
2$-1$490$133$Quesion1$Question$1$2.2,2.1$$$$$$$$$$
1$2$-1$-50$70$Yes$$3$$
2$2$-1$50$70$No$$4$$
3$-1$440$233$Question2$Question$2.1$3.2,3.1$$$$$$$$$$
1$3$-1$-50$70$Yes$$4$$
2$3$-1$50$70$No$$4$$
4$-1$594$341$ExitPoint1$ExitPoint$3.2,3.1,2.2$$$$$$$$$1$$1$-1$489$53$ProcessTest
2$-1$490$133$Quesion1$Question$1$2.2,2.1$$$$$$$$$$
1$2$-1$-50$70$Yes$$3$$
2$2$-1$50$70$No$$4$$

BUFF
--------------------------------------------------------------------------------
3$-1$440$233$Question2$Question$2.1$3.2,3.1$$$$$$$$$$
1$3$-1$-50$70$Yes$$4$$
2$3$-1$50$70$No$$4$$
4$-1$594$341$ExitPoint1$ExitPoint$3.2,3.1,2.2$$$$$$$$$1$$1$-1$489$53$ProcessTest
2$-1$490$133$Quesion1$Question$1$2.2,2.1$$$$$$$$$$
1$2$-1$-50$70$Yes$$3$$
2$2$-1$50$70$No$$4$$
3$-1$440$233$Question2$Question$2.1$3.2,3.1$$$$$$$$$$
1$3$-1$-50$70$Yes$$4$$
2$3$-1$50$70$No$$4$$
4$-1$594$341$ExitPoint1$ExitPoint$3.2,3.1,2.2$$$$$$$$$1$$1$-1$489$53$ProcessTest

BUFF
--------------------------------------------------------------------------------
2$-1$490$133$Quesion1$Question$1$2.2,2.1$$$$$$$$$$
1$2$-1$-50$70$Yes$$3$$
2$2$-1$50$70$No$$4$$
3$-1$440$233$Question2$Question$2.1$3.2,3.1$$$$$$$$$$
1$3$-1$-50$70$Yes$$4$$
2$3$-1$50$70$No$$4$$
4$-1$594$341$ExitPoint1$ExitPoint$3.2,3.1,2.2$$$$$$$$$1$$1$-1$489$53$ProcessTest
2$-1$490$133$Quesion1$Question$1$2.2,2.1$$$$$$$$$$
1$2$-1$-50$70$Yes$$3$$
2$2$-1$50$70$No$$4$$
3$-1$440$233$Question2$Question$2.1$3.2,3.1$$$$$$$$$$

BUFF
--------------------------------------------------------------------------------
1$3$-1$-50$70$Yes$$4$$
2$3$-1$50$70$No$$4$$
4$-1$594$341$ExitPoint1$ExitPoint$3.2,3.1,2.2$$$$$$$$$1$$1$-1$489$53$ProcessTest
2$-1$490$133$Quesion1$Question$1$2.2,2.1$$$$$$$$$$
1$2$-1$-50$70$Yes$$3$$
2$2$-1$50$70$No$$4$$
3$-1$440$233$Question2$Question$2.1$3.2,3.1$$$$$$$$$$
1$3$-1$-50$70$Yes$$4$$
2$3$-1$50$70$No$$4$$
4$-1$594$341$ExitPoint1$ExitPoint$3.2,3.1,2.2$$$$$$$$$1$$1$-1$489$53$ProcessTest
2$-1$490$133$Quesion1$Question$1$2.2,2.1$$$$$$$$$$

BUFF
--------------------------------------------------------------------------------
1$2$-1$-50$70$Yes$$3$$
2$2$-1$50$70$No$$4$$
3$-1$440$233$Question2$Question$2.1$3.2,3.1$$$$$$$$$$
1$3$-1$-50$70$Yes$$4$$
2$3$-1$50$70$No$$4$$
4$-1$594$341$ExitPoint1$ExitPoint$3.2,3.1,2.2$$$$$$$$$1$$1$-1$489$53$ProcessTest
2$-1$490$133$Quesion1$Question$1$2.2,2.1$$$$$$$$$$
1$2$-1$-50$70$Yes$$3$$
2$2$-1$50$70$No$$4$$
3$-1$440$233$Question2$Question$2.1$3.2,3.1$$$$$$$$$$
1$3$-1$-50$70$Yes$$4$$

BUFF
--------------------------------------------------------------------------------
2$3$-1$50$70$No$$4$$
4$-1$594$341$ExitPoint1$ExitPoint$3.2,3.1,2.2$$$$$$$$$1$$1$-1$489$53$ProcessTest
2$-1$490$133$Quesion1$Question$1$2.2,2.1$$$$$$$$$$
1$2$-1$-50$70$Yes$$3$$

59 rows selected.

Elapsed: 00:00:01.06
satyaki>

But he may have limits, too.

Kind regards.

LOULOU.

Tags: Database

Similar Questions

  • Update problem UI while ICB running callback functions

    Hello

    I have a simple code CVI that aims to blink a LED on the Panel for some time when the user double clicks on a button in the Panel (right). The CVI code is as below.

    #include
    #include
    #include
    #include
    #include «run Fn.h reminder»
    #include

    public static int panelHandle;
    int i = 0;

    int main (int argc, char * argv [])
    {
    If (InitCVIRTE (0, argv, 0) == 0)
    Returns - 1; / * memory * /.
    If ((panelHandle = LoadPanel (0, "Run rappel Fn.uir", PANNEAU)))<>
    Returns - 1;
    DisplayPanel (panelHandle);
    RunUserInterface ();
    DiscardPanel (panelHandle);
    }

    int CVICALLBACK (int, int int event control panel Run,
    void * callbackData, int eventData1, int eventData2)
    {int i = 0;
    switch (event)
    {
    case EVENT_RIGHT_DOUBLE_CLICK:
    printf ("detected event");
    SetCtrlVal (panelHandle, PANEL_NUMERIC, 23.78);
    SetCtrlVal(panelHandle,PANEL_LED,1);
    for (i = 0; i<>
    {
    SetCtrlVal(panelHandle,PANEL_LED,0);
    Delay (1);
    SetCtrlVal(panelHandle,PANEL_LED,1);
    }
    break;
    }
    return 0;
    }

    But is does not work as expected. The State of the led façade is updated that once the switch housing ends its execution. He did update in the for the loop runs. As a beginner, I have no much idea about the programming of the CVI. However, I found the following information.

    http://zone.NI.com/reference/en-XX/help/370051V-01/CVI/uiref/cviprocessing_events/

    http://zone.NI.com/reference/en-XX/help/370051V-01/CVI/uiref/cviprocessdrawevents/

    But I don't know how to use them.

    Any help is appreciated.

    Best regards

    Dembélé Jacob

    Actually you need not order you found since SetCtrlVal already have an update of the user interface: simply give the State ONE time for the user to see.

    for (i = 0; i<=100;i++)>
    SetCtrlVal (panelHandle, PANEL_LED, 0);
    Delay (0.5);
    SetCtrlVal (panelHandle, PANEL_LED, 1);
    Delay (0.5);
    }

    A vision a bit in these commands, you found:

    ProcessDrawEvents () will force an update of the user interface, but like I told you this is already implicit in SetCtrlVal, at least for the addressed control. You need to use this command if other tasks in the application would update the values displayed on the screen.

    ProcessSystemEvents () allows the program to honor even user interface events inside a tight like yours: at the present time, there is no way to stop the process until the for loop ends because even if the user has pressed a button to shut down the system would not see this event inside the loop: ProcessSystemEvents () would allow it.

  • Check if the layer is visible and run a function according to the answer

    Hey guys,.

    I have a question that has been racking my brain these days.

    If I want to run a script when I press a button that will check if a specific layer is visible. If so, it performs another function that shows additional layers. If the specific layer is not visible, it checks the next layer to see if it is visible. This continues until it checks all the necessary layers and is a visible layer.

    Here's the script in question:

    #target photoshop

    //

    clthTopTt.jsx

    //

    cTID = function (s) {return app.charIDToTypeID (s) ;};}

    sTID = function (s) {return app.stringIDToTypeID (s) ;};}

    //

    //==================== actnStd ==============

    //

    function checkactnStd() {}

    Select

    function step 1 (enabled, withDialog) {}

    If (enabled! = undefined & &! activated)

    return;

    var dialogMode = (withDialog? DialogModes.ALL: DialogModes.NO);

    var desc1 = new ActionDescriptor();

    var ref1 = new ActionReference();

    Ref1.putName (cTID ("'Lyr"), "actnStd");

    DESC1.putReference (cTID ('null'), ref1);

    DESC1.putBoolean (cTID ('MkVs'), false);

    var list1 = new ActionList();

    List1.putInteger (17011);

    DESC1.putList (list1, cTID ('LyrI'));

    executeAction (desc1 cTID ('slct'), dialogMode);

    };

    If

    step2 function (activated, withDialog) {}

    If (enabled! = undefined & &! activated)

    return;

    var dialogMode = (withDialog? DialogModes.ALL: DialogModes.NO);

    var desc1 = new ActionDescriptor();

    DESC1.putEnumerated (cTID ('null'), ('Cndt') cTID, cTID ('Ahsvs'));

    var ref1 = new ActionReference();

    Ref1.putName (cTID ('Actn'), 'select actnStd');     <-if the actnStd layer is visible, rather than performing this action, it runs the function selectactnStd().

    Ref1.putName (cTID ('ASet'), 'clthTopTt');

    DESC1.putReference (cTID ('then'), ref1);

    ref2 var = new ActionReference();

    ref2.putName (cTID ('Actn'), "check actnWlk");  <-if the actnStd layer is NOT visible, it executes the next layer checks (via the function checkactnWlk(). )

    ref2.putName (cTID ('ASet'), 'clthTopTt');

    DESC1.putReference (cTID ('else'), ref2);

    executeAction (desc1 sTID ('conditional'), dialogMode);

    };

    Step1();      Select

    Step2();      If

    };

    function selectactnStd() {}

    Show

    function step 1 (enabled, withDialog) {}

    If (enabled! = undefined & &! activated)

    return;

    var dialogMode = (withDialog? DialogModes.ALL: DialogModes.NO);

    var desc1 = new ActionDescriptor();

    var list1 = new ActionList();

    var ref1 = new ActionReference();

    Ref1.putName (cTID ("'Lyr"), "topStdTt");

    Ref1.putName (cTID ("'Lyr"), "topMskStd");

    List1.putReference (Ref1);

    DESC1.putList (list1, cTID ('null'));

    executeAction (cTID ("'Shw"), desc1, dialogMode);

    };

    Hide

    step2 function (activated, withDialog) {}

    If (enabled! = undefined & &! activated)

    return;

    var dialogMode = (withDialog? DialogModes.ALL: DialogModes.NO);

    var desc1 = new ActionDescriptor();

    var list1 = new ActionList();

    var ref1 = new ActionReference();

    Ref1.putName (cTID ("'Lyr"), "topWlkTt");

    Ref1.putName (cTID ("'Lyr"), "topMskWlk");

    Ref1.putName (cTID ("'Lyr"), "topRunTt");

    Ref1.putName (cTID ("'Lyr"), "topMskRun");

    List1.putReference (Ref1);

    DESC1.putList (list1, cTID ('null'));

    executeAction (desc1 cTID ("Hd"), dialogMode);

    };

    Step1();      Show

    Step2();      Hide

    };

    //

    //==================== actnWlk ==============

    //

    function checkactnWlk() {}

    Select

    function step 1 (enabled, withDialog) {}

    If (enabled! = undefined & &! activated)

    return;

    var dialogMode = (withDialog? DialogModes.ALL: DialogModes.NO);

    var desc1 = new ActionDescriptor();

    var ref1 = new ActionReference();

    Ref1.putName (cTID ("'Lyr"), "actnWlk");

    DESC1.putReference (cTID ('null'), ref1);

    DESC1.putBoolean (cTID ('MkVs'), false);

    var list1 = new ActionList();

    List1.putInteger (17012);

    DESC1.putList (list1, cTID ('LyrI'));

    executeAction (desc1 cTID ('slct'), dialogMode);

    };

    If

    step2 function (activated, withDialog) {}

    If (enabled! = undefined & &! activated)

    return;

    var dialogMode = (withDialog? DialogModes.ALL: DialogModes.NO);

    var desc1 = new ActionDescriptor();

    DESC1.putEnumerated (cTID ('null'), ('Cndt') cTID, cTID ('Ahsvs'));

    var ref1 = new ActionReference();

    Ref1.putName (cTID ('Actn'), 'select actnWlk');

    Ref1.putName (cTID ('ASet'), 'clthTopTt');

    DESC1.putReference (cTID ('then'), ref1);

    ref2 var = new ActionReference();

    ref2.putName (cTID ('Actn'), "check actnRun");

    ref2.putName (cTID ('ASet'), 'clthTopTt');

    DESC1.putReference (cTID ('else'), ref2);

    executeAction (desc1 sTID ('conditional'), dialogMode);

    };

    Step1();      Select

    Step2();      If

    };

    function selectactnWlk() {}

    Show

    function step 1 (enabled, withDialog) {}

    If (enabled! = undefined & &! activated)

    return;

    var dialogMode = (withDialog? DialogModes.ALL: DialogModes.NO);

    var desc1 = new ActionDescriptor();

    var list1 = new ActionList();

    var ref1 = new ActionReference();

    Ref1.putName (cTID ("'Lyr"), "topWlkTt");

    Ref1.putName (cTID ("'Lyr"), "topMskWlk");

    List1.putReference (Ref1);

    DESC1.putList (list1, cTID ('null'));

    executeAction (cTID ("'Shw"), desc1, dialogMode);

    };

    Hide

    step2 function (activated, withDialog) {}

    If (enabled! = undefined & &! activated)

    return;

    var dialogMode = (withDialog? DialogModes.ALL: DialogModes.NO);

    var desc1 = new ActionDescriptor();

    var list1 = new ActionList();

    var ref1 = new ActionReference();

    Ref1.putName (cTID ("'Lyr"), "topStdTt");

    Ref1.putName (cTID ("'Lyr"), "topMskStd");

    Ref1.putName (cTID ("'Lyr"), "topRunTt");

    Ref1.putName (cTID ("'Lyr"), "topMskRun");

    List1.putReference (Ref1);

    DESC1.putList (list1, cTID ('null'));

    executeAction (desc1 cTID ("Hd"), dialogMode);

    };

    Step1();      Show

    Step2();      Hide

    };

    //

    //==================== actnRun ==============

    //

    function checkactnRun() {}

    Select

    function step 1 (enabled, withDialog) {}

    If (enabled! = undefined & &! activated)

    return;

    var dialogMode = (withDialog? DialogModes.ALL: DialogModes.NO);

    var desc1 = new ActionDescriptor();

    var ref1 = new ActionReference();

    Ref1.putName (cTID ("'Lyr"), "actnRun");

    DESC1.putReference (cTID ('null'), ref1);

    DESC1.putBoolean (cTID ('MkVs'), false);

    var list1 = new ActionList();

    List1.putInteger (17013);

    DESC1.putList (list1, cTID ('LyrI'));

    executeAction (desc1 cTID ('slct'), dialogMode);

    };

    If

    step2 function (activated, withDialog) {}

    If (enabled! = undefined & &! activated)

    return;

    var dialogMode = (withDialog? DialogModes.ALL: DialogModes.NO);

    var desc1 = new ActionDescriptor();

    DESC1.putEnumerated (cTID ('null'), ('Cndt') cTID, cTID ('Ahsvs'));

    var ref1 = new ActionReference();

    Ref1.putName (cTID ('Actn'), 'select actnRun');

    Ref1.putName (cTID ('ASet'), 'clthTopTt');

    DESC1.putReference (cTID ('then'), ref1);

    ref2 var = new ActionReference();

    ref2.putName (cTID ('Actn'), "check actnAc");

    ref2.putName (cTID ('ASet'), 'clthTopTt');

    DESC1.putReference (cTID ('else'), ref2);

    executeAction (desc1 sTID ('conditional'), dialogMode);

    };

    Step1();      Select

    Step2();      If

    };

    function selectactnRun() {}

    Show

    function step 1 (enabled, withDialog) {}

    If (enabled! = undefined & &! activated)

    return;

    var dialogMode = (withDialog? DialogModes.ALL: DialogModes.NO);

    var desc1 = new ActionDescriptor();

    var list1 = new ActionList();

    var ref1 = new ActionReference();

    Ref1.putName (cTID ("'Lyr"), "topRunTt");

    Ref1.putName (cTID ("'Lyr"), "topMskRun");

    List1.putReference (Ref1);

    DESC1.putList (list1, cTID ('null'));

    executeAction (cTID ("'Shw"), desc1, dialogMode);

    };

    Hide

    step2 function (activated, withDialog) {}

    If (enabled! = undefined & &! activated)

    return;

    var dialogMode = (withDialog? DialogModes.ALL: DialogModes.NO);

    var desc1 = new ActionDescriptor();

    var list1 = new ActionList();

    var ref1 = new ActionReference();

    Ref1.putName (cTID ("'Lyr"), "topStdTt");

    Ref1.putName (cTID ("'Lyr"), "topMskStd");

    Ref1.putName (cTID ("'Lyr"), "topWlkTt");

    Ref1.putName (cTID ("'Lyr"), "topMskWlk");

    List1.putReference (Ref1);

    DESC1.putList (list1, cTID ('null'));

    executeAction (desc1 cTID ("Hd"), dialogMode);

    };

    Step1();      Show

    Step2();      Hide

    };

    After he checks the last layer, then end the script.

    'clthTopTtLoop.jsx '.

    EXPRESSIONS OF FOLKLORE

    Any help is appreciated seriously. Thank you guys!

    Hey guys, I promised that I would update this post to help others if I got the answer, so here:

    Firstly, the developer has created a function to automatically get the layer. I had problems to find ways to select layers, especially because the layers were nested in groups inside groups. This helped solve that. The function was this:

    function selectLayer(name) {
      var desc = new ActionDescriptor();
      var ref = new ActionReference();
      ref.putName( charIDToTypeID('Lyr '), name );
      desc.putReference( charIDToTypeID('null'), ref );
      desc.putBoolean( charIDToTypeID('MkVs'), false );
      executeAction( charIDToTypeID('slct'), desc, DialogModes.NO );
      return
    };
    

    Then call the layer using layer real name (assuming that your layer names are unique. If they aren't, you'll find yourself only to select the first layer with the same specific name) throughout your script file.

    IE. In my case, selectLayer ("actnStd"); or selectLayer ("actnWlk");

    You then set the visibility by using the following code:

    // show
    app.activeDocument.activeLayer.visible = true;
    // hide
    app.activeDocument.activeLayer.visible = false;
    

    Then use a function to check whether a layer is visible. If the layer is visible, you run the function show/hide layers respective:

    function CheckactnWlk() {
      selectLayer("actnWlk");
      if  (app.activeDocument.activeLayer.visible == true) {
      SelectactnWlk()
      }
      else  {
      CheckactnRun();
      }
    };
    

    So in the end, the final script looks like this:

    #target photoshop
    
    app.bringToFront();
    CheckactnStd();
    
    function CheckactnStd() {
      selectLayer("actnStd");
      if  (app.activeDocument.activeLayer.visible == true) {
      SelectactnStd()
      }
      else  {
      CheckactnWlk();
      }
    };
    
    function SelectactnStd() {
      selectLayer("topMskStd");
      app.activeDocument.activeLayer.visible = true;
    
      selectLayer("topStdTt");
      app.activeDocument.activeLayer.visible = true;
    
      selectLayer("topWlkTt");
      app.activeDocument.activeLayer.visible = false;
    
      selectLayer("topMskWlk");
      app.activeDocument.activeLayer.visible = false;
    
      selectLayer("topRunTt");
      app.activeDocument.activeLayer.visible = false;
    
      selectLayer("topMskRun");
      app.activeDocument.activeLayer.visible = false;
    }; 
    
    function CheckactnWlk() {
      selectLayer("actnWlk");
      if  (app.activeDocument.activeLayer.visible == true) {
      SelectactnWlk()
      }
      else  {
      CheckactnRun();
      }
    };   
    
    function SelectactnWlk() {
      selectLayer("topMskStd");
      app.activeDocument.activeLayer.visible = false;
    
      selectLayer("topStdTt");
      app.activeDocument.activeLayer.visible = false;
    
      selectLayer("topWlkTt");
      app.activeDocument.activeLayer.visible = true;
    
      selectLayer("topMskWlk");
      app.activeDocument.activeLayer.visible = true;
    
      selectLayer("topRunTt");
      app.activeDocument.activeLayer.visible = false;
    
      selectLayer("topMskRun");
      app.activeDocument.activeLayer.visible = false;
    
    };
    
    function CheckactnRun() {
      selectLayer("actnRun");
      if  (app.activeDocument.activeLayer.visible == true) {
      SelectactnRun()
      }
      else  {
      alert ('There is no Selected Layer', 'Please select a layer', 0);
      }
    };
    
    function SelectactnRun() {
      selectLayer("topMskStd");
      app.activeDocument.activeLayer.visible = false;
    
      selectLayer("topStdTt");
      app.activeDocument.activeLayer.visible = false;
    
      selectLayer("topWlkTt");
      app.activeDocument.activeLayer.visible = false;
    
      selectLayer("topMskWlk");
      app.activeDocument.activeLayer.visible = false;
    
      selectLayer("topRunTt");
      app.activeDocument.activeLayer.visible = true;
    
      selectLayer("topMskRun");
      app.activeDocument.activeLayer.visible = true;
    
    };
    
    function selectLayer(name) {
            var desc = new ActionDescriptor();
            var ref = new ActionReference();
            ref.putName( charIDToTypeID('Lyr '), name );
           desc.putReference( charIDToTypeID('null'), ref );
           desc.putBoolean( charIDToTypeID('MkVs'), false );
           executeAction( charIDToTypeID('slct'), desc, DialogModes.NO );
           return
    };
    
    app.preferences.rulerUnits = rUnit;
    app.preferences.typeUnits = tUnit;
    
    selectLayer("actnStd");
    

    Guys good luck! Now to find how to select random layers via the script.

  • the problem of reuse based on the functions

    I read the text in quotes as follows a book written by a Microsoft Developer. I googled and found a good number of citations of it, but did not find any explanation.

    ============
    With languages like C, the basic unit of re-use is the function. The problem with reuse based on a function, is that the function is coupled to the data, he manipulates. and if the data world, a change to a function in the context of re-use infringes another function used somewhere else.
    ============

    C using the libraries widely, which is to reuse based on functions. Kindly can anyone give me a scenario where this problem occurs?

    Java is usually based on objects for reuse, and I confess that my question is not a Java. But I think that would help to better understand the concept or the benefits of the Java language design. So, thank you for allowing me to ask this question here,

    Published by: 799160 on September 30, 2010 12:38

    Published by: 799160 on September 30, 2010 12:57

    That's what I came to read the quote you posted:

    I guess something like the following might happen:

    You (being a person in General) have received a class change. You examine the code for the first time, and it has a bunch of methods and variables of class in it. Some methods use class variables. How can you be sure that if you change the functionality for editing a class variable in one method will not affect the other methods when they are used? This problem can be solved by learning everything that is and how it interacts, the correct way to use it. But then again, if you don't think about it and to make changes... Oops!

    -----

    Maybe another abstract example would be wise:
    Imagine a calculator that could be used by 2 people at the same time? I bet it would come with a few funny answers :)

    -----

    I hope that I wrote a short example of this, he makes some sense:

    public class SuperBigProgram
    {
         private int globalVar;
    
         public static void main ( String[] args )
         {
              new SuperBigProgram();
         }
    
         public SuperBigProgram()
         {
              System.out.println("I'm a super big program.");
    
              globalVar = 0;
    
              //Let's pretend these series of events occur during the program:
    
              doItHighChanceActivity(); //1
              doItHighChanceActivity(); //2
              doItHighChanceActivity(); //3
    
              //Whoops super rare event occured!
              doesNotHappenALot();
    
              doItHighChanceActivity(); //4????    but is really 5.
         }
    
         /**
          * This happens A LOT!
          */
         private void doItHighChanceActivity ()
         {
              superUtilityMethod();
    
              System.out.println("globalVar: " + globalVar);
         }
    
         /**
          * This utility method does some awesome utility stuff for our Super Big Program.
          * This changes some global data.
          */
         private void superUtilityMethod()
         {
              globalVar++;
         }
    
         /**
          * This does not happen a lot, if at all.
          */
         private void doesNotHappenALot()
         {
              //Hey I don't happen a lot but I'm reusing this really cool utility method that contains global data...
              //Code reuse for the win!
              superUtilityMethod();
         }
    
    }
    

    Here is the result:

    I'm a great big program.
    globalVar: 1
    globalVar: 2
    globalVar: 3
    globalVar: 5

    Published by: kilosi on Sep 30, 2010 13:22

  • Hi, my asus memo pad hd 7, I have some problems whit videos, they run but Pentecost numerous scratches in image

    Hi, my asus memo pad hd 7, I have some problems whit videos, they run but Pentecost numerous scratches in the image.

    What can an i?

    the firefox is apdated.

    Thank you

    You would check Firefox Beta? https://play.Google.com/store/apps/details?ID=org.Mozilla.firefox_beta

    We have seen reports that this issue is resolved in Firefox Beta. Can you confirm?

  • 7 error "Paris 7.2.241.1enRegInstaller.exe of work and has been closed." A problem with the application to stop functioning properly. Windows will notify you if a solution is available.

    Original title - 7.2.241.1enRegInstaller.exe

    Hello.

    Today, JUST after I "Set Windows to update," twice, I got the disconcerting message:

    "Paris 7.2.241.1enRegInstaller.exe of working and was closed".

    A problem with the application to stop functioning properly.  Windows will notify you if a solution is available. »

    Any wisdom or experience with this?  I'm on a 64-bit HP Pavilion older (dv7-1245dx) with this OS JUST-update Windows (Vista Home Premium).

    Thank you.

    GIES W

    The solution has been found just uninstall bing bar, restart the computer, and if you want just bing toolbar to reinstall. This easy solution my system fixed.  Bing has again reminded all my points that I have amassed

  • SQL: how to display the second string of the function in the Jobs table only if the function has more than one string.

    SQL: how to display the second string of the function in the Jobs table only if the function has more than one string.

    Hello

    You can use REGEXP_SUBSTR Oracle/PLSQL: REGEXP_SUBSTR function

    Select the function double REGEXP_SUBSTR('PUBLIC RELATION REPRESENTATIVE ','[^]+',1,2);

    Do you have any value of the column as no 2nd string?

  • I have problems with JavaFX applications run on raspberry pi!

    I have problems with JavaFX applications run on raspberry pi. I did all the steps of the course videos: overclocking, without comment that I had to uncomment on the framebuffer, but Exceptions are always produce. Demonstration of fireworks as an example does not work. Someone went through this problem? Java applications are ok. Like the versions of java in netbeans project and also on 'Properties' and they are all JDK 8. So if anyone can give a clue, I am very grateful!

    Can you provide the exceptions that you got so I can help you better?

    You want to make a coaching for this session?

    Vinicius-

  • I use a PC and I used LR3. I'm a newcomer to LR, so patient with me! My problem is related to the import function. I have a photo library on an external hard drive. I slowly imported previews of the photos selected from the library in

    I use a PC and I used LR3. I'm a newcomer to LR, so patient with me! My problem is related to the import function.

    I have a photo library on an external hard drive. I've slowly been import previews of the photos selected from the library in my catalog, adding them during the import process - well. But now, I hit a problem. Another folder in my library contains several subfolders, each containing a number of photos (a mixture of RAW steals (naves) and jpg). I was importing found in my catalog each Subfile in turn, using the Add function, usually of the jpgs only from each Subfile. It works fine, until I reached a particular Subfile. For some reason when I try to import from it and select the secondary file as a Source, only the RAW (NEF) images appear in the preview pane (sorry, forgot the correct term for it!). I know that jpg files are in this auxiliary file on the external hard drive, because when I view its content in Windows, they are all there. But try as I can (choose the file under source, select the folder parent as a source, try to copy or move them, instead of adding them), nothing seems to work. Since they do not appear in the preview pane, I can't import them. It does appear that this a Subfile where the problem exists, but I don't see anything that is different from the others (names of files under all use the same structure - yyyy-mm-dd_custom name, and pictures in all subfolders are adopting the same denomination structure too - yyyy-mm-dd_sequential number_custom name.) NAVE/JPG. So what I am doing wrong? Any ideas please.

    It is possible that the images in this particular subfolder were taken in your camera in RAW + JPEG.  If so, you will need to go to preferences under the general tab and make sure the box "processing JPEG files files next to raw as separate photos" is checked.

    However, assuming that this is the case, there is really no reason to import the JPEG file if you already have the RAW file.

  • Problem with an application running Adobe Flex. Tech say that they cannot monitor, track or detect the problem.

    Problem with an application running Adobe Flex. Tech say that they cannot monitor, track or detect the problem. Application will stop and give wanders it depending on:

    Failure of server APACHE Bridge:


    Not available for a connection of back-end server: expired after 10 seconds or idempotent OFF or not idempotent method.

    Download, installation, implementation of Flex>

  • Problem with the process running sql

    I created a pricess that deletes a file off of the table apex_application_files

    When I run the following statement:
    delete apex_application_files whose name like "resume.pdf" it works without problem

    When I run the following statement:
    delete apex_application_files whose name like ': P4_PDF_DISPLAY' he does not. what I have to do.

    I changed the: p4_pdf_display to be a single item displayed on the page
    With the help of the P4_PDF_DISPLAY can view the file in a query sql and beable to view the file to download, but am unable to delete
    Help!

    Hello
    >
    I created a pricess that deletes a file off of the table apex_application_files

    When I run the following statement:
    delete apex_application_files whose name like "resume.pdf" it works without problem

    When I run the following statement:
    delete apex_application_files whose name like ': P4_PDF_DISPLAY' he does not. what I have to do.

    I changed the: p4_pdf_display to be a single item displayed on the page
    With the help of the P4_PDF_DISPLAY can view the file in a query sql and beable to view the file to download, but am unable to delete
    >

    What is this point of P4_PDF_DISPLAY? It is the name of the file, as it is supposed to be in your delete statement? Or, view the article PDF?
    Verify session state to display the value of the element. You see the name in it?

    See you soon,.

  • Save one even to run a function, whenever a document is saved

    Hello

    I m was looking in the manual JavaScript Illustrator... but can't find no not that kind of information. Can you tell me if I m missing something obvious?

    I have a function and want to run this function whenever the user calls the process of saving the active document.

    For example, the script runs. If the user, go to file > save or file > save as, and then... Illustrator calls the function 'x' in my script;

    Is this possible? Where can I find information on how to record events in Illustrator?

    Thank you very much

    Gustavo.

    I is not an eventListener. ID do, but he did not his way to still HAVE it.

  • Problem with the extension of the functionality of Adobe Reader

    I created a set of subforms, each subform has a table with repetition of lines through the Instance Manager. Each of the four tables is defined to "repeat the line for each data element" with a minimum number of "1".
    Everythings seems to work perfectly, both seen in preview mode LiveCycle and Adobe Acrobat. Each of the four tables has a line showing through the minimum number of "1".


    The problem arises when I extend the functionality of Adobe Reader.

    When the form is opened in Adobe Acrobat or Reader, rather than each table with a single line, the Summit table on the page has now four rows one the remaining paintings, three have a line. I have experimented with him and if I add another subform with a table, extend the functionality and save it, the upermost table with now have five rows showing. The number of lines showing appears to increase a each added table.

    I have attached two examples of forms, a front extended to Adobe Reader features and one after.

    I am really confused as to why this problem appears after features are extended for Adobe Reader.

    If someone could help me with this, I would appreciate it.

    Thank you!

    OK I found what is causing the problem. You must have a unique name for your fields in each table. I think that when it will add a new Table he confuses this field with that of the first table. This is a modified form with unique names and is no longer the problem. I had to modify your script on the tables to use the names of the objects of law as well.

    You should not do (I think it is a bug), and you open a support incident.

    Paul

  • Problem with the arguments of a function

    I'm having a problem with the arguments of a function does not. In the attached example, the values passed to the function never appear within the function.

    Can someone tell me what I am doing wrong?

    Thank you
    David

    * the params in your displayPic function should be only by var, not their names name var and their data types *.

    Copy and paste the code I wrote below in a new flash on chassis of the _root document, follow the code, test the movie and check your output window. you will see how to pass arguments to a function is as simple as 1, 2, 3.

  • How to run the function body that is stored in the variable string?

    Hello!

    Let's say we have a function body stored in the string variable, like this:

    ......

    ......

    var body: String = "public function display_message(kom:String):void {mx.controls.Alert.show (kom) ;};

    .....

    Here, I would like to do something with variable 'body' to run the code in this variable, is - it possible?

    ......

    ......

    With regard to the bars.

    d.Eval can do what you want. check it out at http://www.riaone.com/products/deval/index.html

Maybe you are looking for

  • 700 AIO monitor display problems

    I got a Lenovo Ideacentre AIO 700 for Christmas and once through the initial updates after a black screen reboot, when I connect it to my TV it will go through my tv, but no more detects any other screen, how can I go back on the screen of computers?

  • Update error 646 microsoft office onenote bk980729 fails to install every time I stop.

    Whenever I close I get the message below don't close microsoft is to install updates. I now have about 10 KB980729 showing faulty to my update history. with the error 646. How can I get this problem? Are these update for Microsoft Office Onenote 2007

  • using Windows 7

    I installed both and I tried the 32-bit and 64-bit windows 7, but sometimes when I open my PC and as in counter strike source or any game if lag as if I m having spikes and all my fps and latency and ping is fine its just windows 7 or something I don

  • System has 61 viuruses.

    Hi can someone help please.  I have viruses on my computer, including worms Blaster and Trojans.  There is a message from scan to scan the system, but when I try to remove it told me to buy the software.  I AGV on my computer but it won't let me open

  • HP Adobe flash vs solutions Center

    I'm on a pc with a processor quad-core and OS Win7 64-bit, with a HP OfficeJet J6500 printer. Since the automatic updates from Microsoft last week, the HP Solution Center keeps popping up a box saying me as my software Adobe Flash is obsolete and thi