Ref EngineErrorCodes 01102004

12
ERROR CODES DESK REFERENCE Runtime Errors Number Description 0 No Error; run was successful. 1 Function called with incorrect number of parameters (not enough arguments on the stack). Not trappable. 2 Stack overflow. Not trappable. 3 Stack underflow. Not trappable. 4 A Resume or Resume Next Statement was executed with no error handler active. Not trappable. 5 Out of memory. The runtime system tried to allocate more memory, but failed. Not trappable. Errors 1 through 5 are fatal errors and are not trappable. No constants exist in the expression language for these errors. This is because they cannot be trapped and returned as values. These fatal errors will terminate the execution of the expression. NOTE: StackTrace is a new feature, available for the first time in Cosmos. This property facilitates development debugging of RIFL scripts. When developing with Java Objects, StackTrace is particularly useful because it includes information about the Java execution stack. Constants, Values, and Descriptions Error # Description ERR_TYPEMISMATCH 6 Generic error; Dimensioned types didn't match, trying to assign different types, etc. ERR_NULL 7 An argument that cannot be null is null ( cbool(NULL)) ERR_UNDERFLOW 8 Stack underflow. ERR_OVERFLOW 9 Stack overflow; common cause is calling a function that returns a value, and not assigning that value. ERR_FIELDACCESS 10 Unable to access a field reference. ERR_EVAL 11 Error compiling or running an eval statement. ERR_FILEREAD 12 Error reading a file. ERR_REGEXP 13 Invalid regular expression (sub/gsub/like/strepl/etc). ERR_LOOKUPARG 14 Too many args to lookup/tlookup. ERR_ADDRPARSE 15 Invalid "part" argument to add1part. 1

Transcript of Ref EngineErrorCodes 01102004

Page 1: Ref EngineErrorCodes 01102004

ERROR CODES DESK REFERENCE

Runtime Errors

Number Description

0 No Error; run was successful.

1 Function called with incorrect number of parameters (not enough arguments on the stack). Not trappable.

2 Stack overflow. Not trappable.

3 Stack underflow. Not trappable.

4 A Resume or Resume Next Statement was executed with no error handler active. Not trappable.

5 Out of memory. The runtime system tried to allocate more memory, but failed. Not trappable.

Errors 1 through 5 are fatal errors and are not trappable. No constants exist in the expression language for these errors. This is because they cannot be trapped and returned as values. These fatal errors will terminate the execution of the expression.

NOTE: StackTrace is a new feature, available for the first time in Cosmos. This property facilitates development debugging of RIFL scripts. When developing with Java Objects, StackTrace is particularly useful because it includes information about the Java execution stack.

Constants, Values, and Descriptions Error # Description

ERR_TYPEMISMATCH 6 Generic error; Dimensioned types didn't match, trying to assign different types, etc.

ERR_NULL 7 An argument that cannot be null is null ( cbool(NULL))

ERR_UNDERFLOW 8 Stack underflow.

ERR_OVERFLOW 9 Stack overflow; common cause is calling a function that returns a value, and not assigning that value.

ERR_FIELDACCESS 10 Unable to access a field reference.

ERR_EVAL 11 Error compiling or running an eval statement.

ERR_FILEREAD 12 Error reading a file.

ERR_REGEXP 13 Invalid regular expression (sub/gsub/like/strepl/etc).

ERR_LOOKUPARG 14 Too many args to lookup/tlookup.

ERR_ADDRPARSE 15 Invalid "part" argument to add1part.

1

Page 2: Ref EngineErrorCodes 01102004

ERR_EXTFUNC 16 Error calling an external function (in a DLL).

ERR_ARG 17 Invalid argument to a function call.

ERR_SPOKEACCESS 18 Unable to access a Connector reference.

ERR_RECACCESS 19 Unable to access a record reference.

ERR_DIV0 20 Attempt to divide by 0.

ERR_INVARRAY 21 Attempt to reference an array without specifying an index.

ERR_ARRAYBOUNDS 22 Attempt to access an out-of-bounds array index.

ERR_OBJECTNOTSET 23 Attempt to use an object variable that hasn't been set to a valid object.

ERR_READONLYOBJECT 24 Attempt to set a property on an object that doesn't allow it (such as setting connector/record/field properties on the source or target).

ERR_EOF 25 Received an EOF while reading a file.

ERR_PROPASSIGN 26 Attempt to set an object property to an invalid value.

ERR_OBJECTREQUIRED 27 Object is required, or the wrong type of object was used.

ERR_AUTOMATIONERROR 28 Error occurred trying access/use a COM/OLE object.

ERR_NOSUCHPROP 29 Object doesn't support the specified property.

ERR_PROPFAIL 30 Error setting/getting a property value.

ERR_INDEX 31 Invalid project step or session name.

ERR_FILENOTFOUND 32 Unable to locate the specified file (file functions).

ERR_FILEACCESS 33 Unable to access the specified file (file functions).

ERR_FILEWRITE 34 Error writing to the specified file (file functions).

ERR_FILEOPEN 35 Error opening the specified file (file functions).

ERR_JAVAEXCEPTION 36 Java exception while running code for a java object.

ERR_DOMERROR 37 DOM error occurred (using the DOM functions).

ERR_TIMEEXPIRED 38 Timeout on a message object.

ERROR_TYPEMISMATCH 100 Type mismatch; generic error that indicates a Transformation failed, or a data type was found when another data type was expected.

ERR_NULL 101 Invalid use of null. Occurs in places where a null value was found, but a real value is needed.

ERR_NUMUNDER 102 Numeric underflow.

ERR_NUMOVER 103 Numeric overflow.

ERR_FIELDACCESS 104 Unable to access field; runtime attempted to access contents of a field, but could not locate the field.

2

Page 3: Ref EngineErrorCodes 01102004

ERR_EVAL 105 Problem with EVAL expression; either an error compiling an expression to be evaluated, or a runtime error occurred while executing it.

ERR_FILEREAD 106 Error reading file during the Lookup or Xlate function, if the specified file is unreadable.

ERR_REGEXP 107 Invalid regular expression.

ERR_LOOKUPARG 108 Too many arguments supplied to lookup.

ERR_ADDRPARSE 109 Invalid address parsing; invalid address part was supplied to one of the address parsing functions.

ERR_EXTFUNC 110 Error calling an external function.

ERR_ARG 111 Invalid procedure call or argument.

ERR_SPOKEACCESS 112 Connector container access problem.

ERR_RECACCESS 113 Record access problem.

ERR_DIV0 114 Division (mod) by 0.

ERR_INVARRAY 115 Access array with no or wrong Dims.

ERR_ARRAYBOUNDS 116 Array index out of bounds.

ERR_OBJNOTSET 117 Object or variable is not set.

ERR_ROOBJECT 118 Object is read-only.

ERR_EOF 119 Hit End of File (EOF) on a record read.

ERR_PROPASSGN 120 Error assigning to object property.

ERR_OBJREQ 121 Object is required.

ERR_AUTOMATION 122 Automation error occurred.

ERR_NOSUCHPROP 123 Invalid property or method supplied for object.

ERR_PROPFAIL 124 Error invoking property or method.

ERR_INDEX 125 General indexing error.

ERR_FILENOTFOUND 126 File name does not exist.

ERR_FILEACCESS 127 File access mode problem.

ERR_FILEWRITE 128 Error writing to file.

ERR_FILEOPEN 129 Error opening file.

ERR_JAVAEXCEPTION 130 Java exception occurred calling a Java method or property.

ERR_DOMERRO 131 Error with DOM object.

3

Page 4: Ref EngineErrorCodes 01102004

Base Transformation Processing Return Codes

NUMBER ERROR_NAME DESCRIPTION

25001 OUT_OF_MEMORY There is not enough memory to complete Integration Engine request.

25002 UNSUPPORTED_VERSION An unsupported version of Visual Basic attempted to use Integration Engine.

25003 UNKNOWN_CONNECTOR_TYPE Returned in two different contexts – first, a Connector type was not selected for the Source or Target. In this case, error will include the message "Spoke type invalid or unspecified". Second, it could mean the requested Connector cannot be loaded. In this case, the message "Unable to create new Connector" will be used.Reasons a Connector cannot be loaded: The Connector registry (connlist) cannot be found. The registry is usually located in the Integration Engine install directory.Invalid Connector name given. Integration Engine is unable to locate the dynamic libraries required for the Connector using the application search path. The -Initialization_Info command line option can be used to specify the name and location of the registry with the ConnListFile and LibraryPath entries. Problem with installation and configuration of third party dynamic libraries. Not enough system memory or other necessary resource.

25004 UNKNOWN_ACTION Returned when an application tries to assign an invalid Action.

25005 INVALID_FIELD_INDEX An invalid field index or an invalid field name was encountered.

25006 INVALID_OPTION An error was encountered trying to retrieve a Connector Option Value from a Connector.

25007 FIELD_NAME_NOT_DEFINED Returned when an application attempts to reference an invalid line style field name.

25008 INVALID_IMPORT_CONTROL The Source on the Transformation is invalid or unspecified. Certain API functions require that a Source be bound to a Target to execute properly. In addition, the Import Transformation and Export Transformation options in the Integration Architect product require a valid Source bound to a valid Target.

25009 NO_CONNECTION No connection established for data Source. Can occur on a Source or a Target.

25010 INVALID_EXPRESSION An expression is invalid. The expression may not be syntactically correct, or it may reference undefined fields.

25011 FIELD_NAME_TOO_LONG Specified field name exceeds the maximum length for field names for the currently selected Connector. This error occurs when defining fields.

25012 FIELD_NAME_BAD_CHAR Assigned field name includes one or more invalid characters for the current Connector type.

25013 FIELD_NAME_RESERVED_WORD Specified field name is invalid because it is a reserved word.

25014 FIELD_NAME_NOT_UNIQUE Field name that is not unique is encountered.

25015 UNKNOWN_BROWSER_TYPE Browser type is unknown or not supported.

25016 FIELD_COUNT_EXCEEDED Field count has been exceeded.

25017 INDEX_ERROR Returned when an application attempts to use an index for an array that is out of range.

25018 VALUE_ERROR A value is out of range or invalid.

25019 UNKNOWN_DATA_TYPE This error is returned when an invalid datatype name is assigned.

4

Page 5: Ref EngineErrorCodes 01102004

25020 LOSS_OF_PRECISION A field definition has been copied from the layout for one data Source to the layout of another data Source, and the Target layout does not support a compatible datatype with the same precision as the data type for the Source field definition. This is considered a warning for most applications.

25021 INVALID_STYLE_CONTROL The application has made a request that requires that the DJText control be bound to the DJStyle control.

25022 INVALID_STYLE_INDEX An invalid index was specified for a line style in the DJText control.

25023 STYLE_NAME_NOT_DEFINED An invalid line style name was specified as an index for a line style in the DJText control.

25024 STYLE_NAME_NOT_UNIQUE An attempt was made to add a new line style definition in the DJText control and a line style with the same name has already been defined.

25025 OPTION_SCHEMA_CONFLICT A Connector option was set that may invalidate the Target Structured Schema. This can happen in situations where the application is appending data to an existing file, and the file format is a format that determines record characteristics based on options settings, and there is a connection to the Target data Source. For example, the application has designed a Transformation specification that uses append mode with a Fixed ASCII Target file and then changes the record separator. The Fixed ASCII Connector uses the record separator to determine the record lengths. If the Target layout is designed with the assumption of one record length and the option setting changes this assumption, the layout is likely to be invalid. The best way to avoid this sort of problem is to make sure all option settings are made prior to layout design.

25026 IMPORT_TRANSFORMATION Error importing the Transformation.

25027 EXPORT_TRANSFORMATION Error exporting the Transformation.

25028 EXPORT_PARTIAL Exporting partial Transformations is invalid. A partial Transformation is a Transformation specification that is missing an active connection for either the Source or Target data Source. Exports of partial Transformations are not currently supported. The application should ensure that both halves of the Transformation are connected and try again.

25029 NO_REJECT_FILE During a Transformation, if one of the mapping Expressions calls the Reject() Function and no reject log is connected, the error callback routine will be called passing this error code. This is considered a warning for the application user, so it is fired only once during a Transformation.

25030 TRANSFORMATION_ABORTED If a Transformation is aborted with either the DJAbort API function or by a map Expression calling the Abort() Function, the error callback routine will be called with this error code. This is an advisory error code.

25031 BUFFER_TOO_SMALL A buffer passed to receive a value that is too small for the entire value to be returned.

25032 UNCOMMITTED_TRANSACTION_BATCH An uncommitted transaction was encountered.

25033 TRANSACTION_BATCH_NOT_STARTED A commit transaction or rollback transaction was requested when a transaction had not previously been started.

25034 TRANSACTION_BATCH_TOO_LARGE The size limit on a batch transaction has been exceeded.

25035 SOURCE_TARGET_LICENSE Licensing error. Invalid combination of Source and/or Target types.

25036 RECORD_LAYOUT_NOT_DEFINED Record layout not specified.

25037 INVALID_RECORD_LAYOUT_INDEX Invalid Structured Schema index.

5

Page 6: Ref EngineErrorCodes 01102004

25038 RECORD_LAYOUT_NAME_NOT_UNIQUE Record layout name not unique.

25039 RECORD_RULE_NOT_DEFINED Record discriminator rule not defined.

25040 INVALID_RECORD_RULE_INDEX Invalid record rule index.

25041 RECORD_RULE_NAME_NOT_UNIQUE Record rule name encountered that is not unique.

25042 INVALID_RECORD_RULE_CONDITION Invalid record rule condition encountered.

25043 INVALID_EVENT_ACTION Invalid Event Action encountered.

25044 INVALID_FIELD_NAME Invalid field name encountered.

25045 INVALID_RECORD_LAYOUT_NAME Invalid Structured Schema name encountered.

25046 SAVE_TRANSFORMATION Indicates an error was encountered while saving the Transformation. Specific error details are written to the log file.

25047 LOAD_TRANSFORMATION Indicates an error was encountered while loading the Transformation. Specific error details are written to the log file.

25048 LOAD_MAP Indicates an error was encountered while loading the Map. Specific error details are written to the log file.

25049 SAVE_MAP Indicates an error was encountered while saving the Map. Specific error details are written to the log file.

25052 LOAD_STRUCTURED_SCHEMA Indicates an error was encountered while loading the Structured Schema.

25053 SAVE_STRUCTURED_SCHEMA Indicates an error was encountered while saving the Structured Schema.

25055 INVALID_VALIDATION_TYPE Invalid Validation Type encountered.

25056 VALIDATION_ERROR Validation Error encountered.

25057 INVALID_ACTION_EXPRESSION Invalid Action Expression encountered.

25058 INVALID_DATACHANGE_MONITOR_EXPRESSION

Invalid Datachange Monitor Expression encountered.

25059 INVALID_ACTION_MAP Invalid Action Map encountered.

25060 INVALID_ACTION_KEYS Invalid Action Keys encountered.

25061 INVALID_FILTER_EXPRESSION Invalid Filter Expression encountered.

25062 INVALID_CONNECTION_INFO Invalid Connection Info encountered.

25063 INVALID_FIELD_EXPRESSION Invalid Field Expression encountered.

25064 INVALID_DISCRIMINATOR_RECORD_RULES Invalid Discriminator Record Rules encountered.

25065 INVALID_CODE_MODULE Invalid Code Module encountered.

25066 XML_PARSE_ERROR Indicates an error was encountered while parsing an XML document.

25068 XML_WRITE_ERROR Indicates an error was encountered while writing the XML document.

6

Page 7: Ref EngineErrorCodes 01102004

25069 XML_PARSER_INITIALIZATION_ERROR XML Parser initialization error encountered.

25501 EOF End of file (EOF) error. An attempt was made to read a nonexistent record.

25502 BADNAME Specified file name is invalid, or the file does not exist.

25504 READERR An error was encountered reading file or table.

25505 NOMEM Out of memory.

25507 CREATERR Error encountered when creating file or table.

25508 WRITERR Error writing to a file or table.

25509 NOSPACE No space available on disk.

25510 INDEX_ERROR Index error encountered.

25511 RECTOOBIG Record definition is too large. The Structured Schema contains too many fields, or the combined size of each of the fields exceeds the maximum record length for the data format.

25512 NOSOURCE An attempt was made to perform some operation on a data Source and the data Source is not connected.

25513 BADLOGIC An internal error occurred while attempting to set a Connector option.

25514 BADUPDATEOPTS An internal error occurred while initializing the Update option settings after a Target Connector is switched to Update mode.

25515 BADMATCH Target layout and Target file or Target definitions do not match.

25516 BADMODE The application attempted to set an invalid output mode for a Target data Source.

25517 INDEX_INVALID An attempt was made to define an invalid index. One or more of the fields in the index do not exist in the layout.

25518 NOLAYOUT No fields defined for the Target data Source and an attempt was made to open the Target for output.

25519 OPENERR Error opening data Source.

25520 BADFILETYPE Invalid or corrupt data file.

25521 DELETERR Unable to delete a file, drop a table, or delete all of the records from the Target data Source.

25522 INDEX_UNSUP Unsupported index.

25523 SQL_NOSERVER Bad or missing server name.

25524 SQL_LOGERR Server login error.

25525 BADTYPE Invalid data or record type.

25526 FIELDNAME Invalid field name.

25527 CLOSERR Error closing Target file.

7

Page 8: Ref EngineErrorCodes 01102004

25528 DELETED Attempting to delete a record that is already marked as deleted.

25529 RECCRYPTERR Records are encrypted.

25530 RNOTOOBIG The record number is greater than maximum allowed.

25531 USERID Invalid User ID encountered.

25532 BADOPTIONNAME Invalid property name encountered.

25533 BADOPTIONVALUE Invalid property name encountered.

25534 INVALID Generic error meaning the Connector encountered some type of unusual error condition.

25535 NOBROWSER Bad or missing data structure browser.

25536 NOMEMOFILE Bad or missing memo file. Some data formats use a separate file to store memo fields. Error is returned if the data Source layout includes memo fields, but the memo file cannot be found.

25537 SORTFILE The Target Connector was unable to create a sort index file.

25538 SORTDUP Returned when a duplicate is encountered and duplicates are not allowed.

25539 FIELDCOUNT Too many fields in structure.

25540 MEMOCOUNT Too many memo fields in structure.

25541 MEMOPOS Memo field in wrong position in structure.

25542 TRUNCATE Returned by Source and Target Connectors. For a Target, this is returned only when the Truncation Handling option is set to ERROR. For a Source, it is returned when the Truncation Handling option is either WARN or ERROR. See Specify Logging Defaults Preferences to change the settings.

25543 RUNTIMERR Runtime error evaluating expressions.

25544 NOTSUP Indicates that a Connector does not support a particular method.

25545 NOTIMP Indicates that a Connector has not implemented a particular method.

25546 LICENSING Indicates that a particular Connector or browser is not licensed for the product version.

25547 LOADLIBRARY Indicates that the Load Library for a particular Connector or browser failed to load or could not be found.

25548 SUPPDLL Indicates that a Load Library required by the Connector or browser (supporting load library) failed to load or could not be found.

25549 NEWPROC Indicates an error was encountered trying to get the address of a function in a Load Library.

25550 UNSPECIFIED An error occurred while loading a new Connector or browser.

25551 USERABORT The loading of a Connector or browser was aborted at the request of the user.

25552 OVERFLOW Returned by Sources and Targets. For a Target, this is returned when the Overflow Handling option is set to ERROR. For a Source, it is returned when the Overflow

8

Page 9: Ref EngineErrorCodes 01102004

Handling option is set to WARN or ERROR.

25553 NOCONNECTION No connection established.

25554 SQLEXECERR SQL statement execution error.

25555 EXTEXECERR External application execution error encountered.

25556 NULLINSERT Null value not allowed.

25557 NOTUNIQUE Key value not unique.

25558 CONSTRAINT Integrity constraint error encountered.

25559 DICTNOSOURCE Metadata Source not defined.

25560 DICTOPENERR Error opening metadata Source.

25561 DICTREADERR Error reading metadata.

25562 IOWAIT Waiting on input.

25563 MISMATCH No matching records for update.

25564 SQLTRANSACTIONDEADLOCK Transaction deadlock detected.

25565 LICENSE_EXPIRED Appears only in code that is commented out (i.e. not used, should never be returned)

25566 TIME_EXPIRED Indicates when a Message expiration date is reached.

25567 ASSERTION_FAILED Indicates an Assert Action failed.

25568 RECORD_INVALID Returned when a Validate record action fails.

26001 OUT_OF_MEMORY Out of Memory.

26002 ACCESSELEMENTS Error accessing the elements in portable spec file.

26003 ADDCHILD Error adding a child object instance.

26004 ADDFIELD Error adding a field.

26005 ADDMAPEXPR Error adding a map expression.

26006 ADDOPTION Error adding an option.

26007 ADDSOURCE Error adding a Source.

26008 ADDTARGET Error adding a Target.

26009 BUFFER_OVERFLOW Buffer Overflow.

26010 COULDNOTOPENCONTAINER Could not open the portable spec file.

26011 COULDNOTOPENELEMENT Could not open an element in the portable spec file.

26012 EMPTY_LIST List is empty.

9

Page 10: Ref EngineErrorCodes 01102004

26013 GETOBJECT Error getting access to an object instance.

26014 HANDLE_NOT_FOUND Object Handle not found.

26015 HANDLE_NOT_UNIQUE Object Handle not unique.

26016 INSERT_FAILED An insert into a list failed.

26017 INVALID_OBJECTNAME Invalid Object Name.

26018 INVALIDATTRIBUTE Invalid Attribute.

26019 INVALIDBIND Invalid Bind of Source to Target.

26020 INVALIDFIELD Invalid Field.

26021 INVALIDMAPEXPR Invalid Map Expression.

26022 INVALIDOPTION Invalid Option.

26023 INVALIDSIZE The given size is invalid for the element being read.

26024 INVALIDSOURCE Source is invalid.

26025 INVALIDTARGET Target is invalid.

26026 NO_TRANSFORMATION No Transformation found.

26027 NO_SOURCE No Source found.

26028 NO_CONNECTOR No Spoke found.

26029 NO_STRUCTURE No Structure found.

26030 NO_TARGET No Target found.

26031 NOELEMENTSINSTORAGE No elements in portable spec file.

26032 NOELEMENTSTORELEASE No elements in portable spec file to release.

26033 NOMEMORYALLOC No Memory has been allocated.

26034 NOVALUEEXISTS Value not found.

26035 OBJECTEXISTS Object Exists.

26036 OBJECTTYPE Invalid Object Type.

26037 OBJTYPENOTSUPPORTED Object Type is not supported.

26038 READELEMENT Error reading an element in the portable spec file.

26039 READINGELEMENTS Error reading the next element in the portable spec file.

26040 REMOVECHILD Error removing a child object instance.

26041 REMOVEFIELD Error removing a field.

10

Page 11: Ref EngineErrorCodes 01102004

26042 REMOVEMAPEXPR Error removing a map expression.

26043 REMOVEOPTION Error removing an option.

26044 REMOVESOURCE Error removing a Source.

26045 REMOVESTRUCTURE Error removing a structure.

26046 REMOVETARGET Error removing a Target.

26047 SETTINGINTERFACE Error setting the Interface Type.

26048 UNKNOWN_SOURCE_CONNECTOR_TYPE Source Spoke Type is unknown.

26049 UNKNOWN_TARGET_CONNECTOR_TYPE Target Spoke Type is unknown.

26050 WRITEELEMENT Error writing an element to the portable spec file.

26051 INVALIDFILTER Invalid Filter Expression.

26052 ADDFILTER Error adding a Filter Expression.

26053 REMOVEFILTER Error removing a Filter Expression.

26054 INVALID_SAMPLE_TYPE Invalid Sample Type.

26055 INVALID_CONTAINER Invalid portable spec file

26056 INVALID_SAMPLE_START Invalid Sample Start.

26057 INVALID_SAMPLE_COUNT Invalid Sample Count.

26058 INVALID_SAMPLE_FREQUENCY Invalid Sample Frequency.

26059 INVALID_TYPE_CHANGE Invalid Type Change. Changing the Source or Target type is only supported when creating a default Transformation. It is not supported when loading an existing Transformation.

26060 BUFFER_TOO_SMALL Memory allocated for the input buffer is too small for the value to be returned. The value will be truncated.

26061 FIELD_MISMATCH A field in the Target layout of the stored Transformation does not match a field in the current Target layout.

26062 DATATYPE_MISMATCH A datatype for a field in the Target layout of the stored Transformation does not match the data type of the corresponding field in the current Target layout.

26063 COUNT_GREATER The field count of the current Target is greater than the field count of the stored Target.

26064 COUNT_LESS The field count of the current Target is less than the field count of the stored Target.

26065 BLANK_RECORDS No map expressions exist, which will result in blank records written to the Target.

26066 INVALID_SORTFIELD An invalid sort field was encountered.

26067 ADD_SORTFIELD An error occurred trying to add a sort field.

11

Page 12: Ref EngineErrorCodes 01102004

12

26068 REMOVE_SORTFIELD An error occurred trying to remove a sort field.

26069 INVALID_SOURCE_BROWSER Invalid Source browser information was encountered.

26070 INVALID_TARGET_BROWSER Invalid Target browser information was encountered.

26071 ADD_EVENTACTION Error adding event action.

26072 INVALIDSTRUCTURE Invalid Structured Schema.

26073 ADDSTRUCTURE Error adding a Structured Schema.

26074 ADD_ACTION_PARAMETER Error adding an action parameter.

26075 INVALID_EVENTACTION Invalid event action.

26076 INVALID_ACTIONPARM Invalid action parameter.

26077 ADD_RECORDRULE Error adding a record discrimination rule.

26078 INVALID_RECORDRULE Invalid record discrimination rule.

26079 REMOVE_RECORDRULE Error removing a record discrimination rule.

26080 INVALID_WRITE Returned when trying to write to a container or directory that does not have write access.

As of 01/10/2004