{"id":19605,"date":"2025-08-21T09:40:46","date_gmt":"2025-08-21T04:10:46","guid":{"rendered":"https:\/\/vinish.dev\/?p=19605"},"modified":"2025-08-21T09:40:47","modified_gmt":"2025-08-21T04:10:47","slug":"web-show_document-in-oracle-forms","status":"publish","type":"post","link":"https:\/\/vinish.dev\/web-show_document-in-oracle-forms","title":{"rendered":"Opening URLs with WEB.SHOW_DOCUMENT in Oracle Forms"},"content":{"rendered":"\n<p>Modern <a href=\"https:\/\/vinish.dev\/oracle-forms\">Oracle Forms<\/a> applications often need to integrate with the web\u2014whether to display reports, open online resources, or navigate to external systems. Oracle Forms provides the <strong>WEB.SHOW_DOCUMENT<\/strong> built-in for this purpose. It enables developers to open a specified URL in a browser window directly from the form. This tutorial explains what WEB.SHOW_DOCUMENT is, its syntax, use cases, examples, and best practices.<\/p>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity\"\/>\n\n\n\n<h2 class=\"wp-block-heading\">What is WEB.SHOW_DOCUMENT?<\/h2>\n\n\n\n<p>The <strong>WEB.SHOW_DOCUMENT<\/strong> built-in allows Oracle Forms to display a web page, a file, or a servlet by sending a request to the user\u2019s web browser. Unlike the <code>HOST<\/code> built-in, which interacts with the operating system, WEB.SHOW_DOCUMENT is specifically designed for web-enabled applications.<\/p>\n\n\n\n<p>It is widely used in <strong>Oracle Forms deployed on the web (Forms Services)<\/strong>, where client machines access applications through a browser.<\/p>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity\"\/>\n\n\n\n<h2 class=\"wp-block-heading\">Syntax of WEB.SHOW_DOCUMENT<\/h2>\n\n\n\n<p>The general syntax is:<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\">WEB.SHOW_DOCUMENT(url, target);\n<\/pre>\n\n\n\n<ul class=\"wp-block-list\">\n<li><strong>url<\/strong> \u2192 A string representing the web address or file path.<\/li>\n\n\n\n<li><strong>target<\/strong> \u2192 Specifies how and where the URL should be opened:\n<ul class=\"wp-block-list\">\n<li><code>_blank<\/code> \u2192 Opens in a new browser window or tab.<\/li>\n\n\n\n<li><code>_self<\/code> \u2192 Opens in the same browser frame where Forms is running.<\/li>\n\n\n\n<li><code>_parent<\/code> \u2192 Opens in the parent frame.<\/li>\n\n\n\n<li><code>_top<\/code> \u2192 Opens in the full browser window, replacing current content.<\/li>\n<\/ul>\n<\/li>\n<\/ul>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity\"\/>\n\n\n\n<h2 class=\"wp-block-heading\">Example: Opening a Website<\/h2>\n\n\n\n<pre class=\"wp-block-preformatted\">BEGIN\n   WEB.SHOW_DOCUMENT('https:\/\/www.oracle.com', '_blank');\nEND;\n<\/pre>\n\n\n\n<p>This will open Oracle\u2019s homepage in a new browser tab.<\/p>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity\"\/>\n\n\n\n<h2 class=\"wp-block-heading\">Example: Displaying a PDF Report<\/h2>\n\n\n\n<p>Suppose your application generates reports stored on the application server. You can use WEB.SHOW_DOCUMENT to display the report in the browser:<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\">DECLARE\n   v_url VARCHAR2(2000);\nBEGIN\n   v_url := 'http:\/\/myserver\/reports\/sales_report.pdf';\n   WEB.SHOW_DOCUMENT(v_url, '_blank');\nEND;\n<\/pre>\n\n\n\n<p>This opens the report in a new tab, allowing the user to view or download it.<\/p>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity\"\/>\n\n\n\n<h2 class=\"wp-block-heading\">Example: Calling Oracle Reports from Forms<\/h2>\n\n\n\n<p>One of the most common uses of WEB.SHOW_DOCUMENT is to integrate with Oracle Reports. For example:<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\">DECLARE\n   v_report_url VARCHAR2(2000);\nBEGIN\n   v_report_url := 'http:\/\/myserver:7778\/reports\/rwservlet?report=sales.rdf&amp;userid=scott\/tiger@orcl';\n   WEB.SHOW_DOCUMENT(v_report_url, '_blank');\nEND;\n<\/pre>\n\n\n\n<p>This executes the <strong>Sales Report<\/strong> and displays the output in a new browser window.<\/p>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity\"\/>\n\n\n\n<h2 class=\"wp-block-heading\">Example: Opening a Local File<\/h2>\n\n\n\n<p>If you have files hosted on a server directory accessible via HTTP:<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\">BEGIN\n   WEB.SHOW_DOCUMENT('http:\/\/myserver\/files\/manual.docx', '_blank');\nEND;\n<\/pre>\n\n\n\n<p>This opens the user manual stored on the server.<\/p>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity\"\/>\n\n\n\n<h2 class=\"wp-block-heading\">Use Cases of WEB.SHOW_DOCUMENT<\/h2>\n\n\n\n<ol class=\"wp-block-list\">\n<li><strong>Launching Oracle Reports<\/strong> \u2192 Displaying reports in PDF, HTML, or Excel format.<\/li>\n\n\n\n<li><strong>Navigating to External Websites<\/strong> \u2192 Directing users to company portals or documentation.<\/li>\n\n\n\n<li><strong>Opening Uploaded Files<\/strong> \u2192 Showing PDFs, images, or documents stored on the server.<\/li>\n\n\n\n<li><strong>Integrating with Web Applications<\/strong> \u2192 Redirecting to ERP modules, REST services, or dashboards.<\/li>\n<\/ol>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity\"\/>\n\n\n\n<h2 class=\"wp-block-heading\">Best Practices for WEB.SHOW_DOCUMENT<\/h2>\n\n\n\n<ol class=\"wp-block-list\">\n<li><strong>Use Fully Qualified URLs<\/strong><br>Always provide the full HTTP or HTTPS path, especially in web-deployed environments.<\/li>\n\n\n\n<li><strong>Choose Target Wisely<\/strong>\n<ul class=\"wp-block-list\">\n<li>Use <code>_blank<\/code> for external websites or large reports.<\/li>\n\n\n\n<li>Use <code>_self<\/code> only when you want to replace the running form session (rarely used).<\/li>\n<\/ul>\n<\/li>\n\n\n\n<li><strong>Handle Dynamic URLs<\/strong><br>Construct URLs dynamically using PL\/SQL variables when needed. For example, generating report URLs with parameters: <code>DECLARE v_url VARCHAR2(2000); BEGIN v_url := 'http:\/\/myserver\/reports\/rwservlet?report=emp.rdf&amp;P_DEPTNO=' || :EMP.DEPTNO; WEB.SHOW_DOCUMENT(v_url, '_blank'); END;<\/code><\/li>\n\n\n\n<li><strong>Secure Access<\/strong><br>Ensure sensitive URLs (like reports with credentials) are secured using authentication mechanisms.<\/li>\n\n\n\n<li><strong>Test Across Browsers<\/strong><br>Browser behavior may differ when opening documents. Always test on supported environments.<\/li>\n<\/ol>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity\"\/>\n\n\n\n<h2 class=\"wp-block-heading\">Common Issues and Troubleshooting<\/h2>\n\n\n\n<ul class=\"wp-block-list\">\n<li><strong>Nothing happens when calling WEB.SHOW_DOCUMENT<\/strong>\n<ul class=\"wp-block-list\">\n<li>Check whether the URL is accessible from the client machine.<\/li>\n\n\n\n<li>Ensure the browser allows pop-ups (some block new tabs\/windows).<\/li>\n<\/ul>\n<\/li>\n\n\n\n<li><strong>File not found errors<\/strong>\n<ul class=\"wp-block-list\">\n<li>Verify that the file path is exposed through HTTP\/HTTPS, not just the file system.<\/li>\n<\/ul>\n<\/li>\n\n\n\n<li><strong>Reports not displaying correctly<\/strong>\n<ul class=\"wp-block-list\">\n<li>Make sure the Oracle Reports Server is running and the URL syntax is correct.<\/li>\n<\/ul>\n<\/li>\n<\/ul>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity\"\/>\n\n\n\n<h2 class=\"wp-block-heading\">Conclusion<\/h2>\n\n\n\n<p>The <strong>WEB.SHOW_DOCUMENT<\/strong> built-in is an essential tool in Oracle Forms for opening URLs, displaying reports, and integrating with external applications. It provides a clean and user-friendly way to connect your Forms applications with the web. By using proper syntax, handling dynamic URLs, and following best practices, you can significantly enhance your application\u2019s interactivity and usability.<\/p>\n","protected":false},"excerpt":{"rendered":"<p>Modern Oracle Forms applications often need to integrate with the web\u2014whether to display reports, open online resources, or navigate to external systems. Oracle Forms provides the WEB.SHOW_DOCUMENT built-in for this purpose. It enables developers to open a specified URL in a browser window directly from the form. This tutorial explains what WEB.SHOW_DOCUMENT is, its syntax, [&hellip;]<\/p>\n","protected":false},"author":1,"featured_media":0,"comment_status":"open","ping_status":"closed","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[1816],"tags":[],"class_list":["post-19605","post","type-post","status-publish","format-standard","hentry","category-oracle-forms"],"blocksy_meta":[],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v27.4 - https:\/\/yoast.com\/product\/yoast-seo-wordpress\/ -->\n<title>Opening URLs with WEB.SHOW_DOCUMENT in Oracle Forms &#8226; Vinish.Dev<\/title>\n<meta name=\"description\" content=\"Learn how to use WEB.SHOW_DOCUMENT in Oracle Forms to open URLs, reports, and files directly in a browser window.\" \/>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/vinish.dev\/web-show_document-in-oracle-forms\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Opening URLs with WEB.SHOW_DOCUMENT in Oracle Forms &#8226; Vinish.Dev\" \/>\n<meta property=\"og:description\" content=\"Learn how to use WEB.SHOW_DOCUMENT in Oracle Forms to open URLs, reports, and files directly in a browser window.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/vinish.dev\/web-show_document-in-oracle-forms\" \/>\n<meta property=\"og:site_name\" content=\"Vinish.Dev\" \/>\n<meta property=\"article:publisher\" content=\"https:\/\/www.facebook.com\/foxinfotech2014\" \/>\n<meta property=\"article:published_time\" content=\"2025-08-21T04:10:46+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2025-08-21T04:10:47+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/vinish.dev\/wp-content\/uploads\/2024\/09\/homepage-vinish.dev_.png\" \/>\n\t<meta property=\"og:image:width\" content=\"1200\" \/>\n\t<meta property=\"og:image:height\" content=\"693\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/png\" \/>\n<meta name=\"author\" content=\"Vinish Kapoor\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:creator\" content=\"@https:\/\/x.com\/vinish_kapoor\" \/>\n<meta name=\"twitter:site\" content=\"@foxinfotech\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"Vinish Kapoor\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"3 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\\\/\\\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\\\/\\\/vinish.dev\\\/web-show_document-in-oracle-forms#article\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/vinish.dev\\\/web-show_document-in-oracle-forms\"},\"author\":{\"name\":\"Vinish Kapoor\",\"@id\":\"https:\\\/\\\/vinish.dev\\\/#\\\/schema\\\/person\\\/a7790479716d2a54131ca873f8483d3f\"},\"headline\":\"Opening URLs with WEB.SHOW_DOCUMENT in Oracle Forms\",\"datePublished\":\"2025-08-21T04:10:46+00:00\",\"dateModified\":\"2025-08-21T04:10:47+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/vinish.dev\\\/web-show_document-in-oracle-forms\"},\"wordCount\":603,\"commentCount\":0,\"publisher\":{\"@id\":\"https:\\\/\\\/vinish.dev\\\/#\\\/schema\\\/person\\\/df5e5ca816f6f4302efc03cf58dc97b4\"},\"articleSection\":[\"Oracle Forms\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\\\/\\\/vinish.dev\\\/web-show_document-in-oracle-forms#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/vinish.dev\\\/web-show_document-in-oracle-forms\",\"url\":\"https:\\\/\\\/vinish.dev\\\/web-show_document-in-oracle-forms\",\"name\":\"Opening URLs with WEB.SHOW_DOCUMENT in Oracle Forms &#8226; Vinish.Dev\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/vinish.dev\\\/#website\"},\"datePublished\":\"2025-08-21T04:10:46+00:00\",\"dateModified\":\"2025-08-21T04:10:47+00:00\",\"description\":\"Learn how to use WEB.SHOW_DOCUMENT in Oracle Forms to open URLs, reports, and files directly in a browser window.\",\"breadcrumb\":{\"@id\":\"https:\\\/\\\/vinish.dev\\\/web-show_document-in-oracle-forms#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/vinish.dev\\\/web-show_document-in-oracle-forms\"]}]},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/vinish.dev\\\/web-show_document-in-oracle-forms#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\\\/\\\/vinish.dev\\\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Oracle Forms\",\"item\":\"https:\\\/\\\/vinish.dev\\\/category\\\/oracle-forms\"},{\"@type\":\"ListItem\",\"position\":3,\"name\":\"Opening URLs with WEB.SHOW_DOCUMENT in Oracle Forms\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\\\/\\\/vinish.dev\\\/#website\",\"url\":\"https:\\\/\\\/vinish.dev\\\/\",\"name\":\"Vinish.Dev\",\"description\":\"Vinish Kapoor&#039;s Blog: Best Oracle Blog for Developers\",\"publisher\":{\"@id\":\"https:\\\/\\\/vinish.dev\\\/#\\\/schema\\\/person\\\/df5e5ca816f6f4302efc03cf58dc97b4\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\\\/\\\/vinish.dev\\\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":[\"Person\",\"Organization\"],\"@id\":\"https:\\\/\\\/vinish.dev\\\/#\\\/schema\\\/person\\\/df5e5ca816f6f4302efc03cf58dc97b4\",\"name\":\"Vinish Kapoor\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/vinish.dev\\\/wp-content\\\/uploads\\\/2023\\\/12\\\/vinishprofile.png\",\"url\":\"https:\\\/\\\/vinish.dev\\\/wp-content\\\/uploads\\\/2023\\\/12\\\/vinishprofile.png\",\"contentUrl\":\"https:\\\/\\\/vinish.dev\\\/wp-content\\\/uploads\\\/2023\\\/12\\\/vinishprofile.png\",\"width\":192,\"height\":192,\"caption\":\"Vinish Kapoor\"},\"logo\":{\"@id\":\"https:\\\/\\\/vinish.dev\\\/wp-content\\\/uploads\\\/2023\\\/12\\\/vinishprofile.png\"},\"description\":\"Vinish Kapoor is a seasoned software development professional and a fervent enthusiast of artificial intelligence (AI). His impressive career spans over 25+ years, marked by a relentless pursuit of innovation and excellence in the field of information technology. As an Oracle ACE, Vinish has distinguished himself as a leading expert in Oracle technologies, a title awarded to individuals who have demonstrated their deep commitment, leadership, and expertise in the Oracle community.\",\"sameAs\":[\"https:\\\/\\\/vinish.dev\\\/\",\"https:\\\/\\\/www.facebook.com\\\/foxinfotech2014\",\"https:\\\/\\\/www.linkedin.com\\\/in\\\/vinish-kapoor\\\/\",\"https:\\\/\\\/x.com\\\/foxinfotech\"]},{\"@type\":\"Person\",\"@id\":\"https:\\\/\\\/vinish.dev\\\/#\\\/schema\\\/person\\\/a7790479716d2a54131ca873f8483d3f\",\"name\":\"Vinish Kapoor\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/a67232caa79b11f24f16c371866a96cfb575e011ebda6fa6e3d088a837a31bde?s=96&d=identicon&r=g\",\"url\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/a67232caa79b11f24f16c371866a96cfb575e011ebda6fa6e3d088a837a31bde?s=96&d=identicon&r=g\",\"contentUrl\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/a67232caa79b11f24f16c371866a96cfb575e011ebda6fa6e3d088a837a31bde?s=96&d=identicon&r=g\",\"caption\":\"Vinish Kapoor\"},\"description\":\"Vinish Kapoor is a seasoned software development professional and a fervent enthusiast of artificial intelligence (AI). His impressive career spans over 25+ years, marked by a relentless pursuit of innovation and excellence in the field of information technology. As an Oracle ACE, Vinish has distinguished himself as a leading expert in Oracle technologies, a title awarded to individuals who have demonstrated their deep commitment, leadership, and expertise in the Oracle community.\",\"sameAs\":[\"https:\\\/\\\/vinish.dev\\\/\",\"https:\\\/\\\/www.linkedin.com\\\/in\\\/vinish-kapoor\\\/\",\"https:\\\/\\\/x.com\\\/https:\\\/\\\/x.com\\\/vinish_kapoor\"]}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"Opening URLs with WEB.SHOW_DOCUMENT in Oracle Forms &#8226; Vinish.Dev","description":"Learn how to use WEB.SHOW_DOCUMENT in Oracle Forms to open URLs, reports, and files directly in a browser window.","robots":{"index":"index","follow":"follow","max-snippet":"max-snippet:-1","max-image-preview":"max-image-preview:large","max-video-preview":"max-video-preview:-1"},"canonical":"https:\/\/vinish.dev\/web-show_document-in-oracle-forms","og_locale":"en_US","og_type":"article","og_title":"Opening URLs with WEB.SHOW_DOCUMENT in Oracle Forms &#8226; Vinish.Dev","og_description":"Learn how to use WEB.SHOW_DOCUMENT in Oracle Forms to open URLs, reports, and files directly in a browser window.","og_url":"https:\/\/vinish.dev\/web-show_document-in-oracle-forms","og_site_name":"Vinish.Dev","article_publisher":"https:\/\/www.facebook.com\/foxinfotech2014","article_published_time":"2025-08-21T04:10:46+00:00","article_modified_time":"2025-08-21T04:10:47+00:00","og_image":[{"width":1200,"height":693,"url":"https:\/\/vinish.dev\/wp-content\/uploads\/2024\/09\/homepage-vinish.dev_.png","type":"image\/png"}],"author":"Vinish Kapoor","twitter_card":"summary_large_image","twitter_creator":"@https:\/\/x.com\/vinish_kapoor","twitter_site":"@foxinfotech","twitter_misc":{"Written by":"Vinish Kapoor","Est. reading time":"3 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/vinish.dev\/web-show_document-in-oracle-forms#article","isPartOf":{"@id":"https:\/\/vinish.dev\/web-show_document-in-oracle-forms"},"author":{"name":"Vinish Kapoor","@id":"https:\/\/vinish.dev\/#\/schema\/person\/a7790479716d2a54131ca873f8483d3f"},"headline":"Opening URLs with WEB.SHOW_DOCUMENT in Oracle Forms","datePublished":"2025-08-21T04:10:46+00:00","dateModified":"2025-08-21T04:10:47+00:00","mainEntityOfPage":{"@id":"https:\/\/vinish.dev\/web-show_document-in-oracle-forms"},"wordCount":603,"commentCount":0,"publisher":{"@id":"https:\/\/vinish.dev\/#\/schema\/person\/df5e5ca816f6f4302efc03cf58dc97b4"},"articleSection":["Oracle Forms"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/vinish.dev\/web-show_document-in-oracle-forms#respond"]}]},{"@type":"WebPage","@id":"https:\/\/vinish.dev\/web-show_document-in-oracle-forms","url":"https:\/\/vinish.dev\/web-show_document-in-oracle-forms","name":"Opening URLs with WEB.SHOW_DOCUMENT in Oracle Forms &#8226; Vinish.Dev","isPartOf":{"@id":"https:\/\/vinish.dev\/#website"},"datePublished":"2025-08-21T04:10:46+00:00","dateModified":"2025-08-21T04:10:47+00:00","description":"Learn how to use WEB.SHOW_DOCUMENT in Oracle Forms to open URLs, reports, and files directly in a browser window.","breadcrumb":{"@id":"https:\/\/vinish.dev\/web-show_document-in-oracle-forms#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/vinish.dev\/web-show_document-in-oracle-forms"]}]},{"@type":"BreadcrumbList","@id":"https:\/\/vinish.dev\/web-show_document-in-oracle-forms#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/vinish.dev\/"},{"@type":"ListItem","position":2,"name":"Oracle Forms","item":"https:\/\/vinish.dev\/category\/oracle-forms"},{"@type":"ListItem","position":3,"name":"Opening URLs with WEB.SHOW_DOCUMENT in Oracle Forms"}]},{"@type":"WebSite","@id":"https:\/\/vinish.dev\/#website","url":"https:\/\/vinish.dev\/","name":"Vinish.Dev","description":"Vinish Kapoor&#039;s Blog: Best Oracle Blog for Developers","publisher":{"@id":"https:\/\/vinish.dev\/#\/schema\/person\/df5e5ca816f6f4302efc03cf58dc97b4"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/vinish.dev\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":["Person","Organization"],"@id":"https:\/\/vinish.dev\/#\/schema\/person\/df5e5ca816f6f4302efc03cf58dc97b4","name":"Vinish Kapoor","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/vinish.dev\/wp-content\/uploads\/2023\/12\/vinishprofile.png","url":"https:\/\/vinish.dev\/wp-content\/uploads\/2023\/12\/vinishprofile.png","contentUrl":"https:\/\/vinish.dev\/wp-content\/uploads\/2023\/12\/vinishprofile.png","width":192,"height":192,"caption":"Vinish Kapoor"},"logo":{"@id":"https:\/\/vinish.dev\/wp-content\/uploads\/2023\/12\/vinishprofile.png"},"description":"Vinish Kapoor is a seasoned software development professional and a fervent enthusiast of artificial intelligence (AI). His impressive career spans over 25+ years, marked by a relentless pursuit of innovation and excellence in the field of information technology. As an Oracle ACE, Vinish has distinguished himself as a leading expert in Oracle technologies, a title awarded to individuals who have demonstrated their deep commitment, leadership, and expertise in the Oracle community.","sameAs":["https:\/\/vinish.dev\/","https:\/\/www.facebook.com\/foxinfotech2014","https:\/\/www.linkedin.com\/in\/vinish-kapoor\/","https:\/\/x.com\/foxinfotech"]},{"@type":"Person","@id":"https:\/\/vinish.dev\/#\/schema\/person\/a7790479716d2a54131ca873f8483d3f","name":"Vinish Kapoor","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/secure.gravatar.com\/avatar\/a67232caa79b11f24f16c371866a96cfb575e011ebda6fa6e3d088a837a31bde?s=96&d=identicon&r=g","url":"https:\/\/secure.gravatar.com\/avatar\/a67232caa79b11f24f16c371866a96cfb575e011ebda6fa6e3d088a837a31bde?s=96&d=identicon&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/a67232caa79b11f24f16c371866a96cfb575e011ebda6fa6e3d088a837a31bde?s=96&d=identicon&r=g","caption":"Vinish Kapoor"},"description":"Vinish Kapoor is a seasoned software development professional and a fervent enthusiast of artificial intelligence (AI). His impressive career spans over 25+ years, marked by a relentless pursuit of innovation and excellence in the field of information technology. As an Oracle ACE, Vinish has distinguished himself as a leading expert in Oracle technologies, a title awarded to individuals who have demonstrated their deep commitment, leadership, and expertise in the Oracle community.","sameAs":["https:\/\/vinish.dev\/","https:\/\/www.linkedin.com\/in\/vinish-kapoor\/","https:\/\/x.com\/https:\/\/x.com\/vinish_kapoor"]}]}},"_links":{"self":[{"href":"https:\/\/vinish.dev\/wp-json\/wp\/v2\/posts\/19605","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/vinish.dev\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/vinish.dev\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/vinish.dev\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/vinish.dev\/wp-json\/wp\/v2\/comments?post=19605"}],"version-history":[{"count":1,"href":"https:\/\/vinish.dev\/wp-json\/wp\/v2\/posts\/19605\/revisions"}],"predecessor-version":[{"id":19606,"href":"https:\/\/vinish.dev\/wp-json\/wp\/v2\/posts\/19605\/revisions\/19606"}],"wp:attachment":[{"href":"https:\/\/vinish.dev\/wp-json\/wp\/v2\/media?parent=19605"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/vinish.dev\/wp-json\/wp\/v2\/categories?post=19605"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/vinish.dev\/wp-json\/wp\/v2\/tags?post=19605"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}