The default greeting for a user’s default (home) page is “Welcome ” followed by the display name of the page. If you customize the page banner to change the greeting or to define a greeting image, you suppress the default greeting. Adding a welcome component to the banner is planned for a future release. In the meantime, you can create a dynamic page that displays a greeting. You won’t be able to put the greeting in the banner, but you can add the dynamic page as a portlet at an appropriate place on the page. Here’s some sample code for a dynamic page to get you started: Welcome User declare theUser varchar2(30) := portal30.WWCTX_API.get_user; begin if theUser = ‘PUBLIC’ then htp.p(‘Welcome! Please login.
‘); else htp.p(‘Welcome ‘ || theUser || ‘
‘); end if; exception when portal30.WWCTX_API.NO_SESSION_EXCEPTION then htp.p(‘Error: Session not initiated.’); when others then null; end;