- Tip
- History of modifications
HHistoryModification (Function) In french: HHistoriqueModification
 Available only with these kinds of connection
Returns the modifications made to one or more items of a given record. The result can be displayed in a List Box or Table control to allow the user to view the modifications made to the specified data file. Remarks: - This function is using the write-to-file log as well as all the archived logs.
In a window linked to a data file, you have the ability to automatically display the history of the modifications performed on each item of the displayed record. To do so, the data file must be logged.
// Allows viewing in a List Box control // users who have changed the current customer's email address // as well as the different values of the email over time sHistory is string sHistory = HHistoryModification(Customer, CustomerID, Customer.CustomerID, "Email", 5) sModification, sItem, sStatus, sUser are strings sModification = ExtractString(sHistory, firstRank, CR) WHILE sModification <> EOT sItem = ExtractString(sModification, 1, TAB) sStatus = ExtractString(sModification, 2, TAB) sUser = ExtractString(sModification, 5, TAB) SWITCH sStatus CASE "D" ListAdd(LIST_ListModification, ... StringBuild("The user %1 modified " + ... "the Email item to give it the value %2", ... sUser, sItem)) CASE "N" ListAdd(LIST_ListModification,... StringBuild("The user %1 modified " + ... "the Email item to make it NULL", sUser)) END sModification = ExtractString(sHistory, nextRank, CR) END
Syntax
Modifications in a record identified by the value of a search key Hide the details
<Result> = HHistoryModification(<Data file> , <Search item> , <Sought value> , <List of items> [, <Number of modifications> [, <Separator of values> [, <Separator of modifications>]]])
<Result>: Character string This result has the following format:
<Values> + <Separator of values> + <Information about modifications> + <Separator of modifications>
Where:
- <Values> has the following format:
<Value of item 1> + <Separator of values> + <Status of item 1> + <Separator of values> + ... + <Separator of values> + <Value of item N> + <Separator of values> + <Status of item N>
- <,Status of item> corresponds to:
- "D": the item is defined.
- "N": the item is NULL.
- "I": the item does not exist in the archived log.
- <Information about modifications> has the following format:
<Modification date and time> + <Separator of values> + <Computer identifier (value of HComputer)> + <Separator of values> + <Login> + <Separator of values> + <Computer name> + <Separator of values> + <IP address> + <Separator of values> + <Application name> + <Separator of values> + <HInfoMsg> + <Separator of values> + <Function number>
<Data file>: Character string Name of the logged data file where the last modifications must be sought. <Search item>: Character string Name of the item used to select the record for which the last modifications are sought. The selected record corresponds to the record whose value is equal to <Sought value>. We recommend that you use a search key to optimize the performance. The second syntax enables you to perform a search on a record number. <Sought value>: Type corresponding to the value Value of the item that is sought in the data file. The list of modifications will be provided for the record for which the value of <Browse item> corresponds to <Sought value>. <List of items>: Character string List of items taken into account for the last modifications. In this list, the different items are separated by commas or by CR characters (Carriage Return). If this parameter corresponds to "*", all the items found in the data file will be included. <Number of modifications>: Optional integer Maximum number of modifications returned (from the most recent one). All the modifications will be returned if this paramer is not specified. <Separator of values>: Optional character string Separator for the different values. This separator corresponds to TAB if this parameter is not specified. <Separator of modifications>: Optional character string Separator for the different modifications made to the specified record. This separator corresponds to CR if this parameter is not specified.
Modifications in a record identified by its record number Hide the details
<Result> = HHistoryModification(<Data file> , <Record number> , <List of items> [, <Number of modifications> [, <Separator of values> [, <Separator of modifications>]]])
<Result>: Character string Values of the items of <List of items> separated by <Separator of values>. The following information is added after these values:
<Data file>: Character string Name of the logged data file where the last modifications must be sought. <Record number>: Integer Number of the record where the modifications must be sought. The hRecNumCurrent constant can be used to handle the current record. <List of items>: Character string List of items taken into account for the last modifications. In this list, the different items are separated by commas or by CR characters (Carriage Return). If this parameter is not specified or if it corresponds to "*", all the items found in the data file will be included. <Number of modifications>: Optional integer Maximum number of modifications returned (from the most recent one). All the modifications will be returned if this paramer is not specified. <Separator of values>: Optional character string Separator for the different values. This separator corresponds to TAB if this parameter is not specified. <Separator of modifications>: Optional character string Separator for the different modifications made to the specified record. This separator corresponds to CR if this parameter is not specified. Remarks Tip We recommend that you use the first syntax by using as search key the automatic identifier of the data file or a unique key. Indeed, using the record number may cause some unexpected effects: the record number is re-used when deleting and adding a record. For example, in a Customer data file, if a customer is deleted, the number of the deleted record will be reused when adding a new customer. The history of the modifications performed on this record number will take into account the modifications performed on the different customers associated with this record number.
This page is also available for…
|
|
|