bluecjh
Programmer
- Mar 12, 2003
- 385
where can i obtain a schema for the
Crystal Enterprise Back end
in particular for %InfoObjects% table
thanks
Crystal Enterprise Back end
in particular for %InfoObjects% table
thanks
Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
Query = "Select SI_NAME, SI_ID, SI_DESCRIPTION, SI_UPDATE_TS From CI_INFOOBJECTS Where " +
"SI_PROGID='CrystalEnterprise.Report' And SI_INSTANCE=0 AND SI_PARENT_FOLDER=" + ParentID +
"ORDER BY SI_DESCRIPTION";
Result = IStore.Query(Query) ;
if (Result.Count > 0) {
//Set up the table header.
HTMLTable="<TABLE width = \"800\" >" +
"<TR><TH align='left'><B></B></TH>" +
"<TH align='left'><B></B></TH></TR>";
for (k=1;k<=Result.Count;k++)
//Add the report name and details to the table.
{
if (Result.Item(k).Description == "") {
var desc1 = Result.Item(k).Title;
}
else {
var desc1 = Result.Item(k).Description;
}
var desc = Result.Item(k).Description
//var descSize = desc.length - 1;
//var descDisplay = desc.substr(3,descSize);
HTMLTable=HTMLTable +
"<TR valign=top><TD>" +
"<A class='tableLink' title='Report Name: " + Result.Item(k).Title + "' HRef='#' onClick=\"navReport('" + Result.Item(k).ID +"')\">" +
Server.HTMLEncode(desc1) + "</A></TD>" ;
}
HTMLTable=HTMLTable+"</TABLE>";
}