StringFirstDateTime (Journal property): Difference between revisions
Jump to navigation
Jump to search
m (→Usage notes) |
m (→Syntax terms) |
||
Line 6: | Line 6: | ||
<table class="syntaxTable"> | <table class="syntaxTable"> | ||
<tr><th>%string</th> | <tr><th>%string</th> | ||
<td>An EBCDIC string variable to receive the starting datetime of the contents of the journal object. This 14-character value is in CYYDDDHHMISSXX format: | <td>An EBCDIC string variable to receive the starting datetime of the contents of the journal object. This 14-character value is in <code>CYYDDDHHMISSXX</code> format: | ||
<dl> | <dl> | ||
<dt>CYY<dd> year - 1900 | <dt>CYY<dd> year - 1900 |
Latest revision as of 21:14, 6 November 2012
Datetime stamp from the first entry in the journal stream (Journal class)
Syntax
%string = journal:StringFirstDateTime
Syntax terms
%string | An EBCDIC string variable to receive the starting datetime of the contents of the journal object. This 14-character value is in CYYDDDHHMISSXX format:
|
---|---|
journal | A reference to an instance of a Journal object. |
Usage notes
- If you want to use the result of this method as, or in connection with,
the StartTime parameter of the AppendJournalData function,
be sure to remove the leading century indicator, because that parameter must be specified in
YYDDDHHMISSXX
format.For example, you can use the intrinsic Substring function, as shown in the "test for time values that are out of range" in "Journal example".