Resource_addJournal
Add a journal information to a specific resource.
Syntax
Resource_addJournal(objects)
Arguments
Object: ResourceJournalEntry objects.
Return type
Empty.
Examples
string commentType="UndoComplete"; // Type of journal
string content="test Undo complete"; // Content of journal
number QRID=37246024; // Resource ID of "phong questionnaire 1"
ResourceJournalEntry Rjt = new ResourceJournalEntry(QRID, commentType, content);
Resource_addJournal(Rjt);