Hello all,
I was doing some work on 525 moving to 53SP6.
In 525 the following call
protected String getDocumentNames(IInboxItem inboxItem) throws DfException
{
String docNames;
int docCount;
if((docCount = inboxItem.getDocumentCount()) >0)
{
StringBuffer sbuf = new StringBuffer(32);
// get first name - here we know there is at least one of them
// and the ID
sbuf.append(inboxItem.getDocumentObjectName(0));
sbuf.append(inboxItem.getDocumentObjectId(0).getId
Would get the Document name + ID ie SOP3000900fff7777
Now EMC inform me the call (inboxItem.getDocumentObjectId(0).getId wont work
ARGH!!!!
What should I use here instead, as I would like to continue moving forward and not consulting javadocs.
Id need it in the same format, or the rest of the code wont work.
Ta.
Hans.