Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.
Comment: Macro name changed from html to html-bobswift during server to cloud migration processing.

...

The following figure illustrates the syntax of a Universal Connector FS Job Network definition.


Panel

Html bobswift

<pre>
FS_Jobnet_Header FS_Jobnet_Process [FS_Jobnet_Process] 
FS_Jobnet_Process_Relation [FS_Jobnet_Process_Relation]
</pre>

FS Job Network Definition File Statement Keywords

...

The following figure illustrates a sample FS job network definition file.


Panel

Html bobswift

<pre>
/*******************************************************************
**
** Sample FS Job Network definition file for USAP for 
** SAP 
**
** Demonstrates creation of a multi-process jobnet.
**
*******************************************************************/

/* Jobnet Header statement */
NETWORKIDENTIFIER               = "SB-NETID_01";

/* Add Jobnet Process statements */
PROCESS_IDENTIFIER              = "SB-PRC_01" 
   REPORT_NUMBER                = "001"
   REPORT_NAME                  = "Z_TEST_NETWORK"
   REPORT_VARIANT               = "RC_00"
   JOBNAME                      = "SB-Z_TEST_NETWORK"
   ;

PROCESS_IDENTIFIER              = "SB-PRC_02" 
   REPORT_NUMBER                = "002"
   REPORT_NAME                  = "RSUSR000"
   JOBNAME                      = "SB-RSUSR000"
   ;

PROCESS_IDENTIFIER              = "SB-PRC_03" 
   REPORT_NUMBER                = "003"
   REPORT_NAME                  = "BTCSPOOL"
   JOBNAME                      = "SB-BTCSPOOL"
   ;
 
/* Add Jobnet Process Relations statements. */
PROCESS_RELATION                = "1"
   REPORT_NUMBER_PREDECESSOR    = "001"
   REPORT_NUMBER_SUCCESSOR      = "002"
   ;

PROCESS_RELATION                = "2"
   REPORT_NUMBER_PREDECESSOR    = "002"
   REPORT_NUMBER_SUCCESSOR      = "003"
   ;
</pre>