How to track this issue?

When calling NIFOpenCollection, for certain views I am getting the error ID which after conversion with OSLoadString is “This view is obsolete and requires missing field list. Please edit and re-save the view.”

So, how to solve this issue? Is there any way to refresh, re-save view in program?

Subject: How to track this issue?

Pradip,

What is NIFOpenCollection ?

Rishi

Subject: RE: How to track this issue?

It is API function.

http://www-12.lotus.com/ldd/doc/tools/c/7.0/api70ref.nsf/61fd4e9848264ad28525620b006ba8bd/55138808f41b2bcd852561be004e25d3?OpenDocument

In my program I have used it as…

[DllImport(“nnotes.dll”)]

internal static extern UInt16 NIFOpenCollection(param1, param2…);

Subject: RE: How to track this issue?

Silly question - but do you really need to use C API calls?

API calls should always be reserved for very low level manipulation of Notes objects. Are you sure you can’t achieve what you are doing with standard LS classes?

A

Subject: RE: How to track this issue?

YEs…I am creating desktop application so

Subject: RE: How to track this issue?

YEs…I am creating desktop application so