Home   Package List   Routine Alphabetical List   Global Alphabetical List   FileMan Files List   FileMan Sub-Files List   Package Component Lists   Package-Namespace Mapping  
Routine: ECV1RPC

ECV1RPC.m

Go to the documentation of this file.
  1. ECV1RPC ;ALB/ACS - Event Capture Spreadsheet Upload Broker Utilities ;12/2/22 15:57
  1. ;;2.0;EVENT CAPTURE;**25,33,49,61,131,139,159**;8 May 96;Build 61
  1. ;
  1. ; Reference to ^TMP supported by SACC 2.3.2.5.1
  1. ;
  1. IN(RESULTS,ECDATA) ;
  1. ;----------------------------------------------------------------------
  1. ;This broker entry point receives a row of data from the Event
  1. ;Capture GUI Spreadsheet (a module of the Event Capture GUI app).
  1. ;The data is validated and an array is returned to the spreadsheet
  1. ;module.
  1. ;
  1. ; RPC: EC VALIDATE SPREADSHEET DATA
  1. ;
  1. ;INPUT ECDATA - Contains either the column headers or a row of
  1. ; spreadshet data. Fields included are:
  1. ; Record number, station, SSN, patient last
  1. ; name, patient first name, DSS unit name, DSS
  1. ; unit number, DSS unit IEN, procedure code,
  1. ; volume, ordering section, encounter d/t,category,
  1. ; diag code, associated clinic name,
  1. ; Associated Clinic IEN, CPT Mod #1, CPT Mod #2,
  1. ; CPT Mod #3, CPT Mod #4, CPT Mod #5, Agent Orange,
  1. ; Ionizing Rad, Service connected, SW Asia, MST,
  1. ; HNC, Combat Vet, SHAD, Camp Lejeune, Prov #1,
  1. ; Prov #2, Prov #3, Prov #4,Prov #5, Prov #6,
  1. ; Prov #7, patient status override flag, override
  1. ; deceased flag and file duplicate(s) flag.
  1. ;
  1. ;OUTPUT RESULTS - If an error is found during data validation,
  1. ; then the output contains an array of error
  1. ; messages:
  1. ;
  1. ; PIECE Description
  1. ; ----- ------------------------
  1. ; 1 Record number
  1. ; 2 Column number (on spreadsheet)
  1. ; containing the record number
  1. ; 3 Column number (on spreadsheet)
  1. ; containing the data in error
  1. ; 4 Error message
  1. ;
  1. ; - If no errors are found during data validation,
  1. ; then the output contains a string of Event
  1. ; Capture data for that patient, beginning with
  1. ; the string "NO ERRORS":
  1. ;
  1. ; "NO ERRORS"^Patient SSN IEN^Encounter Date/Time^
  1. ; Station IEN^DSS Unit IEN^Category^Procedure^Volume
  1. ; ^Ordering Section IEN^User IEN^Primary Diagnosis^
  1. ; Associated ClinicCPT Mod #1 IEN^CPT Mod #2 IEN^
  1. ; CPT Mod #3 IEN^CPT Mod #4 IEN^CPT Mode #5 IEN^
  1. ; AO^Ion Rad^SC^SW Asia^MST^HNC^CV^SHAD^Camp
  1. ; Lejeune^Prov 1^Prov 2^Prov 3^Prov 4^Prov 5^Prov 6^
  1. ; Prov 7^Patient Status^Sec Dx 1^Sec Dx 2^Sec Dx 3^
  1. ; Sec Dx 4^
  1. ;
  1. ;OTHER ^TMP($J,"COLS") will store the column/data order
  1. ; (used as data 'piece') of the input data string.
  1. ; For example:
  1. ;
  1. ; ^TMP($J,"COLS","ECRECPC")=1 => Record number is 1st piece
  1. ; ^TMP($J,"COLS","ECSTAPC")=2 => Station is 2nd piece
  1. ;
  1. ;SPECIAL PROCESSING
  1. ; An exception to the above described output exists when no
  1. ; exact match is found on the provider. In this case, some
  1. ; provider info will be sent back with the error message
  1. ; so the user can determine which provider they want. For
  1. ; example, provider JONES,WILLIAM is entered by the user, but
  1. ; the file contains JONES,WILLIAM H and JONES,WILLIAM J.
  1. ; Both of those providers and their associated information
  1. ; will be sent with the error message.
  1. ;
  1. ;State Home Spreadsheet
  1. ; If incoming data in ECDATA is from a state home spreadsheet
  1. ; then the first piece of ECDATA will be set to 'State Home
  1. ; Record'. This identifier will be used when processing the
  1. ; location associated with the record.
  1. ;----------------------------------------------------------------------
  1. ;
  1. INIT ;-- piece numbers (associated with column numbers in the spreadsheet)
  1. N ECRECPC,ECSTAPC,ECSSNPC,ECPATLPC,ECPATFPC,ECDSSPC,ECDCMPC,ECUNITPC
  1. N ECPROCPC,ECVOLPC,ECOSPC,ECPRV1PC,ECENCPC,ECCATPC,ECDXPC ;131
  1. N ECCLNNPC,ECCLNIPC,ECMOD1PC,ECMOD2PC,ECMOD3PC,ECMOD4PC,ECMOD5PC,ECAOPC,ECIRPC,ECSCPC,ECSWAPC,ECMSTPC,ECHNCPC,ECCVPC,ECSHADPC,ECCLPC ;131
  1. N ECPRV2PC,ECPRV3PC,ECPRV4PC,ECPRV5PC,ECPRV6PC,ECPRV7PC ;131
  1. N ECSEC1PC,ECSEC2PC,ECSEC3PC,ECSEC4PC ;159
  1. ;-- spreadsheet values entered by user
  1. N ECRECV,ECSTAV,ECSSNV,ECPATLV,ECPATFV,ECPATV,ECDSSV,ECDCMV,ECUNITV
  1. N ECPROCV,ECVOLV,ECOSV,ECPRV1V,ECENCV,ECCATV,ECDXV ;131
  1. N ECCLNNV,ECPSTATV,ECDECPAT,ECFILDUP ;131
  1. N ECPRV2V,ECPRV3V,ECPRV4V,ECPRV5V,ECPRV6V,ECPRV7V,ECCLNIV,ECMOD1V,ECMOD2V,ECMOD3V,ECMOD4V,ECMOD5V,ECAOV,ECIRV,ECSCV,ECSWAV,ECMSTV,ECHNCV,ECCVV,ECSHADV,ECCLV ;131
  1. N ECSEC1V,ECSEC2V,ECSEC3V,ECSEC4V ;159
  1. ;-- error flags and derived data
  1. N ECERR,ECERRFLG,ECERRMSG,ECCOLERR,ECPRVIEN,ECOSIEN,ECVSSN,ECDSSIEN
  1. N ECINDEX,ECSSNIEN,ECPCLASS,ECPRVTYP,ECCATIEN,ECDXIEN,ECCLNIEN
  1. N ECPSTAT,ECSOURCE ;139
  1. N ECSECDX1,ECSECDX2,ECSECDX3,ECSECDX4 ;159
  1. ;
  1. S U="^"
  1. S (ECINDEX,ECERR)=0
  1. K RESULTS
  1. ;
  1. ;--Call utility program to set up piece numbers and column header info
  1. I ECDATA["COLHEADERS" D ECHDRS^ECU1RPC(ECDATA) Q
  1. ;
  1. I ECDATA["END OF PROCESSING" D CLEANUP Q
  1. I $P(ECDATA,U)="State Home Record" S ECSOURCE="STATE HOME",ECDATA=$P(ECDATA,U,2,999) ;139 For state home records, strip off state home identifier before processing
  1. ;
  1. MAIN ;--Call utility program to get piece numbers and set up data values
  1. D GETDATA^ECU1RPC(ECDATA)
  1. ;
  1. ;--Call validation routines to validate the data
  1. D ^ECV2RPC
  1. D ^ECV3RPC
  1. D ^ECV4RPC
  1. ;
  1. FINAL ;If no errors, send data back to spreadsheet module
  1. ;note: ECDXIEN and ECCLNIEN will be set to null if the record is
  1. ;not being sent to PCE or the DSS Unit is an OOS type unit.
  1. ;For OOS type DSS units, the encoutner status values (combat vet, etc.)
  1. ;will be returned as null as they aren't needed.
  1. ;
  1. I '($D(RESULTS(1))) D
  1. . N RESDATA
  1. . S RESDATA="NO ERRORS"_U_ECSSNIEN_U_ECENCV_U_ECSTAV_U_ECDSSIEN ;131
  1. . S RESDATA=RESDATA_U_ECCATIEN_U_ECPROCV_U_ECVOLV ;131
  1. . S RESDATA=RESDATA_U_ECOSIEN_U_ECDUZ_U_$G(ECDXIEN) ;131
  1. . S RESDATA=RESDATA_U_$G(ECCLNIEN)_U_ECMOD1V_U_ECMOD2V_U_ECMOD3V_U_ECMOD4V_U_ECMOD5V ;131
  1. . S RESDATA=RESDATA_U_ECAOV_U_ECIRV_U_ECSCV_U_ECSWAV_U_ECMSTV_U_ECHNCV_U_ECCVV_U_ECSHADV_U_ECCLV ;131
  1. . S RESDATA=RESDATA_U_ECPRV1V_U_ECPRV2V_U_ECPRV3V_U_ECPRV4V_U_ECPRV5V_U_ECPRV6V_U_ECPRV7V_U_ECPSTAT ;131
  1. . S RESDATA=RESDATA_U_$G(ECSECDX1)_U_$G(ECSECDX2)_U_$G(ECSECDX3)_U_$G(ECSECDX4)_U ;159
  1. . S RESULTS(1)=RESDATA
  1. . Q
  1. Q
  1. ;
  1. CLEANUP ;Delete temporary files
  1. I $D(^TMP($J,"COLS")) K ^TMP($J,"COLS")
  1. Q