Applications

In this section:

This section provides detailed descriptions of new features for server applications.


Top of page

x
Reporting on the Impact of Changing Adapter Connection Names

If an administrator changes a connection name for an adapter, synonyms and FOCEXECs that were created using the old connection name will be invalid. You can generate a report on the impact of changing an adapter connection name.

To generate the impact analysis report, right-click a configured connection on the Adapters page and select Impact Analysis from the context menu. A report similar to the following image is generated. The report provides links to the files and lists such information as the connection names, type of file, usage, and application name.


Top of page

x
Using Wildcard Characters in the APP Commands COPYFILE, MOVEFILE, DELETEFILE, and RENAMEFILE

You can use the following wildcard characters in the file name and file type references for the APP commands COPYFILE, MOVEFILE, DELETEFILE, and RENAMEFILE.

For example, the following COPYFILE command copies every file whose name starts with the characters proc and whose file type is FOCEXEC from app1 to app2, with the same file name and the file type COPYFEX:

APP COPYFILE app1 proc* FOCEXEC app1 * COPYFEX 

The following COPYFILE command copies every file whose name starts with the characters met, followed by at most one character, followed by the character a, followed by zero or more characters, and whose file type is MASTER, from app1 to app2 under the same file name and file type:

APP COPYFILE app1 met?a* MASTER app2 * * 

The following DELETEFILE command deletes every file from app1 whose name starts with the characters met, then has zero or one character, followed by the character b, followed by zero or more characters, and whose file type is MASTER:

APP DELETEF app1 met?b* MASTER 

The following DELETEFILE command deletes every file from app1 whose name contains the characters tst and whose file type is FOCEXEC:

APP DELETEF app1 *tst* FOCEXEC 

The following MOVEFILE command moves every file whose name contains the characters tst and whose file type is FOCEXEC from app1 to app2, with the same file name and file type:

APP MOVEF app1 *tst* FOCEXEC app2 * * 

WebFOCUS