1C:Enterprise 8.3. Practical Developer’s Guide. Lesson 14 (3:20). Optimization of posting the Services document. Locking data that is read and modified during posting

Locking data that is read and modified during posting

It may seem that you completed the task. However, there is still a very important issue you have not taken care of.

Now the procedure is executed as follows:

  1. The first query (Query) is executed. It generates a temporary table with the list of document materials.
  2. The second query (Query2) is executed. It reads the cost and balance of materials available in the document tabular section.
  3. The RegisterRecords.Write() line is executed. It writes the register records.
  4. The third query (Query3) is executed. It performs the check for negative balances.

Note that from the beginning of the second query execution and till the end of the procedure you need to ensure that the product cost and balance values accessed in the procedure remain unchanged and are not even available for other transactions to read. Obviously the platform locks this data from modification but the lock is only applied when the register records are written.

But the following scenario is possible. During the second query execution you read that there are 2 units of some material available. Another transaction (another user) that intends to spend the materials also reads that 2 units of the material are available. Then the platform writes the register records and locks the data. The other transaction waits for the platform to release the data. You post the document, withdraw 2 units of the material, and release the data. The other transaction also attempts to withdraw 2 units of the material but they are not available any more.

A similar situation can occur between steps 3 and 4. So the balance check might be performed incorrectly.

To avoid such collisions, you need to lock balance values from reading by other transactions even before the second query is executed. Before reading any data that you intend to modify, you also need to prevent other transactions from reading the data until your modifications are completed (or until the document posting is canceled).

In Designer mode

How does one do it? This is definitely a good question. Let us look at the Data lock control mode configuration property. This property has the Managed value (fig. 14.31).

Lesson 14 (3:20). Optimization of posting the Services document / Locking data that is read and modified during posting / In Designer mode 
Fig. 14.31. Data lock control mode in configuration properties

This means that you have to use managed locks, which are set using 1C:Enterprise script tools.

You need to lock the data you intend to read and subsequently modify. This is implemented using the LockForUpdate property of register record sets. Let us use this property.

  • Insert the lines shown in listing 14.41 before writing empty record sets.

    Listing 14.41. Posting() procedure (fragment)

    ...
        |    ON DocumentMaterialsAndServices.MaterialOrService = BalanceOfMaterialsBalance.Material";
      
    // Setting data locks for the CostOfMaterials and BalanceOfMaterials registers
    RegisterRecords.CostOfMaterials.LockForUpdate = True;
    RegisterRecords.BalanceOfMaterials.LockForUpdate = True;
     
    // Writing empty record sets to read balances without the data added by this document
    RegisterRecords.CostOfMaterials.Write();
    RegisterRecords.BalanceOfMaterials.Write();      
          
    QueryResult = Query2.Execute();

A managed lock is applied at the moment of writing these record sets, right before the execution of the second query. This is exactly what we wanted to achieve.

Leave a Reply

Your email address will not be published. Required fields are marked *

1C:Enterprise Developer's Community