DBA Data[Home] [Help]

PACKAGE: APPS.XNP_WSGLM

Source


1 package XNP_wsglm as
2 /* $Header: XNPWSLMS.pls 120.0 2005/05/30 11:52:47 appldev noship $ */
3 
4 
5 /************************************************************************
6 ** Caption:  The text forms the caption/prompt for an item
7 ** (1-100)
8 ************************************************************************/
9 
10   -- The text displayed in radio groups and lists which represents a null value
11   -- in an optional column based on a domain.
12   CAP001_UNKNOWN constant varchar2(100) := 'Unknown';
13 
14   -- The text used in link to an insert form.  <p> is replaced by the zone
15   -- caption
16   CAP002_ADD_LINK constant varchar2(100) := 'Add new <p> record';
17 
18   -- Query Form: Default Caption for Find Button
19   CAP003_QF_FIND constant varchar2(100) := 'Find';
20 
21   -- Query Form: Default Caption for Clear Button
22   CAP004_QF_CLEAR constant varchar2(100) := 'Clear';
23 
24   -- View Form: Default Caption for ReQuery Button
25   CAP005_VF_REQUERY constant varchar2(100) := 'ReQuery';
26 
27   -- View Form: Default Caption for Update Button
28   CAP006_VF_UPDATE constant varchar2(100) := 'Update';
29 
30   -- View Form: Default Caption for Delete Button
31   CAP007_VF_DELETE constant varchar2(100) := 'Delete';
32 
33   -- View Form: Default Caption for Revert Button
34   CAP008_VF_REVERT constant varchar2(100) := 'Revert';
35 
36   -- Insert Form: Default Caption for Insert Button
37   CAP009_IF_INSERT constant varchar2(100) := 'Insert';
38 
39   -- Insert Form: Default Caption for Clear Button
40   CAP010_IF_CLEAR constant varchar2(100) := 'Clear';
41 
42   -- Record List: Default Caption for Next Button
43   CAP011_RL_NEXT constant varchar2(100) := 'Next';
44 
45   -- Record List: Default Caption for Previous Button
46   CAP012_RL_PREVIOUS constant varchar2(100) := 'Previous';
47 
48   -- Record List: Default Caption for First Button
49   CAP013_RL_FIRST constant varchar2(100) := 'First';
50 
51   -- Record List: Default Caption for Last Button
52   CAP014_RL_LAST constant varchar2(100) := 'Last';
53 
54   -- Record List: Default Caption for Count Button
55   CAP015_RL_COUNT constant varchar2(100) := 'Count';
56 
57   -- Record List: Default Caption for ReQuery Button
58   CAP016_RL_REQUERY constant varchar2(100) := 'ReQuery';
59 
60   -- List Of Values: Default Caption for Find Button
61   CAP017_LOV_FIND constant varchar2(100) := 'Find';
62 
63   -- List Of Values: Default Caption for Close Button
64   CAP018_LOV_CLOSE constant varchar2(100) := 'Close';
65 
66   -- List Of Values: Caption for search criterion field in LOV. <p1> is the caption
67   -- of the data field
68   CAP019_LOV_FILTER_CAPTION constant varchar2(100) := 'Search criterion for <p1>:';
69 
70   -- Caption used for Return Links menu caption.
71   CAP020_RETURN_LINKS constant varchar2(100) := 'Return Links';
72 
73   -- Caption used for Return Link to module startup.
74   CAP021_TOP_LEVEL constant varchar2(100) := 'Top Level';
75 
76   -- Caption used for Return Link to untitled module component startup.
77   CAP022_UNTITLED constant varchar2(100) := 'Untitled';
78 
79   -- Record List/Query Form/View Form: Default Caption for New Button
80   CAP023_NEW constant varchar2(100) := 'New';
81 
82   -- Record List: Default Caption for Query Button
83   CAP024_RL_QUERY constant varchar2(100) := 'Query';
84 
85 
86 /************************************************************************
87 ** Display:  Text is displayed as information on a page
88 ** (101-200)
89 ************************************************************************/
90 
91   -- The title/header displayed by the WSGL.Info() procedure
92   DSP101_WSGL_INFO constant varchar2(100) := 'WSGL Information';
93 
94   -- The name of the WebServer Generator Library, used in WSGL.Info()
95   DSP102_WSGL constant varchar2(100) := 'WebServer Generator Library';
96 
97   -- The prompt for the current user, used in WSGL.Info()
98   DSP103_USER constant varchar2(100) := 'Current User';
99 
100   -- The prompt for the Environment variable information, used in WSGL.Info()
101   DSP104_ENVIRONMENT constant varchar2(100) := 'Environment';
102 
103   -- The prompt for the version of WebServer in use, used in WSGL.Info()
104   DSP105_WEB_SERVER constant varchar2(100) := 'Oracle WebServer';
105 
106   -- The prompt for the Web Browser in use, used in WSGL.Info()
107   DSP106_WEB_BROWSER constant varchar2(100) := 'Web Browser';
108 
109   -- Used as part of the window title and page header for an 'About' box,
110   -- and also as the default link text (preference MODAPL)
111   DSP107_ABOUT constant varchar2(100) := 'About';
112 
113   -- Text which describes the name/version of the generator used to create
114   -- the application, used in 'About' box.
115   -- Note: <p1> is substituted with the name of the generator, and <p2> with
116   --       the version
117   DSP108_GENERATED_BY constant varchar2(100) :=
118        'This application was generated by <p1> Version <p2>';
119 
120   -- Text displayed when one row is in record list.  <p> is replaced with the
121   -- number of the record
122   DSP109_RECORD constant varchar2(100) := 'Record <p>';
123 
124   -- Text displayed when more than one row is in record list.  <p1> is replaced
125   -- with the number of the first record, and <p2> with the last.
126   DSP110_RECORDS_N_M constant varchar2(100) := 'Records <p1> to <p2>';
127 
128   -- Text displayed after the "Records a to b" text, which contains the total
129   -- number of records.  <p> is replaced with the total
130   DSP111_OF_TOTAL constant varchar2(100) := 'of <p>';
131 
132   -- Text displayed when no row is in record list.
133   DSP112_NO_RECORDS constant varchar2(100) := 'No Records returned';
134 
135   -- Text used in link to a detail if the number of rows are to be displayed.
136   -- <p> is replaced with the number of rows
137   DSP113_DETAIL_ROWS constant varchar2(100) := '(<p> Rows)';
138 
139   -- Text displayed at start of a Query Form, where there is no module
140   -- component caption
141   DSP115_ENTER_QRY constant varchar2(100) := 'Enter query criteria';
142 
143   -- Text displayed at start of a Query Form, where there is a module
144   -- component caption. <p> is replaced with that caption.
145   DSP116_ENTER_QRY_CAPTION constant varchar2(100) := 'Enter query criteria for <p>';
146 
147   -- Text displayed at start of a Inset Form. <p> is replaced with module
148   -- component caption.  Note, the module component caption could be null.
149   DSP117_ENTER_NEW_ROW constant varchar2(100) := 'Enter values for new <p> record';
150 
151   -- Text displayed at start of a Delete Form.
152   DSP118_CONFIRM_DELETE constant varchar2(100) := 'Please confirm the Delete';
153 
154   -- Text displayed between two range controls in a Query Form
155   DSP119_RANGE_TO constant varchar2(100) := 'to';
156 
157   -- Date prompt in standard footer
158   DSP120_DATE constant varchar2(100) := 'Date:';
159 
160   -- Text displayed at top of form after a successful insert/update
161   DSP121_SUCCESS constant varchar2(100) := 'Success!';
162 
163   -- Text displayed at top of form after an unsuccessful insert/update
164   DSP122_ERROR constant varchar2(100) := 'Error!';
165 
166   -- Caption for a list of values form
167   DSP123_LOV_CAPTION constant varchar2(100) := 'List Of Values: <p1>';
168 
169   -- Text displayed when a search criterion is required for a List Of Values.  <p1> is the
170   -- caption of the field to which the search is applied
171   DSP124_LOV_ENTER_SEARCH constant varchar2(100) := 'Please enter a search criterion for <p1>';
172 
173   -- The prompt for the Repository Application System, used in WSGL.Info()
174   DSP125_REPOS_APPSYS constant varchar2(100) := 'Repository Application System';
175 
176   -- The prompt for the Repository Module, used in WSGL.Info()
177   DSP126_REPOS_MODULE constant varchar2(100) := 'Repository Module';
178 
179   -- Text displayed whilst waiting for List of Values to load
180   DSP127_LOV_PLEASE_WAIT constant varchar2(100) := 'Please wait...';
181 
182 
183 /************************************************************************
184 ** Message:  The text forms whole or part of a message issued to the user
185 ** (201-300)
186 ************************************************************************/
187 
188   -- WSGL Internal error issued in Domain Validation.
189   MSG201_DV_INIT_ERR constant varchar2(100) := 'Uninitialised Domain Record accessed';
190 
191   -- WSGL Internal error issued in Domain Validation.
192   MSG202_DV_CTL_ERR constant varchar2(100) := 'Unknown Control type accessed';
193 
194   -- Message issued when the maximum number of rows (identified by WSGL.MAX_ROWS)
195   -- have been fetched.  <p> is replaced by WSGL.MAX_ROWS.
196   MSG203_MAX_ROWS constant varchar2(100) := 'Maximimum number of records (<p>) returned';
197 
198   -- Message issued when an attempt is made to access a row which has been deleted
199   -- (presumably by another user)
200   MSG204_ROW_DELETED constant varchar2(100) := 'Row deleted by another user';
201 
202   -- Message issued after a successful row update
203   MSG207_ROW_UPDATED constant varchar2(100) := 'Row updated';
204 
205   -- Message issued after a successful row insert
206   MSG208_ROW_INSERTED constant varchar2(100) := 'Row inserted';
207 
208   -- Message issued when an invalid value has been entered in a domain
209   MSG209_INVALID_DV constant varchar2(100) := 'Invalid value';
210 
211   -- Message issued when an invalid value has been entered in a query field.
212   -- The <p> is replaced by the field caption.
213   MSG210_INVALID_QRY constant varchar2(100) := 'Invalid value in <p> field(s)';
214 
215   -- Action text issued when an invalid value has been entered in a date
216   -- query field. The <p> is replaced by the current date in the required format.
217   MSG211_EXAMPLE_TODAY constant varchar2(100) := 'Enter in the following format: <p>';
218 
219   -- Part of the message issued when a column which has a format mask fails
220   -- some basic validation.  <p> is replaced by the format mask.
221   MSG212_FOMAT_MASK constant varchar2(100) := '(Format Mask is ''<p>'')';
222 
223   -- Message issued when attempting to navigate beyond the first record set
224   MSG213_AT_FIRST constant varchar2(100) := 'At first row';
225 
226   -- Message issued when attempting to navigate beyond the last record set
227   MSG214_AT_LAST constant varchar2(100) := 'At last row';
228 
229   -- Message issued if browser does not support multiple submit buttons.
230   MSG215_NO_MULTIPLE_SUBMITS constant varchar2(200) :=
231     'The browser in use does not support multiple form submit buttons, and is '||
232     'therefore unable to run this application.';
233 
234   -- Message issued after a successful row delete
235   MSG216_ROW_DELETED constant varchar2(100) := 'Row deleted';
236 
237   -- Message issued if an unhandled exception occurs. <p> is replaced by the name of the
238   -- routine.
239   MSG217_EXCEPTION constant varchar2(200) :=
240      'The following unhandled error has occurred in the routine <p>:';
241 
242   -- Message issued as suggested action following an unhandled exception.
243   MSG218_CONTACT_SUPPORT constant varchar2(100) := 'Please contact your support representative.';
244 
245   -- Message issued if mandatory field is missing.  <p> is the field caption.
246   MSG219_MISSING_MANDATORY constant varchar2(100) := '<p> A value must be entered';
247 
248   -- Message issued if numeric precision is wrong.  <p1> is the field caption, <p2> is the precision.
249   MSG220_PRECISION_ERROR constant varchar2(100) := '<p1> Value cannot have more than <p2> digits before the decimal point';
250 
251   -- Message issued if numeric scale is wrong.  <p1> is the field caption, <p2> is the scale.
252   MSG221_SCALE_ERROR1 constant varchar2(100) := '<p> Value cannot have more than <p2> decimal places';
253 
254   -- Message issued if no scale defined.        <p> is the field caption.
255   MSG222_SCALE_ERROR2 constant varchar2(100) := '<p> Value cannot contain decimal places';
256 
257   -- Message issued if value is not in range.  <p1> is the field caption, <p2> is low value,
258   -- <p3> is high value.
259   MSG223_RANGE_ERROR constant varchar2(100) := '<p1> Value outside of allowed range (<p2> to <p3>)';
260 
261   -- Message issued if a List Of values contains no rows.
262   MSG224_LOV_NO_ROWS constant varchar2(100) := 'No rows match the search criterion';
263 
264   -- Message issued when "ORA-06502: PL/SQL: numeric or value error" occurs
265   MSG225_ORA_6502 constant varchar2(100) := 'Incorrect datatype';
266 
267   -- Message issued when an invalid value has been entered in a Foreign Key control
268   MSG226_INVALID_FK constant varchar2(100) := 'Invalid value';
269 
270   -- Message issued when a lookup value does no uniquely identify a Foreign Key control
271   MSG227_TOO_MANY_FKS constant varchar2(100) := 'Value entered does not uniquely identify a row';
272 
273   -- Message issued when a LOV no longer in context of the current page
274   MSG228_LOV_NOT_IN_CONTEXT constant varchar2(100) := 'The List of Values is no longer in context';
275 
276   -- Message displayed when the current Browser does not support Frames
277   MSG229_NO_FRAME_SUPPORT constant varchar2(200) :=
278       'This application uses HTML Frames.  Your browser does not support this functionality.
279 You will need to upgrade your browser if you want to use this application.';
280 
281   -- Message issued if is value > max length.  <p1> is the field caption, <p2> is the max length.
282   MSG230_MAXLEN_ERROR constant varchar2(100) := '<p1> Value exceeds the maximum column length (<p2>)';
283 
284   -- Message issued when access to a package procedure is denied
285   MSG231_ACCESS_DENIED constant varchar2(100) := 'Access Denied';
286 
287   -- Message issued when dependant LOV field is not filled in.  <p1> is the captin of the missing field
288   MSG232_LOV_MISSING_DEPENDANT constant varchar2(100) := 'Please enter a value for <p1>';
289 
290 /***************************************************************************
291 ** OCO Text: The text is used in defining a Oracle Context Option Query Form
292 ** (501-600)
293 ***************************************************************************/
294 
295   -- Caption of button to add more terms to search criteria
296   OCO501_MORE_TERMS constant varchar2(100) := 'More Terms';
297 
298   -- Caption of button to extend search criteria
299   OCO502_EXTEND constant varchar2(100) := 'Extend Search Capability';
300 
301   -- Caption of button to simplify search criteria
302   OCO503_SIMPLIFY constant varchar2(100) := 'Simplify Search Capability';
303 
304   -- Text to describe how to combine terms in query
305   OCO504_AND constant varchar2(100) := 'and';
306   OCO505_OR constant varchar2(100) := 'or';
307   OCO506_NOT constant varchar2(100) := 'not';
308   OCO507_NEAR constant varchar2(100) := 'near';
309   OCO508_MINUS constant varchar2(100) := 'minus';
310   OCO509_ACCUMULATE constant varchar2(100) := 'accumulate';
311 
312   -- Text to describe how to compare query fields
313   OCO510_MATCH constant varchar2(100) := 'Match';
314   OCO511_STARTS_WITH constant varchar2(100) := 'Starts with';
315   OCO512_FUZZY constant varchar2(100) := 'Fuzzy';
316   OCO513_STEM constant varchar2(100) := 'Stem';
317   OCO514_SOUNDEX constant varchar2(100) := 'Soundex';
318   OCO515_RESULTS_OF constant varchar2(100) := 'Results of';
319 
320   -- Text to describe weighting factors
321   OCO516_HIGH constant varchar2(100) := 'High';
322   OCO517_MEDIUM constant varchar2(100) := 'Medium';
323   OCO518_LOW constant varchar2(100) := 'Low';
324 
325   -- Text to describe rows returned
326   OCO519_RETURN_CAPTION constant varchar2(100) := 'Return';
327   OCO520_RETURN_ALL constant varchar2(100) := 'All hits';
328   OCO521_RETURN_10 constant varchar2(100) := 'First 10 hits';
329   OCO522_RETURN_100 constant varchar2(100) := 'First 100 hits';
330   OCO523_RETURN_GT30 constant varchar2(100) := 'Hits with score > 30';
331   OCO524_RETURN_GT70 constant varchar2(100) := 'Hits with score > 70';
332 
333 end;