I assume from this you have a block that is based on a stored procedure. If this is so you have to code all the DML yourself within the procedure, including a procedure to lock the table or rows. You then set the Lock Procedure... set of properties at the block level to point to your lock procedure.
Within this proc you can issue a LOCK TABLE command to lock the entire table, or use FOR UPDATE to lock individual rows for example.