Item name |
Required / Optional |
Use of Variables |
Description |
Remarks |
Encoding |
Required |
Available |
Select or input read file encode.
Use only the canonical name supported by Java SE Runtime Environment 8 when specifying the encoding directly in the field.
Refer to "Supported Encodings"(http://docs.oracle.com/javase/8/docs/technotes/guides/intl/encoding.doc.html) for details.
|
|
New line code |
Required |
Not available |
Select a new line code.
- [AUTO]: (default)
Implementation-dependent
- [NONE]:
- [CR]:
Primarily Mac OS (Version 9)
- [LF]:
Primarily UNIX/Linux
- [CR + LF]:
Primarily Microsoft Windows
|
|
Retrieves the suppressed characters as empty string |
Optional |
Not available |
Select whether to retrieve the value of the field as an empty string or as null if it consists of suppressed character.
- [Checked]:
Retrieved as empty string
- [Not Checked]:(default)
Retrieved as null
|
|
Retrieves the suppressed characters of the numeric type as 1 digit suppressed character |
Optional |
Not available |
If the numeric data field is composed only of padding characters, this will determine whether the value of this filed is retrieve as a single padding character.
- [Checked]:
Retrieved as a single padding character
- [Not Checked]:(default)
Retrieved as null or empty character.
|
Determined accordingly to the selection made for the [Retrieves the suppressed characters as empty string].
None numeric padding character is retrieved either as an empty string or null according to the selection for the [Retrieves the suppressed characters as empty string].
Zone Decimal and Pack Decimal values cannot be retrieved either as null or empty character.
|
Component variable name |
Description |
Remarks |
count |
Return number of read columns. |
- The value defaults to null.
Null when using Parallel Stream Processing.
|
message_category |
Stroes the category to which corresponding message code belongs to, when an error occurs. |
- The value defaults to null.
|
message_code |
Stores its corresponding message code of occured error. |
- The value defaults to null.
|
message_level |
Stores the severity of the corresponding message code of the occured error. |
- The value defaults to null.
|
error_type |
Stores the type of the occured error. |
- The value defaults to null.
- Error is represented in the format depicted below.
Example:java.io.FileNotFoundException
The message may vary depending on the DataSpider Servista version.
|
error_message |
Stores the error message for the occured error. |
- The value defaults to null.
The message may vary depending on the DataSpider Servista version.
|
error_trace |
Stores stack trace of the occurred error. |
- The value defaults to null.
The message may vary depending on the DataSpider Servista version or the client application used.
|
Exception name |
Cause |
Solution |
ResourceNotFoundException Resource definition could not be found.Name:[] |
The [Format] is not specified. |
Specify the [Format]. |
ResourceNotFoundException Resource definition could not be found.Name:[<Global Resource Name>] |
The resource definition specified in the [Format] is not found. |
Make sure the global resource specified in the [Format]. |
InvalidPropertyConfigurationException
<Property name> is not specified. |
[<Property name>] is not specified. |
Specify the [<Property name>]. |
FileIsDirectoryException |
Path input in [File] is directory. |
Input file path in [File]. |
StructuredTextParseException
Could not read the file in the specified format. |
The file specified in the [File] can not be parsed by the format specified in the [Format]. |
Make sure the [File] or [Format]. |
java.io.FileNotFoundException |
The file specified in [File] does not exist. |
Check the [File]. |
java.io.UnsupportedEncodingException |
The encoding that is not supported is specified in [Encoding]. |
Specify an encoding that is supported in Java SE Runtime Environment 8.
Refer to "Supported Encodings"(http://docs.oracle.com/javase/8/docs/technotes/guides/intl/encoding.doc.html) for details. |