Specifies the name of the file that stores the sequence number that the connector uses to create unique output files for each type of business object during request processing. The format of the file is:
BusinessObjectName = NextSequenceNumber
where BusinessObjectName is the name of the request business object, and NextSequenceNumber represents the sequence number of the most recently received business object, incremented by one. For example, if the connector is processing Customer and Item business objects, the output log file might contain the following:
Customer = 12 Item = 2
This file indicates that the connector has already processed 11 Customers and 1 Item. The next Customer and Item business objects will be written to the Customer_12.out and Item_2.out files, respectively. When it receives a request Order business object, the connector adds a new row to the output log file and writes the business object to the Order_1.out file.
If the FileSeqEnabled meta object property is set to true, the connector uses this sequence number to uniquely name the output files that it creates for each business object. The connector names each output file by appending an underscore (_) and the sequence number to the business object's name or to a file whose name is specified in the OutputFileName meta-object attribute. Because the output log is stored in user-readable format, you can use a standard text editor to read the file or to reset its value.
Default value: Output.Log
Possible values: File that registers the next sequence number for each incoming business object during request processing