Configuring a static web page URL

  1. Sign in as Administrator.
  2. In Configuration Console, configure the LPL business object that contains the static HTML page.
  3. Locate the URL for the static HTML page. Use the URL that is displayed in the url is row.
    For example,
    Time Off Calendar is a Panel
    	url is
     	"<HROrganization.EmployeeCalendarURL>"
  4. Create a new derived user field on the HROrganization business class that defines a URL to the configurable ZIP file.
  5. Give the field a unique name.
  6. Set the Field Type to Text.
  7. Set the Definition.
    return <WEBAPP_BASE_URL> = 
    "/<WEBAPP>/html/CHP(<CHP>).<HTML_FILE>?dir1=<DIRECTORY>"
    • <WEBAPP_BASE_URL> is EmpBaseURL or MgrBaseURL. EmpBaseURL and MgrBaseURL contain the base URLs to the EmployeeSelfService and ManagerSelfService web apps for your HCM server.
    • <WEBAPP> is the name of the web app. The web app must match the role that the user is accessing the page from (EmployeeSelfService or ManagerSelfService). This role can be found from the URL on the browser address bar.
    • <CHP> is the name of the CHP record.
    • <HTML_FILE> is the name of the static HTML file without an extension.
    • <DIRECTORY> is the directory folder containing the HTML file inside the ZIP file.
    For example:
    return EmpBaseURL + "/EmployeeSelfService/html/CHP(CUSTOMCALENDAR).inforCalendar?dir1=pages"
    return MgrBaseURL + "/ManagerSelfService/html/CHP(CUSTOMCHART).mgrAbsenceChart?dir1=pages"
  8. Access the configuration for the LPL business object that contains the URL to the static HTML page.
  9. Update the URL to point to the derived user field that you created.
    For example,
    Time Off Calendar is a Panel
    	url is
     	"<HROrganization.CustomEmployeeCalendarURL"