Home   Package List   Routine Alphabetical List   Global Alphabetical List   FileMan Files List   FileMan Sub-Files List   Package Component Lists   Package-Namespace Mapping  
Info |  Desc |  Directly Accessed By Routines |  Accessed By FileMan Db Calls |  Pointed To By FileMan Files |  Fields |  Found Entries |  Global Variables Directly Accessed |  Local Variables |  All
Print Page as PDF
Global: ^XWB(8994

Package: RPC Broker

Global: ^XWB(8994


Information

FileMan FileNo FileMan Filename Package
8994 REMOTE PROCEDURE RPC Broker

Description

Directly Accessed By Routines, Total: 34

Package Total Routines
RPC Broker 8 XWBBRK    ^XWB(8994    INPUT PARAMETER    XWB2HL7    XWBDRPC    XWBLIB    XWBPRS    XWBRPC
M Transfer 5 BMXEHR    BMXMBRK    BMXMEVN    BMXPO    BMXUTL6    
Order Entry Results Reporting 4 ORWCV    ORWCV1    ORWRP3    ORY180    
GUI Generic Tools 3 BGUPSRPC    BGUTCPH    BGUTRACS    
IHS User Security Audit 3 BUSARPC    BUSATRAN    BUSAUTIL    
PCC New Encounter Form 3 VENPCCQ7    VENPCCQ8    VENPCCQX    
Kernel 2 XQCS    XUSAP    
CIA Utilities 1 CIAURPC    
Diabetes Registry 1 BDMGPRPC    
IHS Changes To Lab 1 BLRAGC    
Immunization Tracking 1 BIPRE    
MSC RPC Broker 1 CIANBACT    
VistALink 1 XOBVRPC    

Accessed By FileMan Db Calls, Total: 13

Package Total Routines
IHS User Security Audit 2 BUSATRAN    BUSAUTIL    
MSC RPC Broker 2 CIANBACT    CIANBRPC    
RPC Broker 2 XWBEXMPL    XWBFM    
CIA Utilities 1 CIAURPC    
GUI Generic Tools 1 BGUTRACS    
General Medical Record - Vitals 1 GMV3PST    
Immunization Tracking 1 BIPRE    
Order Entry Results Reporting 1 ORWRP    
VistALink 1 XOBVLT    
VueCentric Framework 1 CIAVIN1    

Pointed To By FileMan Files, Total: 4

Package Total FileMan Files
GUI Generic Tools 1 BGU PRESET REMOTE PROCEDURE CALL(#90066)[.02]    
Kernel 1 OPTION(#19)[#19.05(.01)]    
Order Entry Results Reporting 1 OE/RR REPORT(#101.24)[.13]    
iCare 1 ICARE DEFINITIONS(#90506)[.03]    

Fields, Total: 15

Field # Name Loc Type Details
.01 NAME 0;1 FREE TEXT
************************REQUIRED FIELD************************

  • INPUT TRANSFORM:  K:$L(X)>30!(X?.N)!($L(X)<3)!'(X'?1P.E) X
  • LAST EDITED:  APR 09, 1997
  • HELP-PROMPT:  NAME MUST BE 3-30 CHARACTERS, NOT NUMERIC OR STARTING WITH PUNCTUATION
  • CROSS-REFERENCE:  8994^B
    1)= S ^XWB(8994,"B",$E(X,1,30),DA)=""
    2)= K ^XWB(8994,"B",$E(X,1,30),DA)
.02 TAG 0;2 FREE TEXT

  • INPUT TRANSFORM:  K:$L(X)>8!($L(X)<1) X
  • LAST EDITED:  DEC 13, 1994
  • HELP-PROMPT:  Enter the TAG to be used as the entry point for the routine. Leave this field empty if a TAG is not required.
.03 ROUTINE 0;3 FREE TEXT
************************REQUIRED FIELD************************

  • INPUT TRANSFORM:  K:$L(X)>8!($L(X)<3)!'(X?1U1.7UN) X
  • LAST EDITED:  DEC 13, 1994
  • HELP-PROMPT:  This is the name of the routine used by this API
.04 RETURN VALUE TYPE 0;4 SET
************************REQUIRED FIELD************************
  • '1' FOR SINGLE VALUE;
  • '2' FOR ARRAY;
  • '3' FOR WORD PROCESSING;
  • '4' FOR GLOBAL ARRAY;
  • '5' FOR GLOBAL INSTANCE;

  • LAST EDITED:  JUL 12, 1995
  • HELP-PROMPT:  Select the appropriate value to indicate what type of value will be returned by the API.
  • DESCRIPTION:  This field tells RPC Broker how to process the resulting data from the call.
    SINGLE VALUE: Broker will return the value of the return parameter (first
    parameter in the formal list).  For example,
    TAG(RESULT)     ;
    S RESULT="DOE, JOHN"
    Q
    ARRAY: Using $ORDER Broker will traverse the return parameter (first
    parameter in the formal list), returning all elements of the array.
    For example,
    TAG(RESULT)     ;
    S RESULT(1)="ONE"
    S RESULT(2)="TWO"
    Q
    WORD PROCESSING: This type is treated exactly the same way as the ARRAY,
    with one exception that the WORD WRAP ON field is used to
    control whether each line returned is terminated with CR + LF characters.
    See WORD WRAP ON field description for more information.
    GLOBAL ARRAY: Return value parameter should be set to a closed global
    reference in ^TMP. The global's data nodes will be traversed using
    $QUERY, and all data values on global nodes descendant from the global
    reference are returned.  This type is especially useful for returning data
    from VA FileMan word processing fields, where each line is on a
    0-subscripted node.
    Important: The global reference you pass is killed by the Broker at the
    end of RPC Execution as part of RPC cleanup. Do not pass a
    global reference that is not in ^TMP or that should not be
    killed.
    This type is useful for returning large amounts of data to the client,
    where using the ARRAY type can exceed the symbol table limit and crash
    your RPC.
    For example, to return sign-on introductory text you could do this,
    TAG(RESULT)     ;
    M RESULT=^XTV(8989.3,1,"INTRO")
    K RESULT(0)  ;this node is not needed
    Q
    GLOBAL INSTANCE: Using this type Broker will return the value of a global
    node.  For example the following code will return the whole 0th node
    from the NEW PERSON file for the current user.
    TAG(RESULT)     ;
    S RESULT=$NA(^VA(200,DUZ,0))
    Q
.05 AVAILABILITY 0;5 SET
  • 'P' FOR PUBLIC;
  • 'S' FOR SUBSCRIPTION;
  • 'A' FOR AGREEMENT;
  • 'R' FOR RESTRICTED;

  • LAST EDITED:  DEC 13, 1994
  • HELP-PROMPT:  Select the appropriate indicator of the availability of this API as PUBLIC (general), SUBSCRIPTION (need to subscribe), AGREEMENT required, or RESTRICTED to the developing package.
  • DESCRIPTION:  This field is used to indicate the availability of the API to various users.
    PUBLIC indicates that the API is available for general use by any package, and it is not necessary to either indicate that the API is being used or to request permission to use it.
    SUBSCRIPTION indicates that the API is available to those packages that wish to use it, BUT the package needs to indicate that it is using the API or subscribing to it.
    AGREEMENT indicates that the API is available to packages, other than the developing package, only by means of an integration agreement on its usage.
    RESTRICTED indicates that the API is not available for reference by any package other than the package which developed it.  Entry of the input and return parameter information is at the option of the developing package in
    this case.
.06 INACTIVE 0;6 SET
  • '0' FOR ACTIVE;
  • '1' FOR INACTIVE;
  • '2' FOR LOCAL INACTIVE (ACTIVE REMOTELY);
  • '3' FOR REMOTE INACTIVE (ACTIVE LOCALLY);

  • LAST EDITED:  OCT 07, 1999
  • HELP-PROMPT:  Marks RPC as not useable completely, locally, or remotely.
  • DESCRIPTION:  This field is used to indicate that the RPC is not available for use for some reason. An RPC can be marked as completely unusable (1), unusable locally (2), or unusable remotely (3). Local use means in the account the
    user is logged into; remote use means in an account other than the one the user is directly logged into (i.e., a 'Remote RPC').  The Broker will not run an RPC that is marked as unusable in the applicable context.
  • TECHNICAL DESCR:  
    Before patch XWB*1.1*10, this field was for documentation only.  Also, the set of codes was only 1 = INACTIVE.
.07 CLIENT MANAGER 0;7 SET
  • '1' FOR YES;

  • LAST EDITED:  DEC 15, 1994
  • HELP-PROMPT:  Enter 1 or YES if this API requires other configuration information related to transmission to the client.
  • DESCRIPTION:  This field is used to identify those APIs which may be initiated to control the client or to send data to the client unrelated to requests from the client. These actions usually require additional information on the
    configuration which is present.
.08 WORD WRAP ON 0;8 SET
  • '0' FOR FALSE;
  • '1' FOR TRUE;

  • LAST EDITED:  AUG 04, 1995
  • HELP-PROMPT:  SET TRUE IF WORD WRAP IS ON
  • DESCRIPTION:  Affects GLOBAL ARRAY and WORD PROCESSING return value types only. If set to FALSE, all data values are returned in a single concatenated string in Results[0]. If set to TRUE, each array node on the M side is returned as a
    distinct array item in the Results property of the TRPCBroker.
    If you're returning some text to the client and you'd rather let the memo box of the client control the wrapping of lines, set WORD WRAP ON to FALSE.  On the other hand, if you want to preserve line breaks as they exist on
    the server, set WORD WRAP ON to TRUE.
.09 VERSION 0;9 NUMBER

  • INPUT TRANSFORM:  K:+X'=X!(X>9999)!(X<0)!(X?.E1"."6N.N) X
  • LAST EDITED:  OCT 07, 1999
  • HELP-PROMPT:  Type a Number between 0 and 9999, 5 Decimal Digits
  • DESCRIPTION:  A number to identify the version of the Remote Procedure. Currently this number is only checked if the Remote Procedure is being run on a foreign server. If a version number is passed to the Broker by the application
    requesting that the Remote Procedure be run on the foreign server, the Remote Procedure will only be run if the value of this field is equal to or greater than the passed version number.
  • TECHNICAL DESCR:  
    Introduced in patch XWB*1.1*10.
.1 SUPPRESS RDV USER SETUP 0;10 SET
  • '0' FOR No;
  • '1' FOR Yes;

  • LAST EDITED:  AUG 20, 2001
  • HELP-PROMPT:  Must not be set to YES for RPC's that collect Patient data.
  • DESCRIPTION:  This field controls how Remote Data View handles the setup of a user to run the RPC. If the field is set to No or is blank than the remote users data will be set up in the New Person file and DUZ for the process will be
    set to the user. If the field is set to Yes at the remote site the remote user data will NOT be entered into the New Person file and DUZ will be set to the Postmaster.
    This field should not be set to Yes for RPC's that collect patient data.  If there is any question about why a RPC has this set to yes contact the DBA for the VA.
    WRITE AUTHORITY:  ^
.11 APP PROXY ALLOWED 0;11 SET
  • '0' FOR No;
  • '1' FOR Yes;

  • LAST EDITED:  MAR 01, 2005
  • DESCRIPTION:  
    This field must be set to Allowed if this RPC is to be run by an APPLICATION PROXY user.  The default is to NOT allow access.
1 DESCRIPTION 1;0 WORD-PROCESSING #8994.01
2 INPUT PARAMETER 2;0 Multiple #8994.02 8994.02

  • DESCRIPTION:  Input parameter is what RPC Broker passes into your remote procedure. The name that you may call the input parameter has no special meaning to the Broker. However, you should choose a name that best describes the data
    that the parameter is used for.
3 RETURN PARAMETER DESCRIPTION 3;0 WORD-PROCESSING #8994.03
9999999.01 RAW BUFFER IS INPUT PARAM 9999999;1 SET
  • '0' FOR FALSE;
  • '1' FOR TRUE;

  • LAST EDITED:  APR 21, 2000
  • HELP-PROMPT:  The remote procedure call is expecting raw data returned.
  • DESCRIPTION:  
    The remote procedure call is expecting raw data returned.
  • TECHNICAL DESCR:  
    The remote procedure call is expecting raw data returned.

Found Entries, Total: 4813

NAME: ADE APPT ADD    NAME: ADE APPT CANCEL    NAME: ADE APPT CONFLICT    NAME: ADE APPT DISPLAY    NAME: ADE GET VARIABLE VALUE    NAME: ADE MULTIPLE PARAM TEST    NAME: ADE PATIENT ADDRESS    NAME: ADE PATIENT LOOKUP    
NAME: ADECompiledStatistics    NAME: ADEGetFac    NAME: ADEPatientList    NAME: ADESetFac    NAME: ADEStatisticsAvailable    NAME: AGG ACKNOWLEDGE TRIGGER    NAME: AGG ADD NEW PATIENT    NAME: AGG ALT RES AOB TRG    
NAME: AGG BUILD PRIVATE INS    NAME: AGG BUILD WINDOW DISPLAY    NAME: AGG BUILD WINDOW MANY    NAME: AGG BUILD WINDOW MULTIPLE    NAME: AGG CHECK DIVISION    NAME: AGG CHECK SENSITIVE PATIENT    NAME: AGG CITY COMMUNITY TRIGGER    NAME: AGG COMMUNITY REPORT    
NAME: AGG COMMUNITY TRIGGER    NAME: AGG DAILY REG ACTIVITY REPORT    NAME: AGG DAILY REPORT    NAME: AGG DATE MOVED TRIGGER    NAME: AGG DELETE POLICY MEMBER    NAME: AGG DOCUMENTS TRIGGER    NAME: AGG DUP PAT REPORT    NAME: AGG EC RELATION TRIGGER    
NAME: AGG ELIGIBILITY VALID    NAME: AGG EMER CONTACT TRIGGER    NAME: AGG ERROR SCREEN    NAME: AGG GET INSURANCE DATA    NAME: AGG GET PAT LIST    NAME: AGG GET POLICY MEMBERS    NAME: AGG GET PSEUDO SSN    NAME: AGG GET TABLE    
NAME: AGG GET TEMP PAT HRN    NAME: AGG GET WINDOW CHOICE    NAME: AGG GET WINDOW DEF TABLE    NAME: AGG GET WINDOW DEFINITION    NAME: AGG HOLDER DATES    NAME: AGG HOMELESS TRIGGER    NAME: AGG HSHLD INCOME TRIGGER    NAME: AGG INSUR COV TRIGGER    
NAME: AGG INSUR GROUP TRIGGER    NAME: AGG INSUR INITIAL TRIG    NAME: AGG INTERNET ACCESS TRIGGER    NAME: AGG LEGAL NAME INIT TRIG    NAME: AGG LOCK PATIENT    NAME: AGG LOOKUP INSURANCE    NAME: AGG LOOKUP PATIENTS    NAME: AGG MEDICAID INIT TRIG    
NAME: AGG MEDICAID TRIGGER    NAME: AGG MEDICARE ELIG TRIGGER    NAME: AGG MEDICARE ELIG VAL    NAME: AGG MEDICARE PART D TRIGGER    NAME: AGG MEDICARE ROI TRIGGER    NAME: AGG MEDICARE TRIGGER    NAME: AGG MEMBER TRIGGER    NAME: AGG MIGRNT TRIGGER    
NAME: AGG NAME CHANGE TRIG    NAME: AGG NEW PATIENT CLASS TRIG    NAME: AGG NEW PATIENT TRIGGER    NAME: AGG NEXT OF KIN TRIGGER    NAME: AGG NK RELATION TRIGGER    NAME: AGG NPP TRIGGER    NAME: AGG OTH PAT ETH TRG    NAME: AGG OTH PAT PRM TRG    
NAME: AGG OTH TRB INIT TRIG    NAME: AGG OTHER PATIENT INIT TRG    NAME: AGG OTHER TRIBE TRIGGER    NAME: AGG PAT EMPL STATUS TRIGGER    NAME: AGG PAT SSN TRIGGER    NAME: AGG PATIENT CLASS TRIGGER    NAME: AGG PATIENT DELETE    NAME: AGG PATIENT EDIT CHECK    
NAME: AGG PATIENT ELIG TRIGGER    NAME: AGG PATIENT FACE SHEET    NAME: AGG PATIENT INT ACC METH    NAME: AGG PATIENT LANGUAGES    NAME: AGG PERSONAL DETAIL TRIGGER    NAME: AGG POLICY HOLDER LOOKUP    NAME: AGG POLICY HOLDER PAT TRIG    NAME: AGG POLICY HOLDER PATIENT    
NAME: AGG POLICY HOLDER SAME TRIG    NAME: AGG POLICY HOLDER TRIGGER    NAME: AGG POLICY MEMBER NUMBER TRIG    NAME: AGG POLICY MEMBER TRIGGER    NAME: AGG QUANTUM VALIDATION    NAME: AGG REPORT LIST    NAME: AGG ROI AOB INIT TRIG    NAME: AGG SAVE PAT LIST    
NAME: AGG SEND SENSITIVE NOTIFY    NAME: AGG UNLOCK PATIENT    NAME: AGG UPDATE A MULTIPLE RECORD    NAME: AGG UPDATE ALIASES    NAME: AGG UPDATE DOCUMENTS    NAME: AGG UPDATE LEGAL NAMES    NAME: AGG UPDATE MEDICAID    NAME: AGG UPDATE MEDICARE    
NAME: AGG UPDATE PATIENT    NAME: AGG UPDATE POLICY MEMBER    NAME: AGG UPDATE PRIVATE INSUR    NAME: AGG UPDATE SPECIAL MULTIPLES    NAME: AGG VALIDATE KEY    NAME: AGG VALIDATE MCD ELIG    NAME: AGG VERSION INFO    NAME: AGG VET CLAIM TRIGGER    
NAME: AGG VETERAN TRIGGER    NAME: AGG WINDOW DATA VALIDATION    NAME: AGG WINDOW TABLE LOOKUP    NAME: AKFRACH    NAME: AKFRACOM    NAME: AKFRADD    NAME: AKFRALLERG    NAME: AKFRAMEND    
NAME: AKFRAORD    NAME: AKFRCDX    NAME: AKFRCLIN    NAME: AKFRCOM    NAME: AKFRCOS    NAME: AKFRDATG    NAME: AKFRDEM    NAME: AKFRDS    
NAME: AKFRDSL    NAME: AKFRDT    NAME: AKFRDXC    NAME: AKFRDXS    NAME: AKFRELIG    NAME: AKFREMP    NAME: AKFRENROL    NAME: AKFRES    
NAME: AKFRESCHK    NAME: AKFRESCLR    NAME: AKFRESFILE    NAME: AKFRESIG    NAME: AKFRFAPP1    NAME: AKFRFAPPT    NAME: AKFRFLAB    NAME: AKFRGPA    
NAME: AKFRGPNA    NAME: AKFRGPNF    NAME: AKFRGPNT    NAME: AKFRGPNTXT    NAME: AKFRGPSIG    NAME: AKFRGTMP    NAME: AKFRHSUM    NAME: AKFRIND    
NAME: AKFRINS    NAME: AKFRLAB    NAME: AKFRLABG    NAME: AKFRLABI    NAME: AKFRLABL    NAME: AKFRLABR    NAME: AKFRLIR    NAME: AKFRLVISIT    
NAME: AKFRMAP    NAME: AKFRMEDL    NAME: AKFRMOD    NAME: AKFRNCHK    NAME: AKFROERR    NAME: AKFRPAT    NAME: AKFRPATH    NAME: AKFRPATL    
NAME: AKFRPFILE    NAME: AKFRPL    NAME: AKFRPLAB    NAME: AKFRPLC    NAME: AKFRPLCMNT    NAME: AKFRPLD    NAME: AKFRPLEDT    NAME: AKFRPLINACT    
NAME: AKFRPLS    NAME: AKFRPNC    NAME: AKFRPNCL    NAME: AKFRPND    NAME: AKFRPNL    NAME: AKFRPNR    NAME: AKFRPNTITLE    NAME: AKFRPNTL    
NAME: AKFRPNTMP    NAME: AKFRPOV    NAME: AKFRPP    NAME: AKFRPSC    NAME: AKFRPT    NAME: AKFRPXS    NAME: AKFRRAD    NAME: AKFRSAMP    
NAME: AKFRSCD    NAME: AKFRSIGBLK    NAME: AKFRSPL    NAME: AKFRSRH    NAME: AKFRTD    NAME: AKFRTMP    NAME: AKFRTMPCHK    NAME: AKFRTP    
NAME: AKFRTPCE    NAME: AKFRTPL    NAME: AKFRTPL-POP    NAME: AKFRTV    NAME: AKFRUNP    NAME: AKFRUSER    NAME: AKFRVF    NAME: AKFRVFD    
NAME: AKFRVFP    NAME: AKFRVFPCE    NAME: AKFRVFV    NAME: AKFRVITC    NAME: AKFRVITF    NAME: AKFRVITL    NAME: AKFRVITV    NAME: AKFRVL    
NAME: AKFRVTC    NAME: AKFRVTS    NAME: AKFRXUS    NAME: AMHBH BROWSE VISITS    NAME: AMHBH DELETE RECORD    NAME: AMHBH DISPLAY LAST VISIT    NAME: AMHBH ENCOUNTER FORM    NAME: AMHBH LIST VISIT DATES    
NAME: AMHBH PCC LINK ADD/EDIT    NAME: AMHBH RECORD DISPLAY    NAME: AMHBH RPMS RX    NAME: AMHBH RPT ACTIVE CLIENT    NAME: AMHBH RPT GARS1    NAME: AMHBH RPT GARS2    NAME: AMHBH RPT NO SHOW 1 PAT    NAME: AMHBH RPT SUICIDE STANDARD    
NAME: AMHBH RPT TP NEED RESOLVED    NAME: AMHBH RPT TP NEED REVIEWED    NAME: AMHBH SUICIDE FORM DSP    NAME: AMHBH TIU CREATE VISIT    NAME: AMHBH TIU FIELD    NAME: AMHBH TIU IEN    NAME: AMHBH TP PRINT    NAME: AMHG ADD BH PROB TO PCC    
NAME: AMHG ADD MRS PATIENT    NAME: AMHG ADD MRS USER    NAME: AMHG BH PL HEADER    NAME: AMHG CHECK ACTIVITY PCC    NAME: AMHG CHECK BH ICD    NAME: AMHG CHECK DSM    NAME: AMHG CHECK LOCK    NAME: AMHG CHECK PL DX CODE    
NAME: AMHG CHECK UU    NAME: AMHG CHECK VERIFY CODE    NAME: AMHG CHECK VISIT EXISTS    NAME: AMHG CREATE/EDIT VISIT    NAME: AMHG DELETE BH PROBLEM    NAME: AMHG DELETE CASE MANAGEMENT    NAME: AMHG DELETE GROUP VISIT    NAME: AMHG DELETE MHSS RECORD    
NAME: AMHG DELETE PCC PROBLEM    NAME: AMHG DELETE SUICIDE FORM    NAME: AMHG DELETE TP PARTICIPANTS    NAME: AMHG DELETE TP REVIEW DATA    NAME: AMHG DELETE TREATMENT PLAN    NAME: AMHG GET ACTIVITY CODE    NAME: AMHG GET ADMIN COMMENTS    NAME: AMHG GET ADMIN RECORD    
NAME: AMHG GET ADMIN RECORDS    NAME: AMHG GET BH PROB DD    NAME: AMHG GET BH PROBLEM LIST    NAME: AMHG GET BROWSE VISITS    NAME: AMHG GET CASE DATES    NAME: AMHG GET CASE MANAGEMENT    NAME: AMHG GET CLINICS    NAME: AMHG GET COMMUNITIES    
NAME: AMHG GET COMMUNITY ACTIVITIES    NAME: AMHG GET COMMUNITY ACTIVITY    NAME: AMHG GET COMMUNITY NOTES    NAME: AMHG GET COMMUNITY POVS    NAME: AMHG GET COMMUNITY PREVENTION    NAME: AMHG GET COMMUNITY SEC PROV    NAME: AMHG GET ESIG    NAME: AMHG GET FACE SHEET    
NAME: AMHG GET FILE RECORD COUNT    NAME: AMHG GET GRAPH LABS    NAME: AMHG GET GROUP CPT    NAME: AMHG GET GROUP DATA    NAME: AMHG GET GROUP EDU    NAME: AMHG GET GROUP EDUCATION    NAME: AMHG GET GROUP ESIG    NAME: AMHG GET GROUP INFORMATION    
NAME: AMHG GET GROUP PATIENT DATA    NAME: AMHG GET GROUP PATIENTS    NAME: AMHG GET GROUP POV    NAME: AMHG GET GROUP SEC PROVIDERS    NAME: AMHG GET GROUP SOAP    NAME: AMHG GET GROUPS    NAME: AMHG GET HEALTH SUMMARY    NAME: AMHG GET HEALTH SUMMARY TYPES    
NAME: AMHG GET HISTORICAL EDU    NAME: AMHG GET HISTORICAL HF    NAME: AMHG GET HISTORICAL SCREENING    NAME: AMHG GET INTAKE    NAME: AMHG GET INTAKE DISPLAY    NAME: AMHG GET INTAKE DOCUMENTS    NAME: AMHG GET INTAKE ESIG    NAME: AMHG GET INTAKE UPDATES    
NAME: AMHG GET KEYS    NAME: AMHG GET LOCATIONS    NAME: AMHG GET MEASUREMENT HELP    NAME: AMHG GET MEASUREMENT TYPES    NAME: AMHG GET MEASUREMENTS    NAME: AMHG GET MHSS RECORD DISPLAY    NAME: AMHG GET MRS PATIENT    NAME: AMHG GET MRS USER    
NAME: AMHG GET PATIENT    NAME: AMHG GET PATIENT DEMOGRAPHICS    NAME: AMHG GET PATIENT INFORMATION    NAME: AMHG GET PCC PL NN    NAME: AMHG GET PCC PROB DD    NAME: AMHG GET PCC PROBLEM LIST    NAME: AMHG GET PCC RECORD DISPLAY    NAME: AMHG GET PCC VISITS    
NAME: AMHG GET PERSONAL HISTORY    NAME: AMHG GET PROVIDERS    NAME: AMHG GET SEARCH RESULTS    NAME: AMHG GET SET OF CODES    NAME: AMHG GET SITE PARAMETERS    NAME: AMHG GET SITE PARAMTERS    NAME: AMHG GET SUIC FORMS ALL PATS    NAME: AMHG GET SUICIDE FORM    
NAME: AMHG GET SUICIDE FORM CF    NAME: AMHG GET SUICIDE FORM METHOD    NAME: AMHG GET SUICIDE FORM ORI    NAME: AMHG GET SUICIDE FORM SUB    NAME: AMHG GET SUICIDE FORMS    NAME: AMHG GET TIMEOUT    NAME: AMHG GET TP AXIS 1    NAME: AMHG GET TP AXIS 2    
NAME: AMHG GET TP AXIS 3    NAME: AMHG GET TP AXIS 4    NAME: AMHG GET TP AXIS 5    NAME: AMHG GET TP DX    NAME: AMHG GET TP NARRATIVE    NAME: AMHG GET TP PARTICIPANTS    NAME: AMHG GET TP PLAN PARTICIPANTS    NAME: AMHG GET TP PROGRESS SUMMARY    
NAME: AMHG GET TP REVIEW    NAME: AMHG GET TREAT PLANS ALL PATS    NAME: AMHG GET TREATMENT NARRATIVE    NAME: AMHG GET TREATMENT PARTICIPANT    NAME: AMHG GET TREATMENT PLAN    NAME: AMHG GET TREATMENT PLANS    NAME: AMHG GET TREATMENT PROBLEM    NAME: AMHG GET TREATMENT PROGRESS    
NAME: AMHG GET TREATMENT REVIEW    NAME: AMHG GET TYPE OF CONTACTS    NAME: AMHG GET VERSION    NAME: AMHG GET VISIT ACTIVITY    NAME: AMHG GET VISIT ASSESSMENT    NAME: AMHG GET VISIT AXIS II    NAME: AMHG GET VISIT AXIS III    NAME: AMHG GET VISIT AXIS IV    
NAME: AMHG GET VISIT AXIS V    NAME: AMHG GET VISIT BH MEDICATIONS    NAME: AMHG GET VISIT BH WELLNES ACT    NAME: AMHG GET VISIT CC    NAME: AMHG GET VISIT CD    NAME: AMHG GET VISIT COMM APP    NAME: AMHG GET VISIT CPT CODES    NAME: AMHG GET VISIT EDU TOPICS    
NAME: AMHG GET VISIT FLAG    NAME: AMHG GET VISIT HEALTH FACTORS    NAME: AMHG GET VISIT INFORMATION    NAME: AMHG GET VISIT LIST    NAME: AMHG GET VISIT MSR DATA ENTRY    NAME: AMHG GET VISIT MSR VIEW    NAME: AMHG GET VISIT PCC MEDICATIONS    NAME: AMHG GET VISIT PCC WELLNES ACT    
NAME: AMHG GET VISIT PLACE DISP NAME    NAME: AMHG GET VISIT RX ENTRY    NAME: AMHG GET VISIT SCREENING    NAME: AMHG GET VISIT SEC PROVIDERS    NAME: AMHG GET VISIT SOAP    NAME: AMHG GET VISIT TIG    NAME: AMHG GET VISITS    NAME: AMHG GET VISITS ALL PATS    
NAME: AMHG INTAKE DELETE    NAME: AMHG LOG SENSITIVE PATIENT    NAME: AMHG PCC PL HEADER    NAME: AMHG PCC TO PL NARRATIVE    NAME: AMHG PRINT ENC FORM GROUP    NAME: AMHG PRINT ENCOUNTER FORM    NAME: AMHG PRINT SUICIDE FORM    NAME: AMHG PRINT TREATMENT PLAN    
NAME: AMHG REMOVE MRS PATIENT    NAME: AMHG REMOVE MRS USER    NAME: AMHG REPORT PAT APPTS    NAME: AMHG REPORT PCC LABS    NAME: AMHG REPORT PCC MEDICATIONS    NAME: AMHG SAVE ACTIVITY    NAME: AMHG SAVE ADMINISTRATIVE DATA    NAME: AMHG SAVE ASSESSMENT    
NAME: AMHG SAVE BH NOTE    NAME: AMHG SAVE BH PROBLEM    NAME: AMHG SAVE CASE MANAGEMENT    NAME: AMHG SAVE CD DATA    NAME: AMHG SAVE COMMUNITY ACTIVITY    NAME: AMHG SAVE DSM5    NAME: AMHG SAVE EDUCATION TOPICS    NAME: AMHG SAVE GROUP DATA    
NAME: AMHG SAVE GROUP IND CPT    NAME: AMHG SAVE GROUP IND PNCA    NAME: AMHG SAVE GROUP IND POV    NAME: AMHG SAVE GROUP POV    NAME: AMHG SAVE HEALTH FACTORS    NAME: AMHG SAVE MEASUREMENTS    NAME: AMHG SAVE MH RECS TO GROUP    NAME: AMHG SAVE MRS PATIENT    
NAME: AMHG SAVE PATIENT INFORMATION    NAME: AMHG SAVE PCC NOTE    NAME: AMHG SAVE PCC PROBLEM    NAME: AMHG SAVE PERSONAL HISTORY    NAME: AMHG SAVE POV    NAME: AMHG SAVE PROGRESS NOTES    NAME: AMHG SAVE RX NOTES    NAME: AMHG SAVE SCREENING    
NAME: AMHG SAVE SUIC CONT FACTORS    NAME: AMHG SAVE SUICIDE FORM    NAME: AMHG SAVE SUICIDE METHOD    NAME: AMHG SAVE SUICIDE NARRATIVE    NAME: AMHG SAVE SUICIDE SUBSTANCES    NAME: AMHG SAVE TP DX    NAME: AMHG SAVE TREATMENT NARRATIVE    NAME: AMHG SAVE TREATMENT PLAN    
NAME: AMHG SAVE TREATMENT PROBLEM    NAME: AMHG SAVE TREATMENT REVIEW    NAME: AMHG SAVE VISIT    NAME: AMHG SIGN ENCOUNTER    NAME: AMHG SIGN GROUP ENCOUNTER    NAME: AMHG SIGN INTAKE    NAME: AMHG VALIDATE MEASUREMENT    NAME: APSPELRX PSCRIPT    
NAME: APSPES2 RREQSTAT    NAME: APSPES3 DCORIG    NAME: APSPES3 DENYRPC    NAME: APSPES3 ISRENEW    NAME: APSPES4 COMPSIG    NAME: APSPES4 GETDSP    NAME: APSPES4 SNDE900    NAME: APSPESG CHGPRV    
NAME: APSPESG GETIDATA    NAME: APSPESG GETLIST    NAME: APSPESG GETREC    NAME: APSPESG GETVAL    NAME: APSPESG NPSPI    NAME: APSPESG QUEVWCNT    NAME: APSPESG STORE    NAME: APSPESG1 DETAIL    
NAME: APSPESG2 LOADRSP    NAME: APSPESG2 PROCESS    NAME: APSPESG2 UPDATE    NAME: APSPFNC GETRXS    NAME: APSPFNC SETCMF    NAME: APSPFNC2 DEACLS    NAME: APSPFNC2 ERXOI    NAME: APSPFNC2 ERXUSER    
NAME: APSPFNC2 PHMLST    NAME: APSPFNC2 PHMLST2    NAME: APSPFNC2 UPTLOG    NAME: APSPFNC5 GSTATES    NAME: APSPFNC5 PHMLSTSC    NAME: APSPFNC6 GPKUP    NAME: APSPFNC6 RESEND    NAME: ATX GET ALL ADA    
NAME: ATX GET ALL CLINIC    NAME: ATX GET ALL COMM    NAME: ATX GET ALL CPT    NAME: ATX GET ALL DEN OPS    NAME: ATX GET ALL DRUGS    NAME: ATX GET ALL DXP    NAME: ATX GET ALL EDU TOPICS    NAME: ATX GET ALL HF    
NAME: ATX GET ALL ICD CODES    NAME: ATX GET ALL ICD OP    NAME: ATX GET ALL LAB LOINC    NAME: ATX GET ALL LAB TESTS    NAME: ATX GET ALL MEAS    NAME: ATX GET ALL PROVIDERS    NAME: ATX GET ALL PRVC    NAME: ATX GET ALL RAD PROC    
NAME: ATX GET ALL SKT    NAME: ATX GET CURRENT TAXONOMY    NAME: ATX GET FILE TAXONOMY    NAME: ATX GET TAXONOMY    NAME: ATX SAVE TAXONOMY    NAME: BDMG ADD A PROBLEM    NAME: BDMG ADD COMPLICATION DX    NAME: BDMG ADD COMPLICATION LIST    
NAME: BDMG ADD NOTE    NAME: BDMG ADD PATIENT TO REGISTER    NAME: BDMG ADD PT FROM TEMPLATE    NAME: BDMG CHECK PROBLEM NUMBER    NAME: BDMG CHECK REPORT STATUS    NAME: BDMG CHECK TAXONOMIES    NAME: BDMG CREATE DM UPDATE ENTRY    NAME: BDMG DELETE A PATIENT    
NAME: BDMG DELETE CMP LIST    NAME: BDMG DELETE COMPLICATION    NAME: BDMG DELETE DIAGNOSIS    NAME: BDMG DELETE LETTER    NAME: BDMG DELETE NOTE    NAME: BDMG DELETE PROBLEM    NAME: BDMG DELETE REPORT    NAME: BDMG DISPLAY LOGIC    
NAME: BDMG EDIT A PROBLEM    NAME: BDMG EDIT LETTER DIR FNM    NAME: BDMG EDIT NOTE    NAME: BDMG GET ALL ADA    NAME: BDMG GET ALL BAR HF    NAME: BDMG GET ALL CLINIC    NAME: BDMG GET ALL COMM    NAME: BDMG GET ALL CPT    
NAME: BDMG GET ALL DEN OPS    NAME: BDMG GET ALL DRUGS    NAME: BDMG GET ALL DXP    NAME: BDMG GET ALL EDU TOPICS    NAME: BDMG GET ALL EXAMS    NAME: BDMG GET ALL FLU IMMUNIZATIONS    NAME: BDMG GET ALL GLU HF    NAME: BDMG GET ALL HEP IMMUNIZATIONS    
NAME: BDMG GET ALL HF    NAME: BDMG GET ALL ICD CODES    NAME: BDMG GET ALL ICD OP    NAME: BDMG GET ALL IMMUNIZATIONS    NAME: BDMG GET ALL LAB LOINC    NAME: BDMG GET ALL LAB TESTS    NAME: BDMG GET ALL LOCATIONS    NAME: BDMG GET ALL LRN HF    
NAME: BDMG GET ALL MEAS    NAME: BDMG GET ALL MSR    NAME: BDMG GET ALL PNU IMMUNIZATIONS    NAME: BDMG GET ALL PROVIDERS    NAME: BDMG GET ALL PRVC    NAME: BDMG GET ALL RAD PROC    NAME: BDMG GET ALL READ HF    NAME: BDMG GET ALL REFUSAL TYPE    
NAME: BDMG GET ALL SKIN TESTS    NAME: BDMG GET ALL SKT    NAME: BDMG GET ALL TB HF    NAME: BDMG GET ALL TD IMMUNIZATIONS    NAME: BDMG GET ALL TU HF    NAME: BDMG GET ALL TUENDS HF    NAME: BDMG GET ALL USERS    NAME: BDMG GET APCL    
NAME: BDMG GET APPOINTMENTS    NAME: BDMG GET AVAILABLE TAXONOMIES    NAME: BDMG GET CASE SUMMARY    NAME: BDMG GET CHART DATA    NAME: BDMG GET COMMENTS    NAME: BDMG GET COMP STAT TABLE    NAME: BDMG GET COMPLICATION DX    NAME: BDMG GET COMPLICATIONS DATA    
NAME: BDMG GET COMPLICATIONS IEN    NAME: BDMG GET COMPLICATIONS TABLE    NAME: BDMG GET DEMOGRAPHICS    NAME: BDMG GET DIAGNOSIS DATA    NAME: BDMG GET DM AUDIT OUTPUT    NAME: BDMG GET DM EDU TOPICS    NAME: BDMG GET DMS USER    NAME: BDMG GET DMV    
NAME: BDMG GET DPCS    NAME: BDMG GET DX LIST    NAME: BDMG GET FACE SHEET    NAME: BDMG GET FLOW SHEET TYPE    NAME: BDMG GET FLS    NAME: BDMG GET FU PROTOCOLS    NAME: BDMG GET FU REPORT    NAME: BDMG GET HEALTH SUMMARY TYPE    
NAME: BDMG GET HS    NAME: BDMG GET HSRG    NAME: BDMG GET IEN    NAME: BDMG GET KEYS    NAME: BDMG GET LETTER    NAME: BDMG GET LETTER DATA    NAME: BDMG GET LETTER ITEMS    NAME: BDMG GET LETTER ITEMS SELECTED    
NAME: BDMG GET LETTER TYPE    NAME: BDMG GET LOCAL OPTION ENTRY    NAME: BDMG GET LOGIC ITEMS    NAME: BDMG GET MEDICATIONS    NAME: BDMG GET NDOO    NAME: BDMG GET NOTES    NAME: BDMG GET PAT MGMT DATA    NAME: BDMG GET PATIENT    
NAME: BDMG GET PATIENT APPOINTMENTS    NAME: BDMG GET PCC VISIT    NAME: BDMG GET PL DETAIL    NAME: BDMG GET PLDX    NAME: BDMG GET PROBLEMS    NAME: BDMG GET RANDOM PATIENT COUNT    NAME: BDMG GET REGISTERS    NAME: BDMG GET REGISTERS ADO    
NAME: BDMG GET REGISTERS AU ADO    NAME: BDMG GET REPORT    NAME: BDMG GET SEARCH TEMPLATE    NAME: BDMG GET SEARCH TEMPLATE SC    NAME: BDMG GET SEARCH TMP CNT    NAME: BDMG GET SNO LIST FOR PRINT    NAME: BDMG GET SNOMED CODES PRINT    NAME: BDMG GET SPEC TAXONOMIES    
NAME: BDMG GET TAX LIST FOR PRINT    NAME: BDMG GET TAXONOMIES    NAME: BDMG GET TAXONOMIES PRINT    NAME: BDMG GET TAXONOMY    NAME: BDMG GET VERSION    NAME: BDMG GET VISIT    NAME: BDMG PRINT MASTER LIST    NAME: BDMG QUEUE DM AUDIT 03    
NAME: BDMG QUEUE DM AUDIT 05    NAME: BDMG QUEUE DM AUDIT 05 P    NAME: BDMG QUEUE DM AUDIT 06    NAME: BDMG QUEUE DM AUDIT 06 P    NAME: BDMG QUEUE DM AUDIT 07    NAME: BDMG QUEUE DM AUDIT 07 P    NAME: BDMG QUEUE DM AUDIT 08    NAME: BDMG QUEUE DM AUDIT 08 P    
NAME: BDMG QUEUE DM AUDIT 09    NAME: BDMG QUEUE DM AUDIT 09 P    NAME: BDMG QUEUE DM AUDIT 10    NAME: BDMG QUEUE DM AUDIT 10 P    NAME: BDMG QUEUE DM AUDIT 11    NAME: BDMG QUEUE DM AUDIT 11 P    NAME: BDMG QUEUE DM AUDIT 12    NAME: BDMG QUEUE DM AUDIT 12 P    
NAME: BDMG QUEUE DM AUDIT 13    NAME: BDMG QUEUE DM AUDIT 13 P    NAME: BDMG QUEUE DM AUDIT 14    NAME: BDMG QUEUE DM AUDIT 14 P    NAME: BDMG QUEUE DM AUDIT 15    NAME: BDMG QUEUE DM AUDIT 15 P    NAME: BDMG QUEUE DM AUDIT 16    NAME: BDMG QUEUE DM AUDIT 16 P    
NAME: BDMG QUEUE DM AUDIT 17    NAME: BDMG QUEUE DM AUDIT 17 P    NAME: BDMG QUEUE DM AUDIT 18    NAME: BDMG QUEUE DM AUDIT 18 P    NAME: BDMG QUEUE DM AUDIT 19    NAME: BDMG QUEUE DM AUDIT 19 P    NAME: BDMG QUEUE LAB/MED REPORT    NAME: BDMG QUEUE MULT SUMMARIES    
NAME: BDMG QUEUE SELF MONITOR REPORT    NAME: BDMG QUEUE TB REPORT    NAME: BDMG SAVE COMMENTS    NAME: BDMG SAVE COMPLICATION LIST    NAME: BDMG SAVE COMPLICATIONS    NAME: BDMG SAVE DIAGNOSIS    NAME: BDMG SAVE DM UPDATE DATA PCC    NAME: BDMG SAVE DM UPDATE EDU    
NAME: BDMG SAVE DM UPDATE LAB    NAME: BDMG SAVE DM UPDATE MED    NAME: BDMG SAVE DMS USER    NAME: BDMG SAVE EDUCATION TOPICS    NAME: BDMG SAVE HF    NAME: BDMG SAVE IMM    NAME: BDMG SAVE LABS    NAME: BDMG SAVE LETTER ITEMS    
NAME: BDMG SAVE LOCAL OPTION ENTRY    NAME: BDMG SAVE MEDICATIONS    NAME: BDMG SAVE NEW LETTER    NAME: BDMG SAVE PAT MGMT DATA    NAME: BDMG SAVE REFUSALS    NAME: BDMG SAVE TAXONOMY    NAME: BEHOAMH FORMIENS    NAME: BEHOARCV DETAIL    
NAME: BEHOARCV LIST    NAME: BEHOARMU REASONS    NAME: BEHOARMU SNOMED    NAME: BEHOART AEIECMT    NAME: BEHOART DEL    NAME: BEHOART DUPCHK    NAME: BEHOART ING    NAME: BEHOART LOAD    
NAME: BEHOART LOCK    NAME: BEHOART SAVE    NAME: BEHOART SIGN    NAME: BEHOART SIGNLIST    NAME: BEHOART UNLOCK    NAME: BEHOCACV CWAD    NAME: BEHOCACV DETAIL    NAME: BEHOCACV LIST    
NAME: BEHOCACV PRF    NAME: BEHOCCD ACCESS    NAME: BEHOCCD GETREF    NAME: BEHOCCD IMPORT    NAME: BEHOCCD PHR    NAME: BEHOCCD SNDALRT    NAME: BEHOCCD STORESN    NAME: BEHOCIR GETCIR    
NAME: BEHOCIR GETNUM    NAME: BEHOCIR GETTXT    NAME: BEHOCIR SET    NAME: BEHOCIR1 GETCCDS    NAME: BEHOCIR1 PTCCD    NAME: BEHOCNCV DETAIL    NAME: BEHOCNCV LIST    NAME: BEHODC GDTITLES    
NAME: BEHODMA PTEMADR    NAME: BEHOENCV DETAIL    NAME: BEHOENCV LIST    NAME: BEHOENCX ADMITCUR    NAME: BEHOENCX ADMITLST    NAME: BEHOENCX CHKVISIT    NAME: BEHOENCX CLINLOC    NAME: BEHOENCX ENINQ    
NAME: BEHOENCX FETCH    NAME: BEHOENCX GETPRV    NAME: BEHOENCX GETVISIT    NAME: BEHOENCX HOSPLOC    NAME: BEHOENCX INPLOC    NAME: BEHOENCX ISSTOPCD    NAME: BEHOENCX LOCIEN    NAME: BEHOENCX LOCINFO    
NAME: BEHOENCX UPDPRV    NAME: BEHOENCX VID2IEN    NAME: BEHOENCX VISITLST    NAME: BEHOENP1 IMMDFLTS    NAME: BEHOENP1 LOAD    NAME: BEHOENPC SAVE    NAME: BEHOENPV OERRRPT    NAME: BEHOLRCV DETAIL    
NAME: BEHOLRCV LIST    NAME: BEHOOUS KILL SS ALERT    NAME: BEHOPGAP ADDGOAL    NAME: BEHOPGAP ADDREV    NAME: BEHOPGAP ADDSTEP    NAME: BEHOPGAP DELGOAL    NAME: BEHOPGAP DELSTEP    NAME: BEHOPGAP EDITGOAL    
NAME: BEHOPGAP EDITSTEP    NAME: BEHOPGAP GETGOAL    NAME: BEHOPGAP GETSTEP    NAME: BEHOPGAP NEXTGN    NAME: BEHOPGAP NEXTSN    NAME: BEHOPLCV DETAIL    NAME: BEHOPLCV LIST    NAME: BEHOPTCX CHKDUP    
NAME: BEHOPTCX FIREVST    NAME: BEHOPTCX ICN2DFN    NAME: BEHOPTCX INPLOC    NAME: BEHOPTCX LAST    NAME: BEHOPTCX LEGACY    NAME: BEHOPTCX PTINFO    NAME: BEHOPTCX PTINQ    NAME: BEHOPTP3 MANAGE    
NAME: BEHOPTPC DETAIL    NAME: BEHOPTPC GETBDP    NAME: BEHOPTPC GETCATS    NAME: BEHOPTPC SETBDP    NAME: BEHOPTPL CLINRNG    NAME: BEHOPTPL DOBLKP    NAME: BEHOPTPL GETDFLT    NAME: BEHOPTPL HRNLKP    
NAME: BEHOPTPL IENLKP    NAME: BEHOPTPL LISTALL    NAME: BEHOPTPL LISTINFO    NAME: BEHOPTPL LISTPTS    NAME: BEHOPTPL LISTSEL    NAME: BEHOPTPL LOOKUP    NAME: BEHOPTPL MANAGE    NAME: BEHOPTPL SAVEDFLT    
NAME: BEHOQOW CANDEL    NAME: BEHOQOW CLONE    NAME: BEHOQOW DEFDISGP    NAME: BEHOQOW DELETEQO    NAME: BEHOQOW DISGRP    NAME: BEHOQOW GETDISAB    NAME: BEHOQOW GETPKG    NAME: BEHOQOW GRPDEFWD    
NAME: BEHOQOW ITMINFO    NAME: BEHOQOW PROPERTY    NAME: BEHOQOW QOFVAL    NAME: BEHOQOW QOITEMS    NAME: BEHOQOW SETDISAB    NAME: BEHOQOW UPDRSP    NAME: BEHORDV DIRECT    NAME: BEHORMCV DETAIL    
NAME: BEHORMCV LIST    NAME: BEHORXCV DETAIL    NAME: BEHORXCV LIST    NAME: BEHORXED CANUSE    NAME: BEHORXED COMPLST    NAME: BEHORXED EDLST    NAME: BEHORXED POVLST    NAME: BEHORXED PRVNRPC    
NAME: BEHORXED STORE    NAME: BEHORXED VSTLST    NAME: BEHORXF1 BATCHXML    NAME: BEHORXF1 HOSPLOC    NAME: BEHORXF1 MEDSXML    NAME: BEHORXF1 MEDXML    NAME: BEHORXF1 ORDRSXML    NAME: BEHORXF1 SFMTXML    
NAME: BEHORXF1 VALQUE    NAME: BEHORXF2 DRUGTXT    NAME: BEHORXF3 LABTESTS    NAME: BEHORXF3 TSTASSOC    NAME: BEHORXF4 ERXCANCP    NAME: BEHORXFM GETLIST    NAME: BEHORXFM GETTEMPL    NAME: BEHORXFM SETTEMPL    
NAME: BEHORXFN FINISH    NAME: BEHORXFN GETRXS    NAME: BEHORXFN OCALL    NAME: BEHORXFN PRINTLOG    NAME: BEHORXFN SETCMF    NAME: BEHORXFN VITALFMT    NAME: BEHORXPS PSCRIPT    NAME: BEHORXRT RECXML    
NAME: BEHOSICX SITEINFO    NAME: BEHOTIU DOCTEXT    NAME: BEHOTIU HASDX    NAME: BEHOTIU TITLEIEN    NAME: BEHOUSCX HASESIG    NAME: BEHOUSCX HASFMCD    NAME: BEHOUSCX HASKEYS    NAME: BEHOUSCX NEWPERS    
NAME: BEHOUSCX STORESIG    NAME: BEHOUSCX USERINFO    NAME: BEHOUSCX VALIDPSW    NAME: BEHOUSCX VALIDSIG    NAME: BEHOUSCX VALINSIG    NAME: BEHOVM DETAIL    NAME: BEHOVM GRID    NAME: BEHOVM HELP    
NAME: BEHOVM LASTVIT    NAME: BEHOVM LIST    NAME: BEHOVM PCTILE    NAME: BEHOVM SAVE    NAME: BEHOVM TEMPLATE    NAME: BEHOVM VALIDATE    NAME: BEHOVM2 EIE    NAME: BEHOVM2 GETCATP    
NAME: BEHOVM2 GETCATS    NAME: BEHOVM2 QUAL    NAME: BEHOVM2 VUNITS    NAME: BEHOXQ ALRLIST    NAME: BEHOXQ ALRMSG    NAME: BEHOXQ ALRPP    NAME: BEHOXQ CANCHGPT    NAME: BEHOXQ FORWARD    
NAME: BEHOXQ SCHALR    NAME: BEHOXQ SCHDEL    NAME: BEHOXQ SCHLIST    NAME: BEHOXQ SCHMSG    NAME: BEHOXQ SCHRECIP    NAME: BEHOXQCV DETAIL    NAME: BEHOXQCV LIST    NAME: BEHOXQPC NOEMC    
NAME: BEHOXQPC NOPOV    NAME: BEHWEB DEFSURL    NAME: BEHWEB GETSITES    NAME: BGOASLK CHKASM    NAME: BGOBMSR DEL    NAME: BGOBMSR GET    NAME: BGOBMSR SET    NAME: BGOCC DEL    
NAME: BGOCC DELPL    NAME: BGOCC GET    NAME: BGOCC GETPL    NAME: BGOCC SET    NAME: BGOCC SETPL    NAME: BGOCPLAN CPACT    NAME: BGOCPLAN DEL    NAME: BGOCPLAN EIE    
NAME: BGOCPLAN GET    NAME: BGOCPLAN OKDEL    NAME: BGOCPLAN SET    NAME: BGOCPLAN SIGN    NAME: BGOCPLAN UPSTAT    NAME: BGOCPTP3 STORE    NAME: BGOCPTPR CLONE    NAME: BGOCPTPR CLONEOTH    
NAME: BGOCPTPR DELASSOC    NAME: BGOCPTPR GETASSOC    NAME: BGOCPTPR GETCATS    NAME: BGOCPTPR GETITEMS    NAME: BGOCPTPR GETLNAME    NAME: BGOCPTPR GETMGRS    NAME: BGOCPTPR OTHCATS    NAME: BGOCPTPR QUERY    
NAME: BGOCPTPR SETACHK    NAME: BGOCPTPR SETASSOC    NAME: BGOCPTPR SETCAT    NAME: BGOCPTPR SETFREQ    NAME: BGOCPTPR SETITEM    NAME: BGOCPTPR SETMGR    NAME: BGOCPTPR SETNAME    NAME: BGOCPTPR VSTASSOC    
NAME: BGOEDTPR CLONE    NAME: BGOEDTPR GETCATS    NAME: BGOEDTPR GETITEMS    NAME: BGOEDTPR GETLNAME    NAME: BGOEDTPR GETMGRS    NAME: BGOEDTPR QUERY    NAME: BGOEDTPR SETCAT    NAME: BGOEDTPR SETFREQ    
NAME: BGOEDTPR SETITEM    NAME: BGOEDTPR SETMGR    NAME: BGOEDTPR SETNAME    NAME: BGOFHX DEL    NAME: BGOFHX GET    NAME: BGOFHX ICDLKUP    NAME: BGOFHX SET    NAME: BGOHOS HOSP    
NAME: BGOICDLK ICDLKUP    NAME: BGOICDPR CLONE    NAME: BGOICDPR CLONEOTH    NAME: BGOICDPR GETCATS    NAME: BGOICDPR GETITEMS    NAME: BGOICDPR GETLNAME    NAME: BGOICDPR GETMGRS    NAME: BGOICDPR OTHCATS    
NAME: BGOICDPR QUERY    NAME: BGOICDPR SETCAT    NAME: BGOICDPR SETFREQ    NAME: BGOICDPR SETITEM    NAME: BGOICDPR SETMGR    NAME: BGOICDPR SETNAME    NAME: BGOPRBN DEL    NAME: BGOPRBN GET    
NAME: BGOPRBN SET    NAME: BGOPRDD DETAIL    NAME: BGOPROB ADD CLASS    NAME: BGOPROB CKID    NAME: BGOPROB DEL    NAME: BGOPROB GET    NAME: BGOPROB GET CLASS    NAME: BGOPROB NEXTID    
NAME: BGOPROB SET    NAME: BGOPROB SETPRI    NAME: BGOPROB1 EDIT    NAME: BGOPROB1 EDPROB    NAME: BGOPROB1 GETONE    NAME: BGOPROB1 INPT    NAME: BGOPROB2 CHK    NAME: BGOPROB2 DUPCHK    
NAME: BGOPROB2 MAP    NAME: BGOREF DEL    NAME: BGOREF GET    NAME: BGOREF GETREA    NAME: BGOREF REFLIST    NAME: BGOREF SET    NAME: BGOREP DEL    NAME: BGOREP GET    
NAME: BGOREP SET    NAME: BGOREP1 CONTALL    NAME: BGOREP1 DELCONT    NAME: BGOREP1 SETCONT    NAME: BGOSNLK CONCLKUP    NAME: BGOSNLK GETLST    NAME: BGOSNLK GETSUB    NAME: BGOSNLK IMPORT    
NAME: BGOSNLK SUBSET    NAME: BGOSNLK TREAT    NAME: BGOSNOP2 CLONE    NAME: BGOSNOP2 QUERY    NAME: BGOSNOP2 UPSTAT    NAME: BGOSNOPR GETCATS    NAME: BGOSNOPR GETITEMS    NAME: BGOSNOPR GETMGRS    
NAME: BGOSNOPR SETCAT    NAME: BGOSNOPR SETFREQ    NAME: BGOSNOPR SETITEM    NAME: BGOSNOPR SETMGR    NAME: BGOSNOPR SETNAME    NAME: BGOTRG GETSUM    NAME: BGOUTL CHKSEC    NAME: BGOUTL CPTLEXCD    
NAME: BGOUTL DICLKUP    NAME: BGOUTL DICLKUP2    NAME: BGOUTL FIRVIS    NAME: BGOUTL GETCLN    NAME: BGOUTL GETPARM    NAME: BGOUTL GETRPT    NAME: BGOUTL ICDLEX    NAME: BGOUTL ICDLEXCD    
NAME: BGOUTL LEXLKUP    NAME: BGOUTL LOCK    NAME: BGOUTL SETPARM    NAME: BGOUTL SNMDCONC    NAME: BGOUTL VCLN    NAME: BGOUTL VFDEL    NAME: BGOUTL2 SUBSET    NAME: BGOUTL3 GETSET    
NAME: BGOVAMI DEL    NAME: BGOVAMI GET    NAME: BGOVAMI SET    NAME: BGOVAST DEL    NAME: BGOVAST GET    NAME: BGOVAST GETNEW    NAME: BGOVAST GETNOTE    NAME: BGOVAST GETREG    
NAME: BGOVAST GETZONE    NAME: BGOVAST SET    NAME: BGOVAST SETREG    NAME: BGOVAST SETZONE    NAME: BGOVCOAG DEL    NAME: BGOVCOAG GET    NAME: BGOVCOAG SET    NAME: BGOVCPT CPTLKUP    
For the entire list of entries see: Here

Global Variables Directly Accessed

Name Line Occurrences  (* Changed,  ! Killed)
^XWB(8994 - [#8994] .01(XREF 1S), .01(XREF 1K)

Local Variables

Legend:

>> Not killed explicitly
* Changed
! Killed
~ Newed

Name Field # of Occurrence
>> DA .01(XREF 1S), .01(XREF 1K)
X .01+1!, .01(XREF 1S), .01(XREF 1K), .02+1!, .03+1!, .09+1!
Info |  Desc |  Directly Accessed By Routines |  Accessed By FileMan Db Calls |  Pointed To By FileMan Files |  Fields |  Found Entries |  Global Variables Directly Accessed |  Local Variables |  All