Hi,
I am working on creating reports in SAP BO Analysis tool.
I need to create a filter which takes system date and calculates 6 months before to the system date and use that date.
I calculated this date using VB scripts and Macros. Now I need to set these days as filter values but it should be automatically. Hence I am sending these value from the macros itself to get set in the filter. But filter is not working.
If I pass a string value for a dimension filter is working while if I give date as filter value for other dimension filter is not working. Any one please help me regarding this.
I am using this VB Script
---------------------------------------------------------------------------------------------------------------------------------
Sub Button1_Click()
Dim r
MsgBox (" Called ")
r = Application.Run("SAPSetFilter", "DS_1", "ZCRMLSSTS", "01/02/2000", "Text")
End Sub
--------------------------------------------------------------------------------------------------------------------------------
I have seen some of the guide which uses same format but they did not specified what steps we need to follow while sending date. So anybody please help me regarding this.