Deepak,
Try it this way:
DECLARE stmt varchar(200);
SET stmt = 'CALL mySchema.MyProc(?,?)';
execute stmt into outVar1, out var2 using invar1, invar2;
The samples in the "SQL Reference" and the "DB2 SQL Procedural Language for Linux, UNIX, and Windows" book do it this way.
HTH
Andy