appendToJobStatus( )
Appends a specified string to the status of the current job. iServer writes status messages for each report-generation job.
JavaScript syntax
appendToJobStatus(statusString)
Java syntax  
public void appendToJobStatus( String statusString )
Argument
statusString
The string to add to the job status.
Usage
Use to provide information for debugging purposes. For example, to verify that an event handler is executed, write a message indicating that the event method is called.
JavaScript example
reportContext.getAppContext().get("ServerContext").appendToJobStatus("This message appears when beforeFactory is called.\n");
Java example
IServerContext scontext;
scontext = (IServerContext) reportContext.getAppContext().get("ServerContext");
scontext.appendToJobStatus("This message appears when beforeFactory is called.\n");

Additional Links:

Copyright Actuate Corporation 2012