Question
How to find the correct field's name for using in Document.Field("...") constructions?
Answer
Create Batch processing script with following code:
foreach (IField field in Documents[0].Sections[0].Children)
{
FCTools.ShowMessage(field.FullName);
}