If your goal is to select records where a data field is equal to the current or prior date, then it is possible, the easiest way i've been able to do this is to set up your export like you normally would and on the select tab, add the date field you want to filter by. On the field's property dialog, set relation to Equal and leave the fields beneath it blank but check the User Input option.
Create a file somewhere either in MAS90\CM\Script or MAS90\VI to hold the following perform logic. Comment out the lines as needed.
! Prefix a line with ! to comment it out.
OPTION1$=DTE(0:"%Y%Mz%Dz") ! Use this for the current day's date.
! OPTION1$=DTE(JUL(DTE(0))-1:"%Y%Mz%Dz") ! Use this for the prior day's date.
Add perform logic on the "On Execution" type and use a relative path to point to the file you created to hold the perform logic.
For each "User Input" you enable on the select tab, the export program will populate an OPTIONx$ variable where "x" represents the sequence and you can set the values of these variables in the "On Execution" perform type.
------------------------------
David Speck II
Tennessee Software Solutions
------------------------------