SriLaxmi Usually SP is written this way PROCEDURE SP_SET_STATUS(p_cycleid IN STATUS.cycleid%type, p_customer_no IN STATUS.customer_no%type, p_package_type IN STATUS.package_type%type default 'C', p_status IN STATUS.status%type, p_requestid IN STATUS.requestid%type, o_message OUT varchar2 ) AS BEGIN insert into status(cycleid,customer_no,package_type,status,requestid) values(p_cycleid,p_customer_no,p_package_type,p_status,p_requestid); o_message:='00000'; EXCEPTION WHEN others then o_message:=substr(sqlerrm,12,200); END SP_SET_STATUS; Where we have a o_message parameter, this represents that SP has executed properly or not based on the ...