ORA-06502: PL/SQL: numeric or value error: character string buffer too small [message #679903] |
Fri, 10 April 2020 10:59 |
|
Papan
Messages: 1 Registered: April 2020
|
Junior Member |
|
|
Hi Everyone,
I am facing this error while trying to call a procedure inside of my package and getting this exception.
Below is my script:
xxx_insert_into_gl_interface(x_errbuf => x_errbuf,
x_retcode => x_retcode,
p_gl_import_batch_id => cur_batch_validation_rec.gl_import_batch_id);
here the 3rd parameter value is passing from a cursor and 1st,2nd parameter is the out parameter of my package.
PROCEDURE xxx_insert_into_gl_interface(x_errbuf OUT VARCHAR2,
x_retcode OUT NUMBER,
p_gl_import_batch_id IN NUMBER DEFAULT NULL) IS ....
So, I cannot understand from where actually it is checking the length. Please help me to debug.
|
|
|
|