[#KULRICE-2914] Add system parameters related to

advertisement
[KULRICE-2914] Add system parameters related to date format extraction
Created: 25/Mar/09 Updated: 17/Aug/09 Resolved: 09/Apr/09
Status:
Project:
Component/s:
Affects
Version/s:
Fix Version/s:
Closed
Kuali Rice Development
Development
None
Type:
Reporter:
Resolution:
Labels:
Remaining
Estimate:
Time Spent:
Original
Estimate:
Task
Warren Liang
Complete
None
Not Specified
Issue Links:
Discovered
discovered
by
Similar issues:
1.0
Priority:
Assignee:
Votes:
Critical
Eric Westfall
0
Not Specified
Not Specified
KULRICE2912
extract date time formats used in
the...
Closed
KULRICE-2912 extract date time formats used in the DateTimeService
into system parameters and add the following date entry
formats
KULRICE-106 add module to the system parameters and rules tables
(was: add module and component to the system
parameters and rules tables)
KULRICE-2329 Extract State/Country/County/Postal Code tables into
Rice from KFS
KULRICE-4688 manual test cases for system parameters and related
screens
KULRICE-2388 New System Parameters for address related documents
KULRICE-3780 Add another string-to-date format to the master DBs for
consistency with the string-to-timestamp formats
KULRICE-4020 date format in header block is hard-coded
KULRICE-2926 Verify that common Date and Time formats are being
used at the UI layer across all modules
KULRICE-4623 Research the best strategy for keeping postal-related data
up to date
KULRICE-7094 DocumentSearchGeneratorImpl creates bad SQL when
UI date format is changed
Rice Module:
Application
Requirement:
KNS
KFS
Description
INSERT INTO KRNS_PARM_T(
CONS_CD,
NMSPC_CD,
OBJ_ID,
PARM_DESC_TXT,
PARM_DTL_TYP_CD,
PARM_NM,
PARM_TYP_CD,TXT,VER_NBR)
VALUES
(
'A',
'KR-NS',
SYS_GUID(),
'A semi-colon delimted list of strings representing date formats that the DateTimeService will
use to parse dates when DateTimeServiceImpl.convertToSqlDate(String) or
DateTimeServiceImpl.convertToDate(String) is called. Note that patterns will be applied in the
order listed (and the first applicable one will be used). For a more technical description of how
characters in the parameter value will be interpreted, please consult the javadocs for
java.text.SimpleDateFormat. Any changes will be applied when the application is restarted.',
'All',
'STRING_TO_DATE_FORMATS',
'CONFG',
'MM/dd/yy;MM-dd-yy;MMMM dd, yyyy;MMddyy',
1
)
/
INSERT INTO KRNS_PARM_T(
CONS_CD,
NMSPC_CD,
OBJ_ID,
PARM_DESC_TXT,
PARM_DTL_TYP_CD,
PARM_NM,
PARM_TYP_CD,TXT,VER_NBR)
VALUES
(
'A',
'KR-NS',
SYS_GUID(),
'A single date format string that the DateTimeService will use to format dates to be used in a
file name when DateTimeServiceImpl.toDateStringForFilename(Date) is called. For a more
technical description of how characters in the parameter value will be interpreted, please consult
the javadocs for java.text.SimpleDateFormat. Any changes will be applied when the application
is restarted.',
'All',
'DATE_TO_STRING_FORMAT_FOR_FILE_NAME',
'CONFG',
'yyyyMMdd',
1
)
/
INSERT INTO KRNS_PARM_T(
CONS_CD,
NMSPC_CD,
OBJ_ID,
PARM_DESC_TXT,
PARM_DTL_TYP_CD,
PARM_NM,
PARM_TYP_CD,TXT,VER_NBR)
VALUES
(
'A',
'KR-NS',
SYS_GUID(),
'A single date format string that the DateTimeService will use to format a date and time string
to be used in a file name when DateTimeServiceImpl.toDateTimeStringForFilename(Date) is
called.. For a more technical description of how characters in the parameter value will be
interpreted, please consult the javadocs for java.text.SimpleDateFormat. Any changes will be
applied when the application is restarted.',
'All',
'TIMESTAMP_TO_STRING_FORMAT_FOR_FILE_NAME',
'CONFG',
'yyyyMMdd-HH-mm-ss-S',
1
)
/
INSERT INTO KRNS_PARM_T(
CONS_CD,
NMSPC_CD,
OBJ_ID,
PARM_DESC_TXT,
PARM_DTL_TYP_CD,
PARM_NM,
PARM_TYP_CD,TXT,VER_NBR)
VALUES
(
'A',
'KR-NS',
SYS_GUID(),
'A single date format string that the DateTimeService will use to format a date to be displayed
on a web page. For a more technical description of how characters in the parameter value will
be interpreted, please consult the javadocs for java.text.SimpleDateFormat. Any changes will be
applied when the application is restarted.',
'All',
'DATE_TO_STRING_FORMAT_FOR_USER_INTERFACE',
'CONFG',
'MM/dd/yyyy',
1
)
/
INSERT INTO KRNS_PARM_T(
CONS_CD,
NMSPC_CD,
OBJ_ID,
PARM_DESC_TXT,
PARM_DTL_TYP_CD,
PARM_NM,
PARM_TYP_CD,TXT,VER_NBR)
VALUES
(
'A',
'KR-NS',
SYS_GUID(),
'A single date format string that the DateTimeService will use to format a date and time to be
displayed on a web page. For a more technical description of how characters in the parameter
value will be interpreted, please consult the javadocs for java.text.SimpleDateFormat. Any
changes will be applied when the application is restarted.',
'All',
'TIMESTAMP_TO_STRING_FORMAT_FOR_USER_INTERFACE',
'CONFG',
'MM/dd/yyyy hh:mm a',
1
)
/
INSERT INTO KRNS_PARM_T(
CONS_CD,
NMSPC_CD,
OBJ_ID,
PARM_DESC_TXT,
PARM_DTL_TYP_CD,
PARM_NM,
PARM_TYP_CD,TXT,VER_NBR)
VALUES
(
'A',
'KR-NS',
SYS_GUID(),
'A semi-colon delimted list of strings representing date formats that the DateTimeService will
use to parse date and times when DateTimeServiceImpl.convertToDateTime(String) or
DateTimeServiceImpl.convertToSqlTimestamp(String) is called. Note that patterns will be
applied in the order listed (and the first applicable one will be used). For a more technical
description of how characters in the parameter value will be interpreted, please consult the
javadocs for java.text.SimpleDateFormat. Any changes will be applied when the application is
restarted.',
'All',
'STRING_TO_TIMESTAMP_FORMATS',
'CONFG',
'MM/dd/yyyy hh:mm a',
1
)
/
Comments
Comment by Warren Liang [ 26/Mar/09 ]
Eric,
Please hold off on these changes. We are going to rename some params.
Comment by Eric Westfall [ 09/Apr/09 ]
I think these are all in place now. Resolving this issue.
Comment by Ailish Byrne [ 09/Apr/09 ]
just curious as to why you resolved this as incomplete eric?
Comment by Eric Westfall [ 09/Apr/09 ]
Yeah, that's weird. Certainly wasn't my intention. I guess I shouldn't be resolving jiras after
midnight I'll re-open and re-resolve as complete.
Comment by Eric Westfall [ 17/Aug/09 ]
Bulk change of all Rice 1.0 issues to closed after public release.
Generated at Tue Feb 09 08:52:36 CST 2016 using JIRA 6.1.5#6160sha1:a61a0fc278117a0da0ec9b89167b8f29b6afdab2.
Download