StartBackground Script Examples: Difference between revisions
Jump to navigation
Jump to search
(306662) |
(306662) |
||
Line 24: | Line 24: | ||
--#ImportSapQuery | --#ImportSapQuery | ||
</pre> | </pre> | ||
[[Category:Examples]] |
Revision as of 11:46, 30 August 2016
This page contains examples for the StartBackground command.
The following example will first show a "Starting SAP import" message in the user interface, and then run an import from SAP in the background.
Print 'Starting SAP import' (SELECT 'Enabled', 'TRUE') --#StartBackground (SELECT 'SapAppServerHost', '127.0.0.1') UNION ALL (SELECT 'SapSystemNumber', '10') UNION ALL (SELECT 'SapUser', 'qpr') UNION ALL (SELECT 'SapPW', 'demo') UNION ALL (SELECT 'SapRouter', '') UNION ALL (SELECT 'SapClient', '200') UNION ALL (SELECT 'SapLanguage', 'EN') UNION ALL (SELECT 'SapPoolSize', '5') UNION ALL (SELECT 'SapPeakConnectionsLimit', '10') UNION ALL (SELECT 'SapConnectionIdleTimeout', '600') UNION ALL (SELECT 'ExecuteInClientSide', '1') UNION ALL (SELECT 'TargetTable', '#SAPmode1') UNION ALL (SELECT 'Append', '0') UNION ALL (SELECT 'SapWhereClause', 'VBELN BETWEEN `0060000039` AND `0060000041`') UNION ALL (SELECT 'SapQueryTable', 'VBAK') --#ImportSapQuery