"the document contains fields that may refer to other files . Do you want to update"
This is the warning pop-up i`m getting while generating TABLE OF CONTENTS with below code ..
ObjectFactory factory = Context.getWmlObjectFactory();
P p = factory.createP();
R r = factory.createR();
FldChar fldchar = factory.createFldChar();
fldchar.setFldCharType(STFldCharType.BEGIN);
fldchar.setDirty(true);
r.getRunContent().add(getWrappedFldChar(fldchar));
p.getParagraphContent().add(r);
R r1 = factory.createR();
Text txt = new Text();
txt.setSpace("preserve");
txt.setValue("TOC \\o \"1-3\" \\h \\z \\u \\h");
r.getRunContent().add(factory.createRInstrText(txt) );
p.getParagraphContent().add(r1);
FldChar fldcharend = ...