https://pastein.ru/t/gO

  скопируйте уникальную ссылку для отправки


/*****************************************************************************/
/* NAME: hello_world_60second_jobflow.sas */
/* PURPOSE: Create hello_world_jobflow in 60 seconds using sample tasks */
/*****************************************************************************/
/*Step 1 Scripting Client Initialization - Required setup */
%irm_sc_init();
/*Step 2 Create a job flow - Name the jobflow definition */
%irm_sc_build_jobflow(
i_jf_name =hello_world_flow,
o_jf_ref_name =example_jf_ref);
/*Step 3 Add Tasks from fa.sample.3.6 - sentence, hello, world */
%sentence(
i_jf_ref =&example_jf_ref,
i_task_name =sentence);
%hello(
i_jf_ref =&example_jf_ref,
i_task_name =hello);
%world(
i_jf_ref =&example_jf_ref,
i_task_name =world);
/*Step 4 Save this job flow definition to IRM Server */
%irm_sc_save_jobflow(
i_jf_ref =&example_jf_ref);
/*Step 5 Execute job flow instance in IRM Server */
%irm_sc_execute_jobflow(
i_jf_ref =&example_jf_ref);
/*Step 6 Show RESULTS library and link to Job Flow Diagram in IRM Server*/
%irm_sc_show_jobflow_results(
i_jf_ref =&example_jf_ref);