Skip to content Skip to sidebar Skip to footer

ParameterDocID Gets Only 6 Digit Of My DocumentUniqueID

Im calling from my Javascript application a specific IBM Notes agent. The call from Javascript to Notes agent happens with a parameter. This parameter is the Universal ID. Unfortu

Solution 1:

Agent's runOnServer(String noteID) accepts only the noteId as parameter, not the UniversalId.

So, change your code to

var noteID = doc.getNoteID()
...
var agentResult = notesAgent.runOnServer(noteID)

Post a Comment for "ParameterDocID Gets Only 6 Digit Of My DocumentUniqueID"