How do I hide the id and password in a web.show_document command executed from an Oracle 10g form?
WHat other parameters can be used with WEB.SHOW_DOCUMENT besides ‘_BLANK’?
- The application is developed in Developer 10g - The application is` running with non ssomode. (ssomode=false) – When I call a report through form by using : WEB.Show_Document(‘/reports/rwservlet/getjobid’ ||substr(v_rep,instr(v_rep,’_',-1)+1)|| ‘?destype=cache&desformat=pdf/html&server=’ || ‘rep_app_oracle_forms’, ‘_blank’); the sso login page appeared and when I enter the usetrname and the password the report runs correctly The question is how can the report runs directly [...]
the code DECLARE rep_url varchar2(2000); BEGIN rep_url:=’/reports/rwservlet?’ ||’&report=c:testrpt10g.rdf’ ||’&desformat=htmlcss&destype=cache’ ||’&userid=stlexport/stlexpst@as’; WEB.SHOW_DOCUMENT(rep_url,’_blank’); END; is running well. But now i want the report’s parameter form to be displayed. How can i do this using web.show_document(…)
hi, i am using forms10g and i called a report using web.show_document which was successful rep_url:=’/reports/rwservlet?destype=cache&desformat=pdf&report=z:/test/item_status_y.rdf&userid=test/test@oracle¶mform=yes’; web.show_document(rep_url,’_blank’); The report was generated in PDF which has a save option. To save my data’s I want to disable the save button in PDF as well as in IE when i run the report only and then automatically [...]





