Oracle Solution for Error ora-23620

Solution for Oracle Error ORA-23620

ORA-23620: bind value size too large for PL/SQL CALL operation

What triggered the Error:

a PL/SQL CALL to a stored procedure, the bind string size exceeded 4K.

What should we do to fix it:

ther make the bind string size shorter (less than 4K) or use BEGIN-END to call the procedure instead of CALL.