Hello,
I am using Crystal Reports with an SAP-BW database. I am using the following formula to display the parameters selected from a dropdown list:
WhilePrintingRecords;
StringVar Values;
NumberVar Counter := count({?YourParameter});
While Counter >= 1
Do
(Values := Values + {?YourParameter}[Counter] + ", ";
Counter := Counter - 1);
Values [1 to (Length(Values)-1)]
Instead of getting the description I would like to have displayed I get the following output:
[0BBP_PROPO].[I1011],
[0BBP_PROPO].[I1020],
[0BBP_PROPO].[I1015],
[0BBP_PROPO].[I1009], etc.
Where [0BBP_PROPRO] is the field I am selecting on and [I1011], etc. are the codes for the values i've selected. What I would like to see are the long descriptions...
Does anyone have experience in this area?
Any help would be greatly appreciated.
I am using Crystal Reports with an SAP-BW database. I am using the following formula to display the parameters selected from a dropdown list:
WhilePrintingRecords;
StringVar Values;
NumberVar Counter := count({?YourParameter});
While Counter >= 1
Do
(Values := Values + {?YourParameter}[Counter] + ", ";
Counter := Counter - 1);
Values [1 to (Length(Values)-1)]
Instead of getting the description I would like to have displayed I get the following output:
[0BBP_PROPO].[I1011],
[0BBP_PROPO].[I1020],
[0BBP_PROPO].[I1015],
[0BBP_PROPO].[I1009], etc.
Where [0BBP_PROPRO] is the field I am selecting on and [I1011], etc. are the codes for the values i've selected. What I would like to see are the long descriptions...
Does anyone have experience in this area?
Any help would be greatly appreciated.