CREATE OR REPLACE PACKAGE EFT_NOM.WSGLM IS -- -- Header Information -- g_header CONSTANT VARCHAR2(160) := '$Header: /Isle Of Grain/database/PLSQL/WSGLM.pck 1 7/01/05 12:55 Gilberta $'; g_revision CONSTANT VARCHAR2(160) := '$Revision: 1 $'; -- /************************************************************************ ** Caption: The text forms the caption/prompt for an item ** (1-100) ************************************************************************/ -- The text displayed in radio groups and lists which represents a null value -- in an optional column based on a domain. -- CAP001_UNKNOWN constant varchar2(100) := 'Unknown'; FUNCTION CAP001_UNKNOWN RETURN VARCHAR; -- The text used in link to an insert form.

is replaced by the zone -- caption -- CAP002_ADD_LINK constant varchar2(100) := 'Add new

record'; FUNCTION CAP002_ADD_LINK RETURN VARCHAR; -- Query Form: Default Caption for Find Button -- CAP003_QF_FIND constant varchar2(100) := 'Find'; FUNCTION CAP003_QF_FIND RETURN VARCHAR; -- Query Form: Default Caption for Clear Button -- CAP004_QF_CLEAR constant varchar2(100) := 'Clear'; FUNCTION CAP004_QF_CLEAR RETURN VARCHAR; -- View Form: Default Caption for ReQuery Button -- CAP005_VF_REQUERY constant varchar2(100) := 'ReQuery'; FUNCTION CAP005_VF_REQUERY RETURN VARCHAR; -- View Form: Default Caption for Update Button -- CAP006_VF_UPDATE constant varchar2(100) := 'Update'; FUNCTION CAP006_VF_UPDATE RETURN VARCHAR; -- View Form: Default Caption for Delete Button -- CAP007_VF_DELETE constant varchar2(100) := 'Delete'; FUNCTION CAP007_VF_DELETE RETURN VARCHAR; -- View Form: Default Caption for Revert Button -- CAP008_VF_REVERT constant varchar2(100) := 'Revert'; FUNCTION CAP008_VF_REVERT RETURN VARCHAR; -- Insert Form: Default Caption for Insert Button -- CAP009_IF_INSERT constant varchar2(100) := 'Insert'; FUNCTION CAP009_IF_INSERT RETURN VARCHAR; -- Insert Form: Default Caption for Clear Button -- CAP010_IF_CLEAR constant varchar2(100) := 'Clear'; FUNCTION CAP010_IF_CLEAR RETURN VARCHAR; -- Record List: Default Caption for Next Button -- CAP011_RL_NEXT constant varchar2(100) := 'Next'; FUNCTION CAP011_RL_NEXT RETURN VARCHAR; -- Record List: Default Caption for Previous Button -- CAP012_RL_PREVIOUS constant varchar2(100) := 'Previous'; FUNCTION CAP012_RL_PREVIOUS RETURN VARCHAR; -- Record List: Default Caption for First Button -- CAP013_RL_FIRST constant varchar2(100) := 'First'; FUNCTION CAP013_RL_FIRST RETURN VARCHAR; -- Record List: Default Caption for Last Button -- CAP014_RL_LAST constant varchar2(100) := 'Last'; FUNCTION CAP014_RL_LAST RETURN VARCHAR; -- Record List: Default Caption for Count Button -- CAP015_RL_COUNT constant varchar2(100) := 'Count'; FUNCTION CAP015_RL_COUNT RETURN VARCHAR; -- Record List: Default Caption for ReQuery Button -- CAP016_RL_REQUERY constant varchar2(100) := 'ReQuery'; FUNCTION CAP016_RL_REQUERY RETURN VARCHAR; -- List Of Values: Default Caption for Find Button -- CAP017_LOV_FIND constant varchar2(100) := 'Find'; FUNCTION CAP017_LOV_FIND RETURN VARCHAR; -- List Of Values: Default Caption for Close Button -- CAP018_LOV_CLOSE constant varchar2(100) := 'Close'; FUNCTION CAP018_LOV_CLOSE RETURN VARCHAR; -- List Of Values: Caption for search criterion field in LOV. is the caption -- of the data field -- CAP019_LOV_FILTER_CAPTION constant varchar2(100) := 'Search criterion for :'; FUNCTION CAP019_LOV_FILTER_CAPTION RETURN VARCHAR; -- Caption used for Return Links menu caption. -- CAP020_RETURN_LINKS constant varchar2(100) := 'Return Links'; FUNCTION CAP020_RETURN_LINKS RETURN VARCHAR; -- Caption used for Return Link to module startup. -- CAP021_TOP_LEVEL constant varchar2(100) := 'Top Level'; FUNCTION CAP021_TOP_LEVEL RETURN VARCHAR; -- Caption used for Return Link to untitled module component startup. -- CAP022_UNTITLED constant varchar2(100) := 'Untitled'; FUNCTION CAP022_UNTITLED RETURN VARCHAR; -- Record List/Query Form/View Form: Default Caption for New Button -- CAP023_NEW constant varchar2(100) := 'New'; FUNCTION CAP023_NEW RETURN VARCHAR; -- Record List: Default Caption for Query Button -- CAP024_RL_QUERY constant varchar2(100) := 'Query'; FUNCTION CAP024_RL_QUERY RETURN VARCHAR; -- Caption for close button on popup calendar -- CAP025_CAL_CLOSE constant varchar2(100) := CAP018_LOV_CLOSE; FUNCTION CAP025_CAL_CLOSE RETURN VARCHAR; -- Caption for poplist to mark row for update -- CAP026_DO_UPDATE constant varchar2(100) := 'Update'; FUNCTION CAP026_DO_UPDATE RETURN VARCHAR; -- CAP027_DONT_UPDATE constant varchar2(100) := 'Do not update'; FUNCTION CAP027_DONT_UPDATE RETURN VARCHAR; -- Caption to display if valid value is invalid -- CAP028_INVALID_VAL constant varchar2(100) := '#INVALID!#'; FUNCTION CAP028_INVALID_VAL RETURN VARCHAR; -- Caption for poplist to mark row for insert -- CAP029_DO_INSERT constant varchar2(100) := 'Insert'; FUNCTION CAP029_DO_INSERT RETURN VARCHAR; -- CAP030_DONT_INSERT constant varchar2(100) := 'Do not insert'; FUNCTION CAP030_DONT_INSERT RETURN VARCHAR; /************************************************************************ ** Display: Text is displayed as information on a page ** (101-200) ************************************************************************/ -- The title/header displayed by the WSGL.Info() procedure -- DSP101_WSGL_INFO constant varchar2(100) := 'WSGL Information'; FUNCTION DSP101_WSGL_INFO RETURN VARCHAR; -- The name of the WebServer Generator Library, used in WSGL.Info() -- DSP102_WSGL constant varchar2(100) := 'WebServer Generator Library'; FUNCTION DSP102_WSGL RETURN VARCHAR; -- The prompt for the current user, used in WSGL.Info() -- DSP103_USER constant varchar2(100) := 'Current User'; FUNCTION DSP103_USER RETURN VARCHAR; -- The prompt for the Environment variable information, used in WSGL.Info() -- DSP104_ENVIRONMENT constant varchar2(100) := 'Environment'; FUNCTION DSP104_ENVIRONMENT RETURN VARCHAR; -- The prompt for the version of WebServer in use, used in WSGL.Info() -- DSP105_WEB_SERVER constant varchar2(100) := 'Oracle WebServer'; FUNCTION DSP105_WEB_SERVER RETURN VARCHAR; -- The prompt for the Web Browser in use, used in WSGL.Info() -- DSP106_WEB_BROWSER constant varchar2(100) := 'Web Browser'; FUNCTION DSP106_WEB_BROWSER RETURN VARCHAR; -- Used as part of the window title and page header for an 'About' box, -- and also as the default link text (preference MODAPL) -- DSP107_ABOUT constant varchar2(100) := 'About'; FUNCTION DSP107_ABOUT RETURN VARCHAR; -- Text which describes the name/version of the generator used to create -- the application, used in 'About' box. -- Note: is substituted with the name of the generator, and with -- the version -- DSP108_GENERATED_BY constant varchar2(100) := 'This application was generated by Version '; FUNCTION DSP108_GENERATED_BY RETURN VARCHAR; -- Text displayed when one row is in record list.

is replaced with the -- number of the record -- DSP109_RECORD constant varchar2(100) := 'Record

'; FUNCTION DSP109_RECORD RETURN VARCHAR; -- Text displayed when more than one row is in record list. is replaced -- with the number of the first record, and with the last. -- DSP110_RECORDS_N_M constant varchar2(100) := 'Records to '; FUNCTION DSP110_RECORDS_N_M RETURN VARCHAR; -- Text displayed after the "Records a to b" text, which contains the total -- number of records.

is replaced with the total -- DSP111_OF_TOTAL constant varchar2(100) := 'of

'; FUNCTION DSP111_OF_TOTAL RETURN VARCHAR; -- Text displayed when no row is in record list. -- DSP112_NO_RECORDS constant varchar2(100) := 'No Records returned'; FUNCTION DSP112_NO_RECORDS RETURN VARCHAR; -- Text used in link to a detail if the number of rows are to be displayed. --

is replaced with the number of rows -- DSP113_DETAIL_ROWS constant varchar2(100) := '(

Rows)'; FUNCTION DSP113_DETAIL_ROWS RETURN VARCHAR; -- Text displayed at start of a Query Form, where there is no module -- component caption -- DSP115_ENTER_QRY constant varchar2(100) := 'Enter query criteria'; FUNCTION DSP115_ENTER_QRY RETURN VARCHAR; -- Text displayed at start of a Query Form, where there is a module -- component caption.

is replaced with that caption. -- DSP116_ENTER_QRY_CAPTION constant varchar2(100) := 'Enter query criteria for

'; FUNCTION DSP116_ENTER_QRY_CAPTION RETURN VARCHAR; -- Text displayed at start of a Inset Form.

is replaced with module -- component caption. Note, the module component caption could be null. -- DSP117_ENTER_NEW_ROW constant varchar2(100) := 'Enter values for new

record'; FUNCTION DSP117_ENTER_NEW_ROW RETURN VARCHAR; -- Text displayed at start of a Delete Form. -- DSP118_CONFIRM_DELETE constant varchar2(100) := 'Please confirm the Delete'; FUNCTION DSP118_CONFIRM_DELETE RETURN VARCHAR; -- Text displayed between two range controls in a Query Form -- DSP119_RANGE_TO constant varchar2(100) := 'to'; FUNCTION DSP119_RANGE_TO RETURN VARCHAR; -- Date prompt in standard footer -- DSP120_DATE constant varchar2(100) := 'Date:'; FUNCTION DSP120_DATE RETURN VARCHAR; -- Text displayed at top of form after a successful insert/update -- DSP121_SUCCESS constant varchar2(100) := 'Success!'; FUNCTION DSP121_SUCCESS RETURN VARCHAR; -- Text displayed at top of form after an unsuccessful insert/update -- DSP122_ERROR constant varchar2(100) := 'Error!'; FUNCTION DSP122_ERROR RETURN VARCHAR; -- Caption for a list of values form -- DSP123_LOV_CAPTION constant varchar2(100) := 'List Of Values: '; FUNCTION DSP123_LOV_CAPTION RETURN VARCHAR; -- Text displayed when a search criterion is required for a List Of Values. is the -- caption of the field to which the search is applied -- DSP124_LOV_ENTER_SEARCH constant varchar2(100) := 'Please enter a search criterion for '; FUNCTION DSP124_LOV_ENTER_SEARCH RETURN VARCHAR; -- The prompt for the Repository Application System, used in WSGL.Info() -- DSP125_REPOS_APPSYS constant varchar2(100) := 'Repository Container'; FUNCTION DSP125_REPOS_APPSYS RETURN VARCHAR; -- The prompt for the Repository Module, used in WSGL.Info() -- DSP126_REPOS_MODULE constant varchar2(100) := 'Repository Module'; FUNCTION DSP126_REPOS_MODULE RETURN VARCHAR; -- Text displayed whilst waiting for List of Values to load -- DSP127_LOV_PLEASE_WAIT constant varchar2(100) := 'Please wait...'; FUNCTION DSP127_LOV_PLEASE_WAIT RETURN VARCHAR; -- Heading for a popup calendar form -- DSP128_CAL_CAPTION constant varchar2(100) := 'Calendar: '; FUNCTION DSP128_CAL_CAPTION RETURN VARCHAR; -- Caption for button that returns to today on the popup calendar -- DSP129_CAL_TODAY constant varchar2(100) := 'Today'; FUNCTION DSP129_CAL_TODAY RETURN VARCHAR; -- Caption to prefix the number of rows succesfully inserted -- DSP130_ROWS_INSERTED constant varchar2(100) := 'Rows inserted successfully:'; FUNCTION DSP130_ROWS_INSERTED RETURN VARCHAR; -- Caption to prefix the number of rows not inserted -- DSP131_ROWS_NOT_INSERTED constant varchar2(100) := 'Rows not inserted:'; FUNCTION DSP131_ROWS_NOT_INSERTED RETURN VARCHAR; -- Caption to prefix row number in error messages -- DSP132_ROW constant varchar2(100) := 'Row'; FUNCTION DSP132_ROW RETURN VARCHAR; -- Heading for insert checkbox column -- DSP133_INSERT constant varchar2(100) := 'Insert?'; FUNCTION DSP133_INSERT RETURN VARCHAR; -- Heading for delete checkbox column -- DSP134_DELETE constant varchar2(100) := 'Delete?'; FUNCTION DSP134_DELETE RETURN VARCHAR; -- Caption to prefix information about deleted rows -- DSP135_DELETED_ROW_INFO constant varchar2(100) := 'Deleted row information:-'; FUNCTION DSP135_DELETED_ROW_INFO RETURN VARCHAR; -- Text displayed to indicate that no row has been updated -- DSP136_NO_ROW_UPDATED constant varchar2(100) := 'No rows updated'; FUNCTION DSP136_NO_ROW_UPDATED RETURN VARCHAR; -- Caption to indicate number of rows successfully updated -- DSP137_ROWS_UPDATED constant varchar2(100) := 'Rows updated:'; FUNCTION DSP137_ROWS_UPDATED RETURN VARCHAR; -- Caption to indicate number of errors -- DSP138_ERRORS constant varchar2(100) := 'Errors:'; FUNCTION DSP138_ERRORS RETURN VARCHAR; -- Caption to indicate number of rows deleted -- DSP139_ROWS_DELETED constant varchar2(100) := 'Rows deleted:'; FUNCTION DSP139_ROWS_DELETED RETURN VARCHAR; /************************************************************************ ** Message: The text forms whole or part of a message issued to the user ** (201-300) ************************************************************************/ -- WSGL Internal error issued in Domain Validation. -- MSG201_DV_INIT_ERR constant varchar2(100) := 'Uninitialised Domain Record accessed'; FUNCTION MSG201_DV_INIT_ERR RETURN VARCHAR; -- WSGL Internal error issued in Domain Validation. -- MSG202_DV_CTL_ERR constant varchar2(100) := 'Unknown Control type accessed'; FUNCTION MSG202_DV_CTL_ERR RETURN VARCHAR; -- Message issued when the maximum number of rows (identified by WSGL.MAX_ROWS) -- have been fetched.

is replaced by WSGL.MAX_ROWS. -- MSG203_MAX_ROWS constant varchar2(100) := 'Maximum number of records (

) returned'; FUNCTION MSG203_MAX_ROWS RETURN VARCHAR; -- Message issued when an attempt is made to access a row which has been deleted -- (presumably by another user) -- MSG204_ROW_DELETED constant varchar2(100) := 'Row deleted by another user'; FUNCTION MSG204_ROW_DELETED RETURN VARCHAR; -- Message issued after a successful row update -- MSG207_ROW_UPDATED constant varchar2(100) := 'Row updated'; FUNCTION MSG207_ROW_UPDATED RETURN VARCHAR; -- Message issued after a successful row insert -- MSG208_ROW_INSERTED constant varchar2(100) := 'Row inserted'; FUNCTION MSG208_ROW_INSERTED RETURN VARCHAR; -- Message issued when an invalid value has been entered in a domain -- MSG209_INVALID_DV constant varchar2(100) := 'Invalid value'; FUNCTION MSG209_INVALID_DV RETURN VARCHAR; -- Message issued when an invalid value has been entered in a query field. -- The

is replaced by the field caption. -- MSG210_INVALID_QRY constant varchar2(100) := 'Invalid value in

field(s)'; FUNCTION MSG210_INVALID_QRY RETURN VARCHAR; -- Action text issued when an invalid value has been entered in a date -- query field. The

is replaced by the current date in the required format. -- MSG211_EXAMPLE_TODAY constant varchar2(100) := 'Enter in the following format:

'; FUNCTION MSG211_EXAMPLE_TODAY RETURN VARCHAR; -- Part of the message issued when a column which has a format mask fails -- some basic validation.

is replaced by the format mask. -- MSG212_FOMAT_MASK constant varchar2(100) := '(Format Mask is ''

'')'; FUNCTION MSG212_FOMAT_MASK RETURN VARCHAR; -- Message issued when attempting to navigate beyond the first record set -- MSG213_AT_FIRST constant varchar2(100) := 'At first row'; FUNCTION MSG213_AT_FIRST RETURN VARCHAR; -- Message issued when attempting to navigate beyond the last record set -- MSG214_AT_LAST constant varchar2(100) := 'At last row'; FUNCTION MSG214_AT_LAST RETURN VARCHAR; -- Message issued if browser does not support multiple submit buttons. -- MSG215_NO_MULTIPLE_SUBMITS constant varchar2(200) := 'The browser in use does not support multiple form submit buttons, and is therefore unable to run this application.'; FUNCTION MSG215_NO_MULTIPLE_SUBMITS RETURN VARCHAR; -- Message issued after a successful row delete -- MSG216_ROW_DELETED constant varchar2(100) := 'Row deleted'; FUNCTION MSG216_ROW_DELETED RETURN VARCHAR; -- Message issued if an unhandled exception occurs.

is replaced by the name of the -- routine. -- MSG217_EXCEPTION constant varchar2(200) := 'The following unhandled error has occurred in the routine

:'; FUNCTION MSG217_EXCEPTION RETURN VARCHAR; -- Message issued as suggested action following an unhandled exception. -- MSG218_CONTACT_SUPPORT constant varchar2(100) := 'Please contact your support representative.'; FUNCTION MSG218_CONTACT_SUPPORT RETURN VARCHAR; -- Message issued if mandatory field is missing.

is the field caption. -- MSG219_MISSING_MANDATORY constant varchar2(100) := '

A value must be entered'; FUNCTION MSG219_MISSING_MANDATORY RETURN VARCHAR; -- Message issued if numeric precision is wrong. is the field caption, is the precision. -- MSG220_PRECISION_ERROR constant varchar2(100) := ' Value cannot have more than digits before the decimal point'; FUNCTION MSG220_PRECISION_ERROR RETURN VARCHAR; -- Message issued if numeric scale is wrong. is the field caption, is the scale. -- MSG221_SCALE_ERROR1 constant varchar2(100) := '

Value cannot have more than decimal places'; FUNCTION MSG221_SCALE_ERROR1 RETURN VARCHAR; -- Message issued if no scale defined.

is the field caption. -- MSG222_SCALE_ERROR2 constant varchar2(100) := '

Value cannot contain decimal places'; FUNCTION MSG222_SCALE_ERROR2 RETURN VARCHAR; -- Message issued if value is not in range. is the field caption, is low value, -- is high value. -- MSG223_RANGE_ERROR constant varchar2(100) := ' Value outside of allowed range ( to )'; FUNCTION MSG223_RANGE_ERROR RETURN VARCHAR; -- Message issued if a List Of values contains no rows. -- MSG224_LOV_NO_ROWS constant varchar2(100) := 'No rows match the search criterion'; FUNCTION MSG224_LOV_NO_ROWS RETURN VARCHAR; -- Message issued when "ORA-06502: PL/SQL: numeric or value error" occurs -- MSG225_ORA_6502 constant varchar2(100) := 'Incorrect datatype'; FUNCTION MSG225_ORA_6502 RETURN VARCHAR; -- Message issued when an invalid value has been entered in a Foreign Key control -- MSG226_INVALID_FK constant varchar2(100) := 'Invalid value'; FUNCTION MSG226_INVALID_FK RETURN VARCHAR; -- Message issued when a lookup value does no uniquely identify a Foreign Key control -- MSG227_TOO_MANY_FKS constant varchar2(100) := 'Value entered does not uniquely identify a row'; FUNCTION MSG227_TOO_MANY_FKS RETURN VARCHAR; -- Message issued when a LOV no longer in context of the current page -- MSG228_LOV_NOT_IN_CONTEXT constant varchar2(100) := 'The List of Values is no longer in context'; FUNCTION MSG228_LOV_NOT_IN_CONTEXT RETURN VARCHAR; -- Message displayed when the current Browser does not support Frames -- MSG229_NO_FRAME_SUPPORT constant varchar2(200) := 'This application uses HTML Frames. Your browser does not support this functionality. You will need to upgrade your browser if you want to use this application.'; FUNCTION MSG229_NO_FRAME_SUPPORT RETURN VARCHAR; -- Message issued if is value > max length. is the field caption, is the max length. -- MSG230_MAXLEN_ERROR constant varchar2(100) := ' Value exceeds the maximum column length ()'; FUNCTION MSG230_MAXLEN_ERROR RETURN VARCHAR; -- Message issued when access to a package procedure is denied -- MSG231_ACCESS_DENIED constant varchar2(100) := 'Access Denied'; FUNCTION MSG231_ACCESS_DENIED RETURN VARCHAR; -- Message issued when dependant LOV field is not filled in. is the captin of the missing field -- MSG232_LOV_MISSING_DEPENDANT constant varchar2(100) := 'Please enter a value for '; FUNCTION MSG232_LOV_MISSING_DEPENDANT RETURN VARCHAR; -- Message issued when user attempts to leave page without saving changes -- MSG233_DATA_CHANGED constant varchar2(200) := 'Data on this page has been modified. Please submit changes or revert before continuing.'; FUNCTION MSG233_DATA_CHANGED RETURN VARCHAR; -- Message issued if invalid year entered into calendar window -- MSG234_FOUR_DIGIT_YEAR constant varchar2(200) := 'Please enter year using four digits'; FUNCTION MSG234_FOUR_DIGIT_YEAR RETURN VARCHAR; -- Message issued if invalid year entered into calendar window -- MSG235_ROW_REQUERY_FAILURE constant varchar2(200) := 'Failed to requery row. Row does not meet query restrictions.'; FUNCTION MSG235_ROW_REQUERY_FAILURE RETURN VARCHAR; -- Message issued when a generated Portlet package requires a default description -- MSG236_PORTLET_DESCRIPTION constant varchar2(200) := ' portlet generated by Web Server Generator.'; FUNCTION MSG236_PORTLET_DESCRIPTION RETURN VARCHAR; /*************************************************************************** ** OCO Text: The text is used in defining a Oracle Context Option Query Form ** (501-600) ***************************************************************************/ -- Caption of button to add more terms to search criteria -- OCO501_MORE_TERMS constant varchar2(100) := 'More Terms'; FUNCTION OCO501_MORE_TERMS RETURN VARCHAR; -- Caption of button to extend search criteria -- OCO502_EXTEND constant varchar2(100) := 'Extend Search Capability'; FUNCTION OCO502_EXTEND RETURN VARCHAR; -- Caption of button to simplify search criteria -- OCO503_SIMPLIFY constant varchar2(100) := 'Simplify Search Capability'; FUNCTION OCO503_SIMPLIFY RETURN VARCHAR; -- Text to describe how to combine terms in query -- OCO504_AND constant varchar2(100) := 'and'; FUNCTION OCO504_AND RETURN VARCHAR; -- OCO505_OR constant varchar2(100) := 'or'; FUNCTION OCO505_OR RETURN VARCHAR; -- OCO506_NOT constant varchar2(100) := 'not'; FUNCTION OCO506_NOT RETURN VARCHAR; -- OCO507_NEAR constant varchar2(100) := 'near'; FUNCTION OCO507_NEAR RETURN VARCHAR; -- OCO508_MINUS constant varchar2(100) := 'minus'; FUNCTION OCO508_MINUS RETURN VARCHAR; -- OCO509_ACCUMULATE constant varchar2(100) := 'accumulate'; FUNCTION OCO509_ACCUMULATE RETURN VARCHAR; -- Text to describe how to compare query fields -- OCO510_MATCH constant varchar2(100) := 'Match'; FUNCTION OCO510_MATCH RETURN VARCHAR; -- OCO511_STARTS_WITH constant varchar2(100) := 'Starts with'; FUNCTION OCO511_STARTS_WITH RETURN VARCHAR; -- OCO512_FUZZY constant varchar2(100) := 'Fuzzy'; FUNCTION OCO512_FUZZY RETURN VARCHAR; -- OCO513_STEM constant varchar2(100) := 'Stem'; FUNCTION OCO513_STEM RETURN VARCHAR; -- OCO514_SOUNDEX constant varchar2(100) := 'Soundex'; FUNCTION OCO514_SOUNDEX RETURN VARCHAR; -- OCO515_RESULTS_OF constant varchar2(100) := 'Results of'; FUNCTION OCO515_RESULTS_OF RETURN VARCHAR; -- Text to describe weighting factors -- OCO516_HIGH constant varchar2(100) := 'High'; FUNCTION OCO516_HIGH RETURN VARCHAR; -- OCO517_MEDIUM constant varchar2(100) := 'Medium'; FUNCTION OCO517_MEDIUM RETURN VARCHAR; -- OCO518_LOW constant varchar2(100) := 'Low'; FUNCTION OCO518_LOW RETURN VARCHAR; -- Text to describe rows returned -- OCO519_RETURN_CAPTION constant varchar2(100) := 'Return'; FUNCTION OCO519_RETURN_CAPTION RETURN VARCHAR; -- OCO520_RETURN_ALL constant varchar2(100) := 'All hits'; FUNCTION OCO520_RETURN_ALL RETURN VARCHAR; -- OCO521_RETURN_10 constant varchar2(100) := 'First 10 hits'; FUNCTION OCO521_RETURN_10 RETURN VARCHAR; -- OCO522_RETURN_100 constant varchar2(100) := 'First 100 hits'; FUNCTION OCO522_RETURN_100 RETURN VARCHAR; -- OCO523_RETURN_GT30 constant varchar2(100) := 'Hits with score > 30'; FUNCTION OCO523_RETURN_GT30 RETURN VARCHAR; -- OCO524_RETURN_GT70 constant varchar2(100) := 'Hits with score > 70'; FUNCTION OCO524_RETURN_GT70 RETURN VARCHAR; /*************************************************************************** ** WSGSEC Default security implementation text (601-700) ***************************************************************************/ -- Message to indicate user has to log on -- SEC601_LOGON_REQUIRED constant varchar2(100) := 'Logon Required'; FUNCTION SEC601_LOGON_REQUIRED RETURN VARCHAR; -- Ask user for user name and password -- SEC602_USERNAME_PASSWORD constant varchar2(100) := 'Please enter your username and password to log on'; FUNCTION SEC602_USERNAME_PASSWORD RETURN VARCHAR; -- Prompt for user name -- SEC603_USERNAME_PROMPT constant varchar2(100) := 'Username:'; FUNCTION SEC603_USERNAME_PROMPT RETURN VARCHAR; -- Prompt for password -- SEC604_PASSWORD_PROMPT constant varchar2(100) := 'Password:'; FUNCTION SEC604_PASSWORD_PROMPT RETURN VARCHAR; -- Caption for 'Log On' button -- SEC605_LOGON_CAPTION constant varchar2(100) := 'Log on'; FUNCTION SEC605_LOGON_CAPTION RETURN VARCHAR; -- Message to indicate logon was successful -- SEC606_LOGON_SUCCESS constant varchar2(100) := 'Logon Successful'; FUNCTION SEC606_LOGON_SUCCESS RETURN VARCHAR; -- Message to ask user to go back to start of application -- SEC607_NAVIGATE_BACK constant varchar2(100) := 'Please navigate back to the application'; FUNCTION SEC607_NAVIGATE_BACK RETURN VARCHAR; -- Message to indicate that logon was not successful -- SEC608_INVALID_LOGON constant varchar2(100) := 'Invalid Logon'; FUNCTION SEC608_INVALID_LOGON RETURN VARCHAR; -- Message to indicate user does not have access to the application -- SEC609_ACCESS_DENIED constant varchar2(100) := 'Access Denied'; FUNCTION SEC609_ACCESS_DENIED RETURN VARCHAR; -- SEC610_NO_PERMISSION constant varchar2(100) := 'You do not have permission to use this application'; FUNCTION SEC610_NO_PERMISSION RETURN VARCHAR; -- SEC611_LOGGING_OFF constant varchar2(100) := 'Logging Off'; FUNCTION SEC611_LOGGING_OFF RETURN VARCHAR; -- SEC612_LOGGED_OFF constant varchar2(100) := 'Logged Off'; FUNCTION SEC612_LOGGED_OFF RETURN VARCHAR; -- SEC613_HOME constant varchar2(100) := 'Home'; FUNCTION SEC613_HOME RETURN VARCHAR; -- SEC614_NO_USER constant varchar2(100) := 'There is no user on this application that corresponds to your Single Sign-On user.'; FUNCTION SEC614_NO_USER RETURN VARCHAR; end; /