I receive this error message:
The following error has occurred:
ORA-06510: PL/SQL: unhandled user-defined exception
ORA-06512: at "SYS.UTL_FILE", line 98
ORA-06512: at "SYS.UTL_FILE", line 157
ORA-06512: at "ES344.AR_AREXDESA", line 146
ORA-06512: at line 9
and this is the lines where I am using that sentence:
declare
v_FILE UTL_FILE.FILE_TYPE;
begin
v_file := UTL_FILE.FOPEN( V_OutDir, 'AREXDESA.out','w');
UTL_FILE.PUT_LINE( v_file,V_TRAN_TYP ||',' ||V_ACCTG_PERD);
UTL_FILE.FCLOSE( v_File);
.
.
.
end;
Thanks in advance
The following error has occurred:
ORA-06510: PL/SQL: unhandled user-defined exception
ORA-06512: at "SYS.UTL_FILE", line 98
ORA-06512: at "SYS.UTL_FILE", line 157
ORA-06512: at "ES344.AR_AREXDESA", line 146
ORA-06512: at line 9
and this is the lines where I am using that sentence:
declare
v_FILE UTL_FILE.FILE_TYPE;
begin
v_file := UTL_FILE.FOPEN( V_OutDir, 'AREXDESA.out','w');
UTL_FILE.PUT_LINE( v_file,V_TRAN_TYP ||',' ||V_ACCTG_PERD);
UTL_FILE.FCLOSE( v_File);
.
.
.
end;
Thanks in advance