Dear all,
I'm trying to display a parameter on my report but somehow it doesn't work. :-(
I created a global string parameter email.
In the data stream I instereted the code below:
Function Fetch( ) As AcDataRow
Dim row As ssCampaignDataRow
Set row = Super::Fetch()
If row.ssSub_Type = "TDS" Then
email = "tds@hallo.de"
Else
email ="msdds@hallo.de"
End if
End Function
Then I added a new text field and in ValueExp I just entered email.
I don't get any compile errors, but then no data is dispalyed.
Any suggestions of what I need to change? Any help is appreciated.
Thanks
Andreas
I'm trying to display a parameter on my report but somehow it doesn't work. :-(
I created a global string parameter email.
In the data stream I instereted the code below:
Function Fetch( ) As AcDataRow
Dim row As ssCampaignDataRow
Set row = Super::Fetch()
If row.ssSub_Type = "TDS" Then
email = "tds@hallo.de"
Else
email ="msdds@hallo.de"
End if
End Function
Then I added a new text field and in ValueExp I just entered email.
I don't get any compile errors, but then no data is dispalyed.
Any suggestions of what I need to change? Any help is appreciated.
Thanks
Andreas