X-UP Model

In this chapter, we will explain the various services that collect and fuse data from X-UP model policies and data sources defined in the X-UP model.

An X-UP model consists of metadata and logic classes. Metadata contains input/output information for the model and information about the logic classes. The execution of the model corresponds to the execution of the logic classes. Logic classes maintain a consistent structure by using the same interface, allowing applications to be developed with a consistent quality even without specialized knowledge.

What is an X-UP model?

An X-UP model consists of 3 files: .xam, AutomationLogic.java, and BaseAutomationLogic.java.

Explanation of .xam

In the .xam file, you can develop business logic by drawing a flowchart. The developed content is automatically generated into the BaseAutomationLogic.java file.

Explanation of AutomationLogic.java

This is the space where users can write their own Java code.

Explanation of BaseAutomationLogic.java

The file is automatically generated based on the xam file.

The relationship between xam, AutomationLogic.java, and BaseAutomationLogic.java.

When a model (xam) is created in an Xup project, two files, AutomationLogic.java and BaseAutomationLogic.java, are generated.
The xam file stores all the information such as the model and parameters in the editor.
The AutomationLogic.java file serves as a space where the user can directly write Java code and inherits from BaseAutomationLogic.java.
BaseAutomationLogic.java is automatically regenerated when saving or refreshing based on the xam file.
Therefore, if you code in BaseAutomationLogic.java, your modifications will be lost when the xam file is saved, as BaseAutomationLogic.java will be regenerated.

X-UP Model Compilation Process

1. When the model is saved, the model's .xam file is compiled into .xml, and the .java file is compiled into .class. The generated files are automatically copied to the Export Generated Path location.

2. Refresh is the same as saving, but it does not copy to the Export Generated Path. All models (.xam) in the X-UP project are compiled from .xam -> .xml and .java -> .class. After compilation, to call the created model through the web application project, you need to execute Export Generate Files (Copy, New).

3. Before executing Export Generate Files (Copy, New), the class files are located in (\workspace\xup\bin), and the XML files are located in (\workspace.xup\model${projectName}\model).

For dynamic web application, when publishing is performed, the files are moved to Workspace.metadata.plugins\org.eclipse.wst.server.core\tmp0\wtpwebapps and executed.

When you execute Export Generate Files (Copy, New), the compiled files are moved from .xup\bin to the web application's model folder and asynchronously moved to Workspace.metadata.plugins\org.eclipse.wst.server.core\tmp0\wtpwebapps. You can monitor the log through the fileWatcher to check the completion status and proceed with testing.

4. Although deleted from the X-UP project, there may be cases where files are not properly removed from the location \workspace.xup\model\xup\model. As a result, files that were deleted may be recreated in the Workspace.metadata.plugins\org.eclipse.wst.server.core\tmp0\wtpwebapps location due to a bug.


This bug can occur in versions prior to March 2024, especially when files are deleted from the Project Explorer instead of the X-UP Explorer.

To resolve this, you need to manually navigate to \workspace.xup\model\xup\model and delete the files directly.

Automation Model

The Automation Model uses a GUI editor to represent the logic of a service as a diagram. Each of the diagrams is called an Invoke and retrieves data from a specified data source. The data information required for data retrieval is created using the X-UP builder's editor and the Properties View. When the automation model is saved, Java class code is automatically generated, and any modifications made to the model in the GUI editor are automatically reflected in the class code.

In the automation model, X-UP Builder provides the following types of Invoke.

Invoke

Description

SAP RFC Invoke

Module for SAP RFC

DB Select Invoke

Module for DBMS select

DB Modify Invoke

Module for DBMS insert, update, delete

DB Procedure Invoke

Module for DBMS procedure

OpenApi Invoke

Module for OpenApi processing

X-UP Invoke

Module for invoking models from remote X-UP

Model Invoke

Module for invoking X-UP models

AS400 Invoke

Module for invoking Visual Cobol resources

Web Service invoke

Module for web service processing

OData invoke

Module for SAP OData processing

Additionally, it provides frequently used functions.

Function

Description

User Method

You can write Java source code that cannot be represented in the editor.

Quick Merge

You can merge two datasets into one.

Merge

You can merge two or more datasets into one.

XML Parser

Easily parse specific XML data in the editor.

Extract DataSet

You can combine multiple variables into a single DataSet.

Extract Variable

You can separate columns from a DataSet and extract them as individual variables.

DataSet Loop

You can perform iterative control statements on specific rows of a DataSet.

Json To Parameter

Parses 2-dimensional JSON data into parameters.

Parameter To Json

Converts parameters into JSON data.

Additionally, the following control functions for branching are provided.

Branching

Description

Decision

Allows branching based on specific conditions in the editor (if).

Break

Allows breaking out of repetitive tasks in the editor (break).

Continue

Allows skipping one iteration of a repetitive task under certain conditions in the editor (for, continue).

Common Properties of Invoke

When you click on an Invoke placed above the X-UP editor, you can view the information related to that Invoke through the Properties View. Below are the common properties for all Invokes.

General

When you click on the 'General' tab in the 'Properties View', the following screen will appear.

Item

Description

Alias

An alias can be defined.

Name

A name can be defined.

Visible

The invoke will be displayed as an alias in the editor. (The actual coding should use the name.)

Description

A description for the corresponding invoke can be defined.

Input Binding / Output Binding

Input Binding/Output Binding serves the purpose of binding the names of in-out parameters required when the invoke is executed to the names of parameters defined in the model.

 Ex ) the input parameter name for a procedure might be 'VAR_IN,' but in the model, the parameter can be declared with the name 'var01.' When the procedure is called, the 'var01' parameter is converted to 'VAR_IN' for the procedure call, and once the call finishes, the parameter name is reverted back to 'var01.'

The Input Binding/Output Binding feature applies only to the following 'Invoke'.


You can define custom parameter names regardless of the fixed in-out parameter names. The connections created with the 'Invoke' cannot be deleted, but if you want to link them to other parameters, you can modify them through 'reconnection'. Therefore, when performing 'reconnection', if a red lightning bolt symbol appears, you must check the 'Input Binding/Output Binding'.

What is Reconnection?


'Reconnection' refers to changing the order of the 'Connection' drawn on the editor. By clicking and holding the endpoint of a line connected to an Input or Output, you can drag it to the desired target and release the mouse button. This will change the 'Connection' linked to the parameter.

BeforeDataSource

Before establishing a connection with the Legacy system through the data source used by the respective Invoke, you can add custom logic in Java code as desired.

Source View > Right-click > Click the Edit button in the Pop-up to add Java code.

AfterDataSource

After extablishing a connection with the Legacy system through the data source used by the respective Invoke, you can add custom logic in Java code as desired.

Source View > Right-click > Click the Edit button in the Pop-up to add Java code.

Exception

The Exception tab is used for exception handling of the respective Invoke, where custom logic can be added in Java code as desired.

Source View > Right-click > Click the Edit button in the Pop-up to add Java code.

Parameter

This is the data type used in X-UP. The types of parameters are as follows.

Common Properties

These are the common properties for the data types used in X-UP, which have the following basic attributes:

General

These are the common items for all nodes, including Name, Alias, Visible, and Description.

General

Item

Description

Alias

Defines the desired alias. Korean input is also allowed.

Name

Defines the name of the dataset. The name should be in English and unique from other parameters in the editor.

Visible

Allows selection of whether to display the Name or Alias in the editor.

Description

Provides a description for the model.

InOut

The parameter type is selected as a common attribute for all parameters.

Item

Description

normal

A general parameter used only within the model.

in

Configures the parameter as an input for the model, registered as an input parameter in the model metadata.

out

Configures the parameter as an output for the model, registered as an output parameter in the model metadata.

in + out

Configures the parameter as both input and output for the model, registered as both input and output parameters in the model metadata.

For in or in+out parameters, they must be provided when the model is executed.

For normal or out parameters, parameters are initialized internally when the model is executed.

Variable

A Variable creates parameters of the same type as the Variable in X-API.

Schema

By default, it has the same properties as other parameters, with the only difference being the definition of the Schema tab.

The Schema tab of the Variable sets the following items.

DataSet

The DataSet Parameter creates parameters of the same type as X-API's DataSet.

Schema

Item

Description

DB Table

Generates column information from a database table in the registered datasource.

X-UP Model

Imports dataset column information from another generated model.

XML File

Generates dataset column information from a PlatformData XML file located on the local PC.

Item

Description

Enable First Row

Activates the First Row feature.

First row count

When the First Row feature is enabled, the user can specify the First Row Count. (The default value is 10,000.)

What is First Row?


First Row is a term used in the Nexacro platform. It is a feature that splits large amounts of data into smaller chunks and sends them in multiple transmissions to improve performance and prevent errors. For example, it may send 1000 records in 5 batches of 200 each or 2 batches of 500 each.

The system will continue to send data in chunks as defined by the user until the specified number of First Rows is completed. Any remaining data will be sent after the service ends. For example, if 1000 records are sent using First Row with 300 records per batch, 300 records will be sent in three transmissions, and the remaining 100 records will be sent in the final transmission, totaling 4 transmissions for the entire 1000 records.

After sending the dataset via First Row, Variables are not transmitted.

File

The File Parameter is a parameter defined for file input and output operations.

Schema

By default, it has the same properties as other parameters, with the only difference being the definition of the Schema tab.

The Schema tab of the File defines the following items:

MIME Type

File Extension

application/pdf

pdf

image/jpeg

jpeg

text/html

html

text/css

css

Header

The Header Parameter is used to manage HTTP header input and output information.

Schema

By default, it has the same properties as other parameters, with the only difference being the definition of the Schema tab.

The Schema tab for the Header defines the following item.

Field Name

Example

Accept

Accept: text/plain

Accept-Charset

Accept-Charset: utf-8

Content-Type

Content-Type: application/x-www-form-urlencoded

User-Agent

User-Agent: Mozilla/5.0 (X11; Linux x86_64; rv:12.0) Gecko/20100101 Firefox/21.0

SAP RFC Invoke

The SAP RFC Invoke is a component designed to generate SAP RFC information in parameter format. When invoked, it retrieves data in either Variable or Dataset format.

The SAP RFC Invoke includes an SAP RFC Invoke Dialog for creating an Invoke, along with the following property tabs.

InvokeInfo

The InvokeInfo tab allows you to view the DataSource, Group, and Function used by the respective Invoke.

If the Invoke has fixed In-Out parameters, like other Invokes, only informational data is displayed.

For SAP RFC Invoke, the following information is displayed in InvokeInfo.

SAP RFC Invoke Dialog

When creating an SAP RFC Invoke, the following dialog will be displayed.

Select Invoke

The Select Invoke performs the Select function of the database.

The properties of the Select Invoke include the following tabs.

InvokeInfo

Select Invoke Dialog

The Select Invoke Popup consists of 4 main components.

DataSource Combo

The combo displays DataSource (DB) items. You can select the desired DataSource (DB) to use. If none exists, a new DataSource can be created.

SQL Textarea

X-UP automatically generates an SQL query for data retrieval. The generated SQL query is a Select SQL that retrieves all columns without any WHERE conditions. You can modify the automatically generated SQL as needed to query specific data. Binding variables in the SQL are represented by placing ‘#’ before and after the parameter (Parameter) name.

The parameter assist is automatically displayed when you press Ctrl+Space or enter '#'.

CDATA Checkbox

If the SQL query contains special characters, selecting the ‘Enable Surround CDATA’ option will wrap the entire SQL query in a CDATA section.

What is CDATA?

CDATA is a section used in XML or JavaScript. The purpose of using CDATA is to inform the XML parser that the code within the CDATA section does not contain tags and should be ignored in terms of parsing.

For example, when special characters like "&", ">", "<" are used in XML code, the XML parser may interpret them as tags and cause errors. To prevent this, the code containing special characters is enclosed in a CDATA section. This way, the XML parser recognizes the content as a string and not as tags, avoiding errors.

Dynamic SQL Support

iBatis provides dynamic SQL elements that can be used within mapping statements to improve the reusability and flexibility of SQL.

Since X-UP supports iBatis, you can use existing iBatis dynamic SQL queries directly without modification. However, note that X-UP does not support 100% of iBatis features, so be sure to distinguish which features are available for use.

For detailed guidance on various dynamic SQL elements, refer to the section on Dynamic SQL.

Event Handler

Event handlers are provided in Select Invoke and Modify Invoke, allowing users to define additional logic within the event during the Invoke operation.

To add an event handler, select the desired node, right-click > Select Add Event, and then choose the event to add. This will insert the start and end nodes for the event in the selected node.

The event handlers for Select Invoke are as follows.

Modify Invoke

Modify Invoke performs Insert, Update, and Delete SQL operations using input parameters.

X-UP determines whether a row in a dataset should be Inserted, Updated, or Deleted based on the type of the row during the Modify Invoke operation. The row type in the dataset can be manually set, but typically, the type is automatically determined when adding, modifying, or deleting rows in the dataset.

The criteria for handling rows in X-UP are as follows.

According to these rules, if a specific row in the dataset already exists in the table, it will be updated; if it doesn't exist, it will be inserted. The rows marked for deletion are those removed by calling removeRow() or clearData() in the dataset.

To quickly create a Modify Invoke node in X-UP, select the Modify item from the Palette or drag a table from the X-UP DataSource View into the editor and choose Modify Invoke.

The properties of Modify Invoke include the following tabs.

InvokeInfo

InvokeInfo provides the essential information required to perform the Modify Invoke.

Modify Invoke Dialog

The Modify Invoke Dialog consists of 6 components.

DataSource Combo

The combo displays DataSource (DB) items. You can select the desired DataSource (DB) to use. If none exists, a new DataSource can be created.

Target DataSet

Modify Invoke operates in a loop based on the Target Dataset.
When multiple Datasets are connected, only the Target Dataset will loop, and the other Datasets will have their RowIndex fixed at 0.

1. If no Target DataSet is selected, Delete/Insert/Update SQL will always be executed once in that order. (Use this if you don’t want to process based on the Row type of the dataset).


2. If you disconnect the Target Dataset from the Invoke and reconnect it, there may be cases where the Target Dataset selection is not restored, so please double-check.

SQL Textarea & Tab

Modify Invoke automatically generates SQL queries for insert, update, and delete on each tab.

Each tab is for display purposes only, and no error message will appear if you write SQL other than the one shown in the tabs.

Enable Surround CDATA Checkbox

If the SQL query contains special characters, selecting the ‘Enable Surround CDATA’ option will wrap the entire SQL query in a CDATA section.

What is CDATA?

CDATA is a section used in XML or JavaScript. The purpose of using CDATA is to inform the XML parser that the code within the CDATA section does not contain tags and should be ignored in terms of parsing.

For example, when special characters like "&", ">", "<" are used in XML code, the XML parser may interpret them as tags and cause errors. To prevent this, the code containing special characters is enclosed in a CDATA section. This way, the XML parser recognizes the content as a string and not as tags, avoiding errors.

isBatch

The isBatch checkbox is used when performing insert, update, or delete operations using batch processing.
In this case, Dynamic SQL cannot be used.

Dynamic SQL 지원

iBatis provides dynamic SQL elements that can be used within mapping statements to improve the reusability and flexibility of SQL.

Since X-UP supports iBatis, you can use existing iBatis dynamic SQL queries directly without modification. However, note that X-UP does not support 100% of iBatis features, so be sure to distinguish which features are available for use.

For detailed guidance on various dynamic SQL elements, refer to the section on Dynamic SQL.

SqlTypeBinding

binds the Row type of the dataset to the SQL query.

Filtering

Filtering defines conditions to exclude certain Modify actions if the input parameter value meets specific criteria.

Event Handler

Procedure Invoke

Procedure Invoke executes database procedures and functions. This Invoke automatically configures input and output parameters based on the actual results of calling the database procedure or function, after performing a test using the provided DataSource and Entity information.

In X-UP Builder, you can quickly create a Procedure Invoke by selecting the Procedure item from the Palette or by dragging a Procedure or Function from the X-UP DataSource View into the editor.

Procedure Invoke consists of the Procedure Invoke Dialog and the following property tabs.

InvokeInfo

The necessary information for performing an Invoke is displayed.

For Procedure Invoke and Model Invoke, where the input-output structure is pre-defined, only information is displayed without modification.

In the case of Procedure Invoke, the InvokeInfo section provides the following details

Procedure Invoke Dialog

When creating a Procedure Invoke, the following dialog is displayed.

OpenApi Invoke

OpenApi Invoke is used to generate HTTP request parameters for API calls. When invoked, it retrieves HTTP headers and HTML body as parameterized values.

In X-UP Builder, you can quickly create an OpenApi Invoke by selecting the OpenApi item from the Palette and dragging it into the editor.

OpenApi Invoke includes the OpenApi Invoke Dialog for creating an Invoke and provides the following property tabs.

InvokeInfo

Essential information required to execute the Invoke is displayed.

Similar to other Invoke types, if the In-Out information is predefined, only the Information section is displayed.

For OpenApi Invoke, the InvokeInfo section includes the following details.

OpenApi Invoke Dialog

When creating a OpenApi Invoke, the following dialog will be displayed.

Sub Path와 Input Parameter

The complete URL used to collect data from OpenApi is constructed as follows.

<Data source HTTP URL> + <SubPath> + <Data source parameter> + <input parameter>

Generally, the OpenApi URL provided by a site uses the same base URL, but the sub path may differ depending on the service being offered. The same base URL is always defined in the data source, and different sub paths for each service are defined in each Invoke. Similarly, parameters that must always be passed when calling OpenApi, such as an authentication key, should be defined in the data source, while parameters that are input by the client (user) are defined in the Invoke.

Result

When data is collected from OpenApi, a parameter named 'BODY' is created to store the collected results. Additionally, the values of the HTTP Header received in the response are generated as parameters in the format of HEADER + INDEX. (However, if the data defined as a Header is specified as an output, it will be returned with the information defined in the HTTP Response Header.)

X-UP Invoke

X-UP Invoke is a component used to call an already created and deployed X-UP model from another server.

X-UP Invoke calls the model on a remote X-UP server to retrieve data and generate new parameters.

X-UP Invoke has the following property tabs.

InvokeInfo

Essential information required to execute the Invoke is displayed.

Similar to other Invoke types, if the In-Out information is predefined, only the Information section is displayed.

For X-UP Invoke, the following information is displayed in InvokeInfo.

Model Invoke

Model Invoke is a component used to call another X-UP model that has already been created within the same project.

You can quickly create a Model Invoke by selecting the Model item in the Palette or by directly selecting a model from the X-UP Explorer and dragging it into the editor.

When creating a Model Invoke from the Palette, the X-UP Model List Dialog appears, and it includes the following property tabs.

InvokeInfo

Model Invoke displays the required information for execution.

Clicking the model name will navigate you to the model editor.

The Refresh menu in the top-right corner allows you to refresh the information if the invoked model's details have changed.

OData Invoke

OData Invoke is an invoke used to consume data via HTTP(s)-based OData. It consumes data through Entity Sets and Function Imports based on CSDL and retrieves the data in parameter format.

OData (Open Data Protocol) is a RESTful web protocol for querying and updating data.

It supports OData Version 2.0.

In X-UP Builder, OData Invoke can be created quickly by selecting the OData Invoke from the Palette or choosing an OData DataSource from the X-UP DataSource View. After selecting a service from the service list that appears, it can be dragged into the editor.

OData Invoke has the following property tabs for creating the invoke:

InvokingInfo

Essential information required to execute the Invoke is displayed.

Similar to other Invoke types, if the In-Out information is predefined, only the Information section is displayed.

For OData Invoke, the InvokeInfo section includes the following details.

OData Invoke Dialog

When creating a OData Invoke, the following dialog will be displayed.

HTTP Method

When the Invoke is executed, it is bound to the RESTful HTTP Method. The supported HTTP Methods are as follows.

  1. GET - Retrieves data. This is bound to the HTTP Method GET. Additional settings can be configured when querying data.

If the target is an EntitySet, the corresponding identifier for the data must be provided as input.

  1. POST - Adds data.

Only rows with a Row Type of INSERT in the dataset will be added.

  1. PUT - Modifies data.

Only rows with a Row Type of UPDATE in the dataset will be modified.

  1. DELETE - Deletes data.

Only rows with a Row Type of DELETE in the dataset will be deleted.

When selecting multiple HTTP Methods or if the number of rows in the dataset is multiple, the request is made in Batch format.

Batch Request 지원

OData allows both single requests in REST format and multiple requests in BATCH format.

In X-UP, data is transmitted in REST format only when the operation is a single request and the HTTP method is GET. For all other cases, the requests are processed in Batch format.

Even for a single operation, if the number of rows in the dataset is multiple, a Batch request will be made, resulting in several requests being sent.

In/Out Parameter Information

This section displays the input and output information for the selected operation. The information is bound to the HTTP method.

The data type conversion between OData and X-UP is as follows.

Visual Cobol Invoke

Visual Cobol Invoke is a component used to call resources created using Visual Cobol.

In X-UP Builder, a Visual Cobol Invoke can be quickly created by selecting the Visual Cobol Invoke from the Palette or by selecting the Visual Cobol DataSource from the X-UP DataSource View and dragging the method into the editor.

Visual Cobol Invoke has the following property tabs.

InvokeInfo

Essential information required to execute the Invoke is displayed.

Similar to other Invoke types, if the In-Out information is predefined, only the Information section is displayed.

Cobol Invoke Dialog

Below is the dialog that appears when you double-click on Visual Cobol Invoke.

Trim

After performing the Invoke, you can choose whether to apply Trim to the String Type columns in the output dataset.

The Trim tab of the Visual Cobol Invoke displays the following information.

ReturnCode

The feature allows handling exceptions based on the value of the Return value.

The ReturnCode tab of the Visual Cobol Invoke displays the following information.

User Method Function

Characteristics of UserMethod

  1. UserMethod allows users to write custom code directly during model development.

  2. When a UserMethod is created, a corresponding method with the same name is generated in Automation.java

  3. It can perform all the functionalities of invokes, as well as handle tasks like session management.

  4. When visual representation becomes challenging due to high complexity, UserMethod can be used to simplify the process.

The properties provided in the User Method are as follows.

DataSetRowLoop Function

The DataSetRowLoop Function is a function in the X-UP Builder Automation model editor that triggers events for each row in the DataSet. When a DataSet is connected to the DataSetRowLoop function, it will loop through the number of rows in the dataset, triggering events accordingly.

After connecting the DataSet to the DataSetRowLoop function with the mouse, right-click on the DataSetRowLoop component and select AddEvent > loopEvent. This will create the Start and End events. In the Start Event, parameters for a Variable type rowIndex and a DataSet type dataset will be extracted.

Both dataset and rowIndex are local variables and are not included in the globalParameterSet. Additionally, the dataset will only contain the data from the row where the event was triggered. In other words, it is a DataSet with just one row of data.

The properties provided by the DataSetRowLoop function are as follows.

In the DataSet RowType, Normal, Inserted, Updated, and Deleted are in a toggle relationship.

Quick Merge Function

Quick Merge Function is a component used to create a new dataset by merging two datasets.

It merges datasets based on either the Sort Merge or Hash Join algorithm.

The Quick Merge Function has the following property attributes.

The development of a merge model for this type of merging process follows these steps.

Set target datasets

The datasets to be used for the merge are configured. These can be datasets generated by the X-UP model or datasets passed by the user as parameters.

Implement merge logic

The merge is provided in two forms: using the SortMerge algorithm and using the HashJoin algorithm.

SortMerge: The two datasets are merged after sorting based on the provided KeyColumn. You can specify the JoinType (Inner Join or Outer Join) for sorting, and you can exclude duplicate columns from the merge. If the two datasets are already sorted, the Sort Option can be disabled.

The Sort Type is used to define the sorting order. If the datasets are already sorted, you should set the data in the pre-sorted format.

HashJoin: The two datasets create a Hash Table based on the configured KeyColumn, and the merge is performed using these hash values. Like SortMerge, the JoinType option is available for selection.

Quick Merge API

The API that performs the same functionality as the Function is provided.

The provided API Class is as follows:

For detailed information, please refer to the X-UP API documentation.

Merge Function

The Merge Function is a component used to create a new dataset by merging multiple datasets.

This functionality is executed through SQL queries expressed by the built-in DBMS, applying the logic to merge structured multiple datasets.

X-UP uses an in-memory database (DB) to implement the merge model. Therefore, when merging models that output large amounts of data, the memory and performance of the WAS (Web Application Server) running the X-UP server may be affected.

The Merge Function has the following property tabs.

The process for developing a merge model is as follows.

Target Dataset Configuration

Set the datasets to be used for the merge. These datasets can either be defined by the X-UP model or passed by the user as parameters.

Implement Merge Logic and SQL Query

X-UP uses a built-in DBMS for merging, and the merge logic is implemented using the SQL SELECT statement. X-UP passes the SQL query written by the developer and the configured target datasets to the built-in DBMS. The result returned from the SQL query is then processed to create the merged raw data.

Create New Dataset

The merged raw data from the built-in DBMS is not directly returned; instead, it is transformed into a newly created dataset.

XML Parser Function

The XML Parser Function is a component used to parse XML information and convert it into parameter format. Upon invocation, it retrieves the data in either Variable or Dataset format.

The XML Parser Function consists of the following property tabs in the XML Parser Function Dialog used for creating an Invoke:

InvokeInfo

Essential information required to execute the Invoke is displayed.

Similar to other Invoke types, if the In-Out information is predefined, only the Information section is displayed.

For XML Parser Function, the InvokeInfo section includes the following details.

XML Parser Function Dialog

When creating an XML Parser Function, the following dialog appears.

Extract DataSet Function

The Extract DataSet Function automatically converts a set of Variables into a single dataset when connected as input parameters to the Extract DataSet function.

In other words, it converts Variables → DataSet.

When multiple Variables are connected to the Extract DataSet function, a dataset is automatically created and returned as the output.

The Extract DataSet function has the following properties.

Extract Variable Function

The Extract Variable Function is a function that easily converts the column values of a dataset into output type variable parameters, such as Column Name, Column Value, and Column Size.

In other words, it converts DataSet → Variable.

The values from the first row of the dataset are used.

When the Extract Variable Function is connected to a Dataset, it extracts the variables as output values based on the number, name, type, size, and value of the columns in the dataset.

For example, if the dataset has 4 columns, 4 variables will be output. The name, type, size, and value of each variable will match the respective column name, type, size, and value in the dataset.

The Extract Variable Function has the following property tabs.

Decision

The Decision component allows for branching based on conditions. Specific processes can be executed when a given condition is satisfied.

The conditions are categorized into if, else if, and else, and the desired condition type can be selected by choosing the corresponding connection.

The properties of the condition connection are as follows.

General

In the General section of the Decision connection, three pieces of information can be defined: Alias, Visible, and Description.

In particular, the Visible property is different from other components' visible properties, as it does not include Name / Alias information. It determines whether to display the Alias in the center of the connection.

Connection Info

The connection information properties are common to all connections, and the condition connection follows the same rules.

Routing : Determines the connection routing type. (In the case where the option on the right in the image below is checked)

When the connection is BendPoint routing, the user can define the connection shape as desired.

Binding : For condition connections, it determines whether to display the condition type name. If unchecked, strings such as if, elseIf, and else that were previously shown on the connection are hidden.

Condition Type

The condition type allows the user to select the type of condition.

Source

The condition logic can be defined by the user in Java code.

All parameters available in the editor exist within the globalParameterSet, so you can use the desired parameter to define the condition logic.

Make sure that the logic returns a true or false result.

All Java code editor fields in the properties have the same assist pop-up and Java syntax error-checking functionality as the Java editor.

Repeat Task

The Repeat Task function is used to implement loops and is processed using the Decision node.

When a connection is made from the Decision End node to the Decision Start node, a Repeat connection is automatically created. At this point, only one condition is allowed; if more than one condition connection exists, the Repeat connection will not be created.

The Break and Continue nodes can only be used within the Repeat structure and are used when you want to stop or continue the loop at a specific point.

When selecting the Break or Continue node, the source code will appear in the Properties Condition Code. By right-clicking on the source code and selecting "Edit," you can define the Condition Code manually.

Debug and Break Point

The Automation Model allows you to add breakpoints directly to nodes in the editor for model debugging. Once a breakpoint is added to a node, the editor will automatically register the breakpoint at that line when generating the source code.

Breakpoints can be added by selecting individual nodes or by selecting multiple nodes at once to add them in bulk.

The added breakpoints can be removed using the Remove BreakPoint menu.

There are two main methods for debugging the Automation Model.