Hi,
I have two fields in oracle as below
component_alias not null VARCHAR2(32)
attribute_address not null VARCHAR2(2000)
I am using a select query in my package as below
select component_alias "Alias", attribute_address "Address"
from component_header;
Now I am calling this package from a crystal report where in Field Explorer, (in Database field section) the fields are coming as below.
Alias: String(32)
Address: Memo
Now the problem is this, that Address is coming as Memo, instead of VARCHAR2(2000). I have to group the report on address but grouping is not possible on Memo.
I don't know about Memo. Please suggest the solution.
Manoj
I have two fields in oracle as below
component_alias not null VARCHAR2(32)
attribute_address not null VARCHAR2(2000)
I am using a select query in my package as below
select component_alias "Alias", attribute_address "Address"
from component_header;
Now I am calling this package from a crystal report where in Field Explorer, (in Database field section) the fields are coming as below.
Alias: String(32)
Address: Memo
Now the problem is this, that Address is coming as Memo, instead of VARCHAR2(2000). I have to group the report on address but grouping is not possible on Memo.
I don't know about Memo. Please suggest the solution.
Manoj