Hi all please advise
how to run a package through execute command in oracle pl sql, my package is having one out parameter.
EXECUTE PKG_LOD_PATCH.SP_LOD_RPT(null);
Getting error
below script is working fine.
DECLARE
W_ERRMSG VARCHAR2(1000);
BEGIN
PKG_LOD_PATCH.SP_LOD_RPT(W_ERRMSG);
END;
/