You get this error because you only supply two value to the table and not all. If you only want to supply two value you also need to include the column name in the query. You have to write your insert query like below.
INSERT INTO IncrementDecrement (FromId,COUNTSTATUS) VALUES (@FromId, @COUNTSTATUS)