Good day!
I have a very unusual request... but first let me say that I'm using BOEXI and CR XI-R2 with an Oracle 9i db.
Here's the problem;
I have counties stored as their county codes and county names. In the multi-param I pass the codes, which works great. Now, at the top of the report, they want to see which counties they selected. I don't want to switch to passing the county names if I can help it because the string I'd end up passing to the enterprise would be extremely large (maybe too large), but I can't find a way to return the name at this point. Here's the formula I use currently which strings together all the county codes;
Any ideas?
You guys are the best!!!
I have a very unusual request... but first let me say that I'm using BOEXI and CR XI-R2 with an Oracle 9i db.
Here's the problem;
I have counties stored as their county codes and county names. In the multi-param I pass the codes, which works great. Now, at the top of the report, they want to see which counties they selected. I don't want to switch to passing the county names if I can help it because the string I'd end up passing to the enterprise would be extremely large (maybe too large), but I can't find a way to return the name at this point. Here's the formula I use currently which strings together all the county codes;
Code:
local stringvar CID;
local numbervar x := count({?CountyID});
local numbervar i;
for i := 1 to x do
(CID := CID + {?CountyID}[i];
if i < x then
CID := CID + " , ";
i + 1;
);
CID
Any ideas?
You guys are the best!!!