Difference between revisions of "V17 UNIX Configuration Changes"

From Vital Soft Wiki
Jump to: navigation, search
>Johno
(Created page with " ** The following Macro should be set to 1 if custom attribute code is to be used for this client. 17 ** Custom code is added to /ASKPLUS/vsdata/scripts/VSCALC-CUSTOM-ATTR ...")
 
>Johno
 
(4 intermediate revisions by the same user not shown)
Line 1: Line 1:
 +
=== Vital Signs 1.7 - UNIX Configuration Changes ===
  
 +
Depending on the version of Vital Signs currently installed, some of these changes may have already been made.
 +
 +
====Custom Extract Code====
 +
 +
In revision 1942 (Jan 2016) a new option was added to the host MBRSHLN job to extract custom files.
 +
 +
The custom code is added to VSLOAD-CUSTOM (scripts) and a new macro is '''required''' to enable/disable the custom call.
 +
 +
=====Macro Definition File=====
 +
 +
* Edit the host macro definition file: /ASKPLUS/vsdata/custom/live/vsmacdef
 +
:* Near the beginning of the file, you will see these 3 lines:
 +
::(Your VS-CUSTOM-ATTR-XEQ will be set to 0 or 1 - do not change the value.)
 +
<pre>
 
** The following Macro should be set to 1 if custom attribute code is to be used for this client.  
 
** The following Macro should be set to 1 if custom attribute code is to be used for this client.  
17 ** Custom code is added to /ASKPLUS/vsdata/scripts/VSCALC-CUSTOM-ATTR  
+
** Custom code is added to /ASKPLUS/vsdata/scripts/VSCALC-CUSTOM-ATTR  
19 18 Macro VS-CUSTOM-ATTR-XEQ = 0  
+
Macro VS-CUSTOM-ATTR-XEQ = 0  
19
+
</pre>
20 ** The following Macro should be set to 1 if custom extract code is to be used for this client.  
+
:* Add the following lines, after the above section, to create the VS-CUSTOM-LOAD-XEQ macro:
21 ** Custom code is added to /ASKPLUS/vsdata/scripts/VSCALC-CUSTOM-LOAD  
+
:: (Set the macro value to 0 unless you are adding a custom extract.)
22 Macro VS-CUSTOM-LOAD-XEQ = 0
+
<pre>
 +
** The following Macro should be set to 1 if custom extract code is to be used for this client.  
 +
** Custom code is added to /ASKPLUS/vsdata/scripts/VSCALC-CUSTOM
 +
Macro VS-CUSTOM-LOAD-XEQ = 0
 +
</pre>
 +
:* The file should now look like this:
 +
<pre>
 +
** The following Macro should be set to 1 if custom attribute code is to be used for this client.
 +
** Custom code is added to /ASKPLUS/vsdata/scripts/VSCALC-CUSTOM-ATTR
 +
Macro VS-CUSTOM-ATTR-XEQ = 0
 +
 
 +
** The following Macro should be set to 1 if custom extract code is to be used for this client.
 +
** Custom code is added to /ASKPLUS/vsdata/scripts/VSCALC-CUSTOM
 +
Macro VS-CUSTOM-LOAD-XEQ = 0
 +
</pre>
 +
 
 +
=====Sample Custom Extract=====
 +
 
 +
* If you do not have a custom extract already in place, rename the sample file as shown below:
 +
<pre>
 +
cd /ASKPLUS/vsdata/scripts
 +
mv VSLOAD-CUSTOM.samp VSLOAD-CUSTOM
 +
</pre>
 +
 
 +
[[Vital Signs 1.7 | Back ...]]

Latest revision as of 19:36, 14 April 2016

Vital Signs 1.7 - UNIX Configuration Changes

Depending on the version of Vital Signs currently installed, some of these changes may have already been made.

Custom Extract Code

In revision 1942 (Jan 2016) a new option was added to the host MBRSHLN job to extract custom files.

The custom code is added to VSLOAD-CUSTOM (scripts) and a new macro is required to enable/disable the custom call.

Macro Definition File
  • Edit the host macro definition file: /ASKPLUS/vsdata/custom/live/vsmacdef
  • Near the beginning of the file, you will see these 3 lines:
(Your VS-CUSTOM-ATTR-XEQ will be set to 0 or 1 - do not change the value.)
** The following Macro should be set to 1 if custom attribute code is to be used for this client. 
** Custom code is added to /ASKPLUS/vsdata/scripts/VSCALC-CUSTOM-ATTR 
Macro VS-CUSTOM-ATTR-XEQ = 0 
  • Add the following lines, after the above section, to create the VS-CUSTOM-LOAD-XEQ macro:
(Set the macro value to 0 unless you are adding a custom extract.)
** The following Macro should be set to 1 if custom extract code is to be used for this client. 
** Custom code is added to /ASKPLUS/vsdata/scripts/VSCALC-CUSTOM
Macro VS-CUSTOM-LOAD-XEQ = 0
  • The file should now look like this:
** The following Macro should be set to 1 if custom attribute code is to be used for this client. 
** Custom code is added to /ASKPLUS/vsdata/scripts/VSCALC-CUSTOM-ATTR 
Macro VS-CUSTOM-ATTR-XEQ = 0 
  
** The following Macro should be set to 1 if custom extract code is to be used for this client. 
** Custom code is added to /ASKPLUS/vsdata/scripts/VSCALC-CUSTOM
Macro VS-CUSTOM-LOAD-XEQ = 0
Sample Custom Extract
  • If you do not have a custom extract already in place, rename the sample file as shown below:
cd /ASKPLUS/vsdata/scripts
mv VSLOAD-CUSTOM.samp VSLOAD-CUSTOM

Back ...