Tool with Resource Processing Examples

After a tool's successful execution, certain processing should be applied to given resources in the UI. This is known as resource processing. For example, after the execution of a deletion tool, the deleted element should be removed from the UI.

In some situations, the resource processing after the successful execution of a tool is unique and can be directly modelled by the AWM model administrator. For example, the resource processing of a deletion tool should delete, and the resource processing of an insertion tool should insert.

There are other situations when the resource processing depends on the tool's execution logic. In these situations, only the tool can determine what resource processing should be done after the tool's successful execution. For these situations, the resource processing would be tool_defined.

There is a defined protocol for how the tool can inform AWM which resource processing measures should be taken after its successful execution.

The following table shows some typical examples for the resource operation used in a tool definition:

Resource Operation Example
COPY Copy a member of a PO data set.
DELETE Delete a member of a PO data set.
INSERT Insert a new member in the Table Results view.
INSERT-CHILD Insert a new PO member into a PO data set.
MOVE Move a member of PO data set is moved to another PO data set.
READ Perform no changes to resource attributes, for example, browse a PO member.
REFRESH Change some attributes of a resource, for example, edit a PO member.
UPDATE Change some attributes of a resource. In this case, the tool must return all attributes that should be updated in the UI. An example of this is a tool that changes the change code of a source where the change code is one of the attributes of the element visible in the UI.
TOOL_DEFINED Get results in different effects on the UI. An example of this is a tool that gets a function code and depending of the function code, deletes or inserts an element.

TOOL_DEFINED resource processing example

Consider a somewhat sophisticated example using TOOL_DEFINED resource processing.

The example scenario involves checking out an element from a remote SCM system and creating a local file for a later local edit action. In the UI, the checkout can be done either on a life cycle level from where the element can be edited, or on a higher life cycle level from where the element must be drawn down on an editable level before checkout. The following figures are taken from the corresponding action in the SCLM model.

The action consists of two tools. The first tool does the checkout processing inclusively the draw down if necessary. The second tool is the tool "Create Persistent File" from the AWM function package.

The action is modelled like this:

SCLM checkout action

The tool SCLM_TOOL_ISPF_REX_CheckOut gets the key properties of the SCM element to be checked out as element input parameter. It has to return all properties to be changed as element output parameters.

The figure below shows how the tool SCLM_TOOL_ISPF_REX_CheckOut is modeled in the AWM SCLM model:


SCLM checkout tool

The resource operation is tool-defined because the resource processing depends on whether or not the element has to be drawn down.

If the element is already on a level to be directly edited, the tool SCLM_TOOL_ISPF_REX_CheckOut has to return the resource operation UPDATE-ELEMENT(CHKOUTELE). This means that the selected resource is updated in the UI by the property values returned by the tool.

If the element has to be drawn down to a level from where it can be edited, the tool SCLM_TOOL_ISPF_REX_CheckOut has to return the resource operation INSERT-ELEMENT(CHKOUTELE,REFRESH,SELECT). This means that a new element is inserted in the UI with the property values returned by the tool. The properties returned by the tool must at least comprise all the key properties for the element to be successfully created. SELECT means that the element is selected in the UI after the execution of the action.

CHKOUTELE is an element reference needed by the subsequent tool SCLM_TOOL_AWM_LocalFileCreator.

This element reference has to be entered under Affected Resource Name in the relation between the action SCLM_ACT_CheckOut and the tool SCLM_TOOL_AWM_LocalFileCreator, as shown in the following figure:

Affected resource name element reference