This page (revision-50) was last changed on 26-Nov-2021 10:22 by kparrott

This page was created on 26-Nov-2021 10:22 by JEscott

Only authorized users are allowed to rename pages.

Only authorized users are allowed to delete pages.

Page revision history

Version Date Modified Size Author Changes ... Change note
50 26-Nov-2021 10:22 1 KB kparrott to previous HOW_DO_I_ADD_A_HEADER_OR_FOOTER_TO_A_SCREEN ==> HOW TO ADD A HEADER OR FOOTER TO A SCREEN
49 26-Nov-2021 10:22 1 KB jmyers to previous | to last
48 26-Nov-2021 10:22 3 KB jmyers to previous | to last
47 26-Nov-2021 10:22 4 KB jmyers to previous | to last
46 26-Nov-2021 10:22 5 KB jmyers to previous | to last
45 26-Nov-2021 10:22 5 KB jmyers to previous | to last
44 26-Nov-2021 10:22 6 KB jmyers to previous | to last
43 26-Nov-2021 10:22 7 KB jmyers to previous | to last
42 26-Nov-2021 10:22 9 KB jmyers to previous | to last
41 26-Nov-2021 10:22 10 KB jmyers to previous | to last

Page References

Incoming links Outgoing links

Version management

Difference between version and

At line 2 added 16 lines
----
*[How Do I Create a Function?|HOW_DO_I_CREATE_A_FUNCTION]
*[How Do I Copy/Extend a Function?|HOW_DO_I_COPY_OR_EXTEND_A_FUNCTION?]
*[How Do I Delete/Remove a Function?|HOW_DO_I_DELETE_OR_REMOVE_A_FUNCTION?]
*[How Do I Create a Form?|HOW_DO_I_CREATE_A_FORM?]
*[How Do I Copy a Form?|HOW_DO_I_COPY_A_FORM?]
*[How Do I Add a Header or Footer to a Screen?|HOW TO ADD A HEADER OR FOOTER TO A SCREEN]
*[How Do I Create a Menu?|HOW_DO_I_CREATE_A_MENU?]
*[How Do I Create a User Name?|HOW_DO_I_CREATE_A_USER_NAME?]
*[How Do I Set Up a Generic User or User Profile?|HOW_DO_I_SET_UP_A_GENERIC_USER_OR_USER_PROFILE?]
*[How Do I Create a Role?|HOW_DO_I_CREATE_A_ROLE?]
*[How Do I Assign a User to a Role?|HOW_DO_I_ASSIGN_A_USER_TO_A_ROLE?]
*[How Do I Assign a Role to a User?|HOW_DO_I_ASSIGN_A_ROLE_TO_A_USER?]
*[How Do I Change a Message to the User?|HOW_DO_I_CHANGE_A_MESSAGE_TO_THE_USER?]
*[How Do I Attach Assessments to the New Candidate Procedure?|HOW_DO_I_ATTACH_ASSESSMENTS_TO_THE_NEW_CANDIDATE_PROCEDURE?]
*[How Do I Allow New Candidates from the New Candidate Procedure? |HOW_DO_I_ALLOW_NEW_CANDIDATES_FROM_THE_NEW_CANDIDATE_PROCEDURE?]
At line 3 changed 112 lines
!!Web Site Administrator Questions
!Q:HOW DO I CREATE A FUNCTION?
A:When you create a function, you will actually need to complete two processes. You will first create the function and then attach that function to a screen.
Only external and manual functions may be created. (i.e. creating a link to your company’s web site.) All other functions are only created either by High Line or under High Line’s direction. You may, however, copy an existing function in order to modify the form.
;Create a Function:
# Access the Maintain Function form through the Web Site Administrator main menu or through the Navigation tree. You will be presented with a list of functions.
# Click the Add icon found at the bottom of this list. A blank row will now appear in the list.
# Ensure your cursor is on this row. Directly beneath the list are fields that allow you to define the function you wish to enter.
# Enter the Product to which the function belongs. e.g. BE
# In the appropriate fields, enter the function’s
## Name,
## Description,
## Usage (User Defined),
## Type (External or Manual), and
## Purpose.
# Enter either the URL in the Web Address field or the external function path in PL/SQL Block field.
# Define the general execution rights for this function through the Create Allowed, Retrieve Allowed, Update Allowed and Delete Allowed booleans. Normally, external functions are Retrieve Allowed only.
# Define the execution rights to this function for a specific role in the Execution Rights tab at the bottom of this form.
# Once you are satisfied with the data you have provided, Save the file.
;Attach Function to Form:
The new function must be attached to a form in order to be accessed.
# Access the Create Menus form either through the Web Site Administrator main menu or through the Navigation tree.
# Select the menu you wish to add the new function to.
# Click the Add icon found at the bottom of the list of the menu’s functions and sub-menus; Located below the Menu Code and Menu Usage. A blank row will now appear in the list.
# Ensure your cursor is on that row.
# Identify the menu items (functions or menus) that will compose your menu and the order in which they should appear through the Sequence, Code and Type fields.
# Enter the name of the new function in the Call Function field
# Complete the Label field and if desired, the Icon Name field.
# Set the Menu Action Usage to User Defined. This must be completed as stated.
# When you are satisfied with the data you have provided, click the Save button.
!Q:HOW DO I COPY/EXTEND A FUNCTION?
A:Copying a function is referred to as ‘extending’. This is due to the fact that when a function is copied, the form attached to the function is also copied.
Functions should only be copied if you wish to make changes to the form attached to the function. (For example, customizing the Employee Time sheet ([WEPTS]) to your company’s time codes.)
# Access the Maintain Function form through the Web Site Administrator main menu, or through the Navigation tree. You will be presented with a list of functions.
# Select the function you wish to extend.
# Click on Extend Form button located directly beneath the execution rights booleans on the right side of the form.
# Find the original function. You will see that you have a new function with CPY added to the original function. In addition, the usage field on the function as well as the form for the function in [IMFD] have been marked as User Defined.
# Go to the Function Name and rename the new function to something more meaningful. i.e. WEPTS CPY can be renamed WEPTS_HL
If you copy/extend a function you should go to [IMMS] and copy the ‘_FIND’ code as well. i.e. You copy WAPPT and call it WAPPT_HL. Copy the WAPPT_FIND and call it WAPPT_HL_FIND.
!Q:HOW DO I DELETE/REMOVE A FUNCTION?
A:Only functions that you created yourself should be removed. NEVER remove a High Line ‘Pre-loaded’ function.
# Access the Maintain Function form through the Web Site Administrator main menu, or through the Navigation tree. You will be presented with a list of functions.
# Select the function you wish to remove.
# If not already marked as such, change the Function Usage to User Defined.
# Save the file.
# Re-select the function you wish to remove.
# Click the Remove icon within the function.
!Q:HOW DO I CREATE A FORM?
A: You are restricted from creating new forms. All forms are created by High Line or under High Line’s direction. You may, however, copy an existing function in order to modify the form - see How Do I Copy a Function?.
!Q:HOW DO I COPY A FORM?
A:You are restricted from copying new forms. You may, however, copy an existing function in order to modify the form - see How Do I Copy a Function?.
!Q: HOW DO I ADD A HEADER OR FOOTER TO A SCREEN?
A: Although headers and footers appear on the form, they are set up at the Function level.
# Access the Maintain Function form through the Web Site Administrator main menu, or through the Navigation tree. You will be presented with a list of functions.
# Select the function to which you wish to add the Header and/or Footer.
# Click on the Preferences tab.
# Click the Add icon found at the bottom of the list of functions.
# Enter a Seq. number. We recommend using numbers increased by increments of ten. (e.g. 10, 20, 30, etc.)
# Enter in the Preference; HEADER INFO or FOOTER INFO.
# Enter the location of the html or jsp file in the Value field i.e. docs/WEDPN_Header.html
# Save the file.
High Line has created various sample screen headers and footers throughout Self Service. These headers and footers are either HTML or JSP files which are saved in the "docs" folder under selfService on your 9ias server.
The headers and footers provided can be edited to your requirements. It is recommended, however, that you follow High Line's naming conventions for these files.
;Header:
Each header is named as follows:
FUNCTION_Header.html or FUNCTION_Header.jsp, where FUNCTION is the name of the function to which you will be applying this header (e.g. WEEPP_Header.html).
;Footer:
Each footer is named as follows:
FUNCTION_Footer.html or FUNCTION_Footer.jsp, where FUNCTION is the name of the function to which you will be applying this footer (e.g. WEEP_Footer.html).
A header and/or footer will only appear on a screen if the Header Info and/or Footer Info preferences have been properly setup via the Maintain Functions ([IMFN]) screen in Self Service Administration module to call the appropriate HTML or JSP document
from the "docs" directory.
Whenever Self Service software updates are provided by High Line that all of the documents in the "docs" folder will be overwritten. To avoid losing any newly created documents or changes made to the delivered documents, we recommend that you keep
a master copy of ALL required headers and footers outside of the server environment.
!Q: HOW DO I CREATE A MENU?
A:
# Access the Create Menus form through the Web Site Administrator main menu, or through the Navigation tree. You will be presented with a list of menus.
# Click the Add icon found at the bottom of this list. A blank row will now appear in the list.
# Ensure your cursor is on that row. Directly beneath the list, there are a series of fields allowing you to define the new menu.
# Fill in the name of the menu in the Menu Code field.
# Complete the Sequence, Code and Type fields to identify the menu items (functions or menus) that will compose your menu and the order in which they should appear.
# Complete either the Call Function or Call Menu field for each menu item. A menu item may only call either a function or a menu, so you will fill in only one of these two fields.
# Complete the Label field and if desired, the Icon Name field.
# Set the Menu Action Usage must be User Defined. This must be completed.
# Once you are satisfied with the data you have provided, click the Save button.
!Q:HOW DO I CREATE A USER NAME?
A:
# Access the Create User (IMUS) form through the Web Site Administrator main menu, or through the Navigation tree. You will be presented with a list of users.
# Click the Add icon found at the bottom of this list. A blank row will now appear in the list;
# A ensure your cursor is on that row. Directly beneath the list are the fields that allow you to define the user you wish to enter.
# Enter the user’s ID/Name and Description in the appropriate fields.
# If the user should have access for a limited time period, you may define that time period through the Start Date and End Date fields.
# You may provide an Email Address and Password in the appropriate fields
# Define the general execution rights for this user through the Create Allowed, Retrieve Allowed, Update Allowed and Delete Allowed booleans.
# Define execution rights to a specific function for this user through the Execution Rights tab at the bottom of the form.
# At this point you may also define the role’s Preferences and assign Roles.
# Once you are satisfied with the data you have provided, click the Save button.
----
![Notes|Edit:Internal.FAQ-WSA]
[{InsertPage page='Internal.FAQ-WSA' default='Click to create a new notes page'}]