CirWizardPageSettingsService
It is possible to assign files to the corresponding directory.
The execution context of a Standard Import routine subtask was extended to include methods that allow the programmer to retrieve so-called wizard page settings objects using predefined page identifiers. A wizard page settings object allows the programmer to enable or disable the wizard page it refers to (property Enabled) and also provides a case-insensitive dictionary where the programmer can store the inputs for the page (property Inputs). By default a wizard page that supports this mechanism (e.g. the page 'Select Audit Folder') is not enabled.
In the following you will find an IDEAScript macro that retrieves a reference to the SelectAuditFolder wizard page settings object and enables it.
Example
'Step #1: Retrieve a reference to the Standard Import Routine service that provides access to the page settings objects
Dim pageSettingsService as Object Set pageSettingsService = SmartContext.GetServiceById("CirWizardPageSettingsService")
'Step #2:Retrieve a reference to the SelectAuditFolder page settings object
Dim selectAuditFolderPageSettings As Object Set selectAuditFolderPageSettings = pageSettingsService.GetCirWizardPageSettings("SelectAuditFolder")
'Step 3: Verify that the reference is valid and enable the page If selectAuditFolderPageSettings is nothing Then SmartContext.Log.LogWarning "The settings object for the page SelectAuditFolder was not found" Else selectAuditFolderPageSettings.enabled = true
End If