Blueprism To Run Database Package

mcandrewe

Member
Hi,
I have a package on the database which requires a stub such as

declare
ln_ret number;

begin
ln_ret := pkg_rpa.DOC_UPLOAD (
'Y', 'SL004963', 'BOT Test');
dbms_output.put_line('ln_ret=' || t.t (ln_ret));

end;

This will insert a record into a table using these values
I have processes which run single queries which return collections but I am not sure how to run something like this?

Regards
 

sai1234

New Member
Hi I'm in similar situation, can you please let me know what would be the syntax to execute a package using oledb?
 
Top