there you go, you are done. schedule that.
seems obvious? doesn't it? I mean, I told you originally:
declare
l_some_output number;
begin
my_procedure( l_some_output );
insert into my_own_table_of_my_own_invention ( msg ) values
( 'hey, we ran the procedure and it said ' || l_some_output ||
' is the answer to life, the universe and everything' );
end;
run the procedure, get the output, do something with it. Ok, so you don't want to insert it into a log table, you want to send it to proc2 - there you go, do that.