|
||||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | |||||||||
java.lang.Objectcom.businessobjects.dsws.reportengine.DrillDetail
The DrillDetail interface provides BusinessObjects Universe detail to the properties and functionality. A detail is defined with the designer tool.
Example: Get the drill details from the drill dimension.
RetrieveDrillInfo boDrillInfo = new RetrieveDrillInfo();
RetrieveData retBOData = new RetrieveData();
retBOData.setRetrieveDrillInfo(boDrillInfo);
// Switch to drill mode if document is not already in drill mode.
Action[] actions = new Action[1];
Drill objDrill = new Drill();
objDrill.setActiveDrill(true);
actions[0] = objDrill;
DocumentInformation boDocInfo = RepEng.getDocumentInformation( docid, null, actions, null, retBOData);
DrillInfo boDocDrill = boDocInfo.getDrillInfo();
DrillDetail[] boDrDets = boDocDrill.getFreeDrillDetails();
for(int i=0;i < boDrDets.length;i++)
{
DrillDetail boDrDet = boDrDets[i];
String strDrDet = boDrDet.getName();
out.print(strDrDet);
}
Drill,
Action,
DrillPath,
DocumentInformation,
RetrieveData,
Serialized Form| Constructor Summary | |
DrillDetail()
Instantiate a new blank DrillDetail object. |
|
| Method Summary | |
boolean |
equals(java.lang.Object obj)
Internal Use Only. |
java.lang.String |
getDescription()
Get a description of the DrillDetail. |
static org.apache.axis.encoding.Deserializer |
getDeserializer(java.lang.String mechType,
java.lang.Class _javaType,
javax.xml.namespace.QName _xmlType)
Internal Use Only. |
java.lang.String |
getFilter()
Return the member on which the current Drill is being filtered. |
java.lang.String |
getID()
Return the DrillDetail unique ID. |
LOV |
getLOV()
Returns a List Of Values (LOV) included in the DrillDetail. |
java.lang.String |
getName()
Return the DrillDetail name. |
static org.apache.axis.encoding.Serializer |
getSerializer(java.lang.String mechType,
java.lang.Class _javaType,
javax.xml.namespace.QName _xmlType)
Internal Use Only. |
static org.apache.axis.description.TypeDesc |
getTypeDesc()
Internal Use Only. |
int |
hashCode()
Internal Use Only. |
void |
setDescription(java.lang.String description)
Internal Use Only. |
void |
setFilter(java.lang.String filter)
Internal Use Only. |
void |
setID(java.lang.String ID)
Internal Use Only. |
void |
setLOV(LOV LOV)
Internal Use Only. |
void |
setName(java.lang.String name)
Internal Use Only. |
| Methods inherited from class java.lang.Object |
getClass, notify, notifyAll, toString, wait, wait, wait |
| Constructor Detail |
public DrillDetail()
| Method Detail |
public LOV getLOV()
LOVpublic void setLOV(LOV LOV)
Internal Use Only.
public java.lang.String getDescription()
public void setDescription(java.lang.String description)
Internal Use Only.
public java.lang.String getName()
public void setName(java.lang.String name)
Internal Use Only.
public java.lang.String getID()
public void setID(java.lang.String ID)
Internal Use Only.
public java.lang.String getFilter()
When you analyze report result in Drill mode, filters can be applied as you drill on selected values. For example, if you drill on the value 'January' on a table cell to view more detailed results for each week, the values displayed should correspond to the weeks in January.
public void setFilter(java.lang.String filter)
Internal Use Only.
public boolean equals(java.lang.Object obj)
Internal Use Only.
public int hashCode()
Internal Use Only.
public static org.apache.axis.description.TypeDesc getTypeDesc()
Internal Use Only.
public static org.apache.axis.encoding.Serializer getSerializer(java.lang.String mechType,
java.lang.Class _javaType,
javax.xml.namespace.QName _xmlType)
Internal Use Only.
public static org.apache.axis.encoding.Deserializer getDeserializer(java.lang.String mechType,
java.lang.Class _javaType,
javax.xml.namespace.QName _xmlType)
Internal Use Only.
|
||||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | |||||||||