Hi umesh,
The following macro will lock all DATE fields in the document.
Code:
Sub LockDates()
Dim Fld As Field, Rng As Range
For Each Rng In ActiveDocument.StoryRanges
For Each Fld In Rng.Fields
If Fld.Type = wdFieldDate Then Fld.Locked = True
Next
Next
End Sub