Enable SQL Statement Replication

Use sp_setrepdefmode to enable and configure SQL statement replication.

sp_setrepdefmode includes options to:
The DML operations that apply to SQL statement replication include: When the table replication mode is set to any combination of UDI the RepAgent sends additional information to enable SQL statement replication for the specified DML operation.
For example, to enable SQL statement replication for update, delete and insert select operations on table t, enter:
sp_setrepdefmode t, 'UDI', 'on'
go

See Replication Server Administration Guide Volume 2 > Performance Tuning > SQL Statement Replication.