hawkseyesys
Programmer
Tech Info:
Crystal Reports 10
Oracle 9.2.06
Connectivity: native Oracle 9.0.1.1.1
I've read through all the posts regarding this issue but haven't found a solution. I am attempting to place a BLOB field from an ERP system into a Crystal Report.
I have a main report which includes a formula which provides the link to the table where the BLOB resides. That table is in a subreport. I know I'm linking to the correct record because I can display other fields from that record on the subreport. But when I place the BLOB field, nothing displays.
I've checked for LENGTH of the BLOB field and it has data in it. It is text data, according to another descriptive field in the record.
Based on other threads I have attempted to create a SQL expression to convert the BLOB to a VARCHAR2.
CONVERT(<blob_field>,varchar2(1000))
results in the ORA-00936: missing expression error.
CAST(<blob_field> AS varchar2(1000))
results in the ORA-00932: inconsistent datatypes: expected NUMBER got BLOB error.
SUBSTR(<blob_field>,1,500)
results in that same ORA-00932 error.
Another post from the ERP website suggested
Change the Paragraph Formatting of the field so that "Text Interpretation" is set to "RTF Text".
However, Paragraph Formatting does not appear to be an option for this type of field.
The solution to this problem is critical to our implementation of the ERP and any suggestions would be much appreciated.
Crystal Reports 10
Oracle 9.2.06
Connectivity: native Oracle 9.0.1.1.1
I've read through all the posts regarding this issue but haven't found a solution. I am attempting to place a BLOB field from an ERP system into a Crystal Report.
I have a main report which includes a formula which provides the link to the table where the BLOB resides. That table is in a subreport. I know I'm linking to the correct record because I can display other fields from that record on the subreport. But when I place the BLOB field, nothing displays.
I've checked for LENGTH of the BLOB field and it has data in it. It is text data, according to another descriptive field in the record.
Based on other threads I have attempted to create a SQL expression to convert the BLOB to a VARCHAR2.
CONVERT(<blob_field>,varchar2(1000))
results in the ORA-00936: missing expression error.
CAST(<blob_field> AS varchar2(1000))
results in the ORA-00932: inconsistent datatypes: expected NUMBER got BLOB error.
SUBSTR(<blob_field>,1,500)
results in that same ORA-00932 error.
Another post from the ERP website suggested
Change the Paragraph Formatting of the field so that "Text Interpretation" is set to "RTF Text".
However, Paragraph Formatting does not appear to be an option for this type of field.
The solution to this problem is critical to our implementation of the ERP and any suggestions would be much appreciated.