; NB Remove these comments in actual use ; Reports.ini file for the Special Reports processing ; The section [Reports] must be there, and is a map to the relevant data ; Each report will have an entry in this section, consisting of some ; arbitrary name such as HasbroSpecial, and a string which will appear ; in the list box of the dialog box. ; For each entry in these section there must be a corresponding section ; (if it is missing, then the list box will not contain this entry) ; This section has the same name as the string to the left of the = sign ; of the main section - e.g. [HasbroSpecial] ; The entries in this section include: ; ReportName This is mandatory, and gives the name of the .rpt file to be used ; FromDate This is optional - if the report needs it, then put in whatever you want as the label for the corresponding text box ; ToDate This is optional, and the same comments apply as in FromDate. These dates are used, if present, to select the records displayed. ; TestedDate This should be here if either FromDate or ToDate are used. It is the name of the database field used for comparison with the From and/or To date ; PromptID The entry in the catalogue database for the PromptID if the report uses this - used to get the string to be displayed in the report ; PromptPhase This goes with the PromptID ; ExtraConditions If present are added to the selection criteria statement [Reports] TransactionsWithReferrals="Transaction Log with Referrals" Transactions="Transaction Log" [TransactionsWithReferrals] ReportName=TranRepRef.rpt FromDate="Select &From:" ToDate="Select &To:" TestedDate="orders.date ordered" PromptID=4 PromptPhase=1 SelectionFormula= ExtraConditions="{Orders.bOrderIsDeleted} = false and {Orders.nPaymentStatus} <> 8 and {Orders.nPaymentStatus}>0" [Transactions] ReportName=TranRep.rpt FromDate="Select &From:" ToDate="Select &To:" TestedDate="orders.date ordered" ExtraConditions="{Orders.bOrderIsDeleted} = false and {Orders.nPaymentStatus} <> 8 and {Orders.nPaymentStatus}>0"