{"id":2725,"date":"2011-09-17T10:03:48","date_gmt":"2011-09-17T14:03:48","guid":{"rendered":"http:\/\/onlineappsdba.com\/index.php\/2011\/09\/17\/popup-the-system-logged-user-name-in-login-page-textbox-while-accessing-the-sso-appliction\/"},"modified":"2011-09-17T10:11:17","modified_gmt":"2011-09-17T14:11:17","slug":"popup-the-system-logged-user-name-in-login-page-textbox-while-accessing-the-sso-appliction","status":"publish","type":"post","link":"https:\/\/onlineappsdba.com\/index.php\/2011\/09\/17\/popup-the-system-logged-user-name-in-login-page-textbox-while-accessing-the-sso-appliction\/","title":{"rendered":"Popup the system logged user name in login page textbox while accessing the sso application"},"content":{"rendered":"<p><font face=\"Calibri\">In this post I like to cover\u00a0how to get the system logged user name and how to display the\u00a0user name in textbox(in login page)\u00a0while accessing the application.<\/font><\/p>\n<p><font face=\"Calibri\"><strong>Problem Description<\/strong>:<\/font><\/p>\n<p><font face=\"Calibri\">The architecture has OAS 10.1.4.3, OAM 10.1.4.3, OID version is 10.1.4.3, and Active server. OID is using for SSO user\u2019s store. Active server is using for client user\u2019s store. \u00a0System login user\u2018s id will be same as SSO application login user\u2019s\u00a0 name.<\/font><\/p>\n<p><font face=\"Calibri\">The requirement is to get the system logged user name and display in the ltextbox( in login page) while accessing the application.<\/font><\/p>\n<p><font face=\"Calibri\"><strong>Solution is here<\/strong>,<\/font><\/p>\n<p><font face=\"Calibri\">1.<\/font>\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0 <font face=\"Calibri\">Take the login page backup before modified the page if it\u2019s required.<\/font><\/p>\n<p><font face=\"Calibri\">2.<\/font>\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0 <font face=\"Calibri\">Add the below function in your script<\/font><\/p>\n<p><font face=\"Calibri\">\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0 &lt;script type=&#8221;text\/javascript&#8221;&gt;<\/font><\/p>\n<p><font face=\"Calibri\">\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0 function yourOS() {\u00a0<\/font><\/p>\n<p><font face=\"Calibri\">\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0 \u00a0var oShell=new ActiveXObject(&#8220;WScript.Shell&#8221;)<\/font><\/p>\n<p><font face=\"Calibri\">\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0un=oShell.ExpandEnvironmentStrings(&#8220;%USERNAME%&#8221;)<\/font><\/p>\n<p><font face=\"Calibri\">\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0 domain=oShell.ExpandEnvironmentStrings(&#8220;%USERDOMAIN%&#8221;)\u00a0<\/font><\/p>\n<p><font face=\"Calibri\">\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0document.<strong>form1<\/strong>.<strong>username<\/strong>.value=un<\/font><\/p>\n<p><font face=\"Calibri\">\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0 document.<strong>form1<\/strong>.<strong>username<\/strong>.disabled=true<\/font><\/p>\n<p><font face=\"Calibri\">\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0 return un\u00a0<\/font><\/p>\n<p><font face=\"Calibri\">\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0}&lt;\/script&gt;\u00a0<\/font><\/p>\n<p><font face=\"Calibri\"><strong>Note<\/strong>: The above function will get the system user\u00a0name and it&#8217;s display in the user name textbox.<\/font><\/p>\n<p><font face=\"Calibri\">3.<\/font>\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0 <font face=\"Calibri\">Calls the above function by onload method. <\/font><\/p>\n<p><font face=\"Calibri\">\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0 &lt;body onload=&#8221;yourOS()&#8221;&gt;<\/font><\/p>\n<p><font face=\"Calibri\">\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0 &lt;form id=&#8221;form1&#8243; name=&#8221;<strong>form1<\/strong>&#8220;&gt;<\/font><\/p>\n<p><font face=\"Calibri\">\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0 USER NAME:&lt;input type=&#8221;text&#8221; name=&#8221;text1&#8243; id=&#8221;<strong>username<\/strong>&#8220;&gt;<\/font><\/p>\n<p><font face=\"Calibri\">\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0&lt;br&gt;PASSWORD: &lt;input type=&#8221;password&#8221; name=&#8221;text1&#8243; id=&#8221;pwd&#8221;&gt;\u00a0&lt;br&gt;<\/font><\/p>\n<p><font face=\"Calibri\">\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0 &lt;br&gt;&lt;input type=&#8221;submit&#8221; name=&#8221;text1&#8243; id=&#8221;submit&#8221; value=&#8221;submit&#8221;&gt;<\/font><\/p>\n<p><font face=\"Calibri\">\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0 &lt;\/form&gt;&lt;\/body&gt;<\/font><\/p>\n<p><font face=\"Calibri\">4.<\/font>\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0 <font face=\"Calibri\">Save the page.<\/font><\/p>\n<p><font face=\"Calibri\">5.<\/font>\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0 <font face=\"Calibri\">Restart the HTTP server if required.<\/font><\/p>\n<p><font face=\"Calibri\">6.<\/font>\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0 <font face=\"Calibri\">Test the process.<\/font><\/p>\n<p><font face=\"Calibri\">I hope this post will help you <\/font><\/p>\n","protected":false},"excerpt":{"rendered":"<p>In this post I like to cover\u00a0how to get the system logged user name and how to display the\u00a0user name [&hellip;]<\/p>\n","protected":false},"author":115,"featured_media":0,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"site-sidebar-layout":"default","site-content-layout":"","ast-site-content-layout":"default","site-content-style":"default","site-sidebar-style":"default","ast-global-header-display":"","ast-banner-title-visibility":"","ast-main-header-display":"","ast-hfb-above-header-display":"","ast-hfb-below-header-display":"","ast-hfb-mobile-header-display":"","site-post-title":"","ast-breadcrumbs-content":"","ast-featured-img":"","footer-sml-layout":"","theme-transparent-header-meta":"","adv-header-id-meta":"","stick-header-meta":"","header-above-stick-meta":"","header-main-stick-meta":"","header-below-stick-meta":"","astra-migrate-meta-layouts":"default","ast-page-background-enabled":"default","ast-page-background-meta":{"desktop":{"background-color":"var(--ast-global-color-5)","background-image":"","background-repeat":"repeat","background-position":"center center","background-size":"auto","background-attachment":"scroll","background-type":"","background-media":"","overlay-type":"","overlay-color":"","overlay-opacity":"","overlay-gradient":""},"tablet":{"background-color":"","background-image":"","background-repeat":"repeat","background-position":"center center","background-size":"auto","background-attachment":"scroll","background-type":"","background-media":"","overlay-type":"","overlay-color":"","overlay-opacity":"","overlay-gradient":""},"mobile":{"background-color":"","background-image":"","background-repeat":"repeat","background-position":"center center","background-size":"auto","background-attachment":"scroll","background-type":"","background-media":"","overlay-type":"","overlay-color":"","overlay-opacity":"","overlay-gradient":""}},"ast-content-background-meta":{"desktop":{"background-color":"var(--ast-global-color-4)","background-image":"","background-repeat":"repeat","background-position":"center center","background-size":"auto","background-attachment":"scroll","background-type":"","background-media":"","overlay-type":"","overlay-color":"","overlay-opacity":"","overlay-gradient":""},"tablet":{"background-color":"var(--ast-global-color-4)","background-image":"","background-repeat":"repeat","background-position":"center center","background-size":"auto","background-attachment":"scroll","background-type":"","background-media":"","overlay-type":"","overlay-color":"","overlay-opacity":"","overlay-gradient":""},"mobile":{"background-color":"var(--ast-global-color-4)","background-image":"","background-repeat":"repeat","background-position":"center center","background-size":"auto","background-attachment":"scroll","background-type":"","background-media":"","overlay-type":"","overlay-color":"","overlay-opacity":"","overlay-gradient":""}},"footnotes":""},"categories":[32,37,42],"tags":[],"class_list":["post-2725","post","type-post","status-publish","format-standard","hentry","category-others","category-security","category-troubleshooting"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v25.8 - https:\/\/yoast.com\/wordpress\/plugins\/seo\/ -->\n<title>Popup the system logged user name in login page textbox while accessing the sso application -<\/title>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/onlineappsdba.com\/index.php\/2011\/09\/17\/popup-the-system-logged-user-name-in-login-page-textbox-while-accessing-the-sso-appliction\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Popup the system logged user name in login page textbox while accessing the sso application -\" \/>\n<meta property=\"og:description\" content=\"In this post I like to cover\u00a0how to get the system logged user name and how to display the\u00a0user name [&hellip;]\" \/>\n<meta property=\"og:url\" content=\"https:\/\/onlineappsdba.com\/index.php\/2011\/09\/17\/popup-the-system-logged-user-name-in-login-page-textbox-while-accessing-the-sso-appliction\/\" \/>\n<meta property=\"article:published_time\" content=\"2011-09-17T14:03:48+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2011-09-17T14:11:17+00:00\" \/>\n<meta name=\"author\" content=\"Masroof Ahmad\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"Masroof Ahmad\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"1 minute\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\/\/schema.org\",\"@graph\":[{\"@type\":\"WebPage\",\"@id\":\"https:\/\/onlineappsdba.com\/index.php\/2011\/09\/17\/popup-the-system-logged-user-name-in-login-page-textbox-while-accessing-the-sso-appliction\/\",\"url\":\"https:\/\/onlineappsdba.com\/index.php\/2011\/09\/17\/popup-the-system-logged-user-name-in-login-page-textbox-while-accessing-the-sso-appliction\/\",\"name\":\"Popup the system logged user name in login page textbox while accessing the sso application -\",\"isPartOf\":{\"@id\":\"https:\/\/onlineappsdba.com\/#website\"},\"datePublished\":\"2011-09-17T14:03:48+00:00\",\"dateModified\":\"2011-09-17T14:11:17+00:00\",\"author\":{\"@id\":\"https:\/\/onlineappsdba.com\/#\/schema\/person\/909a876ed58d400faf82caf81d61bfdb\"},\"breadcrumb\":{\"@id\":\"https:\/\/onlineappsdba.com\/index.php\/2011\/09\/17\/popup-the-system-logged-user-name-in-login-page-textbox-while-accessing-the-sso-appliction\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/onlineappsdba.com\/index.php\/2011\/09\/17\/popup-the-system-logged-user-name-in-login-page-textbox-while-accessing-the-sso-appliction\/\"]}]},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/onlineappsdba.com\/index.php\/2011\/09\/17\/popup-the-system-logged-user-name-in-login-page-textbox-while-accessing-the-sso-appliction\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\/\/onlineappsdba.com\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Popup the system logged user name in login page textbox while accessing the sso application\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\/\/onlineappsdba.com\/#website\",\"url\":\"https:\/\/onlineappsdba.com\/\",\"name\":\"\",\"description\":\"Oracle Implementation &amp; Training Experts\",\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\/\/onlineappsdba.com\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Person\",\"@id\":\"https:\/\/onlineappsdba.com\/#\/schema\/person\/909a876ed58d400faf82caf81d61bfdb\",\"name\":\"Masroof Ahmad\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/onlineappsdba.com\/#\/schema\/person\/image\/\",\"url\":\"https:\/\/secure.gravatar.com\/avatar\/10f9db7bdbbd7f9ccfbe9b2d208e5978fc28315e9c704383e639a926ea0fce5f?s=96&d=mm&r=g\",\"contentUrl\":\"https:\/\/secure.gravatar.com\/avatar\/10f9db7bdbbd7f9ccfbe9b2d208e5978fc28315e9c704383e639a926ea0fce5f?s=96&d=mm&r=g\",\"caption\":\"Masroof Ahmad\"},\"url\":\"https:\/\/onlineappsdba.com\/index.php\/author\/masroof\/\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"Popup the system logged user name in login page textbox while accessing the sso application -","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:\/\/onlineappsdba.com\/index.php\/2011\/09\/17\/popup-the-system-logged-user-name-in-login-page-textbox-while-accessing-the-sso-appliction\/","og_locale":"en_US","og_type":"article","og_title":"Popup the system logged user name in login page textbox while accessing the sso application -","og_description":"In this post I like to cover\u00a0how to get the system logged user name and how to display the\u00a0user name [&hellip;]","og_url":"https:\/\/onlineappsdba.com\/index.php\/2011\/09\/17\/popup-the-system-logged-user-name-in-login-page-textbox-while-accessing-the-sso-appliction\/","article_published_time":"2011-09-17T14:03:48+00:00","article_modified_time":"2011-09-17T14:11:17+00:00","author":"Masroof Ahmad","twitter_card":"summary_large_image","twitter_misc":{"Written by":"Masroof Ahmad","Est. reading time":"1 minute"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"WebPage","@id":"https:\/\/onlineappsdba.com\/index.php\/2011\/09\/17\/popup-the-system-logged-user-name-in-login-page-textbox-while-accessing-the-sso-appliction\/","url":"https:\/\/onlineappsdba.com\/index.php\/2011\/09\/17\/popup-the-system-logged-user-name-in-login-page-textbox-while-accessing-the-sso-appliction\/","name":"Popup the system logged user name in login page textbox while accessing the sso application -","isPartOf":{"@id":"https:\/\/onlineappsdba.com\/#website"},"datePublished":"2011-09-17T14:03:48+00:00","dateModified":"2011-09-17T14:11:17+00:00","author":{"@id":"https:\/\/onlineappsdba.com\/#\/schema\/person\/909a876ed58d400faf82caf81d61bfdb"},"breadcrumb":{"@id":"https:\/\/onlineappsdba.com\/index.php\/2011\/09\/17\/popup-the-system-logged-user-name-in-login-page-textbox-while-accessing-the-sso-appliction\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/onlineappsdba.com\/index.php\/2011\/09\/17\/popup-the-system-logged-user-name-in-login-page-textbox-while-accessing-the-sso-appliction\/"]}]},{"@type":"BreadcrumbList","@id":"https:\/\/onlineappsdba.com\/index.php\/2011\/09\/17\/popup-the-system-logged-user-name-in-login-page-textbox-while-accessing-the-sso-appliction\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/onlineappsdba.com\/"},{"@type":"ListItem","position":2,"name":"Popup the system logged user name in login page textbox while accessing the sso application"}]},{"@type":"WebSite","@id":"https:\/\/onlineappsdba.com\/#website","url":"https:\/\/onlineappsdba.com\/","name":"","description":"Oracle Implementation &amp; Training Experts","potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/onlineappsdba.com\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Person","@id":"https:\/\/onlineappsdba.com\/#\/schema\/person\/909a876ed58d400faf82caf81d61bfdb","name":"Masroof Ahmad","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/onlineappsdba.com\/#\/schema\/person\/image\/","url":"https:\/\/secure.gravatar.com\/avatar\/10f9db7bdbbd7f9ccfbe9b2d208e5978fc28315e9c704383e639a926ea0fce5f?s=96&d=mm&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/10f9db7bdbbd7f9ccfbe9b2d208e5978fc28315e9c704383e639a926ea0fce5f?s=96&d=mm&r=g","caption":"Masroof Ahmad"},"url":"https:\/\/onlineappsdba.com\/index.php\/author\/masroof\/"}]}},"_links":{"self":[{"href":"https:\/\/onlineappsdba.com\/index.php\/wp-json\/wp\/v2\/posts\/2725","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/onlineappsdba.com\/index.php\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/onlineappsdba.com\/index.php\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/onlineappsdba.com\/index.php\/wp-json\/wp\/v2\/users\/115"}],"replies":[{"embeddable":true,"href":"https:\/\/onlineappsdba.com\/index.php\/wp-json\/wp\/v2\/comments?post=2725"}],"version-history":[{"count":0,"href":"https:\/\/onlineappsdba.com\/index.php\/wp-json\/wp\/v2\/posts\/2725\/revisions"}],"wp:attachment":[{"href":"https:\/\/onlineappsdba.com\/index.php\/wp-json\/wp\/v2\/media?parent=2725"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/onlineappsdba.com\/index.php\/wp-json\/wp\/v2\/categories?post=2725"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/onlineappsdba.com\/index.php\/wp-json\/wp\/v2\/tags?post=2725"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}