How can i use integer fields in Navsion to Create and update data using web service.

i am using Navision 2009
Add integer field (ItemInt) in Item tables.
Modify the Item List Page, which use as a web service.

In C# web service i assign the value of int varaiable and pass to Item card.
ItemInt = 145 ;

when i create or update the ItemInt filed, its not set the value 145 of ItemInt Variable in Navision.

All othe fields are created or updated successfully.

How can i use integer fields in Navsion to Create and update data using web service.

Thanks

Thanks every i sloved my self.

Update the record type int, bool, and datetime using web service in Navision 2009.

Must set the

ItemIntSpecified =

true;

Then it update the record in Navision.

Thanks any way