I would like to call Advisor from PLSQL. I haven't found any documentation.
Looking at the packages and the HTML, I gathered that it would be something like this:
declare
options wwv_flow_global.vc_arr2;
begin
options(1):='BRANCH_SEQUENCE';
apex_050000.wwv_flow_advisor_dev.check_application(p_application_id=>300, p_check_list=>options);
end;
But this only produces ORA-01403: no data found.
Is this possible at all?