CrystalReports & Datasets.xsd

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

When useing a Crystal Report (CR) bound to a dataset.xsd, the paramenter do not show up in the CR Field Exploere.

The parameters are defined in the stored proc that I used to create my dataset. file.

Yes I can access them via my VB.Net code, but I am unable to access them and their values from within my CR document formula code

Is there a way to access these paramenters from within my CR document Formulas

Thank
Bria
P.S. I am able to do this with an ADO connection to a SQL SP, but I have a need to use the Dataset.XSD file
 
There may be an automatic way to do this but this is what I did to map a dataset to my report

Prior to setting up the report you can get a sample DataSet and extract the scema using
ds.WriteXmlSchema("filename"

Then use the <xs:element name="yourmatchingtable">...</xs:element> from your file as your xsd

Suresh

----- bRIAN wrote: ----

When useing a Crystal Report (CR) bound to a dataset.xsd, the paramenter do not show up in the CR Field Exploere.

The parameters are defined in the stored proc that I used to create my dataset. file.

Yes I can access them via my VB.Net code, but I am unable to access them and their values from within my CR document formula code

Is there a way to access these paramenters from within my CR document Formulas

Thank
Bria
P.S. I am able to do this with an ADO connection to a SQL SP, but I have a need to use the Dataset.XSD file
 
Back
Top