I have developed a special one-product-report. This report schould run
for about 80 products whith the DAS. That meens that there schould be no
user entering the product-number with a prompt ! And I don’t want to
save this report 80 times !! I want to give the product number with a
paramter to the report. Is this possible ?
By the way: I know that theres the @script variable, but this feature
only works with Free-Hand-SQL, but I need my Universe.
regards
Mit freundlichen Gruessen
DSB, Daten-Service Beck GmbH
Alexander Zipf
Dim boDoc as BODocument
Set boDoc=Application.ActiveDocument()
For I=1 to 80
boDoc.Dataproviders(1).RemoveFilters
boDoc.AddComplexFilter(“ProdClass/ProductName”, “Equal To”,
ProdName(I))
boDoc.Refresh
boDoc.Print
NextI
End Sub
This is not working version of Script, just a skeleton. Check the syntax for
the commands.
If you need help you can mail me.
– Vasan
-----Original Message-----
From: Zipf, Alexander, DSB [SMTP:zipf@DSB.NET]
Sent: Thursday, January 14, 1999 10:13 AM
Hi
I have developed a special one-product-report. This report schould run
for about 80 products whith the DAS. That meens that there schould be no
user entering the product-number with a prompt ! And I don’t want to
save this report 80 times !! I want to give the product number with a
paramter to the report. Is this possible ?
By the way: I know that theres the @script variable, but this feature
only works with Free-Hand-SQL, but I need my Universe.