Sample,
Create procedure
Code: Select all
function CheckIn(Id IN ltm_entity_log.elo_rec_id%TYPE,
SysLogType IN ltm_entity_log.c_ltm_sys_log%TYPE)
return PLS_INTEGER;
function CheckIn(Id IN ltm_entity_log.elo_rec_id%TYPE,
SysLogType IN ltm_entity_log.c_ltm_sys_log%TYPE,
Commentary IN ltm_entity_log.elo_info%TYPE)
return PLS_INTEGER;
function CheckIn(Id IN ltm_entity_log.elo_rec_id%TYPE,
SysLogType IN ltm_entity_log.c_ltm_sys_log%TYPE,
Commentary IN ltm_entity_log.elo_info%TYPE,
Author IN ltm_entity_log.elo_author%TYPE)
return PLS_INTEGER;
Code: Select all
nRes := foraPackage.ExecProcEx('CheckIn',
['Id', MainId, 'SysLogType', SysLogType, 'Commentary', strComment,
'Author', UserInitials]) as Integer;
And ExecProcEx generate an exception Commentary was not found.
NSC