TASK
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 |
QUALIFY *; UNQUALIFY ; DocTask: LOAD Name, Enabled, NameIsAutoGenerated, AllowPluginClient, AllowMobileClient, AllowZeroFootprintClient, AllowPDFGeneration, SendNotificationEmail, AlwaysOpenable, SourceDocumentID, ClearLocks, ClearAll, ClearAlwaysOneSelected, ReapplySelections, EnableAuditLogging, SetScript, SectionAccessUserName, SectionAccessPassword, OverrideXSSectionAccess, MaxOpenSessions, SessionTimeout, DocumentTimeout, ReloadOption, Distribute, DistributionServiceID, TaskTrack, TimeoutMinutes, NumberOfAttempts, CreationMode, DownloadAccess, ExportAccess, VersionID, EnableSessionCollaboration, ModifiedByUser, ModifiedTime, ID FROM [C:\XML_SAVED\DocumentTask.xml] (XmlSimple, Table is [NewDataSet/DocumentTask]); UNQUALIFY *; |
CATEGORY
1 2 3 4 5 6 7 8 9 10 11 |
QUALIFY *; UNQUALIFY ; Category: LOAD Name, ModifiedByUser, ModifiedTime, ID FROM [C:\XML_SAVED\Category.xml] (XmlSimple, Table is [NewDataSet/Category]); UNQUALIFY *; |
TASK-CATEGORY
1 2 3 4 5 6 7 8 9 10 11 |
QUALIFY *; UNQUALIFY ; Category: LOAD Name, ModifiedByUser, ModifiedTime, ID FROM [C:\XML_SAVED\Category.xml] (XmlSimple, Table is [NewDataSet/Category]); UNQUALIFY *; |
TRIGGER
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 |
QUALIFY *; UNQUALIFY DocTask.ID; Trigger: LOAD TaskID As DocTask.ID, Enabled, TriggerType, EnableAt, ExpireAt, RunTaskID, MaxCount, Count, if(Year(StartAt)<>0,Timestamp(StartAt)) As StartAt, EDXPassword, TimeContraintFrom, TimeContraintTo, AndTimeConstraintMinutes, MainTriggerID, ModifiedByUser, ModifiedTime, ID FROM [C:\XML_SAVED\Trigger.xml] (XmlSimple, Table is [NewDataSet/Trigger]); UNQUALIFY *; |