122. EPMO Open Source Coordination Office Redaction File Detail Report

Produced by Araxis Merge on 4/12/2018 10:19:05 AM Central Daylight Time. See www.araxis.com for information about Merge. This report uses XHTML and CSS2, and is best viewed with a modern standards-compliant browser. For optimum results when printing this report, use landscape orientation and enable printing of background images and colours in your browser.

122.1 Files compared

# Location File Last Modified
1 MSSRe Build 4.zip\DatabaseScripts\DatabasePatches\R13 CRS_Sprint13.00.002.134786.sql Tue Apr 10 19:45:45 2018 UTC
2 MSSRe Build 4.zip\DatabaseScripts\DatabasePatches\R13 CRS_Sprint13.00.002.134786.sql Wed Apr 11 18:38:06 2018 UTC

122.2 Comparison summary

Description Between
Files 1 and 2
Text Blocks Lines
Unchanged 2 138
Changed 1 2
Inserted 0 0
Removed 0 0

122.3 Comparison options

Whitespace
Character case Differences in character case are significant
Line endings Differences in line endings (CR and LF characters) are ignored
CR/LF characters Not shown in the comparison detail

122.4 Active regular expressions

No regular expressions were active.

122.5 Comparison detail

  1   -- Setting s
  2   declare @c rsId int
  3   set @crsId  = 
  4   (
  5           Se lect ID
  6           Fr om STD_REG ISTRY
  7           Wh ere Code =  'CRS'
  8   )
  9  
  10   delete fro m CRS_SETT INGS
  11   where [NAM E] in 
  12           (' CrsMviProc essingCode ',
  13            ' CrsMviSoap Xml')
  14  
  15   INSERT INT O [CRS_SET TINGS]
  16                       ( [STD_REGIS TRY_ID]
  17                       , [NAME]
  18                       , [VALUE]
  19                       , [DESCRIPTI ON]
  20                       , [COMMENTS]
  21                       , [CREATED]
  22                       , [CREATEDBY ])
  23            V ALUES
  24                       ( @crsId                                 
  25                       , 'CrsMviPro cessingCod e'  
  26                       , 'T'            
  27                       , 'Set to T  for testin g, P for r eal ops' 
  28                       , 'Used by U sed by CRS _MVI_GetPa tientIdent ity ETL' 
  29                       , GETDATE()                           
  30                       , 'awhitelea ther')                     
  31  
  32   INSERT INT O [CRS_SET TINGS]
  33                       ( [STD_REGIS TRY_ID]
  34                       , [NAME]
  35                       , [VALUE]
  36                       , [DESCRIPTI ON]
  37                       , [COMMENTS]
  38                       , [CREATED]
  39                       , [CREATEDBY ])
  40            V ALUES
  41                       ( @crsId                                 
  42                       , 'CrsMviSoa pXml'  
  43                         ,'<soapenv :Envelope  xmlns:soap env="http: //schemas. xmlsoap.or g/soap/env elope/"><s oapenv:Hea der/><soap env:Body>< vaww:PRPA_ IN201309UV 02 xmlns=" urn:hl7-or g:v3" xmln s:vaww="ht tp:// URL           .va.gov" x mlns:xsi=" http://www .w3.org/20 01/XMLSche ma-instanc e" xsi:sch emaLocatio n="urn:hl7 -org:v3 .. /../schema /HL7V3/NE2 008/multic acheschema s/PRPA_IN2 01309UV02. xsd" ITSVe rsion="XML _1.0"><id  root="2.16 .840.1.113 883.4.349"  extension ="EEEEEEEE EE"/><crea tionTime v alue="2007 0810140900 "/>VCVCVCV CVC<intera ctionId ro ot="2.16.8 40.1.11388 3.1.6"/><p rocessingC ode code=" PCPCPCPCPC "/><proces singModeCo de code="T "/><accept AckCode co de="AL"/>< receiver t ypeCode="R CV"><devic e classCod e="DEV" de terminerCo de="INSTAN CE"><id ro ot="2.16.8 40.1.11388 3.4.349"/> </device>< /receiver> <sender ty peCode="SN D"><device  classCode ="DEV" det erminerCod e="INSTANC E"><id ext ension="20 0CRS" root ="2.16.840 .1.113883. 4.349"/></ device></s ender><con trolActPro cess class Code="CACT " moodCode ="EVN"><co de code="P RPA_TE2013 09UV02" co deSystem=" 2.16.840.1 .113883.1. 6"/><query ByParamete r><queryId  root="2.1 6.840.1.11 3883.4.349 " extensio n="UIDUIDU IDUID"/><s tatusCode  code="new" /><respons ePriorityC ode code=" I"/><param eterList>< patientIde ntifier><! --edipi--> <value roo t="2.16.84 0.1.113883 .3.42.1000 1.100001.1 2" extensi on="EDIPIE DIPIEDIPI" /><semanti csText>Pat ient.Id</s emanticsTe xt></patie ntIdentifi er></param eterList>< /queryByPa rameter></ controlAct Process></ vaww:PRPA_ IN201309UV 02></soape nv:Body></ soapenv:En velope>'   
  44                       , 'Segments  of Soap XM L for conn ecting to  VAAFI/MVI'  
  45                       , 'Used by U sed by CRS _MVI_GetPa tientIdent ity ETL' 
  46                       , GETDATE()                           
  47                       , 'awhitelea ther')  
  48  
  49   GO
  50  
  51   INSERT INT O [dbo].[D atabaseCha ngeLog]
  52               ([MajorRe leaseNumbe r]
  53               ,[MinorRe leaseNumbe r]
  54               ,[PointRe leaseNumbe r]
  55               ,[Hotfix]
  56               ,[ScriptN ame]
  57               ,[ScriptD escription ]
  58               ,[TargetR egistry]
  59               ,[DateApp lied])
  60        VALUE S
  61               ('13'
  62               ,'00'
  63               ,'001'
  64               ,0
  65               ,'CRS Upd ate'
  66                       , 'Script wi ll set the  CrsMviSoa pXml setti ng'
  67               ,'CRS'
  68               ,GETDATE( ))
  69  
  70   GO