com.businessobjects.dsws.reportengine
Interface Action

All Known Subinterfaces:
Close, Drill, EmbeddedAction, FillDataSourceParameterValues, FillDBLogons, FillPassword, FillPrompts, FillQueryContexts, Refresh, UpdateTrackData

public interface Action

The Action interface is the base interface for possible actions that can be performed on the document.

Following are the possible actions you can perform on the document:
1. Close,
2. Drill,
3. EmbeddedAction
4. FillPassword,
5. FillDBLogons
6. FillPrompts,
7. FillQueryContexts,
8. Refresh,
9. UpdateTrackData
10. FillDataSourceParameterValues

Note: Action must not be used on its own. Use interfaces inheriting from Action such as Refresh.

Example: Refresh a document.

 Action[] actions = new Action[1];
 actions[0] = Refresh.Factory.newInstance();
 DocumentInformation boDocInfo = boRepEng.getDocumentInformation(strDocid, null, actions, null, null);
 

See Also:
BICatalog, Document, ReportEngine, DocumentInformation, RetrieveMustFillInfo, Refresh, FillPrompts, Drill, FillPassword, EmbeddedAction, FillDBLogons, FillQueryContext, Navigate, RetrieveData

Nested Class Summary
static class Action.Factory
          A class with methods for creating instances of the Action type.
 
Field Summary
static org.apache.xmlbeans.SchemaType type
          Internal Use Only.
 

Field Detail

type

static final org.apache.xmlbeans.SchemaType type

Internal Use Only.