Hi,
I need to modify a function,currently the coulmn here is set to return varchar 2 but i need to change it to CLOB so that i can store 10000 characters in this column.
I tried changing the varchr2 to clob,i was able to compile it but the report is not retreiving the data like it used to when it was set to varchar2 Below is the snippet
FUNCTION "FNC" (
id IN c
)
RETURN Varchar2
AS
v_a Varchar2(10000);
CURSOR a_dev_area
I want to change it to
FUNCTION "FNC" (
id IN c
)
RETURN CLOB
AS
v_a CLOB;
CURSOR a_dev_area
but it doesnt seem to work.can some one please help.
Thanks in advance !
I need to modify a function,currently the coulmn here is set to return varchar 2 but i need to change it to CLOB so that i can store 10000 characters in this column.
I tried changing the varchr2 to clob,i was able to compile it but the report is not retreiving the data like it used to when it was set to varchar2 Below is the snippet
FUNCTION "FNC" (
id IN c
)
RETURN Varchar2
AS
v_a Varchar2(10000);
CURSOR a_dev_area
I want to change it to
FUNCTION "FNC" (
id IN c
)
RETURN CLOB
AS
v_a CLOB;
CURSOR a_dev_area
but it doesnt seem to work.can some one please help.
Thanks in advance !