-- *******************************************************
--
-- Changes to the report package show_tabpage procedure
--
-- *******************************************************
--
1. Change spec and body signatures:
   p_banner IN BOOLEAN DEFAULT TRUE,

   to:
   p_banner IN BOOLEAN DEFAULT FALSE,

2. Comment out call to:

   rwfindbx.draw_porlet_pf_buttons ('TOP')
   and
   rwfindbx.draw_tabs
   and
   rwfindbx.draw_porlet_pf_buttons ('BOTTOM')

3. Add your own buttons, after comment out of 'TOP' buttons in 5 above
   HTP.p('<center><h3 class="OraHeaderSub">Employees</h3></center>');
   HTP.p(
      '<FORM ACTION="OASASREP.RPT_EMPLOYEES.show_tabpage" METHOD="POST" NAME="schedule">');
   HTP.p('<INPUT TYPE="hidden" NAME="p_action" VALUE="">');
   HTP.p(
         '<INPUT TYPE="hidden" NAME="p_page_url" VALUE="OASASREP.RPT_EMPLOYEES' ||
      '.show_tabpage?p_sitename=OASAS_APPS&p_item_link=1&p_new_window=1=OASASREP.RPT_EMPLOYEES' ||
      '.show_tabpage%3Fp_sitename%3DOASAS_APPS%26p_item_link%3D1%26p_new_window%3D1">');
   HTP.p(
      '<INPUT TYPE="hidden" NAME="p_back_page_url" VALUE=' ||
      l_back_page_url || '>');


-- ************************************************************
--
-- Changes to the report package show_parms_internal procedure
--
-- ************************************************************
--
1. after series of htp.p calls, comment out:

   if p_show_checkbox='YES' then

   as well as the end if for that block

   This removes the top Oracle banner and Builder and Navigator links.

2. Customize prompts using HTML tags. The following places a hint of "(mm/dd/yyyy)" under the prompt.

   l_parm_prompts(10) := 'Hire Date From: <br><font color=#3366CC size="-1">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; (mm/dd/yyyy)</font>';

   Hint: Examine HTML created in generated page to see the structure.

   You can also embed these in the prompt text in the Edit page in Portal.
   See additional HTML formatting in the HTML source for magic_providers.html and demo_shuttle.html

3. End of the same procedure, comment out:

   if p_show_checkbox='YES' then 

   and its end if;

   This removes the Oracle footer.

-- ************************************************************
--
-- Other changes
--
-- ************************************************************
--
1. Add buttons to your template (see example in industrial_template_buttons.txt)

  <TD><INPUT TYPE="button" NAME="p_request" VALUE="Run" onClick="save('OK')"></TD>
  <TD><INPUT TYPE="button" NAME="p_request" VALUE="Cancel" onClick="javascript:self.close();"></TD>




