-
Book Overview & Buying
-
Table Of Contents
-
Feedback & Rating
SAP Data Services 4.x Cookbook
By :
In this book, you will find a number of text styles that distinguish between different kinds of information. Here are some examples of these styles and an explanation of their meaning.
Code words in text, database table names, folder names, filenames, file extensions, pathnames, dummy URLs, user input, and Twitter handles are shown as follows: "We can include other contexts through the use of the include directive."
A block of code is set as follows:
select * from dbo.al_langtext txt JOIN dbo.al_parent_child pc on txt.parent_objid = pc.descen_obj_key where pc.descen_obj = 'WF_continuous';
When we wish to draw your attention to a particular part of a code block, the relevant lines or items are set in bold:
AlGUIComment ("ActaName_1" = 'RSavedAfterCheckOut', "ActaName_2" = 'RDate_created', "ActaName_3" = 'RDate_modified', "ActaValue_1" = 'YES', "ActaValue_2" = 'Sat Jul 04 16:52:33 2015', "ActaValue_3" = 'Sun Jul 05 11:18:02 2015', "x" = '-1', "y" = '-1')
CREATE PLAN WF_continuous::'7bb26cd4-3e0c-412a-81f3-b5fdd687f507'( )
DECLARE
$l_Directory VARCHAR(255) ;
$l_File VARCHAR(255) ;
BEGIN
AlGUIComment ("UI_DATA_XML" = '<UIDATA><MAINICON><LOCATION><X>0</X><Y>0</Y></LOCATION><SIZE><CX>216</CX><CY>-179</CY></SIZE></MAINICON><DESCRIPTION><LOCATION><X>0</X><Y>-190</Y></LOCATION><SIZE><CX>200</CX><CY>200</CY></SIZE><VISIBLE>0</VISIBLE></DESCRIPTION></U
IDATA>', "ui_display_name" = 'script', "ui_script_text" = '$l_Directory = \'C:\\\\AW\\\\Files\\\\\';
$l_File = \'flag.txt\';
$g_count = $g_count + 1;
print(\'Execution #\'||$g_count);
print(\'Starting \'||workflow_name()||\' ...\');
sleep(10000);
print(\'Finishing \'||workflow_name()||\' ...\');', "x" = '116', "y" = '-175')
BEGIN_SCRIPT
$l_Directory = 'C:\\AW\\Files\\';$l_File = 'flag.txt';$g_count = ($g_count + 1);print(('Execution #' || $g_count));print((('Starting ' || workflow_name()) || ' ...'));sleep(10000);print((('Finishing ' || workflow_name()) || ' ...'));END
END
SET ("loop_exit" = 'fn_check_flag($l_Directory, $l_File)', "loop_exit
_option" = 'yes', "restart_condition" = 'no', "restart_count" = '10', "restart_count_option" = 'yes', "workflow_type" = 'Continuous')
Any command-line input or output is written as follows:
setup.exe SERVERINSTALL=Yes
New terms and important words are shown in bold. Words that you see on the screen, for example, in menus or dialog boxes, appear in the text like this: "Open the workflow properties again to edit the continuous options using the Continuous Options tab."
Warnings or important notes appear in a box like this.
Tips and tricks appear like this.