cancel
Showing results for 
Search instead for 
Did you mean: 

Crystal Reports Metadata

Former Member
0 Kudos

Hi, I want to get the list of table / objects used by a Crystal Report using RAS

I can get the list of database fields but not the one used by the report.

Thanks

Accepted Solutions (0)

Answers (1)

Answers (1)

former_member200290
Contributor
0 Kudos

You can get the fields that are being used by parsing the SQL string. Here is a brief code snippit:

Dim gp As New GroupPath

gp.FromString("")

Response.Write(rptClientDoc.RowsetController.GetSQLStatement(gp).ToString)

Trevor