com.businessobjects.dsws.reportengine
Interface RetrieveDataProvidersInfo


public interface RetrieveDataProvidersInfo

RetrieveDataProvidersInfo is used to retrieve information about a document's DataProvider(s) inside a DocumentInformation object. That is to say the Universe, stored procedure or flat file used to build BusinessObjects documents.
A BusinessObjects document may have more than one DataProvider.

Example:Retrieve a documents DataProviders.

 RetrieveData retBOData = RetrieveData.Factory.newInstance();
 RetrieveDataProvidersInfo retBoDP = RetrieveDataProvidersInfo.Factory.newInstance();
 retBOData.setRetrieveDataProvidersInfo(retBoDP);
 DocumentInformation boDocInfo = boRepEng.getDocumentInformation(strDocid, null, null, null, retBOData);
 DataProviderInfo[] docDataProviders = boDocInfo.getDataProviderInfoArray();
 

See Also:
RetrieveView, RetrieveData, DataProviderInfo, ReportEngine, DocumentInformation

Nested Class Summary
static class RetrieveDataProvidersInfo.Factory
          A class with methods for creating instances of the RetrieveDataProvidersInfo 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.