Produced by Araxis Merge on 6/29/2017 9:31:41 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.
| # | Location | File | Last Modified |
|---|---|---|---|
| 1 | VBECS_02020102631843308.zip\sql_scripts | vbecs-2.2.1.2A-patching-2.2.0.2A.sql | Wed Apr 19 20:53:08 2017 UTC |
| 2 | VBECS_02020102631843308.zip\sql_scripts | vbecs-2.2.1.2A-patching-2.2.0.2A.sql | Wed Jun 28 17:35:59 2017 UTC |
| Description | Between Files 1 and 2 |
|
|---|---|---|
| Text Blocks | Lines | |
| Unchanged | 13 | 18412 |
| Changed | 12 | 9838 |
| Inserted | 0 | 0 |
| Removed | 0 | 0 |
| 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 |
No regular expressions were active.
| 1 | --VBECS 2. 2.1.1 and VBECS 2.2. 1.2 combin ed script | |
| 2 | ||
| 3 | ||
| 4 | --VBECS 2. 2.1.1 SQL Script | |
| 5 | ||
| 6 | /********* ********** ********** ********** ********** ********** ********** ********** ********** | |
| 7 | SCRIPT NOTES | |
| 8 | ||
| 9 | TOKENS CON TAINED IN THIS SCRIP T | |
| 10 | ||
| 11 | @DBNAME@ - replaced this with the name of the VBE CS databas e “e.g. VB ECS_TS1_TE ST” | |
| 12 | @PATCHUSER ID@ - rep laced with the windo ws login I D of the u ser runnin g the scri pt | |
| 13 | @TARGETVER SION@ - re placed wit h the targ et build n umber e.g. , 2.2.1.2 | |
| 14 | ********** ********** ********** ********** ********** ********** ********** ********** *********/ | |
| 15 | ||
| 16 | ||
| 17 | ||
| 18 | --VBECS Ad min change s (Defect 340457) | |
| 19 | ||
| 20 | USE @DBNAM E@ | |
| 21 | GO | |
| 22 | ||
| 23 | --Interfac e | |
| 24 | ||
| 25 | /********* ********** ********** ********** ********** ********** ********** ********** ********** | |
| 26 | Create a temporar y Interfac e table an d save the original data | |
| 27 | ********** ********** ********** ********** ********** ********** ********** ********** *********/ | |
| 28 | IF OBJECT_ ID(N'tempd b..#Interf ace') IS N OT NULL | |
| 29 | DR OP TABLE # Interface | |
| 30 | GO | |
| 31 | ||
| 32 | CREATE TAB LE dbo.#In terface | |
| 33 | ( | |
| 34 | [I nterfaceId ] [tinyint ] NOT NUL L, | |
| 35 | [I nterfaceNa me] [varch ar](50) NO T NULL, | |
| 36 | [F ieldSepara tor] [char ](1) NOT N ULL, | |
| 37 | [E ncodingCha racters] [ char](4) N OT NULL, | |
| 38 | [I nterfaceAp plicationI d] [varcha r](50) NOT NULL, | |
| 39 | [V becsApplic ationId] [ varchar](5 0) NOT NUL L, | |
| 40 | [V ersionId] [varchar]( 8) NOT NUL L, | |
| 41 | [A pplication AckType] [ char](2) N ULL, | |
| 42 | [L astUpdateD ate] [date time] NOT NULL, | |
| 43 | [L astUpdateU ser] [varc har](30) N OT NULL, | |
| 44 | [L astUpdateF unctionId] [int] NOT NULL, | |
| 45 | ) ON [PRIMA RY] | |
| 46 | GO | |
| 47 | ||
| 48 | INSERT INT O #Interfa ce | |
| 49 | (I nterfaceId , Interfac eName, Fie ldSeparato r, Encodin gCharacter s, Interfa ceApplicat ionId, Vbe csApplicat ionId, Ver sionId, | |
| 50 | A pplication AckType, L astUpdateD ate, LastU pdateUser, LastUpdat eFunctionI d) | |
| 51 | SELECT I nterfaceId , Interfac eName, Fie ldSeparato r, Encodin gCharacter s, Interfa ceApplicat ionId, Vbe csApplicat ionId, Ver sionId, | |
| 52 | A pplication AckType, L astUpdateD ate, LastU pdateUser, LastUpdat eFunctionI d | |
| 53 | FROM dbo .Interface | |
| 54 | GO | |
| 55 | ||
| 56 | ||
| 57 | if exists (select * from dbo.s ysobjects where id = object_id (N'[dbo].[ FK_Interfa ceControl_ Interface] ') and OBJ ECTPROPERT Y(id, N'Is ForeignKey ') = 1) | |
| 58 | ALTER TABL E [dbo].[I nterfaceCo ntrol] DRO P CONSTRAI NT [FK_Int erfaceCont rol_Interf ace] | |
| 59 | GO | |
| 60 | ||
| 61 | if exists (select * from dbo.s ysobjects where id = object_id (N'dbo.Int erface') a nd OBJECTP ROPERTY(id , N'IsUser Table') = 1) | |
| 62 | DROP TABLE dbo.Inter face | |
| 63 | GO | |
| 64 | ||
| 65 | ||
| 66 | SET ANSI_N ULLS ON | |
| 67 | GO | |
| 68 | ||
| 69 | SET QUOTED _IDENTIFIE R ON | |
| 70 | GO | |
| 71 | ||
| 72 | SET ANSI_P ADDING ON | |
| 73 | GO | |
| 74 | ||
| 75 | CREATE TAB LE [dbo].[ Interface] ( | |
| 76 | [I nterfaceId ] [tinyint ] IDENTITY (1,1) NOT NULL, | |
| 77 | [V becsEndPoi ntId] [int ] NULL, | |
| 78 | [I nterfaceNa me] [varch ar](50) NO T NULL, | |
| 79 | [F ieldSepara tor] [char ](1) NOT N ULL, | |
| 80 | [E ncodingCha racters] [ char](4) N OT NULL, | |
| 81 | [I nterfaceAp plicationI d] [varcha r](50) NOT NULL, | |
| 82 | [V becsApplic ationId] [ varchar](5 0) NOT NUL L, | |
| 83 | [V ersionId] [varchar]( 8) NOT NUL L, | |
| 84 | [A pplication AckType] [ char](2) N ULL, | |
| 85 | [A pplication Name] [var char] (100 ) NULL, | |
| 86 | [C onfigPrefi x] [varcha r] (100) N ULL, | |
| 87 | [P rocessingI d] [char] (1) NULL, | |
| 88 | [P urgeSucces sfulMessag e] [tinyin t] NULL, | |
| 89 | [P urgeUnSucc essfulMess age] [tiny int] NULL , | |
| 90 | [L ogEventsIn dicator] [ bit] NULL CONSTRAIN T [DF_Inte rface_LogE ventsIndic ator] DEF AULT (0), | |
| 91 | [V becsFacili tyId] [var char] (20) NULL, | |
| 92 | [L astUpdateD ate] [date time] NOT NULL, | |
| 93 | [L astUpdateU ser] [varc har](30) N OT NULL, | |
| 94 | [R owVersion] [timestam p] NOT NUL L, | |
| 95 | [L astUpdateF unctionId] [int] NOT NULL CONS TRAINT [DF _Interface _LastUpdat eFunctionI d] DEFAUL T (0), | |
| 96 | CONSTRAIN T [PK_Inte rface] PRI MARY KEY C LUSTERED | |
| 97 | ( | |
| 98 | [I nterfaceId ] ASC | |
| 99 | )WITH (PAD _INDEX = O FF, STATIS TICS_NOREC OMPUTE = O FF, IGNORE _DUP_KEY = OFF, ALLO W_ROW_LOCK S = ON, AL LOW_PAGE_L OCKS = ON) ON [PRIMA RY] | |
| 100 | ) ON [PRIM ARY] | |
| 101 | ||
| 102 | GO | |
| 103 | ||
| 104 | SET ANSI_P ADDING OFF | |
| 105 | GO | |
| 106 | ||
| 107 | ||
| 108 | ||
| 109 | EXEC sys.s p_addexten dedpropert y @name=N' MS_Descrip tion', @va lue=N'Iden tifies a s pecific in terface in VBECS.' , @level0ty pe=N'SCHEM A',@level0 name=N'dbo ', @level1 type=N'TAB LE',@level 1name=N'In terface', @level2typ e=N'COLUMN ',@level2n ame=N'Inte rfaceId' | |
| 110 | GO | |
| 111 | ||
| 112 | EXEC sys.s p_addexten dedpropert y @name=N' MS_Descrip tion', @va lue=N'Iden tifies a s pecific in terface in VBECS.' , @level0ty pe=N'SCHEM A',@level0 name=N'dbo ', @level1 type=N'TAB LE',@level 1name=N'In terface', @level2typ e=N'COLUMN ',@level2n ame=N'Vbec sEndPointI d' | |
| 113 | GO | |
| 114 | ||
| 115 | EXEC sys.s p_addexten dedpropert y @name=N' MS_Descrip tion', @va lue=N'The name of th e interfac e. [for ex ample: CPR S]' , @lev el0type=N' SCHEMA',@l evel0name= N'dbo', @l evel1type= N'TABLE',@ level1name =N'Interfa ce', @leve l2type=N'C OLUMN',@le vel2name=N 'Interface Name' | |
| 116 | GO | |
| 117 | ||
| 118 | EXEC sys.s p_addexten dedpropert y @name=N' MS_Descrip tion', @va lue=N'Defi nes the ch aracter to be used a s a separa tor for th e message. ' , @level 0type=N'SC HEMA',@lev el0name=N' dbo', @lev el1type=N' TABLE',@le vel1name=N 'Interface ', @level2 type=N'COL UMN',@leve l2name=N'F ieldSepara tor' | |
| 119 | GO | |
| 120 | ||
| 121 | EXEC sys.s p_addexten dedpropert y @name=N' MS_Descrip tion', @va lue=N'This field con tains the four chara cters in t he followi ng order: the compon ent separa tor, repet ition sepa rator, esc ape charac ter, and s ubcomponen t separato r.' , @lev el0type=N' SCHEMA',@l evel0name= N'dbo', @l evel1type= N'TABLE',@ level1name =N'Interfa ce', @leve l2type=N'C OLUMN',@le vel2name=N 'EncodingC haracters' | |
| 122 | GO | |
| 123 | ||
| 124 | EXEC sys.s p_addexten dedpropert y @name=N' MS_Descrip tion', @va lue=N'Uniq uely ident ifies the sending ap plication. In the c ase of an OMG_O19 me ssage gene rated from CPRS, thi s field wo uld be def ined as OE RR.' , @le vel0type=N 'SCHEMA',@ level0name =N'dbo', @ level1type =N'TABLE', @level1nam e=N'Interf ace', @lev el2type=N' COLUMN',@l evel2name= N'Interfac eApplicati onId' | |
| 125 | GO | |
| 126 | ||
| 127 | EXEC sys.s p_addexten dedpropert y @name=N' MS_Descrip tion', @va lue=N'Uniq uely ident ifies the receiving applicatio n. In the case of a n ORM mess age genera ted from C PRS, this field woul d be defin ed as VBEC S.' , @lev el0type=N' SCHEMA',@l evel0name= N'dbo', @l evel1type= N'TABLE',@ level1name =N'Interfa ce', @leve l2type=N'C OLUMN',@le vel2name=N 'VbecsAppl icationId' | |
| 128 | GO | |
| 129 | ||
| 130 | EXEC sys.s p_addexten dedpropert y @name=N' MS_Descrip tion', @va lue=N'This field is matched by the recei ving syste m to its o wn version to be sur e the mess age will b e interpre ted correc tly.' , @l evel0type= N'SCHEMA', @level0nam e=N'dbo', @level1typ e=N'TABLE' ,@level1na me=N'Inter face', @le vel2type=N 'COLUMN',@ level2name =N'Version Id' | |
| 131 | GO | |
| 132 | ||
| 133 | EXEC sys.s p_addexten dedpropert y @name=N' MS_Descrip tion', @va lue=N'This field ide ntifies th e conditio ns under w hich accep t acknowle dgments ar e required to be ret urned in r esponse to this mess age.' , @l evel0type= N'SCHEMA', @level0nam e=N'dbo', @level1typ e=N'TABLE' ,@level1na me=N'Inter face', @le vel2type=N 'COLUMN',@ level2name =N'Applica tionAckTyp e' | |
| 134 | GO | |
| 135 | ||
| 136 | EXEC sys.s p_addexten dedpropert y @name=N' MS_Descrip tion', @va lue=N'Indi cates the name of th e applicat ion/projec t associat ed with th is interfa ce. Along with the [ ConfigPref ix] field, this can be used to join to t he [VbecsG lobalConfi g] table t o find add itional co nfiguratio n values a ssociated with the i nterface.' , @level0 type=N'SCH EMA',@leve l0name=N'd bo', @leve l1type=N'T ABLE',@lev el1name=N' Interface' , @level2t ype=N'COLU MN',@level 2name=N'Ap plicationN ame' | |
| 137 | GO | |
| 138 | ||
| 139 | EXEC sys.s p_addexten dedpropert y @name=N' MS_Descrip tion', @va lue=N'The prefix use d in conju nction wit h a setti ng to crea te a uniqu e Paramete rName entr y on the V becsGlobal Config tab le for the interface (e.g. Con figPrefix = ''Interf ace_CPRS'' and Setti ng = ''IsA ctive'' cr eates a Pa rameterNam e = ''Inte rface_CPRS _IsActive' ')' , @lev el0type=N' SCHEMA',@l evel0name= N'dbo', @l evel1type= N'TABLE',@ level1name =N'Interfa ce', @leve l2type=N'C OLUMN',@le vel2name=N 'ConfigPre fix' | |
| 140 | GO | |
| 141 | ||
| 142 | EXEC sys.s p_addexten dedpropert y @name=N' MS_Descrip tion', @va lue=N'The interface will only accept HL7 messages containing the same Processing ID configu re in the HL7 Site P arameters menu.' , @ level0type =N'SCHEMA' ,@level0na me=N'dbo', @level1ty pe=N'TABLE ',@level1n ame=N'Inte rface', @l evel2type= N'COLUMN', @level2nam e=N'Proces singId' | |
| 143 | GO | |
| 144 | ||
| 145 | EXEC sys.s p_addexten dedpropert y @name=N' MS_Descrip tion', @va lue=N'Spec ifies numb er of days to wait b efore dele ting succe ssful HL7 messages.' , @level0 type=N'SCH EMA',@leve l0name=N'd bo', @leve l1type=N'T ABLE',@lev el1name=N' Interface' , @level2t ype=N'COLU MN',@level 2name=N'Pu rgeSuccess fulMessage ' | |
| 146 | GO | |
| 147 | ||
| 148 | EXEC sys.s p_addexten dedpropert y @name=N' MS_Descrip tion', @va lue=N'Spec ifies numb er of days to wait b efore dele ting unsuc cessful HL 7 messages .' , @leve l0type=N'S CHEMA',@le vel0name=N 'dbo', @le vel1type=N 'TABLE',@l evel1name= N'Interfac e', @level 2type=N'CO LUMN',@lev el2name=N' PurgeUnSuc cessfulMes sage' | |
| 149 | GO | |
| 150 | ||
| 151 | EXEC sys.s p_addexten dedpropert y @name=N' MS_Descrip tion', @va lue=N'Indi cates whet her the in terface wi ll enter e vents in t he event l og.' , @le vel0type=N 'SCHEMA',@ level0name =N'dbo', @ level1type =N'TABLE', @level1nam e=N'Interf ace', @lev el2type=N' COLUMN',@l evel2name= N'LogEvent sIndicator ' | |
| 152 | GO | |
| 153 | ||
| 154 | EXEC sys.s p_addexten dedpropert y @name=N' MS_Descrip tion', @va lue=N'A de scriptor o f the Rece iving Appl ication fi eld in MSH segments (e.g. VBEC S).' , @le vel0type=N 'SCHEMA',@ level0name =N'dbo', @ level1type =N'TABLE', @level1nam e=N'Interf ace', @lev el2type=N' COLUMN',@l evel2name= N'VbecsFac ilityId' | |
| 155 | GO | |
| 156 | ||
| 157 | EXEC sys.s p_addexten dedpropert y @name=N' MS_Descrip tion', @va lue=N'The date and t ime the re cord was l ast update d.' , @lev el0type=N' SCHEMA',@l evel0name= N'dbo', @l evel1type= N'TABLE',@ level1name =N'Interfa ce', @leve l2type=N'C OLUMN',@le vel2name=N 'LastUpdat eDate' | |
| 158 | GO | |
| 159 | ||
| 160 | EXEC sys.s p_addexten dedpropert y @name=N' MS_Descrip tion', @va lue=N'The logon id o f the user who perfo rmed the l ast update .' , @leve l0type=N'S CHEMA',@le vel0name=N 'dbo', @le vel1type=N 'TABLE',@l evel1name= N'Interfac e', @level 2type=N'CO LUMN',@lev el2name=N' LastUpdate User' | |
| 161 | GO | |
| 162 | ||
| 163 | EXEC sys.s p_addexten dedpropert y @name=N' MS_Descrip tion', @va lue=N'This is used i n the C# c ode as a m echanism f or version -stamping table rows , which pr ovides a m eans for c oncurrency control.' , @level0 type=N'SCH EMA',@leve l0name=N'd bo', @leve l1type=N'T ABLE',@lev el1name=N' Interface' , @level2t ype=N'COLU MN',@level 2name=N'Ro wVersion' | |
| 164 | GO | |
| 165 | ||
| 166 | EXEC sys.s p_addexten dedpropert y @name=N' MS_Descrip tion', @va lue=N'The identifier of the VB ECS functi on that pe rformed th e last upd ate.' , @l evel0type= N'SCHEMA', @level0nam e=N'dbo', @level1typ e=N'TABLE' ,@level1na me=N'Inter face', @le vel2type=N 'COLUMN',@ level2name =N'LastUpd ateFunctio nId' | |
| 167 | GO | |
| 168 | ||
| 169 | SET IDENTI TY_INSERT dbo.Interf ace ON | |
| 170 | INSERT INT O Interfac e | |
| 171 | (I nterfaceId , Interfac eName, Fie ldSeparato r, Encodin gCharacter s, Interfa ceApplicat ionId, Vbe csApplicat ionId, Ver sionId, | |
| 172 | A pplication AckType, L astUpdateD ate, LastU pdateUser, LastUpdat eFunctionI d) | |
| 173 | SELECT I nterfaceId , Interfac eName, Fie ldSeparato r, Encodin gCharacter s, Interfa ceApplicat ionId, Vbe csApplicat ionId, Ver sionId, | |
| 174 | A pplication AckType, L astUpdateD ate, LastU pdateUser, LastUpdat eFunctionI d | |
| 175 | FROM dbo .#Interfac e | |
| 176 | GO | |
| 177 | ||
| 178 | SET IDENTI TY_INSERT dbo.Interf ace OFF | |
| 179 | ||
| 180 | ALTER TABL E [dbo].[I nterfaceCo ntrol] WI TH CHECK A DD CONSTR AINT [FK_I nterfaceCo ntrol_Inte rface] FOR EIGN KEY([ InterfaceI d]) | |
| 181 | REFERENCES [dbo].[In terface] ( [Interface Id]) | |
| 182 | GO | |
| 183 | ||
| 184 | ALTER TABL E [dbo].[I nterfaceCo ntrol] CHE CK CONSTRA INT [FK_In terfaceCon trol_Inter face] | |
| 185 | GO | |
| 186 | ||
| 187 | DROP TABLE #Interfac e | |
| 188 | ||
| 189 | ||
| 190 | GRANT SELE CT ON [db o].[Interf ace] TO [V becsAppUse r] | |
| 191 | GO | |
| 192 | ||
| 193 | ||
| 194 | ||
| 195 | --MessageL og and Mes sageType t able chang es for Int erfaceCont rolId refe rences | |
| 196 | ||
| 197 | ALTER TABL E [dbo].[M essageLog] DROP CONS TRAINT [FK _MessageLo g_Interfac eControl] | |
| 198 | GO | |
| 199 | DROP INDEX [IX_Messa geLog_Inte rfaceContr olId] ON [ dbo].[Mess ageLog] | |
| 200 | GO | |
| 201 | ||
| 202 | ALTER TABL E dbo.Mess ageLog | |
| 203 | ALTER COLU MN Interfa ceControlI d tinyint NOT NULL | |
| 204 | GO | |
| 205 | ||
| 206 | sp_RENAME 'MessageLo g.Interfac eControlId ', 'Interf aceId' , ' COLUMN' | |
| 207 | GO | |
| 208 | ||
| 209 | ||
| 210 | ALTER TABL E [dbo].[M essageLog] WITH CHE CK ADD CO NSTRAINT [ FK_Message Log_Interf ace] FOREI GN KEY([In terfaceId] ) | |
| 211 | REFERENCES [dbo].[In terface] ( [Interface Id]) | |
| 212 | GO | |
| 213 | ||
| 214 | ALTER TABL E [dbo].[M essageLog] CHECK CON STRAINT [F K_MessageL og_Interfa ce] | |
| 215 | GO | |
| 216 | ||
| 217 | CREATE NON CLUSTERED INDEX [IX_ MessageLog _Interface Id] ON [db o].[Messag eLog] | |
| 218 | ( | |
| 219 | [I nterfaceId ] ASC | |
| 220 | )WITH (PAD _INDEX = O FF, STATIS TICS_NOREC OMPUTE = O FF, SORT_I N_TEMPDB = OFF, DROP _EXISTING = OFF, ONL INE = OFF, ALLOW_ROW _LOCKS = O N, ALLOW_P AGE_LOCKS = ON) ON [ PRIMARY] | |
| 221 | GO | |
| 222 | ||
| 223 | ||
| 224 | ||
| 225 | ALTER TABL E [dbo].[M essageType ] DROP CON STRAINT [F K_MessageT ype_Interf aceControl ] | |
| 226 | GO | |
| 227 | DROP INDEX [IX_Messa geType_Int erfaceCont rolId] ON [dbo].[Mes sageType] | |
| 228 | GO | |
| 229 | ||
| 230 | ||
| 231 | ALTER TABL E dbo.Mess ageType | |
| 232 | ALTER COLU MN Interfa ceControlI d tinyint NOT NULL | |
| 233 | GO | |
| 234 | ||
| 235 | sp_RENAME 'MessageTy pe.Interfa ceControlI d', 'Inter faceId' , 'COLUMN' | |
| 236 | GO | |
| 237 | ||
| 238 | ||
| 239 | ALTER TABL E [dbo].[M essageType ] WITH NO CHECK ADD CONSTRAIN T [FK_Mess ageType_In terface] F OREIGN KEY ([Interfac eId]) | |
| 240 | REFERENCES [dbo].[In terface] ( [Interface Id]) | |
| 241 | GO | |
| 242 | ||
| 243 | ALTER TABL E [dbo].[M essageType ] CHECK CO NSTRAINT [ FK_Message Type_Inter face] | |
| 244 | GO | |
| 245 | ||
| 246 | CREATE NON CLUSTERED INDEX [IX_ MessageTyp e_Interfac eId] ON [d bo].[Messa geType] | |
| 247 | ( | |
| 248 | [I nterfaceId ] ASC | |
| 249 | )WITH (PAD _INDEX = O FF, STATIS TICS_NOREC OMPUTE = O FF, SORT_I N_TEMPDB = OFF, DROP _EXISTING = OFF, ONL INE = OFF, ALLOW_ROW _LOCKS = O N, ALLOW_P AGE_LOCKS = ON, FILL FACTOR = 9 0) ON [PRI MARY] | |
| 250 | GO | |
| 251 | ||
| 252 | ||
| 253 | ||
| 254 | ||
| 255 | ||
| 256 | --VbecsGlo balConfig | |
| 257 | ||
| 258 | USE @DBNAM E@_MIRROR | |
| 259 | GO | |
| 260 | ||
| 261 | ||
| 262 | /********* ********** ********** ********** ******* | |
| 263 | Create the new Vb ecsGlobalC onfig mirr or table | |
| 264 | ********** ********** ********** ********** ******/ | |
| 265 | IF EXISTS (SELECT * FROM dbo.s ysobjects WHERE id = OBJECT_ID (N'[dbo].[ VbecsGloba lConfig]') and OBJEC TPROPERTY( id, N'IsUs erTable') = 1) | |
| 266 | DR OP TABLE d bo.VbecsGl obalConfig | |
| 267 | GO | |
| 268 | ||
| 269 | /****** Ob ject: Tab le [dbo].[ VbecsGloba lConfig] Script D ate: 8/30/ 2016 8:50: 15 AM **** **/ | |
| 270 | SET ANSI_N ULLS ON | |
| 271 | GO | |
| 272 | ||
| 273 | SET QUOTED _IDENTIFIE R ON | |
| 274 | GO | |
| 275 | ||
| 276 | SET ANSI_P ADDING ON | |
| 277 | GO | |
| 278 | ||
| 279 | CREATE TAB LE [dbo].[ VbecsGloba lConfig]( | |
| 280 | [M irrorId] [int] IDEN TITY(1,1) NOT NULL, | |
| 281 | [A pplication Name] [var char](100) NOT NULL, | |
| 282 | [P arameterNa me] [varch ar](100) N OT NULL, | |
| 283 | [P arameterVa lue] [varc har](1000) NULL, | |
| 284 | [L astUpdateD ate] [date time] NOT NULL, | |
| 285 | [L astUpdateU ser] [varc har](30) N OT NULL, | |
| 286 | [R owVersion] [binary]( 8) NULL, | |
| 287 | [L astUpdateF unctionId] [int] NOT NULL, | |
| 288 | [M irrorDate] [datetime ] NOT NULL , | |
| 289 | CONSTRAIN T [PK_Vbec sGlobalCon fig] PRIMA RY KEY NON CLUSTERED | |
| 290 | ( | |
| 291 | [M irrorId] A SC | |
| 292 | )WITH (PAD _INDEX = O FF, STATIS TICS_NOREC OMPUTE = O FF, IGNORE _DUP_KEY = OFF, ALLO W_ROW_LOCK S = ON, AL LOW_PAGE_L OCKS = ON) ON [PRIMA RY] | |
| 293 | ) ON [PRIM ARY] | |
| 294 | ||
| 295 | GO | |
| 296 | ||
| 297 | SET ANSI_P ADDING OFF | |
| 298 | GO | |
| 299 | ||
| 300 | ||
| 301 | IF EXISTS (SELECT * FROM sys. synonyms W HERE name = N'Syn_Vb ecsGlobalC onfig') | |
| 302 | DROP SYNON YM dbo.[Sy n_VbecsGlo balConfig] | |
| 303 | GO | |
| 304 | ||
| 305 | CREATE SYN ONYM [dbo] .[Syn_Vbec sGlobalCon fig] FOR [ @DBNAME@]. [dbo].[Vbe csGlobalCo nfig] | |
| 306 | GO | |
| 307 | ||
| 308 | /*-------- ---------- ---------- ---------- ---------- --------- | |
| 309 | Create t he VbecsGl obalConfig view in t he Mirror database | |
| 310 | (now tha t both mir ror/non-mi rror are u pdated) | |
| 311 | ---------- ---------- ---------- ---------- ---------- -------*/ | |
| 312 | if exists (select * from dbo.s ysobjects where id = object_id (N'[dbo].[ V_VbecsGlo balConfig] ') and OBJ ECTPROPERT Y(id, N'Is View') = 1 ) | |
| 313 | drop view dbo.V_Vbec sGlobalCon fig | |
| 314 | GO | |
| 315 | ||
| 316 | SET QUOTED _IDENTIFIE R ON | |
| 317 | GO | |
| 318 | SET ANSI_N ULLS ON | |
| 319 | GO | |
| 320 | ||
| 321 | /********* ********** ********** ********** ********** ********** ********** ********** ********** ********** ********** ********** ********** ********** ********** ********** * | |
| 322 | ** Na me: V_Vb ecsGlobalC onfig | |
| 323 | ** | |
| 324 | ** De sc: Retu rns data i n VbecsGlo balConfig table (mai n and mirr or) (Defec t 340457). | |
| 325 | ** | |
| 326 | ** Au thor: Kwam e Adu-Poku | |
| 327 | ** | |
| 328 | ** Da te: 09/1 9/2016 | |
| 329 | ** | |
| 330 | ********** ********** ********** ********** ********** ********** ********** ********** ********** ********** ********** ********** ********** ********** ********** ********** ** | |
| 331 | ** Mo dified: | |
| 332 | ** Da te Name Descriptio n | |
| 333 | ** -- ---------- - ------ --- ---------- -------- | |
| 334 | ** 02 /14/17 K. Adu -Poku ** Reviewe d for comp liance wit h database standards and recom mendations ** | |
| 335 | ********** ********** ********** ********** ********** ********** ********** ********** ********** ********** ********** ********** ********** ********** ********** *******/ | |
| 336 | ||
| 337 | CREATE VIE W V_VbecsG lobalConfi g | |
| 338 | AS | |
| 339 | SELECT Sou rce='MIRRO R', Mirror Id, Applic ationName, Parameter Name, Para meterValue , LastUpda teDate, La stUpdateUs er, [ROWVE RSION], La stUpdateFu nctionId, MirrorDate | |
| 340 | FROM dbo.V becsGlobal Config | |
| 341 | UNION ALL | |
| 342 | SELECT Sou rce='ACTIV E', 0, App licationNa me, Parame terName, P arameterVa lue, LastU pdateDate, LastUpdat eUser, [RO WVERSION], LastUpdat eFunctionI d, LastUpd ateDate AS MirrorDat e | |
| 343 | FROM Syn_V becsGlobal Config | |
| 344 | GO | |
| 345 | ||
| 346 | SET QUOTED _IDENTIFIE R OFF | |
| 347 | GO | |
| 348 | SET ANSI_N ULLS ON | |
| 349 | GO | |
| 350 | ||
| 351 | --Permissi ons | |
| 352 | ||
| 353 | GRANT SELE CT, INSERT ON dbo.Vb ecsGlobalC onfig TO V becsAppMir rorUser | |
| 354 | GO | |
| 355 | ||
| 356 | GRANT SELE CT ON dbo. V_VbecsGlo balConfig TO VbecsAp pMirrorUse r | |
| 357 | GO | |
| 358 | ||
| 359 | USE @DBNAM E@ | |
| 360 | GO | |
| 361 | ||
| 362 | if exists (select * from dbo.s ysobjects where id = object_id (N'[dbo].[ trUpdateVb ecsGlobalC onfig]') a nd OBJECTP ROPERTY(id , N'IsTrig ger') = 1) | |
| 363 | drop trigg er [dbo].[ trUpdateVb ecsGlobalC onfig] | |
| 364 | GO | |
| 365 | ||
| 366 | if exists (select * from dbo.s ysobjects where id = object_id (N'[dbo].[ trUpdateVb ecsGlobalC onfig2]') and OBJECT PROPERTY(i d, N'IsTri gger') = 1 ) | |
| 367 | drop trigg er [dbo].[ trUpdateVb ecsGlobalC onfig2] | |
| 368 | GO | |
| 369 | ||
| 370 | ||
| 371 | --Create S ynonyms | |
| 372 | IF EXISTS (SELECT * FROM sys. synonyms W HERE name = N'SynMir ror_VbecsG lobalConfi g') | |
| 373 | DROP SYNON YM dbo.[Sy nMirror_Vb ecsGlobalC onfig] | |
| 374 | GO | |
| 375 | ||
| 376 | CREATE SYN ONYM [dbo] .[SynMirro r_VbecsGlo balConfig] FOR [@DBN AME@_MIRRO R].[dbo].[ VbecsGloba lConfig] | |
| 377 | GO | |
| 378 | ||
| 379 | IF EXISTS (SELECT * FROM sys. synonyms W HERE name = N'SynMir ror_V_Vbec sGlobalCon fig') | |
| 380 | DROP SYNON YM dbo.[Sy nMirror_V_ VbecsGloba lConfig] | |
| 381 | GO | |
| 382 | ||
| 383 | CREATE SYN ONYM [dbo] .[SynMirro r_V_VbecsG lobalConfi g] FOR [@D BNAME@_MIR ROR].[dbo] .[V_VbecsG lobalConfi g] | |
| 384 | GO | |
| 385 | ||
| 386 | ||
| 387 | --Create T rigger | |
| 388 | ||
| 389 | if exists (select * from dbo.s ysobjects where id = object_id (N'[dbo].[ trMirrorVb ecsGlobalC onfig]') a nd OBJECTP ROPERTY(id , N'IsTrig ger') = 1) | |
| 390 | drop trigg er [dbo].[ trMirrorVb ecsGlobalC onfig] | |
| 391 | GO | |
| 392 | ||
| 393 | SET ANSI_N ULLS ON | |
| 394 | GO | |
| 395 | ||
| 396 | SET QUOTED _IDENTIFIE R ON | |
| 397 | GO | |
| 398 | ||
| 399 | CREATE TRI GGER [dbo] .[trMirror VbecsGloba lConfig] | |
| 400 | ON [dbo].[ VbecsGloba lConfig] | |
| 401 | FOR UPDATE | |
| 402 | AS | |
| 403 | BEGIN | |
| 404 | IN SERT INTO [dbo].[Syn Mirror_Vbe csGlobalCo nfig] | |
| 405 | SE LECT *, GE TUTCDATE() | |
| 406 | FR OM DELETED | |
| 407 | END | |
| 408 | ||
| 409 | ||
| 410 | ||
| 411 | GO | |
| 412 | ||
| 413 | ||
| 414 | --VbecsEnd Point | |
| 415 | ||
| 416 | USE @DBNAM E@_MIRROR | |
| 417 | GO | |
| 418 | ||
| 419 | ||
| 420 | /********* ********** ********** ********** ******* | |
| 421 | Create the new Vb ecsEndPoin t mirror t able | |
| 422 | ********** ********** ********** ********** ******/ | |
| 423 | IF EXISTS (SELECT * FROM dbo.s ysobjects WHERE id = OBJECT_ID (N'[dbo].[ VbecsEndPo int]') and OBJECTPRO PERTY(id, N'IsUserTa ble') = 1) | |
| 424 | DR OP TABLE d bo.VbecsEn dPoint | |
| 425 | GO | |
| 426 | ||
| 427 | /****** Ob ject: Tab le [dbo].[ VbecsEndPo int] Sc ript Date: 8/30/2016 8:50:15 A M ******/ | |
| 428 | SET ANSI_N ULLS ON | |
| 429 | GO | |
| 430 | ||
| 431 | SET QUOTED _IDENTIFIE R ON | |
| 432 | GO | |
| 433 | ||
| 434 | SET ANSI_P ADDING ON | |
| 435 | GO | |
| 436 | ||
| 437 | CREATE TAB LE [dbo].[ VbecsEndPo int]( | |
| 438 | [M irrorId] [int] IDEN TITY(1,1) NOT NULL, | |
| 439 | [V becsEndPoi ntId] [int ] NOT NUL L, | |
| 440 | [E ndPointAdd ress] [var char](255) NULL, | |
| 441 | [E ndPointPor t] [int] N ULL, | |
| 442 | [E ndPointTyp e] [varcha r](50) NOT NULL, | |
| 443 | [L astUpdateD ate] [date time] NOT NULL, | |
| 444 | [L astUpdateU ser] [varc har](30) N OT NULL, | |
| 445 | [R owVersion] [binary]( 8) NULL, | |
| 446 | [L astUpdateF unctionId] [int] NOT NULL, | |
| 447 | [M irrorDate] [datetime ] NOT NULL , | |
| 448 | CONSTRAIN T [PK_Vbec sEndPoint] PRIMARY K EY NONCLUS TERED | |
| 449 | ( | |
| 450 | [M irrorId] A SC | |
| 451 | )WITH (PAD _INDEX = O FF, STATIS TICS_NOREC OMPUTE = O FF, IGNORE _DUP_KEY = OFF, ALLO W_ROW_LOCK S = ON, AL LOW_PAGE_L OCKS = ON) ON [PRIMA RY] | |
| 452 | ) ON [PRIM ARY] | |
| 453 | ||
| 454 | GO | |
| 455 | ||
| 456 | SET ANSI_P ADDING OFF | |
| 457 | GO | |
| 458 | ||
| 459 | ||
| 460 | IF EXISTS (SELECT * FROM sys. synonyms W HERE name = N'Syn_Vb ecsEndPoin t') | |
| 461 | DROP SYNON YM dbo.[Sy n_VbecsEnd Point] | |
| 462 | GO | |
| 463 | ||
| 464 | CREATE SYN ONYM [dbo] .[Syn_Vbec sEndPoint] FOR [@DBN AME@].[dbo ].[VbecsEn dPoint] | |
| 465 | GO | |
| 466 | ||
| 467 | ||
| 468 | --Permissi ons | |
| 469 | ||
| 470 | GRANT SELE CT, INSERT ON dbo.Vb ecsEndPoin t TO Vbecs AppMirrorU ser | |
| 471 | GO | |
| 472 | ||
| 473 | ||
| 474 | ||
| 475 | USE @DBNAM E@ | |
| 476 | GO | |
| 477 | ||
| 478 | ||
| 479 | --VbecsEnd Point | |
| 480 | ||
| 481 | IF EXISTS (SELECT * FROM dbo.s ysobjects WHERE id = OBJECT_ID (N'[dbo].[ VbecsEndPo int]') and OBJECTPRO PERTY(id, N'IsUserTa ble') = 1) | |
| 482 | DR OP TABLE d bo.VbecsEn dPoint | |
| 483 | GO | |
| 484 | ||
| 485 | SET ANSI_N ULLS ON | |
| 486 | GO | |
| 487 | ||
| 488 | SET QUOTED _IDENTIFIE R ON | |
| 489 | GO | |
| 490 | ||
| 491 | SET ANSI_P ADDING ON | |
| 492 | GO | |
| 493 | ||
| 494 | CREATE TAB LE [dbo].[ VbecsEndPo int]( | |
| 495 | [V becsEndPoi ntId] [int ] IDENTITY (1,1) NOT NULL, | |
| 496 | [E ndPointAdd ress] [var char](255) NULL, | |
| 497 | [E ndPointPor t] [int] N ULL, | |
| 498 | [E ndPointTyp e] [varcha r](50) NUL L, | |
| 499 | [L astUpdateD ate] datet ime NOT NU LL, | |
| 500 | [L astUpdateU ser] [varc har] (30) COLLATE SQ L_Latin1_G eneral_CP1 _CI_AS NOT NULL, | |
| 501 | [RowVe rsion] [ti mestamp] N OT NULL, | |
| 502 | [L astUpdateF unctionId] [int] NOT NULL, | |
| 503 | C ONSTRAINT [PK_VbecsE ndPoint] P RIMARY KEY CLUSTERED | |
| 504 | ( | |
| 505 | [V becsEndPoi ntId] ASC | |
| 506 | )WITH (PAD _INDEX = O FF, STATIS TICS_NOREC OMPUTE = O FF, IGNORE _DUP_KEY = OFF, ALLO W_ROW_LOCK S = ON, AL LOW_PAGE_L OCKS = ON, FILLFACTO R = 90) ON [PRIMARY] | |
| 507 | ) ON [PRIM ARY] | |
| 508 | ||
| 509 | GO | |
| 510 | ||
| 511 | SET ANSI_P ADDING OFF | |
| 512 | GO | |
| 513 | ||
| 514 | ||
| 515 | ALTER TABL E [dbo].[V becsEndPoi nt] ADD C ONSTRAINT [DF_VbecsE ndPoint_La stUpdateFu nctionId] DEFAULT ( 0) FOR [La stUpdateFu nctionId] | |
| 516 | GO | |
| 517 | ||
| 518 | EXEC sys.s p_addexten dedpropert y @name=N' MS_Descrip tion', @va lue=N'Uniq ue identif ier for th e VbecsEnd Point reco rd.' , @le vel0type=N 'SCHEMA',@ level0name =N'dbo', @ level1type =N'TABLE', @level1nam e=N'VbecsE ndPoint', @level2typ e=N'COLUMN ',@level2n ame=N'Vbec sEndPointI d' | |
| 519 | GO | |
| 520 | ||
| 521 | EXEC sys.s p_addexten dedpropert y @name=N' MS_Descrip tion', @va lue=N'Netw ork TCP/IP Address o r Server N ame for th e endpoint ' , @level 0type=N'SC HEMA',@lev el0name=N' dbo', @lev el1type=N' TABLE',@le vel1name=N 'VbecsEndP oint', @le vel2type=N 'COLUMN',@ level2name =N'EndPoin tAddress' | |
| 522 | GO | |
| 523 | ||
| 524 | EXEC sys.s p_addexten dedpropert y @name=N' MS_Descrip tion', @va lue=N'Netw ork TCP/IP Port Numb er for the endpoint. ' , @level 0type=N'SC HEMA',@lev el0name=N' dbo', @lev el1type=N' TABLE',@le vel1name=N 'VbecsEndP oint', @le vel2type=N 'COLUMN',@ level2name =N'EndPoin tPort' | |
| 525 | GO | |
| 526 | ||
| 527 | EXEC sys.s p_addexten dedpropert y @name=N' MS_Descrip tion', @va lue=N'Type of endpoi nt (IPAddr ess, IPv6A ddress, Dn sHostName, AnyLocal) ' , @level 0type=N'SC HEMA',@lev el0name=N' dbo', @lev el1type=N' TABLE',@le vel1name=N 'VbecsEndP oint', @le vel2type=N 'COLUMN',@ level2name =N'EndPoin tType' | |
| 528 | GO | |
| 529 | ||
| 530 | EXEC sys.s p_addexten dedpropert y @name=N' MS_Descrip tion', @va lue=N'The date and t ime the re cord was l ast update d.' , @lev el0type=N' SCHEMA',@l evel0name= N'dbo', @l evel1type= N'TABLE',@ level1name =N'VbecsEn dPoint', @ level2type =N'COLUMN' ,@level2na me=N'LastU pdateDate' | |
| 531 | GO | |
| 532 | ||
| 533 | EXEC sys.s p_addexten dedpropert y @name=N' MS_Descrip tion', @va lue=N'The logon id o f the user who perfo rmed the l ast update .' , @leve l0type=N'S CHEMA',@le vel0name=N 'dbo', @le vel1type=N 'TABLE',@l evel1name= N'VbecsEnd Point', @l evel2type= N'COLUMN', @level2nam e=N'LastUp dateUser' | |
| 534 | GO | |
| 535 | ||
| 536 | EXEC sys.s p_addexten dedpropert y @name=N' MS_Descrip tion', @va lue=N'This is used i n the C# c ode as a m echanism f or version -stamping table rows , which pr ovides a m eans for c oncurrency control.' , @level0 type=N'SCH EMA',@leve l0name=N'd bo', @leve l1type=N'T ABLE',@lev el1name=N' VbecsEndPo int', @lev el2type=N' COLUMN',@l evel2name= N'RowVersi on' | |
| 537 | GO | |
| 538 | ||
| 539 | EXEC sys.s p_addexten dedpropert y @name=N' MS_Descrip tion', @va lue=N'The identifier of the VB ECS functi on that pe rformed th e last upd ate.' , @l evel0type= N'SCHEMA', @level0nam e=N'dbo', @level1typ e=N'TABLE' ,@level1na me=N'Vbecs EndPoint', @level2ty pe=N'COLUM N',@level2 name=N'Las tUpdateFun ctionId' | |
| 540 | GO | |
| 541 | ||
| 542 | --Permissi ons | |
| 543 | ||
| 544 | GRANT SELE CT ON dbo .VbecsEndP oint TO [V becsAppUse r] | |
| 545 | GO | |
| 546 | ||
| 547 | ||
| 548 | --Create S ynonyms | |
| 549 | IF EXISTS (SELECT * FROM sys. synonyms W HERE name = N'SynMir ror_VbecsE ndPoint') | |
| 550 | DROP SYNON YM dbo.[Sy nMirror_Vb ecsEndPoin t] | |
| 551 | GO | |
| 552 | ||
| 553 | CREATE SYN ONYM [dbo] .[SynMirro r_VbecsEnd Point] FOR [@DBNAME@ _MIRROR].[ dbo].[Vbec sEndPoint] | |
| 554 | GO | |
| 555 | ||
| 556 | IF EXISTS (SELECT * FROM sys. synonyms W HERE name = N'SynMir ror_V_Vbec sEndPoint' ) | |
| 557 | DROP SYNON YM dbo.[Sy nMirror_V_ VbecsEndPo int] | |
| 558 | GO | |
| 559 | ||
| 560 | CREATE SYN ONYM [dbo] .[SynMirro r_V_VbecsE ndPoint] F OR [@DBNAM E@_MIRROR] .[dbo].[V_ VbecsEndPo int] | |
| 561 | GO | |
| 562 | ||
| 563 | ||
| 564 | USE @DBNAM E@_MIRROR | |
| 565 | GO | |
| 566 | /*-------- ---------- ---------- ---------- ---------- --------- | |
| 567 | Create t he VbecsEn dPoint vie w in the M irror data base | |
| 568 | (now tha t both mir ror/non-mi rror are u pdated) | |
| 569 | ---------- ---------- ---------- ---------- ---------- -------*/ | |
| 570 | if exists (select * from dbo.s ysobjects where id = object_id (N'[dbo].[ V_VbecsEnd Point]') a nd OBJECTP ROPERTY(id , N'IsView ') = 1) | |
| 571 | drop view dbo.V_Vbec sEndPoint | |
| 572 | GO | |
| 573 | ||
| 574 | SET QUOTED _IDENTIFIE R ON | |
| 575 | GO | |
| 576 | SET ANSI_N ULLS ON | |
| 577 | GO | |
| 578 | ||
| 579 | /********* ********** ********** ********** ********** ********** ********** ********** ********** ********** ********** ********** ********** ********** ********** ********** * | |
| 580 | ** Na me: V_Vb ecsEndPoin t | |
| 581 | ** | |
| 582 | ** De sc: Retu rns data i n VbecsEnd Point tabl e (main an d mirror) (Defect 34 0457). | |
| 583 | ** | |
| 584 | ** Au thor: Kwam e Adu-Poku | |
| 585 | ** | |
| 586 | ** Da te: 09/1 9/2016 | |
| 587 | ** | |
| 588 | ********** ********** ********** ********** ********** ********** ********** ********** ********** ********** ********** ********** ********** ********** ********** ********** ** | |
| 589 | ** Mo dified: | |
| 590 | ** Da te Name Descriptio n | |
| 591 | ** -- ---------- - ------ --- ---------- -------- | |
| 592 | ** 02 /14/17 K. Adu -Poku ** Reviewe d for comp liance wit h database standards and recom mendations ** | |
| 593 | ********** ********** ********** ********** ********** ********** ********** ********** ********** ********** ********** ********** ********** ********** ********** *******/ | |
| 594 | ||
| 595 | CREATE VIE W V_VbecsE ndPoint | |
| 596 | AS | |
| 597 | SELECT Sou rce='MIRRO R', Mirror Id, VbecsE ndPointId, EndPointA ddress, En dPointPort , EndPoint Type, Last UpdateDate , LastUpda teUser, [R OWVERSION] , LastUpda teFunction Id, Mirror Date | |
| 598 | FROM dbo.V becsEndPoi nt | |
| 599 | UNION ALL | |
| 600 | SELECT Sou rce='ACTIV E', 0, Vbe csEndPoint Id, EndPoi ntAddress, EndPointP ort, EndPo intType, L astUpdateD ate, LastU pdateUser, [ROWVERSI ON], LastU pdateFunct ionId, Las tUpdateDat e AS Mirro rDate | |
| 601 | FROM Syn_V becsEndPoi nt | |
| 602 | GO | |
| 603 | ||
| 604 | SET QUOTED _IDENTIFIE R OFF | |
| 605 | GO | |
| 606 | SET ANSI_N ULLS ON | |
| 607 | GO | |
| 608 | ||
| 609 | ||
| 610 | GRANT SELE CT ON dbo. V_VbecsEnd Point TO V becsAppMir rorUser | |
| 611 | GO | |
| 612 | ||
| 613 | ||
| 614 | ||
| 615 | ||
| 616 | ||
| 617 | USE @DBNAM E@ | |
| 618 | GO | |
| 619 | ||
| 620 | ||
| 621 | --Create T rigger | |
| 622 | ||
| 623 | if exists (select * from dbo.s ysobjects where id = object_id (N'[dbo].[ trMirrorVb ecsEndPoin t]') and O BJECTPROPE RTY(id, N' IsTrigger' ) = 1) | |
| 624 | drop trigg er [dbo].[ trMirrorVb ecsEndPoin t] | |
| 625 | GO | |
| 626 | ||
| 627 | SET ANSI_N ULLS ON | |
| 628 | GO | |
| 629 | ||
| 630 | SET QUOTED _IDENTIFIE R ON | |
| 631 | GO | |
| 632 | ||
| 633 | CREATE TRI GGER [dbo] .[trMirror VbecsEndPo int] | |
| 634 | ON [dbo].[ VbecsEndPo int] | |
| 635 | FOR UPDATE | |
| 636 | AS | |
| 637 | BEGIN | |
| 638 | IN SERT INTO [dbo].[Syn Mirror_Vbe csEndPoint ] | |
| 639 | SE LECT *, GE TUTCDATE() | |
| 640 | FR OM DELETED | |
| 641 | END | |
| 642 | ||
| 643 | ||
| 644 | ||
| 645 | GO | |
| 646 | ||
| 647 | ||
| 648 | ||
| 649 | /********* ********** ********** ********** ********** ********** ********** ********** ********** | |
| 650 | * Va mcDivision table Upd ates | |
| 651 | ********** ********** ********** ********** ********** ********** ********** ********** *********/ | |
| 652 | ||
| 653 | ||
| 654 | USE @DBNAM E@_MIRROR | |
| 655 | ||
| 656 | /********* ********** ********** ********** ******* | |
| 657 | Create a temp tab le to stor e our exis ting | |
| 658 | VamcDiv ision data | |
| 659 | ********** ********** ********** ********** ******/ | |
| 660 | IF OBJECT_ ID(N'tempd b..#VamcDi vision') I S NOT NULL | |
| 661 | DR OP TABLE # VamcDivisi on | |
| 662 | GO | |
| 663 | CREATE TAB LE #VamcDi vision | |
| 664 | ( | |
| 665 | Mi rrorId int , | |
| 666 | Di visionCode char (5) NOT NULL, | |
| 667 | Di visionGuid uniqueide ntifier NO T NULL, | |
| 668 | Di visionName varchar(5 0) NOT NUL L, | |
| 669 | Se rviceTypeI ndicator b it NOT NUL L, | |
| 670 | Ic cbbaRegist rationNumb er char(5) NULL, | |
| 671 | El ectronicCr ossmatchIn dicator bi t NULL, | |
| 672 | Fa cilityGuid uniqueide ntifier NU LL, | |
| 673 | Lo calSupplie rGuid uniq ueidentifi er NULL, | |
| 674 | An tibodyScre enDisplayC ode int NU LL, | |
| 675 | Ma ximumSpeci menExpirat ionDays sm allint NUL L, | |
| 676 | Au tomatedIns trumentInd icator bit NULL, | |
| 677 | La belPrinter UseIndicat or bit NOT NULL, | |
| 678 | La belPrinter ComPortNum ber tinyin t NULL, | |
| 679 | La belPrinter IPAddress varchar(15 ) NULL, | |
| 680 | La belPrinter TcpPortNum ber int NU LL, | |
| 681 | Ti meZoneId c har(1) NOT NULL, | |
| 682 | Da ylightSavi ngsTypeId smallint N OT NULL, | |
| 683 | Pr interName varchar(50 ) NULL, | |
| 684 | Pr interAlert sIndicator bit NOT N ULL, | |
| 685 | Pr interAlert sPrinterNa me varchar (50) NULL, | |
| 686 | Pr interOrder AlertTypeC ode char(1 ) NULL, | |
| 687 | Pr interOrder sNeededHou rs smallin t NULL, | |
| 688 | Ic onAlertsIn dicator bi t NULL, | |
| 689 | Ic onOrderAle rtTypeCode char(1) N ULL, | |
| 690 | Ic onOrdersNe ededHours smallint N ULL, | |
| 691 | Ic onRefreshR ate int NU LL, | |
| 692 | Lo ginMessage Text varch ar(510) NU LL, | |
| 693 | In voiceTempl ateText va rchar(1000 ) NOT NULL , | |
| 694 | Me dicalDirec torName va rchar(30) NULL, | |
| 695 | Us aIndicator bit NOT N ULL, | |
| 696 | Lo ckInactivi tyTimeoutM in int NOT NULL, | |
| 697 | Ac cessionAre aId int NU LL, | |
| 698 | Da ylightSavi ngsStartDa te datetim e NULL, | |
| 699 | Da ylightSavi ngsEndDate datetime NULL, | |
| 700 | Re activityPh aseCode ch ar (1) NOT NULL, | |
| 701 | Re cordStatus Code char( 1) NOT NUL L, | |
| 702 | La stUpdateDa te datetim e NOT NULL , | |
| 703 | La stUpdateUs er varchar (30) NOT N ULL, | |
| 704 | Ro wVersion b inary(8) N OT NULL, | |
| 705 | La stUpdateFu nctionId i nt NOT NUL L, | |
| 706 | Mi rrorDate d atetime NO T NULL | |
| 707 | ) | |
| 708 | ||
| 709 | /********* ********** ********** ********** ******* | |
| 710 | Save th e existing VamcDivis ion data t o the | |
| 711 | temp ta ble | |
| 712 | ********** ********** ********** ********** ******/ | |
| 713 | INSERT INT O dbo.#Vam cDivision | |
| 714 | (M irrorId, D ivisionCod e, Divisio nGuid, Div isionName, ServiceTy peIndicato r, IccbbaR egistratio nNumber, E lectronicC rossmatchI ndicator, | |
| 715 | F acilityGui d, LocalSu pplierGuid , Antibody ScreenDisp layCode, M aximumSpec imenExpira tionDays, AutomatedI nstrumentI ndicator, LabelPrint erUseIndic ator, Labe lPrinterCo mPortNumbe r, LabelPr interIPAdd ress, Labe lPrinterTc pPortNumbe r, | |
| 716 | T imeZoneId, DaylightS avingsType Id, Printe rName, Pri nterAlerts Indicator, PrinterAl ertsPrinte rName, Pri nterOrderA lertTypeCo de, Printe rOrdersNee dedHours, IconAlerts Indicator, IconOrder AlertTypeC ode, IconO rdersNeede dHours, | |
| 717 | I conRefresh Rate, Logi nMessageTe xt, Invoic eTemplateT ext, Medic alDirector Name, UsaI ndicator, LockInacti vityTimeou tMin, Acce ssionAreaI d, | |
| 718 | D aylightSav ingsStartD ate, Dayli ghtSavings EndDate, R eactivityP haseCode, RecordStat usCode, La stUpdateDa te, LastUp dateUser, RowVersion , LastUpda teFunction Id, Mirror Date) | |
| 719 | SELECT M irrorId, D ivisionCod e, Divisio nGuid, Div isionName, ServiceTy peIndicato r, IccbbaR egistratio nNumber, E lectronicC rossmatchI ndicator, | |
| 720 | F acilityGui d, LocalSu pplierGuid , Antibody ScreenDisp layCode, M aximumSpec imenExpira tionDays, AutomatedI nstrumentI ndicator, LabelPrint erUseIndic ator, Labe lPrinterCo mPortNumbe r, LabelPr interIPAdd ress, Labe lPrinterTc pPortNumbe r, | |
| 721 | T imeZoneId, DaylightS avingsType Id, Printe rName, Pri nterAlerts Indicator, PrinterAl ertsPrinte rName, Pri nterOrderA lertTypeCo de, Printe rOrdersNee dedHours, IconAlerts Indicator, IconOrder AlertTypeC ode, IconO rdersNeede dHours, | |
| 722 | I conRefresh Rate, Logi nMessageTe xt, Invoic eTemplateT ext, Medic alDirector Name, UsaI ndicator, LockInacti vityTimeou tMin, Acce ssionAreaI d, | |
| 723 | D aylightSav ingsStartD ate, Dayli ghtSavings EndDate, R eactivityP haseCode, RecordStat usCode, La stUpdateDa te, LastUp dateUser, RowVersion , LastUpda teFunction Id, Mirror Date | |
| 724 | FROM dbo .VamcDivis ion | |
| 725 | ||
| 726 | ||
| 727 | /********* ********** ********** ********** ******* | |
| 728 | Create the new Va mcDivision table | |
| 729 | ********** ********** ********** ********** ******/ | |
| 730 | IF EXISTS (SELECT * FROM dbo.s ysobjects WHERE id = OBJECT_ID (N'[dbo].[ VamcDivisi on]') and OBJECTPROP ERTY(id, N 'IsUserTab le') = 1) | |
| 731 | DR OP TABLE d bo.VamcDiv ision | |
| 732 | GO | |
| 733 | ||
| 734 | CREATE TAB LE VamcDiv ision ( | |
| 735 | Mi rrorId int NOT NULL IDENTITY ( 1, 1), | |
| 736 | Di visionCode char (5) NOT NULL , | |
| 737 | Di visionGuid uniqueide ntifier NO T NULL , | |
| 738 | Di visionName varchar ( 50) NOT NU LL , | |
| 739 | Se rviceTypeI ndicator b it NOT NUL L, | |
| 740 | Ic cbbaRegist rationNumb er char (5 ) NULL , | |
| 741 | El ectronicCr ossmatchIn dicator bi t NULL, | |
| 742 | Fa cilityGuid uniqueide ntifier NU LL , | |
| 743 | Lo calSupplie rGuid uniq ueidentifi er NULL , | |
| 744 | An tibodyScre enDisplayC ode int NU LL , | |
| 745 | Ma ximumSpeci menExpirat ionDays sm allint NUL L , | |
| 746 | Au tomatedIns trumentInd icator bit NULL , | |
| 747 | La belPrinter UseIndicat or bit NOT NULL , | |
| 748 | La belPrinter ComPortNum ber tinyin t NULL , | |
| 749 | La belPrinter IPAddress varchar (1 5) NULL , | |
| 750 | La belPrinter TcpPortNum ber int NU LL , | |
| 751 | Ti meZoneId c har (1) NO T NULL , | |
| 752 | Da ylightSavi ngsTypeId smallint N OT NULL, | |
| 753 | Pr interName varchar(50 ) NULL, | |
| 754 | Pr interAlert sIndicator bit NOT N ULL, | |
| 755 | Pr interAlert sPrinterNa me varchar (50) NULL , | |
| 756 | Pr interOrder AlertTypeC ode char ( 1) NULL , | |
| 757 | Pr interOrder sNeededHou rs smallin t NULL , | |
| 758 | Ic onAlertsIn dicator bi t NULL , | |
| 759 | Ic onOrderAle rtTypeCode char (1) NULL , | |
| 760 | Ic onOrdersNe ededHours smallint N ULL , | |
| 761 | Ic onRefreshR ate int NU LL , | |
| 762 | Lo ginMessage Text varch ar (510) N ULL , | |
| 763 | In voiceTempl ateText va rchar (100 0) NOT NUL L , | |
| 764 | Me dicalDirec torName va rchar (30) NULL , | |
| 765 | Us aIndicator bit NOT N ULL, | |
| 766 | Lo ckInactivi tyTimeoutM in int NOT NULL , | |
| 767 | Ac cessionAre aId int NO T NULL , | |
| 768 | Da ylightSavi ngsStartDa te datetim e NULL , | |
| 769 | Da ylightSavi ngsEndDate datetime NULL , | |
| 770 | Re activityPh aseCode ch ar (1) NOT NULL, | |
| 771 | Re cordStatus Code char (1) NOT NU LL , | |
| 772 | La belPrinter EndPointId int NULL, | |
| 773 | La stUpdateDa te datetim e NOT NULL , | |
| 774 | La stUpdateUs er varchar (30) NOT NULL , | |
| 775 | Ro wVersion b inary(8) N ULL , | |
| 776 | La stUpdateFu nctionId i nt NOT NUL L, | |
| 777 | Mi rrorDate d atetime NO T NULL | |
| 778 | CONSTRAINT [PK_VamcD ivision] P RIMARY KEY NONCLUSTE RED | |
| 779 | ( | |
| 780 | [M irrorId] A SC | |
| 781 | )WITH (PAD _INDEX = O FF, STATIS TICS_NOREC OMPUTE = O FF, IGNORE _DUP_KEY = OFF, ALLO W_ROW_LOCK S = ON, AL LOW_PAGE_L OCKS = ON) ON [PRIMA RY] | |
| 782 | ) ON [PRIM ARY] | |
| 783 | ||
| 784 | GO | |
| 785 | ||
| 786 | SET ANSI_P ADDING OFF | |
| 787 | GO | |
| 788 | ||
| 789 | /********* ********** ********** ********** ******* | |
| 790 | Save th e temporar y VamcDivi sion data to the | |
| 791 | new Vam cDivision table | |
| 792 | ********** ********** ********** ********** ******/ | |
| 793 | SET IDENTI TY_INSERT dbo.VamcDi vision ON | |
| 794 | GO | |
| 795 | ||
| 796 | INSERT INT O dbo.Vamc Division | |
| 797 | (M irrorId, D ivisionCod e, Divisio nGuid, Div isionName, ServiceTy peIndicato r, IccbbaR egistratio nNumber, E lectronicC rossmatchI ndicator, | |
| 798 | F acilityGui d, LocalSu pplierGuid , Antibody ScreenDisp layCode, M aximumSpec imenExpira tionDays, AutomatedI nstrumentI ndicator, LabelPrint erUseIndic ator, Labe lPrinterCo mPortNumbe r, LabelPr interIPAdd ress, Labe lPrinterTc pPortNumbe r, | |
| 799 | T imeZoneId, DaylightS avingsType Id, Printe rName, Pri nterAlerts Indicator, PrinterAl ertsPrinte rName, Pri nterOrderA lertTypeCo de, Printe rOrdersNee dedHours, IconAlerts Indicator, IconOrder AlertTypeC ode, IconO rdersNeede dHours, | |
| 800 | I conRefresh Rate, Logi nMessageTe xt, Invoic eTemplateT ext, Medic alDirector Name, UsaI ndicator, LockInacti vityTimeou tMin, Acce ssionAreaI d, | |
| 801 | D aylightSav ingsStartD ate, Dayli ghtSavings EndDate, R eactivityP haseCode, RecordStat usCode, La stUpdateDa te, LastUp dateUser, RowVersion , LastUpda teFunction Id, Mirror Date) | |
| 802 | SELECT M irrorId, D ivisionCod e, Divisio nGuid, Div isionName, ServiceTy peIndicato r, IccbbaR egistratio nNumber, E lectronicC rossmatchI ndicator, | |
| 803 | F acilityGui d, LocalSu pplierGuid , Antibody ScreenDisp layCode, M aximumSpec imenExpira tionDays, AutomatedI nstrumentI ndicator, LabelPrint erUseIndic ator, Labe lPrinterCo mPortNumbe r, LabelPr interIPAdd ress, Labe lPrinterTc pPortNumbe r, | |
| 804 | T imeZoneId, DaylightS avingsType Id, Printe rName, Pri nterAlerts Indicator, PrinterAl ertsPrinte rName, Pri nterOrderA lertTypeCo de, Printe rOrdersNee dedHours, IconAlerts Indicator, IconOrder AlertTypeC ode, IconO rdersNeede dHours, | |
| 805 | I conRefresh Rate, Logi nMessageTe xt, Invoic eTemplateT ext, Medic alDirector Name, UsaI ndicator, LockInacti vityTimeou tMin, Acce ssionAreaI d, | |
| 806 | D aylightSav ingsStartD ate, Dayli ghtSavings EndDate, R eactivityP haseCode, RecordStat usCode, La stUpdateDa te, LastUp dateUser, RowVersion , LastUpda teFunction Id, Mirror Date | |
| 807 | FROM #Va mcDivision | |
| 808 | GO | |
| 809 | ||
| 810 | SET IDENTI TY_INSERT dbo.VamcDi vision OFF | |
| 811 | GO | |
| 812 | ||
| 813 | /********* ********** ********** ********** ******* | |
| 814 | Drop th e temp tab le | |
| 815 | ********** ********** ********** ********** ******/ | |
| 816 | DROP TABLE #VamcDivi sion | |
| 817 | GO | |
| 818 | ||
| 819 | CREATE C LUSTERED INDEX IX_V amcDivisio n ON dbo.V amcDivisio n(Division Code) ON [ PRIMARY] | |
| 820 | GO | |
| 821 | ||
| 822 | CREATE I NDEX IX_Va mcDivision _AntibodyS creenDispl ayCode ON dbo.VamcDi vision(Ant ibodyScree nDisplayCo de) ON [PR IMARY] | |
| 823 | GO | |
| 824 | ||
| 825 | CREATE I NDEX IX_Va mcDivision _FacilityG uid ON dbo .VamcDivis ion(Facili tyGuid) ON [PRIMARY] | |
| 826 | GO | |
| 827 | ||
| 828 | CREATE I NDEX IX_Va mcDivision _MedicalDi rectorName ON dbo.Va mcDivision (MedicalDi rectorName ) ON [PRIM ARY] | |
| 829 | GO | |
| 830 | ||
| 831 | CREATE I NDEX IX_Va mcDivision _MirrorDat e ON dbo.V amcDivisio n (MirrorD ate) ON [P RIMARY] | |
| 832 | GO | |
| 833 | ||
| 834 | ||
| 835 | --Create M irror Syno nyms | |
| 836 | ||
| 837 | IF EXISTS (SELECT * FROM sys. synonyms W HERE name = N'Syn_Va mcDivision ') | |
| 838 | DROP SYNON YM dbo.[Sy n_VamcDivi sion] | |
| 839 | GO | |
| 840 | ||
| 841 | CREATE SYN ONYM [dbo] .[Syn_Vamc Division] FOR [@DBNA ME@].[dbo] .[VamcDivi sion] | |
| 842 | GO | |
| 843 | ||
| 844 | ||
| 845 | USE @DBNAM E@ | |
| 846 | ||
| 847 | /********* ********** ********** ********** ******* | |
| 848 | Create a temp tab le to stor e our exis ting | |
| 849 | VamcDiv ision data | |
| 850 | ********** ********** ********** ********** ******/ | |
| 851 | ||
| 852 | IF OBJECT_ ID(N'tempd b..#VamcDi vision') I S NOT NULL | |
| 853 | DR OP TABLE # VamcDivisi on | |
| 854 | ||
| 855 | CREATE TAB LE dbo.#Va mcDivision | |
| 856 | ( | |
| 857 | Di visionCode char(5) N OT NULL, | |
| 858 | Di visionGuid uniqueide ntifier NO T NULL, | |
| 859 | Di visionName varchar(5 0) NOT NUL L, | |
| 860 | Se rviceTypeI ndicator b it NOT NUL L, | |
| 861 | Ic cbbaRegist rationNumb er char(5) NULL, | |
| 862 | El ectronicCr ossmatchIn dicator bi t NULL, | |
| 863 | Fa cilityGuid uniqueide ntifier NU LL, | |
| 864 | Lo calSupplie rGuid uniq ueidentifi er NULL, | |
| 865 | An tibodyScre enDisplayC ode int NU LL, | |
| 866 | Ma ximumSpeci menExpirat ionDays sm allint NUL L, | |
| 867 | Au tomatedIns trumentInd icator bit NULL, | |
| 868 | La belPrinter UseIndicat or bit NOT NULL, | |
| 869 | La belPrinter ComPortNum ber tinyin t NULL, | |
| 870 | La belPrinter IPAddress varchar(15 ) NULL, | |
| 871 | La belPrinter TcpPortNum ber int NU LL, | |
| 872 | Ti meZoneId c har(1) NOT NULL, | |
| 873 | Da ylightSavi ngsTypeId smallint N OT NULL, | |
| 874 | Pr interName varchar(50 ) NULL, | |
| 875 | Pr interAlert sIndicator bit NOT N ULL, | |
| 876 | Pr interAlert sPrinterNa me varchar (50) NULL, | |
| 877 | Pr interOrder AlertTypeC ode char(1 ) NULL, | |
| 878 | Pr interOrder sNeededHou rs smallin t NULL, | |
| 879 | Ic onAlertsIn dicator bi t NULL, | |
| 880 | Ic onOrderAle rtTypeCode char(1) N ULL, | |
| 881 | Ic onOrdersNe ededHours smallint N ULL, | |
| 882 | Ic onRefreshR ate int NU LL, | |
| 883 | Lo ginMessage Text varch ar(510) NU LL, | |
| 884 | In voiceTempl ateText va rchar(1000 ) NOT NULL , | |
| 885 | Me dicalDirec torName va rchar(30) NULL, | |
| 886 | Us aIndicator bit NOT N ULL, | |
| 887 | Lo ckInactivi tyTimeoutM in int NOT NULL, | |
| 888 | Ac cessionAre aId int NU LL, | |
| 889 | Da ylightSavi ngsStartDa te datetim e NULL, | |
| 890 | Da ylightSavi ngsEndDate datetime NULL, | |
| 891 | Re activityPh aseCode ch ar (1) NOT NULL, | |
| 892 | Re cordStatus Code char( 1) NOT NUL L, | |
| 893 | La stUpdateDa te datetim e NOT NULL , | |
| 894 | La stUpdateUs er varchar (30) NOT N ULL, | |
| 895 | La stUpdateFu nctionId i nt NOT NUL L | |
| 896 | ) ON [PRIMA RY] | |
| 897 | GO | |
| 898 | ||
| 899 | ||
| 900 | ||
| 901 | /********* ********** ********** ********** ******* | |
| 902 | Save th e existing VamcDivis ion data t o the | |
| 903 | temp ta ble | |
| 904 | ********** ********** ********** ********** ******/ | |
| 905 | ||
| 906 | INSERT INT O #VamcDiv ision | |
| 907 | (D ivisionCod e, Divisio nGuid, Div isionName, ServiceTy peIndicato r, IccbbaR egistratio nNumber, E lectronicC rossmatchI ndicator, | |
| 908 | F acilityGui d, LocalSu pplierGuid , Antibody ScreenDisp layCode, M aximumSpec imenExpira tionDays, AutomatedI nstrumentI ndicator, LabelPrint erUseIndic ator, Labe lPrinterCo mPortNumbe r, LabelPr interIPAdd ress, Labe lPrinterTc pPortNumbe r, | |
| 909 | T imeZoneId, DaylightS avingsType Id, Printe rName, Pri nterAlerts Indicator, PrinterAl ertsPrinte rName, Pri nterOrderA lertTypeCo de, Printe rOrdersNee dedHours, IconAlerts Indicator, IconOrder AlertTypeC ode, IconO rdersNeede dHours, | |
| 910 | I conRefresh Rate, Logi nMessageTe xt, Invoic eTemplateT ext, Medic alDirector Name, UsaI ndicator, LockInacti vityTimeou tMin, Acce ssionAreaI d, | |
| 911 | D aylightSav ingsStartD ate, Dayli ghtSavings EndDate, R eactivityP haseCode, RecordStat usCode, La stUpdateDa te, LastUp dateUser, LastUpdate FunctionId ) | |
| 912 | SELECT D ivisionCod e, Divisio nGuid, Div isionName, ServiceTy peIndicato r, IccbbaR egistratio nNumber, E lectronicC rossmatchI ndicator, | |
| 913 | F acilityGui d, LocalSu pplierGuid , Antibody ScreenDisp layCode, M aximumSpec imenExpira tionDays, AutomatedI nstrumentI ndicator, LabelPrint erUseIndic ator, Labe lPrinterCo mPortNumbe r, LabelPr interIPAdd ress, Labe lPrinterTc pPortNumbe r, | |
| 914 | T imeZoneId, DaylightS avingsType Id, Printe rName, Pri nterAlerts Indicator, PrinterAl ertsPrinte rName, Pri nterOrderA lertTypeCo de, Printe rOrdersNee dedHours, IconAlerts Indicator, IconOrder AlertTypeC ode, IconO rdersNeede dHours, | |
| 915 | I conRefresh Rate, Logi nMessageTe xt, Invoic eTemplateT ext, Medic alDirector Name, UsaI ndicator, LockInacti vityTimeou tMin, Acce ssionAreaI d, | |
| 916 | D aylightSav ingsStartD ate, Dayli ghtSavings EndDate, R eactivityP haseCode, RecordStat usCode, La stUpdateDa te, LastUp dateUser, LastUpdate FunctionId | |
| 917 | FROM dbo .VamcDivis ion | |
| 918 | GO | |
| 919 | ||
| 920 | /********* ********** ********** ********** ********** ******** | |
| 921 | Drop th e existing VamcDivis ion constr aints and FK | |
| 922 | ********** ********** ********** ********** ********** *******/ | |
| 923 | ||
| 924 | IF EXISTS (SELECT * FROM sys. foreign_ke ys WHERE o bject_id = OBJECT_ID (N'[dbo].[ FK_VamcDiv ision_Anti bodyScreen Display]') AND paren t_object_i d = OBJECT _ID(N'[dbo ].[VamcDiv ision]')) | |
| 925 | ALTER TABL E [dbo].[V amcDivisio n] DROP CO NSTRAINT [ FK_VamcDiv ision_Anti bodyScreen Display] | |
| 926 | GO | |
| 927 | ||
| 928 | IF EXISTS (SELECT * FROM sys. foreign_ke ys WHERE o bject_id = OBJECT_ID (N'[dbo].[ FK_VamcDiv ision_Dayl ightSaving sType ]') AND parent _object_id = OBJECT_ ID(N'[dbo] .[VamcDivi sion]')) | |
| 929 | ALTER TABL E [dbo].[V amcDivisio n] DROP CO NSTRAINT [ FK_VamcDiv ision_Dayl ightSaving sType ] | |
| 930 | GO | |
| 931 | ||
| 932 | IF EXISTS (SELECT * FROM sys. foreign_ke ys WHERE o bject_id = OBJECT_ID (N'[dbo].[ FK_VamcDiv ision_Faci lity]') AN D parent_o bject_id = OBJECT_ID (N'[dbo].[ VamcDivisi on]')) | |
| 933 | ALTER TABL E [dbo].[V amcDivisio n] DROP CO NSTRAINT [ FK_VamcDiv ision_Faci lity] | |
| 934 | GO | |
| 935 | ||
| 936 | IF EXISTS (SELECT * FROM sys. foreign_ke ys WHERE o bject_id = OBJECT_ID (N'[dbo].[ FK_VamcDiv ision_Icon OrderAlert Type]') AN D parent_o bject_id = OBJECT_ID (N'[dbo].[ VamcDivisi on]')) | |
| 937 | ALTER TABL E [dbo].[V amcDivisio n] DROP CO NSTRAINT [ FK_VamcDiv ision_Icon OrderAlert Type] | |
| 938 | GO | |
| 939 | IF EXISTS (SELECT * FROM sys. foreign_ke ys WHERE o bject_id = OBJECT_ID (N'[dbo].[ FK_VamcDiv ision_Prin terOrderAl ertType]') AND paren t_object_i d = OBJECT _ID(N'[dbo ].[VamcDiv ision]')) | |
| 940 | ALTER TABL E [dbo].[V amcDivisio n] DROP CO NSTRAINT [ FK_VamcDiv ision_Prin terOrderAl ertType] | |
| 941 | GO | |
| 942 | ||
| 943 | IF EXISTS (SELECT * FROM sys. foreign_ke ys WHERE o bject_id = OBJECT_ID (N'[dbo].[ FK_VamcDiv ision_Time Zone]') AN D parent_o bject_id = OBJECT_ID (N'[dbo].[ VamcDivisi on]')) | |
| 944 | ALTER TABL E [dbo].[V amcDivisio n] DROP CO NSTRAINT [ FK_VamcDiv ision_Time Zone] | |
| 945 | GO | |
| 946 | ||
| 947 | IF EXISTS (SELECT * FROM sys. foreign_ke ys WHERE o bject_id = OBJECT_ID (N'[dbo].[ FK_Antibod yParameter _VamcDivis ion]') AND parent_ob ject_id = OBJECT_ID( N'[dbo].[A ntibodyPar ameter]')) | |
| 948 | ALTER TABL E [dbo].[A ntibodyPar ameter] DR OP CONSTRA INT [FK_An tibodyPara meter_Vamc Division] | |
| 949 | GO | |
| 950 | ||
| 951 | IF EXISTS (SELECT * FROM sys. foreign_ke ys WHERE o bject_id = OBJECT_ID (N'[dbo].[ FK_Antiser aWorklist_ VamcDivisi on]') AND parent_obj ect_id = O BJECT_ID(N '[dbo].[An tiseraWork list]')) | |
| 952 | ALTER TABL E [dbo].[A ntiseraWor klist] DRO P CONSTRAI NT [FK_Ant iseraWorkl ist_VamcDi vision] | |
| 953 | GO | |
| 954 | ||
| 955 | IF EXISTS (SELECT * FROM sys. foreign_ke ys WHERE o bject_id = OBJECT_ID (N'[dbo].[ FK_Associa tedInstitu tion_VamcD ivision]') AND paren t_object_i d = OBJECT _ID(N'[dbo ].[Associa tedInstitu tion]')) | |
| 956 | ALTER TABL E [dbo].[A ssociatedI nstitution ] DROP CON STRAINT [F K_Associat edInstitut ion_VamcDi vision] | |
| 957 | GO | |
| 958 | ||
| 959 | IF EXISTS (SELECT * FROM sys. foreign_ke ys WHERE o bject_id = OBJECT_ID (N'[dbo].[ FK_BloodUn it_VamcDiv ision]') A ND parent_ object_id = OBJECT_I D(N'[dbo]. [BloodUnit ]')) | |
| 960 | ALTER TABL E [dbo].[B loodUnit] DROP CONST RAINT [FK_ BloodUnit_ VamcDivisi on] | |
| 961 | GO | |
| 962 | ||
| 963 | IF EXISTS (SELECT * FROM sys. foreign_ke ys WHERE o bject_id = OBJECT_ID (N'[dbo].[ FK_BloodUn itAntigen_ VamcDivisi on]') AND parent_obj ect_id = O BJECT_ID(N '[dbo].[Bl oodUnitAnt igen]')) | |
| 964 | ALTER TABL E [dbo].[B loodUnitAn tigen] DRO P CONSTRAI NT [FK_Blo odUnitAnti gen_VamcDi vision] | |
| 965 | GO | |
| 966 | ||
| 967 | IF EXISTS (SELECT * FROM sys. foreign_ke ys WHERE o bject_id = OBJECT_ID (N'[dbo].[ FK_BloodUn itModifica tion_VamcD ivision]') AND paren t_object_i d = OBJECT _ID(N'[dbo ].[BloodUn itModifica tion]')) | |
| 968 | ALTER TABL E [dbo].[B loodUnitMo dification ] DROP CON STRAINT [F K_BloodUni tModificat ion_VamcDi vision] | |
| 969 | GO | |
| 970 | ||
| 971 | IF EXISTS (SELECT * FROM sys. foreign_ke ys WHERE o bject_id = OBJECT_ID (N'[dbo].[ FK_BloodUn itTest_Vam cDivision] ') AND par ent_object _id = OBJE CT_ID(N'[d bo].[Blood UnitTest]' )) | |
| 972 | ALTER TABL E [dbo].[B loodUnitTe st] DROP C ONSTRAINT [FK_BloodU nitTest_Va mcDivision ] | |
| 973 | GO | |
| 974 | ||
| 975 | IF EXISTS (SELECT * FROM sys. foreign_ke ys WHERE o bject_id = OBJECT_ID (N'[dbo].[ FK_CannedC omment_Vam cDivision] ') AND par ent_object _id = OBJE CT_ID(N'[d bo].[Canne dComment]' )) | |
| 976 | ALTER TABL E [dbo].[C annedComme nt] DROP C ONSTRAINT [FK_Canned Comment_Va mcDivision ] | |
| 977 | GO | |
| 978 | ||
| 979 | IF EXISTS (SELECT * FROM sys. foreign_ke ys WHERE o bject_id = OBJECT_ID (N'[dbo].[ FK_Compone ntClassPar ameter_Vam cDivision] ') AND par ent_object _id = OBJE CT_ID(N'[d bo].[Compo nentClassP arameter]' )) | |
| 980 | ALTER TABL E [dbo].[C omponentCl assParamet er] DROP C ONSTRAINT [FK_Compon entClassPa rameter_Va mcDivision ] | |
| 981 | GO | |
| 982 | ||
| 983 | IF EXISTS (SELECT * FROM sys. foreign_ke ys WHERE o bject_id = OBJECT_ID (N'[dbo].[ FK_DailyCo ntrol_Vamc Division]' ) AND pare nt_object_ id = OBJEC T_ID(N'[db o].[DailyC ontrol]')) | |
| 984 | ALTER TABL E [dbo].[D ailyContro l] DROP CO NSTRAINT [ FK_DailyCo ntrol_Vamc Division] | |
| 985 | GO | |
| 986 | ||
| 987 | IF EXISTS (SELECT * FROM sys. foreign_ke ys WHERE o bject_id = OBJECT_ID (N'[dbo].[ FK_DailyQc Worklist_V amcDivisio n]') AND p arent_obje ct_id = OB JECT_ID(N' [dbo].[Dai lyQcWorkli st]')) | |
| 988 | ALTER TABL E [dbo].[D ailyQcWork list] DROP CONSTRAIN T [FK_Dail yQcWorklis t_VamcDivi sion] | |
| 989 | GO | |
| 990 | ||
| 991 | IF EXISTS (SELECT * FROM sys. foreign_ke ys WHERE o bject_id = OBJECT_ID (N'[dbo].[ FK_Equipme nt_VamcDiv ision]') A ND parent_ object_id = OBJECT_I D(N'[dbo]. [Equipment ]')) | |
| 992 | ALTER TABL E [dbo].[E quipment] DROP CONST RAINT [FK_ Equipment_ VamcDivisi on] | |
| 993 | GO | |
| 994 | ||
| 995 | IF EXISTS (SELECT * FROM sys. foreign_ke ys WHERE o bject_id = OBJECT_ID (N'[dbo].[ FK_Excepti onAntigenT est_VamcDi vision]') AND parent _object_id = OBJECT_ ID(N'[dbo] .[Exceptio nAntigenTe st]')) | |
| 996 | ALTER TABL E [dbo].[E xceptionAn tigenTest] DROP CONS TRAINT [FK _Exception AntigenTes t_VamcDivi sion] | |
| 997 | GO | |
| 998 | ||
| 999 | IF EXISTS (SELECT * FROM sys. foreign_ke ys WHERE o bject_id = OBJECT_ID (N'[dbo].[ FK_Excepti onCautionT ag_VamcDiv ision]') A ND parent_ object_id = OBJECT_I D(N'[dbo]. [Exception CautionTag ]')) | |
| 1000 | ALTER TABL E [dbo].[E xceptionCa utionTag] DROP CONST RAINT [FK_ ExceptionC autionTag_ VamcDivisi on] | |
| 1001 | GO | |
| 1002 | ||
| 1003 | IF EXISTS (SELECT * FROM sys. foreign_ke ys WHERE o bject_id = OBJECT_ID (N'[dbo].[ FK_Excepti onElectron icTransfus ion_VamcDi vision]') AND parent _object_id = OBJECT_ ID(N'[dbo] .[Exceptio nElectroni cTransfusi on]')) | |
| 1004 | ALTER TABL E [dbo].[E xceptionEl ectronicTr ansfusion] DROP CONS TRAINT [FK _Exception Electronic Transfusio n_VamcDivi sion] | |
| 1005 | GO | |
| 1006 | ||
| 1007 | IF EXISTS (SELECT * FROM sys. foreign_ke ys WHERE o bject_id = OBJECT_ID (N'[dbo].[ FK_Excepti onEmergenc yIssueOrde r_VamcDivi sion]') AN D parent_o bject_id = OBJECT_ID (N'[dbo].[ ExceptionE mergencyIs sueOrder]' )) | |
| 1008 | ALTER TABL E [dbo].[E xceptionEm ergencyIss ueOrder] D ROP CONSTR AINT [FK_E xceptionEm ergencyIss ueOrder_Va mcDivision ] | |
| 1009 | GO | |
| 1010 | ||
| 1011 | IF EXISTS (SELECT * FROM sys. foreign_ke ys WHERE o bject_id = OBJECT_ID (N'[dbo].[ FK_Excepti onEmergenc yIssueUnit Test_VamcD ivision]') AND paren t_object_i d = OBJECT _ID(N'[dbo ].[Excepti onEmergenc yIssueUnit Test]')) | |
| 1012 | ALTER TABL E [dbo].[E xceptionEm ergencyIss ueUnitTest ] DROP CON STRAINT [F K_Exceptio nEmergency IssueUnitT est_VamcDi vision] | |
| 1013 | GO | |
| 1014 | ||
| 1015 | IF EXISTS (SELECT * FROM sys. foreign_ke ys WHERE o bject_id = OBJECT_ID (N'[dbo].[ FK_Excepti onExpiredT ask_VamcDi vision]') AND parent _object_id = OBJECT_ ID(N'[dbo] .[Exceptio nExpiredTa sk]')) | |
| 1016 | ALTER TABL E [dbo].[E xceptionEx piredTask] DROP CONS TRAINT [FK _Exception ExpiredTas k_VamcDivi sion] | |
| 1017 | GO | |
| 1018 | ||
| 1019 | IF EXISTS (SELECT * FROM sys. foreign_ke ys WHERE o bject_id = OBJECT_ID (N'[dbo].[ FK_Excepti onExpiredU nitReceive d_VamcDivi sion]') AN D parent_o bject_id = OBJECT_ID (N'[dbo].[ ExceptionE xpiredUnit Received]' )) | |
| 1020 | ALTER TABL E [dbo].[E xceptionEx piredUnitR eceived] D ROP CONSTR AINT [FK_E xceptionEx piredUnitR eceived_Va mcDivision ] | |
| 1021 | GO | |
| 1022 | ||
| 1023 | IF EXISTS (SELECT * FROM sys. foreign_ke ys WHERE o bject_id = OBJECT_ID (N'[dbo].[ FK_Excepti onInconclu siveCrossm atch_VamcD ivision]') AND paren t_object_i d = OBJECT _ID(N'[dbo ].[Excepti onInconclu siveCrossm atch]')) | |
| 1024 | ALTER TABL E [dbo].[E xceptionIn conclusive Crossmatch ] DROP CON STRAINT [F K_Exceptio nInconclus iveCrossma tch_VamcDi vision] | |
| 1025 | GO | |
| 1026 | ||
| 1027 | IF EXISTS (SELECT * FROM sys. foreign_ke ys WHERE o bject_id = OBJECT_ID (N'[dbo].[ FK_Excepti onLabelMis match_Vamc Division]' ) AND pare nt_object_ id = OBJEC T_ID(N'[db o].[Except ionLabelMi smatch]')) | |
| 1028 | ALTER TABL E [dbo].[E xceptionLa belMismatc h] DROP CO NSTRAINT [ FK_Excepti onLabelMis match_Vamc Division] | |
| 1029 | GO | |
| 1030 | ||
| 1031 | ||
| 1032 | IF EXISTS (SELECT * FROM sys. foreign_ke ys WHERE o bject_id = OBJECT_ID (N'[dbo].[ FK_Excepti onPatientA boRh_VamcD ivision]') AND paren t_object_i d = OBJECT _ID(N'[dbo ].[Excepti onPatientA boRh]')) | |
| 1033 | ALTER TABL E [dbo].[E xceptionPa tientAboRh ] DROP CON STRAINT [F K_Exceptio nPatientAb oRh_VamcDi vision] | |
| 1034 | GO | |
| 1035 | ||
| 1036 | IF EXISTS (SELECT * FROM sys. foreign_ke ys WHERE o bject_id = OBJECT_ID (N'[dbo].[ FK_Excepti onPatientA boRhDiscre pancy_Vamc Division]' ) AND pare nt_object_ id = OBJEC T_ID(N'[db o].[Except ionPatient AboRhDiscr epancy]')) | |
| 1037 | ALTER TABL E [dbo].[E xceptionPa tientAboRh Discrepanc y] DROP CO NSTRAINT [ FK_Excepti onPatientA boRhDiscre pancy_Vamc Division] | |
| 1038 | GO | |
| 1039 | ||
| 1040 | IF EXISTS (SELECT * FROM sys. foreign_ke ys WHERE o bject_id = OBJECT_ID (N'[dbo].[ FK_Excepti onPatientR estriction _VamcDivis ion]') AND parent_ob ject_id = OBJECT_ID( N'[dbo].[E xceptionPa tientRestr iction]')) | |
| 1041 | ALTER TABL E [dbo].[E xceptionPa tientRestr iction] DR OP CONSTRA INT [FK_Ex ceptionPat ientRestri ction_Vamc Division] | |
| 1042 | GO | |
| 1043 | ||
| 1044 | IF EXISTS (SELECT * FROM sys. foreign_ke ys WHERE o bject_id = OBJECT_ID (N'[dbo].[ FK_Excepti onPatientT est_VamcDi vision]') AND parent _object_id = OBJECT_ ID(N'[dbo] .[Exceptio nPatientTe st]')) | |
| 1045 | ALTER TABL E [dbo].[E xceptionPa tientTest] DROP CONS TRAINT [FK _Exception PatientTes t_VamcDivi sion] | |
| 1046 | GO | |
| 1047 | ||
| 1048 | IF EXISTS (SELECT * FROM sys. foreign_ke ys WHERE o bject_id = OBJECT_ID (N'[dbo].[ FK_Excepti onPatientT estInactiv ated_VamcD ivision]') AND paren t_object_i d = OBJECT _ID(N'[dbo ].[Excepti onPatientT estInactiv ated]')) | |
| 1049 | ALTER TABL E [dbo].[E xceptionPa tientTestI nactivated ] DROP CON STRAINT [F K_Exceptio nPatientTe stInactiva ted_VamcDi vision] | |
| 1050 | GO | |
| 1051 | ||
| 1052 | IF EXISTS (SELECT * FROM sys. foreign_ke ys WHERE o bject_id = OBJECT_ID (N'[dbo].[ FK_Excepti onQc_VamcD ivision]') AND paren t_object_i d = OBJECT _ID(N'[dbo ].[Excepti onQc]')) | |
| 1053 | ALTER TABL E [dbo].[E xceptionQc ] DROP CON STRAINT [F K_Exceptio nQc_VamcDi vision] | |
| 1054 | GO | |
| 1055 | ||
| 1056 | IF EXISTS (SELECT * FROM sys. foreign_ke ys WHERE o bject_id = OBJECT_ID (N'[dbo].[ FK_Excepti onQcInacti vation_Vam cDivision] ') AND par ent_object _id = OBJE CT_ID(N'[d bo].[Excep tionQcInac tivation]' )) | |
| 1057 | ALTER TABL E [dbo].[E xceptionQc Inactivati on] DROP C ONSTRAINT [FK_Except ionQcInact ivation_Va mcDivision ] | |
| 1058 | GO | |
| 1059 | ||
| 1060 | IF EXISTS (SELECT * FROM sys. foreign_ke ys WHERE o bject_id = OBJECT_ID (N'[dbo].[ FK_Excepti onQcNotPer formed_Vam cDivision] ') AND par ent_object _id = OBJE CT_ID(N'[d bo].[Excep tionQcNotP erformed]' )) | |
| 1061 | ALTER TABL E [dbo].[E xceptionQc NotPerform ed] DROP C ONSTRAINT [FK_Except ionQcNotPe rformed_Va mcDivision ] | |
| 1062 | GO | |
| 1063 | ||
| 1064 | IF EXISTS (SELECT * FROM sys. foreign_ke ys WHERE o bject_id = OBJECT_ID (N'[dbo].[ FK_Excepti onQuaranti ne_VamcDiv ision]') A ND parent_ object_id = OBJECT_I D(N'[dbo]. [Exception Quarantine ]')) | |
| 1065 | ALTER TABL E [dbo].[E xceptionQu arantine] DROP CONST RAINT [FK_ ExceptionQ uarantine_ VamcDivisi on] | |
| 1066 | GO | |
| 1067 | ||
| 1068 | IF EXISTS (SELECT * FROM sys. foreign_ke ys WHERE o bject_id = OBJECT_ID (N'[dbo].[ FK_Excepti onRackTest _VamcDivis ion]') AND parent_ob ject_id = OBJECT_ID( N'[dbo].[E xceptionRa ckTest]')) | |
| 1069 | ALTER TABL E [dbo].[E xceptionRa ckTest] DR OP CONSTRA INT [FK_Ex ceptionRac kTest_Vamc Division] | |
| 1070 | GO | |
| 1071 | ||
| 1072 | IF EXISTS (SELECT * FROM sys. foreign_ke ys WHERE o bject_id = OBJECT_ID (N'[dbo].[ FK_Excepti onRemoveFi nalUnitSta tus_VamcDi vision]') AND parent _object_id = OBJECT_ ID(N'[dbo] .[Exceptio nRemoveFin alUnitStat us]')) | |
| 1073 | ALTER TABL E [dbo].[E xceptionRe moveFinalU nitStatus] DROP CONS TRAINT [FK _Exception RemoveFina lUnitStatu s_VamcDivi sion] | |
| 1074 | GO | |
| 1075 | ||
| 1076 | IF EXISTS (SELECT * FROM sys. foreign_ke ys WHERE o bject_id = OBJECT_ID (N'[dbo].[ FK_Excepti onReturned Unit_VamcD ivision]') AND paren t_object_i d = OBJECT _ID(N'[dbo ].[Excepti onReturned Unit]')) | |
| 1077 | ALTER TABL E [dbo].[E xceptionRe turnedUnit ] DROP CON STRAINT [F K_Exceptio nReturnedU nit_VamcDi vision] | |
| 1078 | GO | |
| 1079 | ||
| 1080 | IF EXISTS (SELECT * FROM sys. foreign_ke ys WHERE o bject_id = OBJECT_ID (N'[dbo].[ FK_Excepti onSpecimen _VamcDivis ion]') AND parent_ob ject_id = OBJECT_ID( N'[dbo].[E xceptionSp ecimen]')) | |
| 1081 | ALTER TABL E [dbo].[E xceptionSp ecimen] DR OP CONSTRA INT [FK_Ex ceptionSpe cimen_Vamc Division] | |
| 1082 | GO | |
| 1083 | ||
| 1084 | IF EXISTS (SELECT * FROM sys. foreign_ke ys WHERE o bject_id = OBJECT_ID (N'[dbo].[ FK_Excepti onTransfus ion_VamcDi vision]') AND parent _object_id = OBJECT_ ID(N'[dbo] .[Exceptio nTransfusi on]')) | |
| 1085 | ALTER TABL E [dbo].[E xceptionTr ansfusion] DROP CONS TRAINT [FK _Exception Transfusio n_VamcDivi sion] | |
| 1086 | GO | |
| 1087 | ||
| 1088 | IF EXISTS (SELECT * FROM sys. foreign_ke ys WHERE o bject_id = OBJECT_ID (N'[dbo].[ FK_Excepti onTransfus ionReactio nWorkup_Va mcDivision ]') AND pa rent_objec t_id = OBJ ECT_ID(N'[ dbo].[Exce ptionTrans fusionReac tionWorkup ]')) | |
| 1089 | ALTER TABL E [dbo].[E xceptionTr ansfusionR eactionWor kup] DROP CONSTRAINT [FK_Excep tionTransf usionReact ionWorkup_ VamcDivisi on] | |
| 1090 | GO | |
| 1091 | ||
| 1092 | IF EXISTS (SELECT * FROM sys. foreign_ke ys WHERE o bject_id = OBJECT_ID (N'[dbo].[ FK_Excepti onTrwSpeci men_VamcDi vision]') AND parent _object_id = OBJECT_ ID(N'[dbo] .[Exceptio nTrwSpecim en]')) | |
| 1093 | ALTER TABL E [dbo].[E xceptionTr wSpecimen] DROP CONS TRAINT [FK _Exception TrwSpecime n_VamcDivi sion] | |
| 1094 | GO | |
| 1095 | ||
| 1096 | IF EXISTS (SELECT * FROM sys. foreign_ke ys WHERE o bject_id = OBJECT_ID (N'[dbo].[ FK_Excepti onUnitAboR h_VamcDivi sion]') AN D parent_o bject_id = OBJECT_ID (N'[dbo].[ ExceptionU nitAboRh]' )) | |
| 1097 | ALTER TABL E [dbo].[E xceptionUn itAboRh] D ROP CONSTR AINT [FK_E xceptionUn itAboRh_Va mcDivision ] | |
| 1098 | GO | |
| 1099 | ||
| 1100 | IF EXISTS (SELECT * FROM sys. foreign_ke ys WHERE o bject_id = OBJECT_ID (N'[dbo].[ FK_Excepti onUnitIssu e_VamcDivi sion]') AN D parent_o bject_id = OBJECT_ID (N'[dbo].[ ExceptionU nitIssue]' )) | |
| 1101 | ALTER TABL E [dbo].[E xceptionUn itIssue] D ROP CONSTR AINT [FK_E xceptionUn itIssue_Va mcDivision ] | |
| 1102 | GO | |
| 1103 | ||
| 1104 | IF EXISTS (SELECT * FROM sys. foreign_ke ys WHERE o bject_id = OBJECT_ID (N'[dbo].[ FK_Excepti onUnitModi fication_V amcDivisio n]') AND p arent_obje ct_id = OB JECT_ID(N' [dbo].[Exc eptionUnit Modificati on]')) | |
| 1105 | ALTER TABL E [dbo].[E xceptionUn itModifica tion] DROP CONSTRAIN T [FK_Exce ptionUnitM odificatio n_VamcDivi sion] | |
| 1106 | GO | |
| 1107 | ||
| 1108 | IF EXISTS (SELECT * FROM sys. foreign_ke ys WHERE o bject_id = OBJECT_ID (N'[dbo].[ FK_Excepti onUnitSele ction_Vamc Division]' ) AND pare nt_object_ id = OBJEC T_ID(N'[db o].[Except ionUnitSel ection]')) | |
| 1109 | ALTER TABL E [dbo].[E xceptionUn itSelectio n] DROP CO NSTRAINT [ FK_Excepti onUnitSele ction_Vamc Division] | |
| 1110 | GO | |
| 1111 | ||
| 1112 | IF EXISTS (SELECT * FROM sys. foreign_ke ys WHERE o bject_id = OBJECT_ID (N'[dbo].[ FK_HcpcsAs signment_V amcDivisio n]') AND p arent_obje ct_id = OB JECT_ID(N' [dbo].[Hcp csAssignme nt]')) | |
| 1113 | ALTER TABL E [dbo].[H cpcsAssign ment] DROP CONSTRAIN T [FK_Hcpc sAssignmen t_VamcDivi sion] | |
| 1114 | GO | |
| 1115 | ||
| 1116 | ||
| 1117 | IF EXISTS (SELECT * FROM sys. foreign_ke ys WHERE o bject_id = OBJECT_ID (N'[dbo].[ FK_IssuedU nitComment _VamcDivis ion]') AND parent_ob ject_id = OBJECT_ID( N'[dbo].[I ssuedUnitC omment]')) | |
| 1118 | ALTER TABL E [dbo].[I ssuedUnitC omment] DR OP CONSTRA INT [FK_Is suedUnitCo mment_Vamc Division] | |
| 1119 | GO | |
| 1120 | ||
| 1121 | IF EXISTS (SELECT * FROM sys. foreign_ke ys WHERE o bject_id = OBJECT_ID (N'[dbo].[ FK_LocalSu pplier_Vam cDivision] ') AND par ent_object _id = OBJE CT_ID(N'[d bo].[Local Supplier]' )) | |
| 1122 | ALTER TABL E [dbo].[L ocalSuppli er] DROP C ONSTRAINT [FK_LocalS upplier_Va mcDivision ] | |
| 1123 | GO | |
| 1124 | ||
| 1125 | IF EXISTS (SELECT * FROM sys. foreign_ke ys WHERE o bject_id = OBJECT_ID (N'[dbo].[ FK_LoginMe ssage_Vamc Division]' ) AND pare nt_object_ id = OBJEC T_ID(N'[db o].[LoginM essage]')) | |
| 1126 | ALTER TABL E [dbo].[L oginMessag e] DROP CO NSTRAINT [ FK_LoginMe ssage_Vamc Division] | |
| 1127 | GO | |
| 1128 | ||
| 1129 | IF EXISTS (SELECT * FROM sys. foreign_ke ys WHERE o bject_id = OBJECT_ID (N'[dbo].[ FK_Msbos_V amcDivisio n]') AND p arent_obje ct_id = OB JECT_ID(N' [dbo].[Msb os]')) | |
| 1130 | ALTER TABL E [dbo].[M sbos] DROP CONSTRAIN T [FK_Msbo s_VamcDivi sion] | |
| 1131 | GO | |
| 1132 | ||
| 1133 | IF EXISTS (SELECT * FROM sys. foreign_ke ys WHERE o bject_id = OBJECT_ID (N'[dbo].[ FK_Ordered Component_ VamcDivisi on]') AND parent_obj ect_id = O BJECT_ID(N '[dbo].[Or deredCompo nent]')) | |
| 1134 | ALTER TABL E [dbo].[O rderedComp onent] DRO P CONSTRAI NT [FK_Ord eredCompon ent_VamcDi vision] | |
| 1135 | GO | |
| 1136 | ||
| 1137 | IF EXISTS (SELECT * FROM sys. foreign_ke ys WHERE o bject_id = OBJECT_ID (N'[dbo].[ FK_Ordered Test_VamcD ivision]') AND paren t_object_i d = OBJECT _ID(N'[dbo ].[Ordered Test]')) | |
| 1138 | ALTER TABL E [dbo].[O rderedTest ] DROP CON STRAINT [F K_OrderedT est_VamcDi vision] | |
| 1139 | GO | |
| 1140 | ||
| 1141 | IF EXISTS (SELECT * FROM sys. foreign_ke ys WHERE o bject_id = OBJECT_ID (N'[dbo].[ FK_Ordered Unit_VamcD ivision]') AND paren t_object_i d = OBJECT _ID(N'[dbo ].[Ordered Unit]')) | |
| 1142 | ALTER TABL E [dbo].[O rderedUnit ] DROP CON STRAINT [F K_OrderedU nit_VamcDi vision] | |
| 1143 | GO | |
| 1144 | ||
| 1145 | IF EXISTS (SELECT * FROM sys. foreign_ke ys WHERE o bject_id = OBJECT_ID (N'[dbo].[ FK_Patient Order_Vamc Division]' ) AND pare nt_object_ id = OBJEC T_ID(N'[db o].[Patien tOrder]')) | |
| 1146 | ALTER TABL E [dbo].[P atientOrde r] DROP CO NSTRAINT [ FK_Patient Order_Vamc Division] | |
| 1147 | GO | |
| 1148 | ||
| 1149 | IF EXISTS (SELECT * FROM sys. foreign_ke ys WHERE o bject_id = OBJECT_ID (N'[dbo].[ FK_Patient SpecialIns truction_V amcDivisio n]') AND p arent_obje ct_id = OB JECT_ID(N' [dbo].[Pat ientSpecia lInstructi on]')) | |
| 1150 | ALTER TABL E [dbo].[P atientSpec ialInstruc tion] DROP CONSTRAIN T [FK_Pati entSpecial Instructio n_VamcDivi sion] | |
| 1151 | GO | |
| 1152 | ||
| 1153 | IF EXISTS (SELECT * FROM sys. foreign_ke ys WHERE o bject_id = OBJECT_ID (N'[dbo].[ FK_Patient Specimen_V amcDivisio n]') AND p arent_obje ct_id = OB JECT_ID(N' [dbo].[Pat ientSpecim en]')) | |
| 1154 | ALTER TABL E [dbo].[P atientSpec imen] DROP CONSTRAIN T [FK_Pati entSpecime n_VamcDivi sion] | |
| 1155 | GO | |
| 1156 | ||
| 1157 | IF EXISTS (SELECT * FROM sys. foreign_ke ys WHERE o bject_id = OBJECT_ID (N'[dbo].[ FK_Patient Test_VamcD ivision]') AND paren t_object_i d = OBJECT _ID(N'[dbo ].[Patient Test]')) | |
| 1158 | ALTER TABL E [dbo].[P atientTest ] DROP CON STRAINT [F K_PatientT est_VamcDi vision] | |
| 1159 | GO | |
| 1160 | ||
| 1161 | IF EXISTS (SELECT * FROM sys. foreign_ke ys WHERE o bject_id = OBJECT_ID (N'[dbo].[ FK_Patient Transfusio n_VamcDivi sion]') AN D parent_o bject_id = OBJECT_ID (N'[dbo].[ PatientTra nsfusion]' )) | |
| 1162 | ALTER TABL E [dbo].[P atientTran sfusion] D ROP CONSTR AINT [FK_P atientTran sfusion_Va mcDivision ] | |
| 1163 | GO | |
| 1164 | ||
| 1165 | IF EXISTS (SELECT * FROM sys. foreign_ke ys WHERE o bject_id = OBJECT_ID (N'[dbo].[ FK_Patient Transfusio nComment_V amcDivisio n]') AND p arent_obje ct_id = OB JECT_ID(N' [dbo].[Pat ientTransf usionComme nt]')) | |
| 1166 | ALTER TABL E [dbo].[P atientTran sfusionCom ment] DROP CONSTRAIN T [FK_Pati entTransfu sionCommen t_VamcDivi sion] | |
| 1167 | GO | |
| 1168 | ||
| 1169 | IF EXISTS (SELECT * FROM sys. foreign_ke ys WHERE o bject_id = OBJECT_ID (N'[dbo].[ FK_Patient Transfusio nReaction_ VamcDivisi on]') AND parent_obj ect_id = O BJECT_ID(N '[dbo].[Pa tientTrans fusionReac tion]')) | |
| 1170 | ALTER TABL E [dbo].[P atientTran sfusionRea ction] DRO P CONSTRAI NT [FK_Pat ientTransf usionReact ion_VamcDi vision] | |
| 1171 | GO | |
| 1172 | ||
| 1173 | IF EXISTS (SELECT * FROM sys. foreign_ke ys WHERE o bject_id = OBJECT_ID (N'[dbo].[ FK_Pending BloodUnitT est_VamcDi vision]') AND parent _object_id = OBJECT_ ID(N'[dbo] .[PendingB loodUnitTe st]')) | |
| 1174 | ALTER TABL E [dbo].[P endingBloo dUnitTest] DROP CONS TRAINT [FK _PendingBl oodUnitTes t_VamcDivi sion] | |
| 1175 | GO | |
| 1176 | ||
| 1177 | IF EXISTS (SELECT * FROM sys. foreign_ke ys WHERE o bject_id = OBJECT_ID (N'[dbo].[ FK_Pending SpecimenTe st_VamcDiv ision]') A ND parent_ object_id = OBJECT_I D(N'[dbo]. [PendingSp ecimenTest ]')) | |
| 1178 | ALTER TABL E [dbo].[P endingSpec imenTest] DROP CONST RAINT [FK_ PendingSpe cimenTest_ VamcDivisi on] | |
| 1179 | GO | |
| 1180 | ||
| 1181 | IF EXISTS (SELECT * FROM sys. foreign_ke ys WHERE o bject_id = OBJECT_ID (N'[dbo].[ FK_PoolCou nter_VamcD ivision]') AND paren t_object_i d = OBJECT _ID(N'[dbo ].[PoolCou nter]')) | |
| 1182 | ALTER TABL E [dbo].[P oolCounter ] DROP CON STRAINT [F K_PoolCoun ter_VamcDi vision] | |
| 1183 | GO | |
| 1184 | ||
| 1185 | IF EXISTS (SELECT * FROM sys. foreign_ke ys WHERE o bject_id = OBJECT_ID (N'[dbo].[ FK_Product Modificati onParamete r_VamcDivi sion]') AN D parent_o bject_id = OBJECT_ID (N'[dbo].[ ProductMod ificationP arameter]' )) | |
| 1186 | ALTER TABL E [dbo].[P roductModi ficationPa rameter] D ROP CONSTR AINT [FK_P roductModi ficationPa rameter_Va mcDivision ] | |
| 1187 | GO | |
| 1188 | ||
| 1189 | IF EXISTS (SELECT * FROM sys. foreign_ke ys WHERE o bject_id = OBJECT_ID (N'[dbo].[ FK_Product Shipper_Va mcDivision ]') AND pa rent_objec t_id = OBJ ECT_ID(N'[ dbo].[Prod uctShipper ]')) | |
| 1190 | ALTER TABL E [dbo].[P roductShip per] DROP CONSTRAINT [FK_Produ ctShipper_ VamcDivisi on] | |
| 1191 | GO | |
| 1192 | ||
| 1193 | IF EXISTS (SELECT * FROM sys. foreign_ke ys WHERE o bject_id = OBJECT_ID (N'[dbo].[ FK_Rack_Va mcDivision ]') AND pa rent_objec t_id = OBJ ECT_ID(N'[ dbo].[Rack ]')) | |
| 1194 | ALTER TABL E [dbo].[R ack] DROP CONSTRAINT [FK_Rack_ VamcDivisi on] | |
| 1195 | GO | |
| 1196 | ||
| 1197 | IF EXISTS (SELECT * FROM sys. foreign_ke ys WHERE o bject_id = OBJECT_ID (N'[dbo].[ FK_RackLot _VamcDivis ion]') AND parent_ob ject_id = OBJECT_ID( N'[dbo].[R ackLot]')) | |
| 1198 | ALTER TABL E [dbo].[R ackLot] DR OP CONSTRA INT [FK_Ra ckLot_Vamc Division] | |
| 1199 | GO | |
| 1200 | ||
| 1201 | IF EXISTS (SELECT * FROM sys. foreign_ke ys WHERE o bject_id = OBJECT_ID (N'[dbo].[ FK_RackTes t_VamcDivi sion]') AN D parent_o bject_id = OBJECT_ID (N'[dbo].[ RackTest]' )) | |
| 1202 | ALTER TABL E [dbo].[R ackTest] D ROP CONSTR AINT [FK_R ackTest_Va mcDivision ] | |
| 1203 | GO | |
| 1204 | ||
| 1205 | ||
| 1206 | IF EXISTS (SELECT * FROM sys. foreign_ke ys WHERE o bject_id = OBJECT_ID (N'[dbo].[ FK_Reagent _VamcDivis ion]') AND parent_ob ject_id = OBJECT_ID( N'[dbo].[R eagent]')) | |
| 1207 | ALTER TABL E [dbo].[R eagent] DR OP CONSTRA INT [FK_Re agent_Vamc Division] | |
| 1208 | GO | |
| 1209 | ||
| 1210 | IF EXISTS (SELECT * FROM sys. foreign_ke ys WHERE o bject_id = OBJECT_ID (N'[dbo].[ FK_Reagent TestParame ter_VamcDi vision]') AND parent _object_id = OBJECT_ ID(N'[dbo] .[ReagentT estParamet er]')) | |
| 1211 | ALTER TABL E [dbo].[R eagentTest Parameter] DROP CONS TRAINT [FK _ReagentTe stParamete r_VamcDivi sion] | |
| 1212 | GO | |
| 1213 | ||
| 1214 | IF EXISTS (SELECT * FROM sys. foreign_ke ys WHERE o bject_id = OBJECT_ID (N'[dbo].[ FK_Reagent TypeParame ter_VamcDi vision]') AND parent _object_id = OBJECT_ ID(N'[dbo] .[ReagentT ypeParamet er]')) | |
| 1215 | ALTER TABL E [dbo].[R eagentType Parameter] DROP CONS TRAINT [FK _ReagentTy peParamete r_VamcDivi sion] | |
| 1216 | GO | |
| 1217 | ||
| 1218 | IF EXISTS (SELECT * FROM sys. foreign_ke ys WHERE o bject_id = OBJECT_ID (N'[dbo].[ FK_Shipmen t_VamcDivi sion]') AN D parent_o bject_id = OBJECT_ID (N'[dbo].[ Shipment]' )) | |
| 1219 | ALTER TABL E [dbo].[S hipment] D ROP CONSTR AINT [FK_S hipment_Va mcDivision ] | |
| 1220 | GO | |
| 1221 | ||
| 1222 | IF EXISTS (SELECT * FROM sys. foreign_ke ys WHERE o bject_id = OBJECT_ID (N'[dbo].[ FK_Specime nTest_Vamc Division]' ) AND pare nt_object_ id = OBJEC T_ID(N'[db o].[Specim enTest]')) | |
| 1223 | ALTER TABL E [dbo].[S pecimenTes t] DROP CO NSTRAINT [ FK_Specime nTest_Vamc Division] | |
| 1224 | GO | |
| 1225 | ||
| 1226 | IF EXISTS (SELECT * FROM sys. foreign_ke ys WHERE o bject_id = OBJECT_ID (N'[dbo].[ FK_Specime nTestThres hold_VamcD ivision]') AND paren t_object_i d = OBJECT _ID(N'[dbo ].[Specime nTestThres hold]')) | |
| 1227 | ALTER TABL E [dbo].[S pecimenTes tThreshold ] DROP CON STRAINT [F K_Specimen TestThresh old_VamcDi vision] | |
| 1228 | GO | |
| 1229 | ||
| 1230 | IF EXISTS (SELECT * FROM sys. foreign_ke ys WHERE o bject_id = OBJECT_ID (N'[dbo].[ FK_Supply_ VamcDivisi on]') AND parent_obj ect_id = O BJECT_ID(N '[dbo].[Su pply]')) | |
| 1231 | ALTER TABL E [dbo].[S upply] DRO P CONSTRAI NT [FK_Sup ply_VamcDi vision] | |
| 1232 | GO | |
| 1233 | ||
| 1234 | IF EXISTS (SELECT * FROM sys. foreign_ke ys WHERE o bject_id = OBJECT_ID (N'[dbo].[ FK_VBECSLo ck_VamcDiv ision]') A ND parent_ object_id = OBJECT_I D(N'[dbo]. [VbecsLock ]')) | |
| 1235 | ALTER TABL E [dbo].[V becsLock] DROP CONST RAINT [FK_ VBECSLock_ VamcDivisi on] | |
| 1236 | GO | |
| 1237 | ||
| 1238 | IF EXISTS (SELECT * FROM sys. foreign_ke ys WHERE o bject_id = OBJECT_ID (N'[dbo].[ FK_VbecsUs erDivision Role_VamcD ivision]') AND paren t_object_i d = OBJECT _ID(N'[dbo ].[VbecsUs erDivision Role]')) | |
| 1239 | ALTER TABL E [dbo].[V becsUserDi visionRole ] DROP CON STRAINT [F K_VbecsUse rDivisionR ole_VamcDi vision] | |
| 1240 | GO | |
| 1241 | ||
| 1242 | IF EXISTS (SELECT * FROM sys. foreign_ke ys WHERE o bject_id = OBJECT_ID (N'[dbo].[ FK_Workloa dEvent_Vam cDivision] ') AND par ent_object _id = OBJE CT_ID(N'[d bo].[Workl oadEvent]' )) | |
| 1243 | ALTER TABL E [dbo].[W orkloadEve nt] DROP C ONSTRAINT [FK_Worklo adEvent_Va mcDivision ] | |
| 1244 | GO | |
| 1245 | ||
| 1246 | IF EXISTS (SELECT * FROM sys. foreign_ke ys WHERE o bject_id = OBJECT_ID (N'[dbo].[ FK_Patient Transfusio nRequireme nt_CreateD ivision]') AND paren t_object_i d = OBJECT _ID(N'[dbo ].[Patient Transfusio nRequireme nt]')) | |
| 1247 | ALTER TABL E [dbo].[P atientTran sfusionReq uirement] DROP CONST RAINT [FK_ PatientTra nsfusionRe quirement_ CreateDivi sion] | |
| 1248 | GO | |
| 1249 | ||
| 1250 | IF EXISTS (SELECT * FROM sys. foreign_ke ys WHERE o bject_id = OBJECT_ID (N'[dbo].[ FK_Patient Transfusio nRequireme nt_Inactiv ateDivisio n]') AND p arent_obje ct_id = OB JECT_ID(N' [dbo].[Pat ientTransf usionRequi rement]')) | |
| 1251 | ALTER TABL E [dbo].[P atientTran sfusionReq uirement] DROP CONST RAINT [FK_ PatientTra nsfusionRe quirement_ Inactivate Division] | |
| 1252 | GO | |
| 1253 | ||
| 1254 | IF EXISTS (SELECT * FROM sys. foreign_ke ys WHERE o bject_id = OBJECT_ID (N'[dbo].[ FK_Workloa dProcess_V amcDivisio n]') AND p arent_obje ct_id = OB JECT_ID(N' [dbo].[Wor kloadProce ss]')) | |
| 1255 | ALTER TABL E [dbo].[W orkloadPro cess] DROP CONSTRAIN T [FK_Work loadProces s_VamcDivi sion] | |
| 1256 | GO | |
| 1257 | ||
| 1258 | IF EXISTS (SELECT * FROM sys. foreign_ke ys WHERE o bject_id = OBJECT_ID (N'[dbo].[ FK_Excepti onPatientA ntigenDisc repancy_Va mcDivision ]') AND pa rent_objec t_id = OBJ ECT_ID(N'[ dbo].[Exce ptionPatie ntAntigenD iscrepancy ]')) | |
| 1259 | ALTER TABL E [dbo].[E xceptionPa tientAntig enDiscrepa ncy] DROP CONSTRAINT [FK_Excep tionPatien tAntigenDi screpancy_ VamcDivisi on] | |
| 1260 | GO | |
| 1261 | ||
| 1262 | IF EXISTS (SELECT * FROM sys. foreign_ke ys WHERE o bject_id = OBJECT_ID (N'[dbo].[ FK_Excepti onReflexTe st_VamcDiv ision]') A ND parent_ object_id = OBJECT_I D(N'[dbo]. [Exception ReflexTest ]')) | |
| 1263 | ALTER TABL E [dbo].[E xceptionRe flexTest] DROP CONST RAINT [FK_ ExceptionR eflexTest_ VamcDivisi on] | |
| 1264 | GO | |
| 1265 | ||
| 1266 | DROP TRIGG ER dbo.trM irrorVamcD ivision | |
| 1267 | GO | |
| 1268 | ||
| 1269 | ||
| 1270 | /********* ********** ********** ********** ******* | |
| 1271 | Create the new Va mcDivision table | |
| 1272 | ********** ********** ********** ********** ******/ | |
| 1273 | DROP TABLE dbo.VamcD ivision | |
| 1274 | GO | |
| 1275 | ||
| 1276 | CREATE TAB LE dbo.Vam cDivision ( | |
| 1277 | Di visionCode char (5) COLLATE SQ L_Latin1_G eneral_CP1 _CI_AS NOT NULL, | |
| 1278 | Di visionGuid uniqueide ntifier NO T NULL , | |
| 1279 | Di visionName varchar ( 50) COLLAT E SQL_Lati n1_General _CP1_CI_AS NOT NULL, | |
| 1280 | Se rviceTypeI ndicator b it NOT NUL L , | |
| 1281 | Ic cbbaRegist rationNumb er char (5 ) COLLATE SQL_Latin1 _General_C P1_CI_AS N ULL, | |
| 1282 | El ectronicCr ossmatchIn dicator bi t NULL, | |
| 1283 | Fa cilityGuid uniqueide ntifier NU LL, | |
| 1284 | Lo calSupplie rGuid uniq ueidentifi er NULL, | |
| 1285 | An tibodyScre enDisplayC ode int NU LL, | |
| 1286 | Ma ximumSpeci menExpirat ionDays sm allint NUL L, | |
| 1287 | Au tomatedIns trumentInd icator bit NULL, | |
| 1288 | La belPrinter UseIndicat or bit NOT NULL, | |
| 1289 | La belPrinter ComPortNum ber tinyin t NULL, | |
| 1290 | La belPrinter IPAddress varchar (1 5) COLLATE SQL_Latin 1_General_ CP1_CI_AS NULL, | |
| 1291 | La belPrinter TcpPortNum ber int NU LL, | |
| 1292 | Ti meZoneId c har (1) CO LLATE SQL_ Latin1_Gen eral_CP1_C I_AS NOT N ULL, | |
| 1293 | Da ylightSavi ngsTypeId smallint N OT NULL, | |
| 1294 | Pr interName varchar(50 ) NULL, | |
| 1295 | Pr interAlert sIndicator bit NOT N ULL, | |
| 1296 | Pr interAlert sPrinterNa me varchar (50) COLL ATE SQL_La tin1_Gener al_CP1_CI_ AS NULL, | |
| 1297 | Pr interOrder AlertTypeC ode char ( 1) COLLATE SQL_Latin 1_General_ CP1_CI_AS NULL, | |
| 1298 | Pr interOrder sNeededHou rs smallin t NULL, | |
| 1299 | Ic onAlertsIn dicator bi t NULL, | |
| 1300 | Ic onOrderAle rtTypeCode char (1) COLLATE SQ L_Latin1_G eneral_CP1 _CI_AS NUL L, | |
| 1301 | Ic onOrdersNe ededHours smallint N ULL, | |
| 1302 | Ic onRefreshR ate int NU LL, | |
| 1303 | Lo ginMessage Text varch ar (510) C OLLATE SQL _Latin1_Ge neral_CP1_ CI_AS NULL , | |
| 1304 | In voiceTempl ateText va rchar (100 0) COLLATE SQL_Latin 1_General_ CP1_CI_AS NOT NULL, | |
| 1305 | Me dicalDirec torName va rchar (30) COLLATE S QL_Latin1_ General_CP 1_CI_AS NU LL, | |
| 1306 | Us aIndicator bit NOT N ULL, | |
| 1307 | Lo ckInactivi tyTimeoutM in int NOT NULL, | |
| 1308 | Ac cessionAre aId int NO T NULL, | |
| 1309 | Da ylightSavi ngsStartDa te datetim e NULL, | |
| 1310 | Da ylightSavi ngsEndDate datetime NULL, | |
| 1311 | Re activityPh aseCode ch ar (1) NOT NULL, | |
| 1312 | Re cordStatus Code char (1) COLLAT E SQL_Lati n1_General _CP1_CI_AS NOT NULL, | |
| 1313 | La belPrinter EndPointId int NULL, | |
| 1314 | La stUpdateDa te datetim e NOT NULL , | |
| 1315 | La stUpdateUs er varchar (30) COLL ATE SQL_La tin1_Gener al_CP1_CI_ AS NOT NUL L, | |
| 1316 | Ro wVersion t imestamp N OT NULL, | |
| 1317 | La stUpdateFu nctionId i nt NOT NUL L | |
| 1318 | ) ON [PRIM ARY] | |
| 1319 | GO | |
| 1320 | ||
| 1321 | ALTER TABL E dbo.Vamc Division W ITH NOCHEC K ADD | |
| 1322 | CO NSTRAINT P K_VamcDivi sion PRIMA RY KEY CL USTERED | |
| 1323 | ( | |
| 1324 | Divi sionCode | |
| 1325 | ) ON [PRIMAR Y] | |
| 1326 | GO | |
| 1327 | ||
| 1328 | ALTER TABL E [dbo].[V amcDivisio n] ADD CO NSTRAINT [ DF_VamcDiv ision_Serv iceTypeInd icator] D EFAULT (1) FOR [Serv iceTypeInd icator] | |
| 1329 | GO | |
| 1330 | ||
| 1331 | ALTER TABL E [dbo].[V amcDivisio n] ADD CO NSTRAINT [ DF_VamcDiv ision_Elec tronicCros smatchIndi cator] DE FAULT (0) FOR [Elect ronicCross matchIndic ator] | |
| 1332 | GO | |
| 1333 | ||
| 1334 | ALTER TABL E [dbo].[V amcDivisio n] ADD CO NSTRAINT [ DF_VamcDiv ision_Time ZoneChange Indicator] DEFAULT (1) FOR [D aylightSav ingsTypeId ] | |
| 1335 | GO | |
| 1336 | ||
| 1337 | ALTER TABL E [dbo].[V amcDivisio n] ADD CO NSTRAINT [ DF_VamcDiv ision_Prin terAlertsI ndicator] DEFAULT ( 0) FOR [Pr interAlert sIndicator ] | |
| 1338 | GO | |
| 1339 | ||
| 1340 | ALTER TABL E [dbo].[V amcDivisio n] ADD CO NSTRAINT [ DF_VamcDiv ision_UsaI ndicator] DEFAULT ( 1) FOR [Us aIndicator ] | |
| 1341 | GO | |
| 1342 | ||
| 1343 | ALTER TABL E [dbo].[V amcDivisio n] ADD CO NSTRAINT [ DF_VamcDiv ision_Reac tivityPhas eCode] DE FAULT ('9' ) FOR [Rea ctivityPha seCode] | |
| 1344 | GO | |
| 1345 | ||
| 1346 | ALTER TABL E [dbo].[V amcDivisio n] ADD CO NSTRAINT [ DF_VamcDiv ision_Last UpdateFunc tionId] D EFAULT (0) FOR [Last UpdateFunc tionId] | |
| 1347 | GO | |
| 1348 | ||
| 1349 | ||
| 1350 | EXEC sys.s p_addexten dedpropert y @name=N' MS_Descrip tion', @va lue=N'Iden tifies an organizati onal unit of a VA Me dical Cent er.' , @le vel0type=N 'SCHEMA',@ level0name =N'dbo', @ level1type =N'TABLE', @level1nam e=N'VamcDi vision', @ level2type =N'COLUMN' ,@level2na me=N'Divis ionCode' | |
| 1351 | GO | |
| 1352 | ||
| 1353 | EXEC sys.s p_addexten dedpropert y @name=N' MS_Descrip tion', @va lue=N'Iden tifies a u nique inst ance of an organizat ional unit of a VA M edical Cen ter.' , @l evel0type= N'SCHEMA', @level0nam e=N'dbo', @level1typ e=N'TABLE' ,@level1na me=N'VamcD ivision', @level2typ e=N'COLUMN ',@level2n ame=N'Divi sionGuid' | |
| 1354 | GO | |
| 1355 | ||
| 1356 | EXEC sys.s p_addexten dedpropert y @name=N' MS_Descrip tion', @va lue=N'The name of a VA Medical Center or ganization al unit.' , @level0t ype=N'SCHE MA',@level 0name=N'db o', @level 1type=N'TA BLE',@leve l1name=N'V amcDivisio n', @level 2type=N'CO LUMN',@lev el2name=N' DivisionNa me' | |
| 1357 | GO | |
| 1358 | ||
| 1359 | EXEC sys.s p_addexten dedpropert y @name=N' MS_Descrip tion', @va lue=N'Indi cates whet her the VA MC divisio n is a sta ndard "ful l service" configure d facility .' , @leve l0type=N'S CHEMA',@le vel0name=N 'dbo', @le vel1type=N 'TABLE',@l evel1name= N'VamcDivi sion', @le vel2type=N 'COLUMN',@ level2name =N'Service TypeIndica tor' | |
| 1360 | GO | |
| 1361 | ||
| 1362 | EXEC sys.s p_addexten dedpropert y @name=N' MS_Descrip tion', @va lue=N'Iden tifies the division as an orig inal blood collectio n facility .' , @leve l0type=N'S CHEMA',@le vel0name=N 'dbo', @le vel1type=N 'TABLE',@l evel1name= N'VamcDivi sion', @le vel2type=N 'COLUMN',@ level2name =N'IccbbaR egistratio nNumber' | |
| 1363 | GO | |
| 1364 | ||
| 1365 | EXEC sys.s p_addexten dedpropert y @name=N' MS_Descrip tion', @va lue=N'Indi cates whet her the VA MC divisio n has enab led electr onic cross matching.' , @level0 type=N'SCH EMA',@leve l0name=N'd bo', @leve l1type=N'T ABLE',@lev el1name=N' VamcDivisi on', @leve l2type=N'C OLUMN',@le vel2name=N 'Electroni cCrossmatc hIndicator ' | |
| 1366 | GO | |
| 1367 | ||
| 1368 | EXEC sys.s p_addexten dedpropert y @name=N' MS_Descrip tion', @va lue=N'Link s to the d ivision''s record in the Facil ity table to enable getting th e address for the di vision.' , @level0ty pe=N'SCHEM A',@level0 name=N'dbo ', @level1 type=N'TAB LE',@level 1name=N'Va mcDivision ', @level2 type=N'COL UMN',@leve l2name=N'F acilityGui d' | |
| 1369 | GO | |
| 1370 | ||
| 1371 | EXEC sys.s p_addexten dedpropert y @name=N' MS_Descrip tion', @va lue=N'Link s to the d ivision''s record in the Local Supplier t able to en able getti ng the add ress for t he divisio n.' , @lev el0type=N' SCHEMA',@l evel0name= N'dbo', @l evel1type= N'TABLE',@ level1name =N'VamcDiv ision', @l evel2type= N'COLUMN', @level2nam e=N'LocalS upplierGui d' | |
| 1372 | GO | |
| 1373 | ||
| 1374 | EXEC sys.s p_addexten dedpropert y @name=N' MS_Descrip tion', @va lue=N'Iden tifies a s pecific di splay opti on for ant ibody scre en tests.' , @level0 type=N'SCH EMA',@leve l0name=N'd bo', @leve l1type=N'T ABLE',@lev el1name=N' VamcDivisi on', @leve l2type=N'C OLUMN',@le vel2name=N 'AntibodyS creenDispl ayCode' | |
| 1375 | GO | |
| 1376 | ||
| 1377 | EXEC sys.s p_addexten dedpropert y @name=N' MS_Descrip tion', @va lue=N'Indi cates the maximum nu mber of da ys a speci men can ex ist before it expire s for the VAMC divis ion.' , @l evel0type= N'SCHEMA', @level0nam e=N'dbo', @level1typ e=N'TABLE' ,@level1na me=N'VamcD ivision', @level2typ e=N'COLUMN ',@level2n ame=N'Maxi mumSpecime nExpiratio nDays' | |
| 1378 | GO | |
| 1379 | ||
| 1380 | EXEC sys.s p_addexten dedpropert y @name=N' MS_Descrip tion', @va lue=N'Indi cates whet her the VA MC divisio n has enab led automa ted instru ment proce ssing.' , @level0typ e=N'SCHEMA ',@level0n ame=N'dbo' , @level1t ype=N'TABL E',@level1 name=N'Vam cDivision' , @level2t ype=N'COLU MN',@level 2name=N'Au tomatedIns trumentInd icator' | |
| 1381 | GO | |
| 1382 | ||
| 1383 | EXEC sys.s p_addexten dedpropert y @name=N' MS_Descrip tion', @va lue=N'Indi cates whet her the di vision use s a design ated label printer.' , @level0 type=N'SCH EMA',@leve l0name=N'd bo', @leve l1type=N'T ABLE',@lev el1name=N' VamcDivisi on', @leve l2type=N'C OLUMN',@le vel2name=N 'LabelPrin terUseIndi cator' | |
| 1384 | GO | |
| 1385 | ||
| 1386 | EXEC sys.s p_addexten dedpropert y @name=N' MS_Descrip tion', @va lue=N'The standard t ime zone i d for the division.' , @level0 type=N'SCH EMA',@leve l0name=N'd bo', @leve l1type=N'T ABLE',@lev el1name=N' VamcDivisi on', @leve l2type=N'C OLUMN',@le vel2name=N 'TimeZoneI d' | |
| 1387 | GO | |
| 1388 | ||
| 1389 | EXEC sys.s p_addexten dedpropert y @name=N' MS_Descrip tion', @va lue=N'Iden tifies a s pecific op tion for c hanging fr om standar d time to daylight s aving time .' , @leve l0type=N'S CHEMA',@le vel0name=N 'dbo', @le vel1type=N 'TABLE',@l evel1name= N'VamcDivi sion', @le vel2type=N 'COLUMN',@ level2name =N'Dayligh tSavingsTy peId' | |
| 1390 | GO | |
| 1391 | ||
| 1392 | EXEC sys.s p_addexten dedpropert y @name=N' MS_Descrip tion', @va lue=N'Defa ult report printer n ame for th e division .' , @leve l0type=N'S CHEMA',@le vel0name=N 'dbo', @le vel1type=N 'TABLE',@l evel1name= N'VamcDivi sion', @le vel2type=N 'COLUMN',@ level2name =N'Printer Name' | |
| 1393 | GO | |
| 1394 | ||
| 1395 | EXEC sys.s p_addexten dedpropert y @name=N' MS_Descrip tion', @va lue=N'Indi cates whet her the di vision has activated printer a lerts for incoming o rders.' , @level0typ e=N'SCHEMA ',@level0n ame=N'dbo' , @level1t ype=N'TABL E',@level1 name=N'Vam cDivision' , @level2t ype=N'COLU MN',@level 2name=N'Pr interAlert sIndicator ' | |
| 1396 | GO | |
| 1397 | ||
| 1398 | EXEC sys.s p_addexten dedpropert y @name=N' MS_Descrip tion', @va lue=N'The name of th e printer that will print orde r alerts.' , @level0 type=N'SCH EMA',@leve l0name=N'd bo', @leve l1type=N'T ABLE',@lev el1name=N' VamcDivisi on', @leve l2type=N'C OLUMN',@le vel2name=N 'PrinterAl ertsPrinte rName' | |
| 1399 | GO | |
| 1400 | ||
| 1401 | EXEC sys.s p_addexten dedpropert y @name=N' MS_Descrip tion', @va lue=N'Iden tifies a t ype of ord er alert.' , @level0 type=N'SCH EMA',@leve l0name=N'd bo', @leve l1type=N'T ABLE',@lev el1name=N' VamcDivisi on', @leve l2type=N'C OLUMN',@le vel2name=N 'PrinterOr derAlertTy peCode' | |
| 1402 | GO | |
| 1403 | ||
| 1404 | EXEC sys.s p_addexten dedpropert y @name=N' MS_Descrip tion', @va lue=N'Iden tifies a t ime interv al, in hou rs, in whi ch orders received b y VBECS ne ed to be f illed.' , @level0typ e=N'SCHEMA ',@level0n ame=N'dbo' , @level1t ype=N'TABL E',@level1 name=N'Vam cDivision' , @level2t ype=N'COLU MN',@level 2name=N'Pr interOrder sNeededHou rs' | |
| 1405 | GO | |
| 1406 | ||
| 1407 | EXEC sys.s p_addexten dedpropert y @name=N' MS_Descrip tion', @va lue=N'Indi cates whet her the di vision has activated an icon f or order a lerts.' , @level0typ e=N'SCHEMA ',@level0n ame=N'dbo' , @level1t ype=N'TABL E',@level1 name=N'Vam cDivision' , @level2t ype=N'COLU MN',@level 2name=N'Ic onAlertsIn dicator' | |
| 1408 | GO | |
| 1409 | ||
| 1410 | EXEC sys.s p_addexten dedpropert y @name=N' MS_Descrip tion', @va lue=N'Iden tifies a t ype of ord er alert.' , @level0 type=N'SCH EMA',@leve l0name=N'd bo', @leve l1type=N'T ABLE',@lev el1name=N' VamcDivisi on', @leve l2type=N'C OLUMN',@le vel2name=N 'IconOrder AlertTypeC ode' | |
| 1411 | GO | |
| 1412 | ||
| 1413 | EXEC sys.s p_addexten dedpropert y @name=N' MS_Descrip tion', @va lue=N'Iden tifies a t ime interv al, in hou rs, in whi ch orders received b y VBECS ne ed to be f illed.' , @level0typ e=N'SCHEMA ',@level0n ame=N'dbo' , @level1t ype=N'TABL E',@level1 name=N'Vam cDivision' , @level2t ype=N'COLU MN',@level 2name=N'Ic onOrdersNe ededHours' | |
| 1414 | GO | |
| 1415 | ||
| 1416 | EXEC sys.s p_addexten dedpropert y @name=N' MS_Descrip tion', @va lue=N'The frequency, in second s, with wh ich the sy stem will check for order upda tes.' , @l evel0type= N'SCHEMA', @level0nam e=N'dbo', @level1typ e=N'TABLE' ,@level1na me=N'VamcD ivision', @level2typ e=N'COLUMN ',@level2n ame=N'Icon RefreshRat e' | |
| 1417 | GO | |
| 1418 | ||
| 1419 | EXEC sys.s p_addexten dedpropert y @name=N' MS_Descrip tion', @va lue=N'The text of th e message to be disp layed at l ogin.' , @ level0type =N'SCHEMA' ,@level0na me=N'dbo', @level1ty pe=N'TABLE ',@level1n ame=N'Vamc Division', @level2ty pe=N'COLUM N',@level2 name=N'Log inMessageT ext' | |
| 1420 | GO | |
| 1421 | ||
| 1422 | EXEC sys.s p_addexten dedpropert y @name=N' MS_Descrip tion', @va lue=N'The detailed t ext for a VBECS ship ping invoi ce templat e.' , @lev el0type=N' SCHEMA',@l evel0name= N'dbo', @l evel1type= N'TABLE',@ level1name =N'VamcDiv ision', @l evel2type= N'COLUMN', @level2nam e=N'Invoic eTemplateT ext' | |
| 1423 | GO | |
| 1424 | ||
| 1425 | EXEC sys.s p_addexten dedpropert y @name=N' MS_Descrip tion', @va lue=N'The name of a blood bank medical d irector.' , @level0t ype=N'SCHE MA',@level 0name=N'db o', @level 1type=N'TA BLE',@leve l1name=N'V amcDivisio n', @level 2type=N'CO LUMN',@lev el2name=N' MedicalDir ectorName' | |
| 1426 | GO | |
| 1427 | ||
| 1428 | EXEC sys.s p_addexten dedpropert y @name=N' MS_Descrip tion', @va lue=N'Indi cates that the divis ion is loc ated in th e USA.' , @level0typ e=N'SCHEMA ',@level0n ame=N'dbo' , @level1t ype=N'TABL E',@level1 name=N'Vam cDivision' , @level2t ype=N'COLU MN',@level 2name=N'Us aIndicator ' | |
| 1429 | GO | |
| 1430 | ||
| 1431 | EXEC sys.s p_addexten dedpropert y @name=N' MS_Descrip tion', @va lue=N'The interval o f inactivi ty, in min utes, afte r which th e system w ill lock a current f unction.' , @level0t ype=N'SCHE MA',@level 0name=N'db o', @level 1type=N'TA BLE',@leve l1name=N'V amcDivisio n', @level 2type=N'CO LUMN',@lev el2name=N' LockInacti vityTimeou tMin' | |
| 1432 | GO | |
| 1433 | ||
| 1434 | EXEC sys.s p_addexten dedpropert y @name=N' MS_Descrip tion', @va lue=N'Iden tifies the Lab acces sion area for the di vision.' , @level0ty pe=N'SCHEM A',@level0 name=N'dbo ', @level1 type=N'TAB LE',@level 1name=N'Va mcDivision ', @level2 type=N'COL UMN',@leve l2name=N'A ccessionAr eaId' | |
| 1435 | GO | |
| 1436 | ||
| 1437 | EXEC sys.s p_addexten dedpropert y @name=N' MS_Descrip tion', @va lue=N'The date dayli ght saving s time sta rts.' , @l evel0type= N'SCHEMA', @level0nam e=N'dbo', @level1typ e=N'TABLE' ,@level1na me=N'VamcD ivision', @level2typ e=N'COLUMN ',@level2n ame=N'Dayl ightSaving sStartDate ' | |
| 1438 | GO | |
| 1439 | ||
| 1440 | EXEC sys.s p_addexten dedpropert y @name=N' MS_Descrip tion', @va lue=N'The date dayli ght saving s time end s.' , @lev el0type=N' SCHEMA',@l evel0name= N'dbo', @l evel1type= N'TABLE',@ level1name =N'VamcDiv ision', @l evel2type= N'COLUMN', @level2nam e=N'Daylig htSavingsE ndDate' | |
| 1441 | GO | |
| 1442 | ||
| 1443 | EXEC sys.s p_addexten dedpropert y @name=N' MS_Descrip tion', @va lue=N'Iden tifies a s pecific re activity p hase for t esting a r eagent.' , @level0ty pe=N'SCHEM A',@level0 name=N'dbo ', @level1 type=N'TAB LE',@level 1name=N'Va mcDivision ', @level2 type=N'COL UMN',@leve l2name=N'R eactivityP haseCode' | |
| 1444 | GO | |
| 1445 | ||
| 1446 | EXEC sys.s p_addexten dedpropert y @name=N' MS_Descrip tion', @va lue=N'Indi cates the state of t he associa ted record .' , @leve l0type=N'S CHEMA',@le vel0name=N 'dbo', @le vel1type=N 'TABLE',@l evel1name= N'VamcDivi sion', @le vel2type=N 'COLUMN',@ level2name =N'RecordS tatusCode' | |
| 1447 | GO | |
| 1448 | ||
| 1449 | EXEC sys.s p_addexten dedpropert y @name=N' MS_Descrip tion', @va lue=N'Indi cates the Label Prin ter End Po int.' , @l evel0type= N'SCHEMA', @level0nam e=N'dbo', @level1typ e=N'TABLE' ,@level1na me=N'VamcD ivision', @level2typ e=N'COLUMN ',@level2n ame=N'Labe lPrinterEn dPointId' | |
| 1450 | GO | |
| 1451 | ||
| 1452 | EXEC sys.s p_addexten dedpropert y @name=N' MS_Descrip tion', @va lue=N'The date and t ime the re cord was l ast update d.' , @lev el0type=N' SCHEMA',@l evel0name= N'dbo', @l evel1type= N'TABLE',@ level1name =N'VamcDiv ision', @l evel2type= N'COLUMN', @level2nam e=N'LastUp dateDate' | |
| 1453 | GO | |
| 1454 | ||
| 1455 | EXEC sys.s p_addexten dedpropert y @name=N' MS_Descrip tion', @va lue=N'The logon id o f the user who perfo rmed the l ast update .' , @leve l0type=N'S CHEMA',@le vel0name=N 'dbo', @le vel1type=N 'TABLE',@l evel1name= N'VamcDivi sion', @le vel2type=N 'COLUMN',@ level2name =N'LastUpd ateUser' | |
| 1456 | GO | |
| 1457 | ||
| 1458 | EXEC sys.s p_addexten dedpropert y @name=N' MS_Descrip tion', @va lue=N'This is used i n the C# c ode as a m echanism f or version -stamping table rows , which pr ovides a m eans for c oncurrency control.' , @level0 type=N'SCH EMA',@leve l0name=N'd bo', @leve l1type=N'T ABLE',@lev el1name=N' VamcDivisi on', @leve l2type=N'C OLUMN',@le vel2name=N 'RowVersio n' | |
| 1459 | GO | |
| 1460 | ||
| 1461 | EXEC sys.s p_addexten dedpropert y @name=N' MS_Descrip tion', @va lue=N'The identifier of the VB ECS functi on that pe rformed th e last upd ate.' , @l evel0type= N'SCHEMA', @level0nam e=N'dbo', @level1typ e=N'TABLE' ,@level1na me=N'VamcD ivision', @level2typ e=N'COLUMN ',@level2n ame=N'Last UpdateFunc tionId' | |
| 1462 | GO | |
| 1463 | ||
| 1464 | ||
| 1465 | ||
| 1466 | /********* ********** ********** ********** ******* | |
| 1467 | Save th e temp Vam cDivision data to th e | |
| 1468 | new Vam cDivision table | |
| 1469 | ********** ********** ********** ********** ******/ | |
| 1470 | INSERT INT O dbo.Vamc Division | |
| 1471 | (D ivisionCod e, Divisio nGuid, Div isionName, ServiceTy peIndicato r, IccbbaR egistratio nNumber, E lectronicC rossmatchI ndicator, | |
| 1472 | F acilityGui d, LocalSu pplierGuid , Antibody ScreenDisp layCode, M aximumSpec imenExpira tionDays, AutomatedI nstrumentI ndicator, LabelPrint erUseIndic ator, Labe lPrinterCo mPortNumbe r, LabelPr interIPAdd ress, Labe lPrinterTc pPortNumbe r, | |
| 1473 | T imeZoneId, DaylightS avingsType Id, Printe rName, Pri nterAlerts Indicator, PrinterAl ertsPrinte rName, Pri nterOrderA lertTypeCo de, Printe rOrdersNee dedHours, IconAlerts Indicator, IconOrder AlertTypeC ode, IconO rdersNeede dHours, | |
| 1474 | I conRefresh Rate, Logi nMessageTe xt, Invoic eTemplateT ext, Medic alDirector Name, UsaI ndicator, LockInacti vityTimeou tMin, Acce ssionAreaI d, | |
| 1475 | D aylightSav ingsStartD ate, Dayli ghtSavings EndDate, R eactivityP haseCode, RecordStat usCode, La stUpdateDa te, LastUp dateUser, LastUpdate FunctionId ) | |
| 1476 | SELECT D ivisionCod e, Divisio nGuid, Div isionName, ServiceTy peIndicato r, IccbbaR egistratio nNumber, E lectronicC rossmatchI ndicator, | |
| 1477 | F acilityGui d, LocalSu pplierGuid , Antibody ScreenDisp layCode, M aximumSpec imenExpira tionDays, AutomatedI nstrumentI ndicator, LabelPrint erUseIndic ator, Labe lPrinterCo mPortNumbe r, LabelPr interIPAdd ress, Labe lPrinterTc pPortNumbe r, | |
| 1478 | T imeZoneId, DaylightS avingsType Id, Printe rName, Pri nterAlerts Indicator, PrinterAl ertsPrinte rName, Pri nterOrderA lertTypeCo de, Printe rOrdersNee dedHours, IconAlerts Indicator, IconOrder AlertTypeC ode, IconO rdersNeede dHours, | |
| 1479 | I conRefresh Rate, Logi nMessageTe xt, Invoic eTemplateT ext, Medic alDirector Name, UsaI ndicator, LockInacti vityTimeou tMin, Acce ssionAreaI d, | |
| 1480 | D aylightSav ingsStartD ate, Dayli ghtSavings EndDate, R eactivityP haseCode, RecordStat usCode, La stUpdateDa te, LastUp dateUser, LastUpdate FunctionId | |
| 1481 | FROM #Va mcDivision | |
| 1482 | GO | |
| 1483 | ||
| 1484 | /********* ********** ********** ********** ******* | |
| 1485 | Drop th e temp tab le | |
| 1486 | ********** ********** ********** ********** ******/ | |
| 1487 | DROP TABLE #VamcDivi sion | |
| 1488 | GO | |
| 1489 | ||
| 1490 | /********* ********** ********** ********** ******* | |
| 1491 | Add the indexes t o the Vamc Division t able | |
| 1492 | ********** ********** ********** ********** ******/ | |
| 1493 | CREATE NON CLUSTERED INDEX [IX_ VamcDivisi on_Antibod yScreenDis playCode] ON [dbo].[ VamcDivisi on] ([Anti bodyScreen DisplayCod e]) ON [PR IMARY] | |
| 1494 | GO | |
| 1495 | ||
| 1496 | CREATE NON CLUSTERED INDEX [IX_ VamcDivisi on_Dayligh tSavingsTy peId] ON [ dbo].[Vamc Division] ([Daylight SavingsTyp eId]) ON [ PRIMARY] | |
| 1497 | GO | |
| 1498 | ||
| 1499 | CREATE NON CLUSTERED INDEX [IX_ VamcDivisi on_Facilit yGuid] ON [dbo].[Vam cDivision] ([Facilit yGuid]) ON [PRIMARY] | |
| 1500 | GO | |
| 1501 | ||
| 1502 | CREATE NON CLUSTERED INDEX [IX_ VamcDivisi on_IconOrd erAlertTyp eCode] ON [dbo].[Vam cDivision] ([IconOrd erAlertTyp eCode]) ON [PRIMARY] | |
| 1503 | GO | |
| 1504 | ||
| 1505 | CREATE NON CLUSTERED INDEX [IX_ VamcDivisi on_Printer OrderAlert TypeCode] ON [dbo].[ VamcDivisi on] ([Prin terOrderAl ertTypeCod e]) ON [PR IMARY] | |
| 1506 | GO | |
| 1507 | ||
| 1508 | CREATE NON CLUSTERED INDEX [IX_ VamcDivisi on_TimeZon eId] ON [d bo].[VamcD ivision] ( [TimeZoneI d]) ON [PR IMARY] | |
| 1509 | GO | |
| 1510 | ||
| 1511 | CREATE NON CLUSTERED INDEX [IX_ VamcDivisi on_Reactiv ityPhaseCo de] ON [db o].[VamcDi vision] ([ Reactivity PhaseCode] ) ON [PRIM ARY] | |
| 1512 | GO | |
| 1513 | ||
| 1514 | ||
| 1515 | /********* ********** ********** ********** ******* | |
| 1516 | Add the foreign k eys to the VamcDivis ion table | |
| 1517 | ********** ********** ********** ********** ******/ | |
| 1518 | ALTER TABL E dbo.Vamc Division A DD CONSTRA INT | |
| 1519 | FK _VamcDivis ion_Antibo dyScreenDi splay FORE IGN KEY | |
| 1520 | ( | |
| 1521 | Anti bodyScreen DisplayCod e | |
| 1522 | ) REFERENCES dbo.Antib odyScreenD isplay | |
| 1523 | ( | |
| 1524 | Anti bodyScreen DisplayCod e | |
| 1525 | ) | |
| 1526 | GO | |
| 1527 | ALTER TABL E dbo.Vamc Division A DD CONSTRA INT | |
| 1528 | FK _VamcDivis ion_TimeZo ne FOREIGN KEY | |
| 1529 | ( | |
| 1530 | Time ZoneId | |
| 1531 | ) REFERENCES dbo.TimeZ one | |
| 1532 | ( | |
| 1533 | Time ZoneId | |
| 1534 | ) | |
| 1535 | GO | |
| 1536 | ALTER TABL E dbo.Vamc Division A DD CONSTRA INT | |
| 1537 | [F K_VamcDivi sion_Dayli ghtSavings Type ] FOR EIGN KEY | |
| 1538 | ( | |
| 1539 | Dayl ightSaving sTypeId | |
| 1540 | ) REFERENCES dbo.[Dayl ightSaving sType ] | |
| 1541 | ( | |
| 1542 | Dayl ightSaving sTypeId | |
| 1543 | ) | |
| 1544 | GO | |
| 1545 | ALTER TABL E dbo.Vamc Division A DD CONSTRA INT | |
| 1546 | FK _VamcDivis ion_Printe rOrderAler tType FORE IGN KEY | |
| 1547 | ( | |
| 1548 | Prin terOrderAl ertTypeCod e | |
| 1549 | ) REFERENCES dbo.Order AlertType | |
| 1550 | ( | |
| 1551 | Orde rAlertType Code | |
| 1552 | ) | |
| 1553 | GO | |
| 1554 | ALTER TABL E dbo.Vamc Division A DD CONSTRA INT | |
| 1555 | FK _VamcDivis ion_IconOr derAlertTy pe FOREIGN KEY | |
| 1556 | ( | |
| 1557 | Icon OrderAlert TypeCode | |
| 1558 | ) REFERENCES dbo.Order AlertType | |
| 1559 | ( | |
| 1560 | Orde rAlertType Code | |
| 1561 | ) | |
| 1562 | GO | |
| 1563 | ALTER TABL E dbo.Vamc Division A DD CONSTRA INT | |
| 1564 | FK _VamcDivis ion_Facili ty FOREIGN KEY | |
| 1565 | ( | |
| 1566 | Faci lityGuid | |
| 1567 | ) REFERENCES dbo.Facil ity | |
| 1568 | ( | |
| 1569 | Faci lityGuid | |
| 1570 | ) | |
| 1571 | GO | |
| 1572 | ||
| 1573 | ALTER TABL E [dbo].[B loodUnitMo dification ] ADD CONS TRAINT [FK _BloodUnit Modificati on_VamcDiv ision] FOR EIGN KEY ( [DivisionC ode]) REFE RENCES [db o].[VamcDi vision] ([ DivisionCo de]) | |
| 1574 | GO | |
| 1575 | ||
| 1576 | ALTER TABL E [dbo].[E xceptionEl ectronicTr ansfusion] ADD CONST RAINT [FK_ ExceptionE lectronicT ransfusion _VamcDivis ion] FOREI GN KEY ([D ivisionCod e]) REFERE NCES [dbo] .[VamcDivi sion] ([Di visionCode ]) | |
| 1577 | GO | |
| 1578 | ||
| 1579 | ALTER TABL E [dbo].[P atientTran sfusionReq uirement] ADD CONSTR AINT [FK_P atientTran sfusionReq uirement_C reateDivis ion] FOREI GN KEY ([C reateDivis ionCode]) REFERENCES [dbo].[Va mcDivision ] ([Divisi onCode]) | |
| 1580 | GO | |
| 1581 | ||
| 1582 | ALTER TABL E [dbo].[P atientTran sfusionReq uirement] ADD CONSTR AINT [FK_P atientTran sfusionReq uirement_I nactivateD ivision] F OREIGN KEY ([Inactiv ateDivisio nCode]) RE FERENCES [ dbo].[Vamc Division] ([Division Code]) | |
| 1583 | GO | |
| 1584 | ||
| 1585 | ALTER TABL E [dbo].[P endingBloo dUnitTest] WITH NOCH ECK ADD CO NSTRAINT [ FK_Pending BloodUnitT est_VamcDi vision] FO REIGN KEY ([Division Code]) REF ERENCES [d bo].[VamcD ivision] ( [DivisionC ode]) | |
| 1586 | GO | |
| 1587 | ||
| 1588 | ALTER TABL E [dbo].[P endingSpec imenTest] WITH NOCHE CK ADD CON STRAINT [F K_PendingS pecimenTes t_VamcDivi sion] FORE IGN KEY ([ DivisionCo de]) REFER ENCES [dbo ].[VamcDiv ision] ([D ivisionCod e]) | |
| 1589 | GO | |
| 1590 | ||
| 1591 | ALTER TABL E [dbo].[W orkloadPro cess] WITH NOCHECK A DD CONSTRA INT [FK_Wo rkloadProc ess_VamcDi vision] FO REIGN KEY ([Division Code]) REF ERENCES [d bo].[VamcD ivision] ( [DivisionC ode]) | |
| 1592 | GO | |
| 1593 | ||
| 1594 | ||
| 1595 | --Create S ynonyms | |
| 1596 | IF EXISTS (SELECT * FROM sys. synonyms W HERE name = N'SynMir ror_VamcDi vision') | |
| 1597 | DROP SYNON YM dbo.[Sy nMirror_Va mcDivision ] | |
| 1598 | GO | |
| 1599 | ||
| 1600 | CREATE SYN ONYM [dbo] .[SynMirro r_VamcDivi sion] FOR [@DBNAME@_ MIRROR].[d bo].[VamcD ivision] | |
| 1601 | GO | |
| 1602 | ||
| 1603 | IF EXISTS (SELECT * FROM sys. synonyms W HERE name = N'SynMir ror_V_Vamc Division') | |
| 1604 | DROP SYNON YM dbo.[Sy nMirror_V_ VamcDivisi on] | |
| 1605 | GO | |
| 1606 | ||
| 1607 | CREATE SYN ONYM [dbo] .[SynMirro r_V_VamcDi vision] FO R [@DBNAME @_MIRROR]. [dbo].[V_V amcDivisio n] | |
| 1608 | GO | |
| 1609 | ||
| 1610 | ||
| 1611 | --Create T rigger | |
| 1612 | ||
| 1613 | if exists (select * from dbo.s ysobjects where id = object_id (N'[dbo].[ trMirrorVa mcDivision ]') and OB JECTPROPER TY(id, N'I sTrigger') = 1) | |
| 1614 | drop trigg er [dbo].[ trMirrorVa mcDivision ] | |
| 1615 | GO | |
| 1616 | ||
| 1617 | SET ANSI_N ULLS ON | |
| 1618 | GO | |
| 1619 | ||
| 1620 | SET QUOTED _IDENTIFIE R ON | |
| 1621 | GO | |
| 1622 | ||
| 1623 | CREATE TRI GGER [dbo] .[trMirror VamcDivisi on] | |
| 1624 | ON [dbo].[ VamcDivisi on] | |
| 1625 | FOR UPDATE | |
| 1626 | AS | |
| 1627 | BEGIN | |
| 1628 | IN SERT INTO [dbo].[Syn Mirror_Vam cDivision] | |
| 1629 | SE LECT *, GE TUTCDATE() | |
| 1630 | FR OM DELETED | |
| 1631 | END | |
| 1632 | ||
| 1633 | ||
| 1634 | ||
| 1635 | GO | |
| 1636 | ||
| 1637 | ||
| 1638 | ||
| 1639 | /********* ********** ********** ********** ******* | |
| 1640 | Add the foreign k eys that r eference | |
| 1641 | the Vam cDivision table | |
| 1642 | ********** ********** ********** ********** ******/ | |
| 1643 | ALTER TABL E dbo.Anti bodyParame ter WITH N OCHECK ADD CONSTRAIN T | |
| 1644 | FK _AntibodyP arameter_V amcDivisio n FOREIGN KEY | |
| 1645 | ( | |
| 1646 | Divi sionCode | |
| 1647 | ) REFERENCES dbo.VamcD ivision | |
| 1648 | ( | |
| 1649 | Divi sionCode | |
| 1650 | ) | |
| 1651 | GO | |
| 1652 | ||
| 1653 | ALTER TABL E dbo.Anti seraWorkli st WITH NO CHECK ADD CONSTRAINT | |
| 1654 | FK _AntiseraW orklist_Va mcDivision FOREIGN K EY | |
| 1655 | ( | |
| 1656 | Divi sionCode | |
| 1657 | ) REFERENCES dbo.VamcD ivision | |
| 1658 | ( | |
| 1659 | Divi sionCode | |
| 1660 | ) | |
| 1661 | GO | |
| 1662 | ||
| 1663 | ALTER TABL E dbo.Asso ciatedInst itution AD D CONSTRAI NT | |
| 1664 | FK _Associate dInstituti on_VamcDiv ision FORE IGN KEY | |
| 1665 | ( | |
| 1666 | Divi sionCode | |
| 1667 | ) REFERENCES dbo.VamcD ivision | |
| 1668 | ( | |
| 1669 | Divi sionCode | |
| 1670 | ) | |
| 1671 | GO | |
| 1672 | ||
| 1673 | ALTER TABL E dbo.Bloo dUnit WITH NOCHECK A DD CONSTRA INT | |
| 1674 | FK _BloodUnit _VamcDivis ion FOREIG N KEY | |
| 1675 | ( | |
| 1676 | Divi sionCode | |
| 1677 | ) REFERENCES dbo.VamcD ivision | |
| 1678 | ( | |
| 1679 | Divi sionCode | |
| 1680 | ) | |
| 1681 | GO | |
| 1682 | ||
| 1683 | ALTER TABL E dbo.Bloo dUnitAntig en WITH NO CHECK ADD CONSTRAINT | |
| 1684 | FK _BloodUnit Antigen_Va mcDivision FOREIGN K EY | |
| 1685 | ( | |
| 1686 | Divi sionCode | |
| 1687 | ) REFERENCES dbo.VamcD ivision | |
| 1688 | ( | |
| 1689 | Divi sionCode | |
| 1690 | ) | |
| 1691 | GO | |
| 1692 | ||
| 1693 | ALTER TABL E dbo.Bloo dUnitTest WITH NOCHE CK ADD CON STRAINT | |
| 1694 | FK _BloodUnit Test_VamcD ivision FO REIGN KEY | |
| 1695 | ( | |
| 1696 | Divi sionCode | |
| 1697 | ) REFERENCES dbo.VamcD ivision | |
| 1698 | ( | |
| 1699 | Divi sionCode | |
| 1700 | ) | |
| 1701 | GO | |
| 1702 | ||
| 1703 | ALTER TABL E dbo.Cann edComment WITH NOCHE CK ADD CON STRAINT | |
| 1704 | FK _CannedCom ment_VamcD ivision FO REIGN KEY | |
| 1705 | ( | |
| 1706 | Divi sionCode | |
| 1707 | ) REFERENCES dbo.VamcD ivision | |
| 1708 | ( | |
| 1709 | Divi sionCode | |
| 1710 | ) | |
| 1711 | GO | |
| 1712 | ||
| 1713 | ALTER TABL E dbo.Comp onentClass Parameter WITH NOCHE CK ADD CON STRAINT | |
| 1714 | FK _Component ClassParam eter_VamcD ivision FO REIGN KEY | |
| 1715 | ( | |
| 1716 | Divi sionCode | |
| 1717 | ) REFERENCES dbo.VamcD ivision | |
| 1718 | ( | |
| 1719 | Divi sionCode | |
| 1720 | ) | |
| 1721 | GO | |
| 1722 | ||
| 1723 | ALTER TABL E dbo.Dail yControl W ITH NOCHEC K ADD CONS TRAINT | |
| 1724 | FK _DailyCont rol_VamcDi vision FOR EIGN KEY | |
| 1725 | ( | |
| 1726 | Divi sionCode | |
| 1727 | ) REFERENCES dbo.VamcD ivision | |
| 1728 | ( | |
| 1729 | Divi sionCode | |
| 1730 | ) | |
| 1731 | GO | |
| 1732 | ||
| 1733 | ALTER TABL E dbo.Dail yQcWorklis t WITH NOC HECK ADD C ONSTRAINT | |
| 1734 | FK _DailyQcWo rklist_Vam cDivision FOREIGN KE Y | |
| 1735 | ( | |
| 1736 | Divi sionCode | |
| 1737 | ) REFERENCES dbo.VamcD ivision | |
| 1738 | ( | |
| 1739 | Divi sionCode | |
| 1740 | ) | |
| 1741 | GO | |
| 1742 | ||
| 1743 | ALTER TABL E dbo.Equi pment WITH NOCHECK A DD CONSTRA INT | |
| 1744 | FK _Equipment _VamcDivis ion FOREIG N KEY | |
| 1745 | ( | |
| 1746 | Divi sionCode | |
| 1747 | ) REFERENCES dbo.VamcD ivision | |
| 1748 | ( | |
| 1749 | Divi sionCode | |
| 1750 | ) | |
| 1751 | GO | |
| 1752 | ||
| 1753 | ALTER TABL E dbo.Exce ptionAntig enTest WIT H NOCHECK ADD CONSTR AINT | |
| 1754 | FK _Exception AntigenTes t_VamcDivi sion FOREI GN KEY | |
| 1755 | ( | |
| 1756 | Divi sionCode | |
| 1757 | ) REFERENCES dbo.VamcD ivision | |
| 1758 | ( | |
| 1759 | Divi sionCode | |
| 1760 | ) | |
| 1761 | GO | |
| 1762 | ||
| 1763 | ALTER TABL E dbo.Exce ptionCauti onTag WITH NOCHECK A DD CONSTRA INT | |
| 1764 | FK _Exception CautionTag _VamcDivis ion FOREIG N KEY | |
| 1765 | ( | |
| 1766 | Divi sionCode | |
| 1767 | ) REFERENCES dbo.VamcD ivision | |
| 1768 | ( | |
| 1769 | Divi sionCode | |
| 1770 | ) | |
| 1771 | GO | |
| 1772 | ||
| 1773 | ALTER TABL E dbo.Exce ptionEmerg encyIssueO rder WITH NOCHECK AD D CONSTRAI NT | |
| 1774 | FK _Exception EmergencyI ssueOrder_ VamcDivisi on FOREIGN KEY | |
| 1775 | ( | |
| 1776 | Divi sionCode | |
| 1777 | ) REFERENCES dbo.VamcD ivision | |
| 1778 | ( | |
| 1779 | Divi sionCode | |
| 1780 | ) | |
| 1781 | GO | |
| 1782 | ||
| 1783 | ALTER TABL E dbo.Exce ptionEmerg encyIssueU nitTest WI TH NOCHECK ADD CONST RAINT | |
| 1784 | FK _Exception EmergencyI ssueUnitTe st_VamcDiv ision FORE IGN KEY | |
| 1785 | ( | |
| 1786 | Divi sionCode | |
| 1787 | ) REFERENCES dbo.VamcD ivision | |
| 1788 | ( | |
| 1789 | Divi sionCode | |
| 1790 | ) | |
| 1791 | GO | |
| 1792 | ||
| 1793 | ALTER TABL E dbo.Exce ptionExpir edTask WIT H NOCHECK ADD CONSTR AINT | |
| 1794 | FK _Exception ExpiredTas k_VamcDivi sion FOREI GN KEY | |
| 1795 | ( | |
| 1796 | Divi sionCode | |
| 1797 | ) REFERENCES dbo.VamcD ivision | |
| 1798 | ( | |
| 1799 | Divi sionCode | |
| 1800 | ) | |
| 1801 | GO | |
| 1802 | ||
| 1803 | ALTER TABL E dbo.Exce ptionExpir edUnitRece ived WITH NOCHECK AD D CONSTRAI NT | |
| 1804 | FK _Exception ExpiredUni tReceived_ VamcDivisi on FOREIGN KEY | |
| 1805 | ( | |
| 1806 | Divi sionCode | |
| 1807 | ) REFERENCES dbo.VamcD ivision | |
| 1808 | ( | |
| 1809 | Divi sionCode | |
| 1810 | ) | |
| 1811 | GO | |
| 1812 | ||
| 1813 | ALTER TABL E dbo.Exce ptionIncon clusiveCro ssmatch WI TH NOCHECK ADD CONST RAINT | |
| 1814 | FK _Exception Inconclusi veCrossmat ch_VamcDiv ision FORE IGN KEY | |
| 1815 | ( | |
| 1816 | Di visionCode | |
| 1817 | ) REFERENCES dbo.VamcD ivision | |
| 1818 | ( | |
| 1819 | Di visionCode | |
| 1820 | ) | |
| 1821 | GO | |
| 1822 | ||
| 1823 | ALTER TABL E dbo.Exce ptionLabel Mismatch W ITH NOCHEC K ADD CONS TRAINT | |
| 1824 | FK _Exception LabelMisma tch_VamcDi vision FOR EIGN KEY | |
| 1825 | ( | |
| 1826 | Divi sionCode | |
| 1827 | ) REFERENCES dbo.VamcD ivision | |
| 1828 | ( | |
| 1829 | Divi sionCode | |
| 1830 | ) | |
| 1831 | GO | |
| 1832 | ||
| 1833 | ALTER TABL E dbo.Exce ptionPatie ntAboRh WI TH NOCHECK ADD CONST RAINT | |
| 1834 | FK _Exception PatientAbo Rh_VamcDiv ision FORE IGN KEY | |
| 1835 | ( | |
| 1836 | Divi sionCode | |
| 1837 | ) REFERENCES dbo.VamcD ivision | |
| 1838 | ( | |
| 1839 | Divi sionCode | |
| 1840 | ) | |
| 1841 | GO | |
| 1842 | ||
| 1843 | ALTER TABL E dbo.Exce ptionPatie ntAboRhDis crepancy W ITH NOCHEC K ADD CONS TRAINT | |
| 1844 | FK _Exception PatientAbo RhDiscrepa ncy_VamcDi vision FOR EIGN KEY | |
| 1845 | ( | |
| 1846 | Divi sionCode | |
| 1847 | ) REFERENCES dbo.VamcD ivision | |
| 1848 | ( | |
| 1849 | Divi sionCode | |
| 1850 | ) | |
| 1851 | GO | |
| 1852 | ||
| 1853 | ALTER TABL E dbo.Exce ptionPatie ntAntigenD iscrepancy WITH NOCH ECK ADD CO NSTRAINT | |
| 1854 | FK _Exception PatientAnt igenDiscre pancy_Vamc Division F OREIGN KEY | |
| 1855 | ( | |
| 1856 | Divi sionCode | |
| 1857 | ) REFERENCES dbo.VamcD ivision | |
| 1858 | ( | |
| 1859 | Divi sionCode | |
| 1860 | ) | |
| 1861 | GO | |
| 1862 | ||
| 1863 | ALTER TABL E dbo.Exce ptionPatie ntRestrict ion WITH N OCHECK ADD CONSTRAIN T | |
| 1864 | FK _Exception PatientRes triction_V amcDivisio n FOREIGN KEY | |
| 1865 | ( | |
| 1866 | Divi sionCode | |
| 1867 | ) REFERENCES dbo.VamcD ivision | |
| 1868 | ( | |
| 1869 | Divi sionCode | |
| 1870 | ) | |
| 1871 | GO | |
| 1872 | ||
| 1873 | ALTER TABL E dbo.Exce ptionPatie ntTest WIT H NOCHECK ADD CONSTR AINT | |
| 1874 | FK _Exception PatientTes t_VamcDivi sion FOREI GN KEY | |
| 1875 | ( | |
| 1876 | Divi sionCode | |
| 1877 | ) REFERENCES dbo.VamcD ivision | |
| 1878 | ( | |
| 1879 | Divi sionCode | |
| 1880 | ) | |
| 1881 | GO | |
| 1882 | ||
| 1883 | ALTER TABL E dbo.Exce ptionPatie ntTestInac tivated WI TH NOCHECK ADD CONST RAINT | |
| 1884 | FK _Exception PatientTes tInactivat ed_VamcDiv ision FORE IGN KEY | |
| 1885 | ( | |
| 1886 | Divi sionCode | |
| 1887 | ) REFERENCES dbo.VamcD ivision | |
| 1888 | ( | |
| 1889 | Divi sionCode | |
| 1890 | ) | |
| 1891 | GO | |
| 1892 | ||
| 1893 | ALTER TABL E dbo.Exce ptionQc WI TH NOCHECK ADD CONST RAINT | |
| 1894 | FK _Exception Qc_VamcDiv ision FORE IGN KEY | |
| 1895 | ( | |
| 1896 | Divi sionCode | |
| 1897 | ) REFERENCES dbo.VamcD ivision | |
| 1898 | ( | |
| 1899 | Divi sionCode | |
| 1900 | ) | |
| 1901 | GO | |
| 1902 | ||
| 1903 | ALTER TABL E dbo.Exce ptionQcIna ctivation WITH NOCHE CK ADD CON STRAINT | |
| 1904 | FK _Exception QcInactiva tion_VamcD ivision FO REIGN KEY | |
| 1905 | ( | |
| 1906 | Divi sionCode | |
| 1907 | ) REFERENCES dbo.VamcD ivision | |
| 1908 | ( | |
| 1909 | Divi sionCode | |
| 1910 | ) | |
| 1911 | GO | |
| 1912 | ||
| 1913 | ALTER TABL E dbo.Exce ptionQcNot Performed WITH NOCHE CK ADD CON STRAINT | |
| 1914 | FK _Exception QcNotPerfo rmed_VamcD ivision FO REIGN KEY | |
| 1915 | ( | |
| 1916 | Divi sionCode | |
| 1917 | ) REFERENCES dbo.VamcD ivision | |
| 1918 | ( | |
| 1919 | Divi sionCode | |
| 1920 | ) | |
| 1921 | GO | |
| 1922 | ||
| 1923 | ALTER TABL E dbo.Exce ptionQuara ntine WITH NOCHECK A DD CONSTRA INT | |
| 1924 | FK _Exception Quarantine _VamcDivis ion FOREIG N KEY | |
| 1925 | ( | |
| 1926 | Divi sionCode | |
| 1927 | ) REFERENCES dbo.VamcD ivision | |
| 1928 | ( | |
| 1929 | Divi sionCode | |
| 1930 | ) | |
| 1931 | GO | |
| 1932 | ||
| 1933 | ALTER TABL E dbo.Exce ptionRackT est WITH N OCHECK ADD CONSTRAIN T | |
| 1934 | FK _Exception RackTest_V amcDivisio n FOREIGN KEY | |
| 1935 | ( | |
| 1936 | Divi sionCode | |
| 1937 | ) REFERENCES dbo.VamcD ivision | |
| 1938 | ( | |
| 1939 | Divi sionCode | |
| 1940 | ) | |
| 1941 | GO | |
| 1942 | ||
| 1943 | ALTER TABL E dbo.Exce ptionRefle xTest WITH NOCHECK A DD CONSTRA INT | |
| 1944 | FK _Exception ReflexTest _VamcDivis ion FOREIG N KEY | |
| 1945 | ( | |
| 1946 | Divi sionCode | |
| 1947 | ) REFERENCES dbo.VamcD ivision | |
| 1948 | ( | |
| 1949 | Divi sionCode | |
| 1950 | ) | |
| 1951 | GO | |
| 1952 | ||
| 1953 | ALTER TABL E dbo.Exce ptionRemov eFinalUnit Status WIT H NOCHECK ADD CONSTR AINT | |
| 1954 | FK _Exception RemoveFina lUnitStatu s_VamcDivi sion FOREI GN KEY | |
| 1955 | ( | |
| 1956 | Divi sionCode | |
| 1957 | ) REFERENCES dbo.VamcD ivision | |
| 1958 | ( | |
| 1959 | Divi sionCode | |
| 1960 | ) | |
| 1961 | GO | |
| 1962 | ||
| 1963 | ALTER TABL E dbo.Exce ptionRetur nedUnit WI TH NOCHECK ADD CONST RAINT | |
| 1964 | FK _Exception ReturnedUn it_VamcDiv ision FORE IGN KEY | |
| 1965 | ( | |
| 1966 | Divi sionCode | |
| 1967 | ) REFERENCES dbo.VamcD ivision | |
| 1968 | ( | |
| 1969 | Divi sionCode | |
| 1970 | ) | |
| 1971 | GO | |
| 1972 | ||
| 1973 | ALTER TABL E dbo.Exce ptionSpeci men WITH N OCHECK ADD CONSTRAIN T | |
| 1974 | FK _Exception Specimen_V amcDivisio n FOREIGN KEY | |
| 1975 | ( | |
| 1976 | Divi sionCode | |
| 1977 | ) REFERENCES dbo.VamcD ivision | |
| 1978 | ( | |
| 1979 | Divi sionCode | |
| 1980 | ) | |
| 1981 | GO | |
| 1982 | ||
| 1983 | ALTER TABL E dbo.Exce ptionTrans fusion WIT H NOCHECK ADD CONSTR AINT | |
| 1984 | FK _Exception Transfusio n_VamcDivi sion FOREI GN KEY | |
| 1985 | ( | |
| 1986 | Divi sionCode | |
| 1987 | ) REFERENCES dbo.VamcD ivision | |
| 1988 | ( | |
| 1989 | Divi sionCode | |
| 1990 | ) | |
| 1991 | GO | |
| 1992 | ||
| 1993 | ALTER TABL E dbo.Exce ptionTrans fusionReac tionWorkup WITH NOCH ECK ADD CO NSTRAINT | |
| 1994 | FK _Exception Transfusio nReactionW orkup_Vamc Division F OREIGN KEY | |
| 1995 | ( | |
| 1996 | Divi sionCode | |
| 1997 | ) REFERENCES dbo.VamcD ivision | |
| 1998 | ( | |
| 1999 | Divi sionCode | |
| 2000 | ) | |
| 2001 | GO | |
| 2002 | ||
| 2003 | ALTER TABL E dbo.Exce ptionTrwSp ecimen WIT H NOCHECK ADD CONSTR AINT | |
| 2004 | FK _Exception TrwSpecime n_VamcDivi sion FOREI GN KEY | |
| 2005 | ( | |
| 2006 | Divi sionCode | |
| 2007 | ) REFERENCES dbo.VamcD ivision | |
| 2008 | ( | |
| 2009 | Divi sionCode | |
| 2010 | ) | |
| 2011 | GO | |
| 2012 | ||
| 2013 | ALTER TABL E dbo.Exce ptionUnitA boRh WITH NOCHECK AD D CONSTRAI NT | |
| 2014 | FK _Exception UnitAboRh_ VamcDivisi on FOREIGN KEY | |
| 2015 | ( | |
| 2016 | Divi sionCode | |
| 2017 | ) REFERENCES dbo.VamcD ivision | |
| 2018 | ( | |
| 2019 | Divi sionCode | |
| 2020 | ) | |
| 2021 | GO | |
| 2022 | ||
| 2023 | ALTER TABL E dbo.Exce ptionUnitI ssue WITH NOCHECK AD D CONSTRAI NT | |
| 2024 | FK _Exception UnitIssue_ VamcDivisi on FOREIGN KEY | |
| 2025 | ( | |
| 2026 | Divi sionCode | |
| 2027 | ) REFERENCES dbo.VamcD ivision | |
| 2028 | ( | |
| 2029 | Divi sionCode | |
| 2030 | ) | |
| 2031 | GO | |
| 2032 | ||
| 2033 | ALTER TABL E dbo.Exce ptionUnitM odificatio n WITH NOC HECK ADD C ONSTRAINT | |
| 2034 | FK _Exception UnitModifi cation_Vam cDivision FOREIGN KE Y | |
| 2035 | ( | |
| 2036 | Divi sionCode | |
| 2037 | ) REFERENCES dbo.VamcD ivision | |
| 2038 | ( | |
| 2039 | Divi sionCode | |
| 2040 | ) | |
| 2041 | GO | |
| 2042 | ||
| 2043 | ALTER TABL E dbo.Exce ptionUnitS election W ITH NOCHEC K ADD CONS TRAINT | |
| 2044 | FK _Exception UnitSelect ion_VamcDi vision FOR EIGN KEY | |
| 2045 | ( | |
| 2046 | Divi sionCode | |
| 2047 | ) REFERENCES dbo.VamcD ivision | |
| 2048 | ( | |
| 2049 | Divi sionCode | |
| 2050 | ) | |
| 2051 | GO | |
| 2052 | ||
| 2053 | ALTER TABL E dbo.Hcpc sAssignmen t WITH NOC HECK ADD C ONSTRAINT | |
| 2054 | FK _HcpcsAssi gnment_Vam cDivision FOREIGN KE Y | |
| 2055 | ( | |
| 2056 | Divi sionCode | |
| 2057 | ) REFERENCES dbo.VamcD ivision | |
| 2058 | ( | |
| 2059 | Divi sionCode | |
| 2060 | ) | |
| 2061 | GO | |
| 2062 | ||
| 2063 | ALTER TABL E dbo.Issu edUnitComm ent WITH N OCHECK ADD CONSTRAIN T | |
| 2064 | FK _IssuedUni tComment_V amcDivisio n FOREIGN KEY | |
| 2065 | ( | |
| 2066 | Divi sionCode | |
| 2067 | ) REFERENCES dbo.VamcD ivision | |
| 2068 | ( | |
| 2069 | Divi sionCode | |
| 2070 | ) | |
| 2071 | GO | |
| 2072 | ||
| 2073 | ALTER TABL E dbo.Loca lSupplier WITH NOCHE CK ADD CON STRAINT | |
| 2074 | FK _LocalSupp lier_VamcD ivision FO REIGN KEY | |
| 2075 | ( | |
| 2076 | Divi sionCode | |
| 2077 | ) REFERENCES dbo.VamcD ivision | |
| 2078 | ( | |
| 2079 | Divi sionCode | |
| 2080 | ) | |
| 2081 | GO | |
| 2082 | ||
| 2083 | ALTER TABL E dbo.Logi nMessage W ITH NOCHEC K ADD CONS TRAINT | |
| 2084 | FK _LoginMess age_VamcDi vision FOR EIGN KEY | |
| 2085 | ( | |
| 2086 | Divi sionCode | |
| 2087 | ) REFERENCES dbo.VamcD ivision | |
| 2088 | ( | |
| 2089 | Divi sionCode | |
| 2090 | ) | |
| 2091 | GO | |
| 2092 | ||
| 2093 | ALTER TABL E dbo.Msbo s WITH NOC HECK ADD C ONSTRAINT | |
| 2094 | FK _Msbos_Vam cDivision FOREIGN KE Y | |
| 2095 | ( | |
| 2096 | Divi sionCode | |
| 2097 | ) REFERENCES dbo.VamcD ivision | |
| 2098 | ( | |
| 2099 | Divi sionCode | |
| 2100 | ) | |
| 2101 | GO | |
| 2102 | ||
| 2103 | ALTER TABL E dbo.Orde redCompone nt WITH NO CHECK ADD CONSTRAINT | |
| 2104 | FK _OrderedCo mponent_Va mcDivision FOREIGN K EY | |
| 2105 | ( | |
| 2106 | Divi sionCode | |
| 2107 | ) REFERENCES dbo.VamcD ivision | |
| 2108 | ( | |
| 2109 | Divi sionCode | |
| 2110 | ) | |
| 2111 | GO | |
| 2112 | ||
| 2113 | ALTER TABL E dbo.Orde redTest WI TH NOCHECK ADD CONST RAINT | |
| 2114 | FK _OrderedTe st_VamcDiv ision FORE IGN KEY | |
| 2115 | ( | |
| 2116 | Divi sionCode | |
| 2117 | ) REFERENCES dbo.VamcD ivision | |
| 2118 | ( | |
| 2119 | Divi sionCode | |
| 2120 | ) | |
| 2121 | GO | |
| 2122 | ||
| 2123 | ALTER TABL E dbo.Orde redUnit WI TH NOCHECK ADD CONST RAINT | |
| 2124 | FK _OrderedUn it_VamcDiv ision FORE IGN KEY | |
| 2125 | ( | |
| 2126 | Divi sionCode | |
| 2127 | ) REFERENCES dbo.VamcD ivision | |
| 2128 | ( | |
| 2129 | Divi sionCode | |
| 2130 | ) | |
| 2131 | GO | |
| 2132 | ||
| 2133 | ALTER TABL E dbo.Pati entOrder A DD CONSTRA INT | |
| 2134 | FK _PatientOr der_VamcDi vision FOR EIGN KEY | |
| 2135 | ( | |
| 2136 | Di visionCode | |
| 2137 | ) REFERENCES dbo.VamcD ivision | |
| 2138 | ( | |
| 2139 | Di visionCode | |
| 2140 | ) | |
| 2141 | GO | |
| 2142 | ||
| 2143 | ALTER TABL E dbo.Pati entSpecial Instructio n WITH NOC HECK ADD C ONSTRAINT | |
| 2144 | FK _PatientSp ecialInstr uction_Vam cDivision FOREIGN KE Y | |
| 2145 | ( | |
| 2146 | Divi sionCode | |
| 2147 | ) REFERENCES dbo.VamcD ivision | |
| 2148 | ( | |
| 2149 | Divi sionCode | |
| 2150 | ) | |
| 2151 | GO | |
| 2152 | ||
| 2153 | ALTER TABL E dbo.Pati entSpecime n WITH NOC HECK ADD C ONSTRAINT | |
| 2154 | FK _PatientSp ecimen_Vam cDivision FOREIGN KE Y | |
| 2155 | ( | |
| 2156 | Divi sionCode | |
| 2157 | ) REFERENCES dbo.VamcD ivision | |
| 2158 | ( | |
| 2159 | Divi sionCode | |
| 2160 | ) | |
| 2161 | GO | |
| 2162 | ||
| 2163 | ALTER TABL E dbo.Pati entTest WI TH NOCHECK ADD CONST RAINT | |
| 2164 | FK _PatientTe st_VamcDiv ision FORE IGN KEY | |
| 2165 | ( | |
| 2166 | Divi sionCode | |
| 2167 | ) REFERENCES dbo.VamcD ivision | |
| 2168 | ( | |
| 2169 | Divi sionCode | |
| 2170 | ) | |
| 2171 | GO | |
| 2172 | ||
| 2173 | ALTER TABL E dbo.Pati entTransfu sion ADD C ONSTRAINT | |
| 2174 | FK _PatientTr ansfusion_ VamcDivisi on FOREIGN KEY | |
| 2175 | ( | |
| 2176 | Divi sionCode | |
| 2177 | ) REFERENCES dbo.VamcD ivision | |
| 2178 | ( | |
| 2179 | Divi sionCode | |
| 2180 | ) | |
| 2181 | GO | |
| 2182 | ||
| 2183 | ALTER TABL E dbo.Pati entTransfu sionCommen t WITH NOC HECK ADD C ONSTRAINT | |
| 2184 | FK _PatientTr ansfusionC omment_Vam cDivision FOREIGN KE Y | |
| 2185 | ( | |
| 2186 | Divi sionCode | |
| 2187 | ) REFERENCES dbo.VamcD ivision | |
| 2188 | ( | |
| 2189 | Divi sionCode | |
| 2190 | ) | |
| 2191 | GO | |
| 2192 | ||
| 2193 | ALTER TABL E dbo.Pati entTransfu sionReacti on WITH NO CHECK ADD CONSTRAINT | |
| 2194 | FK _PatientTr ansfusionR eaction_Va mcDivision FOREIGN K EY | |
| 2195 | ( | |
| 2196 | Divi sionCode | |
| 2197 | ) REFERENCES dbo.VamcD ivision | |
| 2198 | ( | |
| 2199 | Divi sionCode | |
| 2200 | ) | |
| 2201 | GO | |
| 2202 | ||
| 2203 | ALTER TABL E dbo.Pool Counter WI TH NOCHECK ADD CONST RAINT | |
| 2204 | FK _PoolCount er_VamcDiv ision FORE IGN KEY | |
| 2205 | ( | |
| 2206 | Divi sionCode | |
| 2207 | ) REFERENCES dbo.VamcD ivision | |
| 2208 | ( | |
| 2209 | Divi sionCode | |
| 2210 | ) | |
| 2211 | GO | |
| 2212 | ||
| 2213 | ALTER TABL E dbo.Prod uctModific ationParam eter WITH NOCHECK AD D CONSTRAI NT | |
| 2214 | FK _ProductMo dification Parameter_ VamcDivisi on FOREIGN KEY | |
| 2215 | ( | |
| 2216 | Divi sionCode | |
| 2217 | ) REFERENCES dbo.VamcD ivision | |
| 2218 | ( | |
| 2219 | Divi sionCode | |
| 2220 | ) | |
| 2221 | GO | |
| 2222 | ||
| 2223 | ALTER TABL E dbo.Prod uctShipper WITH NOCH ECK ADD CO NSTRAINT | |
| 2224 | FK _ProductSh ipper_Vamc Division F OREIGN KEY | |
| 2225 | ( | |
| 2226 | Divi sionCode | |
| 2227 | ) REFERENCES dbo.VamcD ivision | |
| 2228 | ( | |
| 2229 | Divi sionCode | |
| 2230 | ) | |
| 2231 | GO | |
| 2232 | ||
| 2233 | ALTER TABL E dbo.Rack WITH NOCH ECK ADD CO NSTRAINT | |
| 2234 | FK _Rack_Vamc Division F OREIGN KEY | |
| 2235 | ( | |
| 2236 | Divi sionCode | |
| 2237 | ) REFERENCES dbo.VamcD ivision | |
| 2238 | ( | |
| 2239 | Divi sionCode | |
| 2240 | ) | |
| 2241 | GO | |
| 2242 | ||
| 2243 | ALTER TABL E dbo.Rack Lot WITH N OCHECK ADD CONSTRAIN T | |
| 2244 | FK _RackLot_V amcDivisio n FOREIGN KEY | |
| 2245 | ( | |
| 2246 | Divi sionCode | |
| 2247 | ) REFERENCES dbo.VamcD ivision | |
| 2248 | ( | |
| 2249 | Divi sionCode | |
| 2250 | ) | |
| 2251 | GO | |
| 2252 | ||
| 2253 | ALTER TABL E dbo.Rack Test ADD C ONSTRAINT | |
| 2254 | FK _RackTest_ VamcDivisi on FOREIGN KEY | |
| 2255 | ( | |
| 2256 | Divi sionCode | |
| 2257 | ) REFERENCES dbo.VamcD ivision | |
| 2258 | ( | |
| 2259 | Divi sionCode | |
| 2260 | ) | |
| 2261 | GO | |
| 2262 | ||
| 2263 | ALTER TABL E dbo.Reag ent WITH N OCHECK ADD CONSTRAIN T | |
| 2264 | FK _Reagent_V amcDivisio n FOREIGN KEY | |
| 2265 | ( | |
| 2266 | Divi sionCode | |
| 2267 | ) REFERENCES dbo.VamcD ivision | |
| 2268 | ( | |
| 2269 | Divi sionCode | |
| 2270 | ) | |
| 2271 | GO | |
| 2272 | ||
| 2273 | ALTER TABL E dbo.Reag entTestPar ameter WIT H NOCHECK ADD CONSTR AINT | |
| 2274 | FK _ReagentTe stParamete r_VamcDivi sion FOREI GN KEY | |
| 2275 | ( | |
| 2276 | Divi sionCode | |
| 2277 | ) REFERENCES dbo.VamcD ivision | |
| 2278 | ( | |
| 2279 | Divi sionCode | |
| 2280 | ) | |
| 2281 | GO | |
| 2282 | ||
| 2283 | ALTER TABL E dbo.Reag entTypePar ameter WIT H NOCHECK ADD CONSTR AINT | |
| 2284 | FK _ReagentTy peParamete r_VamcDivi sion FOREI GN KEY | |
| 2285 | ( | |
| 2286 | Divi sionCode | |
| 2287 | ) REFERENCES dbo.VamcD ivision | |
| 2288 | ( | |
| 2289 | Divi sionCode | |
| 2290 | ) | |
| 2291 | GO | |
| 2292 | ||
| 2293 | ALTER TABL E dbo.Ship ment WITH NOCHECK AD D CONSTRAI NT | |
| 2294 | FK _Shipment_ VamcDivisi on FOREIGN KEY | |
| 2295 | ( | |
| 2296 | Divi sionCode | |
| 2297 | ) REFERENCES dbo.VamcD ivision | |
| 2298 | ( | |
| 2299 | Divi sionCode | |
| 2300 | ) | |
| 2301 | GO | |
| 2302 | ||
| 2303 | ALTER TABL E dbo.Spec imenTest W ITH NOCHEC K ADD CONS TRAINT | |
| 2304 | FK _SpecimenT est_VamcDi vision FOR EIGN KEY | |
| 2305 | ( | |
| 2306 | Divi sionCode | |
| 2307 | ) REFERENCES dbo.VamcD ivision | |
| 2308 | ( | |
| 2309 | Divi sionCode | |
| 2310 | ) | |
| 2311 | GO | |
| 2312 | ||
| 2313 | ALTER TABL E dbo.Spec imenTestTh reshold WI TH NOCHECK ADD CONST RAINT | |
| 2314 | FK _SpecimenT estThresho ld_VamcDiv ision FORE IGN KEY | |
| 2315 | ( | |
| 2316 | Divi sionCode | |
| 2317 | ) REFERENCES dbo.VamcD ivision | |
| 2318 | ( | |
| 2319 | Divi sionCode | |
| 2320 | ) | |
| 2321 | GO | |
| 2322 | ||
| 2323 | ALTER TABL E dbo.Supp ly WITH NO CHECK ADD CONSTRAINT | |
| 2324 | FK _Supply_Va mcDivision FOREIGN K EY | |
| 2325 | ( | |
| 2326 | Divi sionCode | |
| 2327 | ) REFERENCES dbo.VamcD ivision | |
| 2328 | ( | |
| 2329 | Divi sionCode | |
| 2330 | ) | |
| 2331 | GO | |
| 2332 | ||
| 2333 | ALTER TABL E dbo.Vbec sLock ADD CONSTRAINT | |
| 2334 | FK _VBECSLock _VamcDivis ion FOREIG N KEY | |
| 2335 | ( | |
| 2336 | Divi sionCode | |
| 2337 | ) REFERENCES dbo.VamcD ivision | |
| 2338 | ( | |
| 2339 | Divi sionCode | |
| 2340 | ) | |
| 2341 | GO | |
| 2342 | ||
| 2343 | ALTER TABL E dbo.Vbec sUserDivis ionRole WI TH NOCHECK ADD CONST RAINT | |
| 2344 | FK _VbecsUser DivisionRo le_VamcDiv ision FORE IGN KEY | |
| 2345 | ( | |
| 2346 | Divi sionCode | |
| 2347 | ) REFERENCES dbo.VamcD ivision | |
| 2348 | ( | |
| 2349 | Divi sionCode | |
| 2350 | ) | |
| 2351 | GO | |
| 2352 | ||
| 2353 | ALTER TABL E dbo.Work loadEvent WITH NOCHE CK ADD CON STRAINT | |
| 2354 | FK _WorkloadE vent_VamcD ivision FO REIGN KEY | |
| 2355 | ( | |
| 2356 | Divi sionCode | |
| 2357 | ) REFERENCES dbo.VamcD ivision | |
| 2358 | ( | |
| 2359 | Divi sionCode | |
| 2360 | ) | |
| 2361 | GO | |
| 2362 | ||
| 2363 | USE @DBNAM E@_MIRROR | |
| 2364 | GO | |
| 2365 | /*-------- ---------- ---------- ---------- ---------- --------- | |
| 2366 | Create t he VamcDiv ision view in the Mi rror datab ase | |
| 2367 | (now tha t both mir ror/non-mi rror are u pdated) | |
| 2368 | ---------- ---------- ---------- ---------- ---------- -------*/ | |
| 2369 | if exists (select * from dbo.s ysobjects where id = object_id (N'[dbo].[ V_VamcDivi sion]') an d OBJECTPR OPERTY(id, N'IsView' ) = 1) | |
| 2370 | drop view dbo.V_Vamc Division | |
| 2371 | GO | |
| 2372 | ||
| 2373 | SET QUOTED _IDENTIFIE R ON | |
| 2374 | GO | |
| 2375 | SET ANSI_N ULLS ON | |
| 2376 | GO | |
| 2377 | ||
| 2378 | CREATE VIE W V_VamcDi vision | |
| 2379 | AS | |
| 2380 | SELECT Sou rce='MIRRO R', Mirror Id, Divisi onCode, Di visionGuid , Division Name, Serv iceTypeInd icator, Ic cbbaRegist rationNumb er, Electr onicCrossm atchIndica tor, Facil ityGuid, L ocalSuppli erGuid, An tibodyScre enDisplayC ode, Maxim umSpecimen Expiration Days, Auto matedInstr umentIndic ator, Labe lPrinterUs eIndicator , LabelPri nterComPor tNumber, L abelPrinte rIPAddress , LabelPri nterTcpPor tNumber, T imeZoneId, DaylightS avingsType Id, Printe rName, Pri nterAlerts Indicator, PrinterAl ertsPrinte rName, Pri nterOrderA lertTypeCo de, Printe rOrdersNee dedHours, IconAlerts Indicator, IconOrder AlertTypeC ode, IconO rdersNeede dHours, Ic onRefreshR ate, Login MessageTex t, Invoice TemplateTe xt, Medica lDirectorN ame, UsaIn dicator, L ockInactiv ityTimeout Min, Acces sionAreaId , Daylight SavingsSta rtDate, Da ylightSavi ngsEndDate , Reactivi tyPhaseCod e, RecordS tatusCode, LabelPrin terEndPoin tId, LastU pdateDate, LastUpdat eUser, [RO WVERSION], LastUpdat eFunctionI d, MirrorD ate | |
| 2381 | FROM dbo.V amcDivisio n | |
| 2382 | UNION ALL | |
| 2383 | SELECT Sou rce='ACTIV E', 0, Div isionCode, DivisionG uid, Divis ionName, S erviceType Indicator, IccbbaReg istrationN umber, Ele ctronicCro ssmatchInd icator, Fa cilityGuid , LocalSup plierGuid, AntibodyS creenDispl ayCode, Ma ximumSpeci menExpirat ionDays, A utomatedIn strumentIn dicator, L abelPrinte rUseIndica tor, Label PrinterCom PortNumber , LabelPri nterIPAddr ess, Label PrinterTcp PortNumber , TimeZone Id, Daylig htSavingsT ypeId, Pri nterName, PrinterAle rtsIndicat or, Printe rAlertsPri nterName, PrinterOrd erAlertTyp eCode, Pri nterOrders NeededHour s, IconAle rtsIndicat or, IconOr derAlertTy peCode, Ic onOrdersNe ededHours, IconRefre shRate, Lo ginMessage Text, Invo iceTemplat eText, Med icalDirect orName, Us aIndicator , LockInac tivityTime outMin, Ac cessionAre aId, Dayli ghtSavings StartDate, DaylightS avingsEndD ate, React ivityPhase Code, Reco rdStatusCo de, LabelP rinterEndP ointId, La stUpdateDa te, LastUp dateUser, [ROWVERSIO N], LastUp dateFuncti onId, Last UpdateDate AS Mirror Date | |
| 2384 | FROM Syn_V amcDivisio n | |
| 2385 | GO | |
| 2386 | ||
| 2387 | SET QUOTED _IDENTIFIE R OFF | |
| 2388 | GO | |
| 2389 | SET ANSI_N ULLS ON | |
| 2390 | GO | |
| 2391 | ||
| 2392 | --Permissi ons | |
| 2393 | ||
| 2394 | GRANT SELE CT, INSERT ON dbo.Va mcDivision TO VbecsA ppMirrorUs er | |
| 2395 | GO | |
| 2396 | ||
| 2397 | GRANT SELE CT ON dbo. V_VamcDivi sion TO Vb ecsAppMirr orUser | |
| 2398 | GO | |
| 2399 | ||
| 2400 | ||
| 2401 | USE @DBNAM E@ | |
| 2402 | GO | |
| 2403 | ||
| 2404 | --Permissi ons | |
| 2405 | ||
| 2406 | GRANT SELE CT ON dbo .VamcDivis ion TO [Vb ecsAppUser ] | |
| 2407 | GO | |
| 2408 | ||
| 2409 | ALTER TABL E [dbo].[V amcDivisio n] ADD CON STRAINT [F K_VamcDivi sion_Vbecs EndPoint] FOREIGN KE Y ([LabelP rinterEndP ointId]) R EFERENCES [dbo].[Vbe csEndPoint ] ([VbecsE ndPointId] ) | |
| 2410 | GO | |
| 2411 | ||
| 2412 | ||
| 2413 | --Adding s tored proc edures | |
| 2414 | ||
| 2415 | if exists (select * from dbo.s ysobjects where id = object_id (N'[dbo].[ spGetVbecs EndPoint]' ) and OBJE CTPROPERTY (id, N'IsP rocedure') = 1) | |
| 2416 | drop proce dure [dbo] .[spGetVbe csEndPoint ] | |
| 2417 | GO | |
| 2418 | ||
| 2419 | SET ANSI_N ULLS ON | |
| 2420 | GO | |
| 2421 | ||
| 2422 | SET QUOTED _IDENTIFIE R ON | |
| 2423 | GO | |
| 2424 | ||
| 2425 | ||
| 2426 | /********* ********** ********** ********** ********** ********** ********** ********** ********** ********** ********** ********** ********** ********** ********** ********** ********** ****** | |
| 2427 | ** De sc: Gets row(s) fr om VbecsEn dPoint tab le (Defect 340457) | |
| 2428 | ** | |
| 2429 | ** Au thor: Mich ael Glaze | |
| 2430 | ** | |
| 2431 | ** Da te: 07/8 /2016 | |
| 2432 | ********** ********** ********** ********** ********** ********** ********** ********** ********** ********** ********** ********** ********** ********** ********** ********** ********** ***** | |
| 2433 | ** Mo dified: | |
| 2434 | ** Da te Name Descriptio n | |
| 2435 | ** -- ---------- ------- -------- ---------- ----- ---- ---------- ---------- ---------- ---------- ---------- ---------- ---------- ---------- ---------- ---------- ---------- ---------- ---------- ---------- ---------- ---------- ---- | |
| 2436 | ** 02 /14/17 K. Adu -Poku ** Reviewe d for comp liance wit h database standards and recom mendations ** | |
| 2437 | ********** ********** ********** ********** ********** ********** ********** ********** ********** ********** ********** ********** ********** ********** ********** ********** ********** *****/ | |
| 2438 | CREATE PRO CEDURE [db o].[spGetV becsEndPoi nt] | |
| 2439 | ( | |
| 2440 | @vbe csendpoint id int = N ULL | |
| 2441 | ) | |
| 2442 | AS | |
| 2443 | ||
| 2444 | DECLARE @E RROR INT | |
| 2445 | ||
| 2446 | SET NOCOUN T ON | |
| 2447 | ||
| 2448 | SE LECT | |
| 2449 | EndP ointAddres s, | |
| 2450 | EndP ointPort, | |
| 2451 | EndP ointType, | |
| 2452 | [Row Version] | |
| 2453 | FR OM | |
| 2454 | dbo. VbecsEndPo int ep | |
| 2455 | WH ERE @vbecs endpointid IS NULL O R @vbecsen dpointid = ep.VbecsE ndPointId | |
| 2456 | ||
| 2457 | SET @ERROR = @@ERROR | |
| 2458 | ||
| 2459 | SET NOCOUN T OFF | |
| 2460 | ||
| 2461 | RETURN(@ER ROR) | |
| 2462 | ||
| 2463 | ||
| 2464 | GO | |
| 2465 | ||
| 2466 | ||
| 2467 | ||
| 2468 | if exists (select * from dbo.s ysobjects where id = object_id (N'[dbo].[ spUpdateVb ecsEndPoin t]') and O BJECTPROPE RTY(id, N' IsProcedur e') = 1) | |
| 2469 | drop proce dure [dbo] .[spUpdate VbecsEndPo int] | |
| 2470 | GO | |
| 2471 | ||
| 2472 | SET ANSI_N ULLS ON | |
| 2473 | GO | |
| 2474 | ||
| 2475 | SET QUOTED _IDENTIFIE R ON | |
| 2476 | GO | |
| 2477 | ||
| 2478 | ||
| 2479 | ||
| 2480 | ||
| 2481 | /********* ********** ********** ********** ********** ********** ********** ********** ********** ********** ********** ********** ********** ********** ********** ********** ********** ****** | |
| 2482 | ** De sc: Upda tes VbecsE ndPoint ta ble (Defec t 340457) | |
| 2483 | ** | |
| 2484 | ** Au thor: Pabl o Sanchez | |
| 2485 | ** | |
| 2486 | ** Da te: 07/1 0/2016 | |
| 2487 | ********** ********** ********** ********** ********** ********** ********** ********** ********** ********** ********** ********** ********** ********** ********** ********** ********** ***** | |
| 2488 | ** Mo dified: | |
| 2489 | ** Da te Name De scription | |
| 2490 | ** -- ---------- ------- -------- ---------- ----- ---- ---------- ---------- ---------- ---------- ---------- ---------- ---------- ---------- ---------- ---------- ---------- ----- | |
| 2491 | ** 02 /14/17 K. Adu -Poku ** Reviewe d for comp liance wit h database standards and recom mendations ** | |
| 2492 | ********** ********** ********** ********** ********** ********** ********** ********** ********** ********** ********** ********** ********** ********** ********** ********** ********** *****/ | |
| 2493 | CREATE PRO CEDURE [db o].[spUpda teVbecsEnd Point] | |
| 2494 | ( | |
| 2495 | @vbe csendpoint id INT, | |
| 2496 | @end pointaddre ss VARCHAR (255), | |
| 2497 | @end pointport INT, | |
| 2498 | @end pointtype VARCHAR (5 0), | |
| 2499 | @las tupdatedat e DATETIME = NULL, | |
| 2500 | @las tupdateuse r VARCHAR (30) = NUL L, | |
| 2501 | @row version TI MESTAMP, | |
| 2502 | @las tupdatefun ctionid IN T | |
| 2503 | ) | |
| 2504 | AS | |
| 2505 | ||
| 2506 | SET NOCOUN T ON | |
| 2507 | ||
| 2508 | DECLARE @E RROR INT, | |
| 2509 | @ROW COUNT INT | |
| 2510 | ||
| 2511 | UPDATE [db o].[VbecsE ndPoint] | |
| 2512 | SE T | |
| 2513 | [End PointAddre ss] = @end PointAddre ss, | |
| 2514 | [End PointPort] = @endPoi ntPort, | |
| 2515 | [End PointType] = @endPoi ntType, | |
| 2516 | [Las tUpdateDat e] = ISNUL L(@lastupd atedate, G ETUTCDATE( )), | |
| 2517 | [Las tUpdateUse r] = ISNUL L(@lastupd ateuser, S USER_NAME( )), | |
| 2518 | [Las tUpdateFun ctionId] = @lastupda tefunction id | |
| 2519 | ||
| 2520 | WH ERE | |
| 2521 | Vbec sEndPointI d = @vbecs endpointid | |
| 2522 | AND [RowVe rsion] = @ rowversion | |
| 2523 | ||
| 2524 | SE LECT @ERRO R = @@ERRO R, @ROWCOU NT = @@ROW COUNT | |
| 2525 | ||
| 2526 | IF @ERROR = 0 AND @ROW COUNT <> 1 AND ( SEL ECT COUNT( 1) FROM db o.VbecsEnd Point WHE RE [RowVer sion] = @r owversion ) <> 1 | |
| 2527 | RA ISERROR(50 001, 16, 1 27) | |
| 2528 | EL SE | |
| 2529 | IF (@ERROR = 0 AND @RO WCOUNT > 1 ) | |
| 2530 | SET @ERROR = - 1 | |
| 2531 | ||
| 2532 | SET NOCOUN T OFF | |
| 2533 | ||
| 2534 | RETURN (@E RROR) | |
| 2535 | ||
| 2536 | ||
| 2537 | ||
| 2538 | ||
| 2539 | GO | |
| 2540 | ||
| 2541 | ||
| 2542 | if exists (select * from dbo.s ysobjects where id = object_id (N'[dbo].[ spUpdateVb ecsGlobalC onfig]') a nd OBJECTP ROPERTY(id , N'IsProc edure') = 1) | |
| 2543 | drop proce dure [dbo] .[spUpdate VbecsGloba lConfig] | |
| 2544 | GO | |
| 2545 | ||
| 2546 | SET ANSI_N ULLS ON | |
| 2547 | GO | |
| 2548 | ||
| 2549 | SET QUOTED _IDENTIFIE R ON | |
| 2550 | GO | |
| 2551 | ||
| 2552 | ||
| 2553 | ||
| 2554 | /********* ********** ********** ********** ********** ********** ********** ********** ********** ********** ********** ********** ********** ********** ********** ********** ********** ****** | |
| 2555 | ** De sc: Upda tes VbecsG lobalconfi g table (D efect 3404 57) | |
| 2556 | ** | |
| 2557 | ** Au thor: Pabl o Sanchez | |
| 2558 | ** | |
| 2559 | ** Da te: 07/1 0/2016 | |
| 2560 | ********** ********** ********** ********** ********** ********** ********** ********** ********** ********** ********** ********** ********** ********** ********** ********** ********** ***** | |
| 2561 | ** Mo dified: | |
| 2562 | ** Da te Name Descriptio n | |
| 2563 | ** -- ---------- ------- -------- ---------- ----- ---- ---------- ---------- ---------- ---------- ---------- ---------- ---------- ---------- ---------- ---------- ---------- ---------- ---------- ---------- ---------- ---------- ---- | |
| 2564 | ** 02 /14/17 K. Adu -Poku ** Reviewe d for comp liance wit h database standards and recom mendations ** | |
| 2565 | ********** ********** ********** ********** ********** ********** ********** ********** ********** ********** ********** ********** ********** ********** ********** ********** ********** *****/ | |
| 2566 | CREATE PRO CEDURE [db o].[spUpda teVbecsGlo balConfig] | |
| 2567 | ( | |
| 2568 | @a pplication name varch ar(100), | |
| 2569 | @param etername v archar(100 ), | |
| 2570 | @param etervalue varchar(10 00), | |
| 2571 | @lastu pdatedate datetime = NULL, | |
| 2572 | @lastu pdateuser varchar(30 ) = NULL, | |
| 2573 | @r owversion TIMESTAMP, | |
| 2574 | @l astupdatef unctionid INT | |
| 2575 | ||
| 2576 | ||
| 2577 | ) | |
| 2578 | AS | |
| 2579 | ||
| 2580 | SET NOCOUN T ON | |
| 2581 | ||
| 2582 | DECLARE @E RROR INT, | |
| 2583 | @ROW COUNT INT | |
| 2584 | ||
| 2585 | UPDATE [db o].[VbecsG lobalConfi g] | |
| 2586 | SET | |
| 2587 | [Parame terValue] = @paramet ervalue, | |
| 2588 | [LastUp dateDate] = ISNULL(@ lastupdate date, GETU TCDATE()), | |
| 2589 | [LastUp dateUser] = ISNULL(@ lastupdate user, SUSE R_NAME()), | |
| 2590 | [LastUp dateFuncti onId] = @l astupdatef unctionid | |
| 2591 | ||
| 2592 | WHERE [Pa rameterNam e] = @para metername AND [Appli cationName ] = @appli cationname AND [RowV ersion] = @rowversio n | |
| 2593 | SE LECT @ERRO R = @@ERRO R, @ROWCOU NT = @@ROW COUNT | |
| 2594 | ||
| 2595 | IF @ERROR = 0 AND @ROW COUNT <> 1 AND ( SEL ECT COUNT( 1) FROM db o.VbecsGlo balConfig WHERE [Ro wVersion] = @rowvers ion ) <> 1 | |
| 2596 | RA ISERROR(50 001, 16, 1 27) | |
| 2597 | EL SE | |
| 2598 | IF (@ERROR = 0 AND @RO WCOUNT > 1 ) | |
| 2599 | SET @ERROR = - 1 | |
| 2600 | ||
| 2601 | SET NOCOUN T OFF | |
| 2602 | ||
| 2603 | RETURN (@E RROR) | |
| 2604 | ||
| 2605 | ||
| 2606 | ||
| 2607 | ||
| 2608 | GO | |
| 2609 | ||
| 2610 | ||
| 2611 | ||
| 2612 | ||
| 2613 | if exists (select * from dbo.s ysobjects where id = object_id (N'[dbo].[ spHL7GetIn terface]') and OBJEC TPROPERTY( id, N'IsPr ocedure') = 1) | |
| 2614 | drop proce dure [dbo] .[spHL7Get Interface] | |
| 2615 | GO | |
| 2616 | ||
| 2617 | SET ANSI_N ULLS ON | |
| 2618 | GO | |
| 2619 | ||
| 2620 | SET QUOTED _IDENTIFIE R ON | |
| 2621 | GO | |
| 2622 | ||
| 2623 | ||
| 2624 | ||
| 2625 | /********* ********** ********** ********** ********** ********** ********** ********** ********** ********** ********** ********** ********** ********** ********** ********** ********** ****** | |
| 2626 | ** De sc: Gets an interf ace define d in the I nterfaceCo ntrol tabl e. | |
| 2627 | ** | |
| 2628 | ** Au thor: Bria n Tomlin | |
| 2629 | ** | |
| 2630 | ** Da te: 03/2 7/2004 | |
| 2631 | ********** ********** ********** ********** ********** ********** ********** ********** ********** ********** ********** ********** ********** ********** ********** ********** ********** ***** | |
| 2632 | ** Mo dified: | |
| 2633 | ** Da te Name Descriptio n | |
| 2634 | ** -- ---------- ------- -------- ---------- ----- ---- ---------- ---------- ---------- ---------- ---------- ---------- ---------- ---------- ---------- ---------- ---------- ---------- ---------- ---------- ---------- ---------- ---- | |
| 2635 | ** 06 /29/05 N. Pat erson ** Reviewe d for comp liance wit h database standards and recom mendations ** | |
| 2636 | ** Comment He ader Adjus ted, Added NOCOUNT, Specified table owne rs | |
| 2637 | ** 11 /14/08 M. Smi th The Interf aceControl was split into two tables. C hanged to join the n ew Interfa ce referen ce table. CR 2516 | |
| 2638 | ** 12 /09/08 K. Adu -Poku ** Reviewe d for comp liance wit h database standards and recom mendations ** | |
| 2639 | ** 03 /05/09 D. Ask ew Return all interface parameter s to load the Interf ace object (CR 2606) | |
| 2640 | ** 07 /18/16 M. Gla ze Extend pro c to suppo rt all fun ctionality previousl y in spHL7 GetInterfa ceControlP arameters (Defect 34 0457). | |
| 2641 | ** 09 /23/16 M. Gla ze Replace lo gic in spH L7GetInter face proc with simil ar logic i n the new view V_Lin earInterfa ce (Defect 340457). | |
| 2642 | ** 02 /14/17 K. Adu -Poku ** Reviewe d for comp liance wit h database standards and recom mendations ** | |
| 2643 | ********** ********** ********** ********** ********** ********** ********** ********** ********** ********** ********** ********** ********** ********** ********** ********** ********** *****/ | |
| 2644 | CREATE PRO CEDURE [db o].[spHL7G etInterfac e] | |
| 2645 | ( | |
| 2646 | @i nterfaceap plicationi d varchar( 50) = null , | |
| 2647 | @v becsapplic ationid varchar( 50) = null , | |
| 2648 | @i nterfacena me varchar( 50) = null , | |
| 2649 | @inter faceid tinyint = null | |
| 2650 | ) | |
| 2651 | ||
| 2652 | AS | |
| 2653 | ||
| 2654 | SET NOCOUN T ON | |
| 2655 | ||
| 2656 | SE LECT | |
| 2657 | vl.[In terfaceId] , | |
| 2658 | vl.[In terfaceNam e], | |
| 2659 | vl.[Fi eldSeparat or], | |
| 2660 | vl.[En codingChar acters], | |
| 2661 | vl.[In terfaceApp licationID ], | |
| 2662 | vl.[Vb ecsApplica tionID], | |
| 2663 | vl.[Ve rsionID], | |
| 2664 | vl.[Ap plicationA ckType], | |
| 2665 | ||
| 2666 | vl.[Vb ecsFacilit yID], | |
| 2667 | vl.[Lo gEventsInd icator], | |
| 2668 | vl.[Pr ocessingID ], | |
| 2669 | vl.[Pu rgeSuccess fulMessage ], | |
| 2670 | vl.[Pu rgeUnSucce ssfulMessa ge], | |
| 2671 | ||
| 2672 | vl.End PointId | |
| 2673 | ||
| 2674 | FR OM V_Li nearInterf ace vl | |
| 2675 | ||
| 2676 | WH ERE | |
| 2677 | ( @i nterfacena me IS NOT NULL AND v l.Interfac eName = @i nterfacena me ) | |
| 2678 | ||
| 2679 | OR | |
| 2680 | ||
| 2681 | ( @i nterfaceid IS NOT NU LL AND vl. InterfaceI d = @inter faceid ) | |
| 2682 | ||
| 2683 | OR | |
| 2684 | ||
| 2685 | ( @i nterfaceap plicationi d IS NOT N ULL AND @v becsapplic ationid IS NOT NULL AND vl.Int erfaceAppl icationId = @interfa ceapplicat ionid AND vl.VbecsAp plicationI d = @vbecs applicatio nid ) | |
| 2686 | ||
| 2687 | OR | |
| 2688 | ||
| 2689 | ( @i nterfacena me IS NULL AND @inte rfaceid IS NULL AND @interface applicatio nid IS NUL L AND @vbe csapplicat ionid IS N ULL ) | |
| 2690 | ||
| 2691 | SET NOCOUN T OFF | |
| 2692 | ||
| 2693 | ||
| 2694 | ||
| 2695 | ||
| 2696 | ||
| 2697 | ||
| 2698 | ||
| 2699 | GO | |
| 2700 | ||
| 2701 | ||
| 2702 | ||
| 2703 | if exists (select * from dbo.s ysobjects where id = object_id (N'[dbo].[ spHL7GetPe ndingTrans missionMes sages]') a nd OBJECTP ROPERTY(id , N'IsProc edure') = 1) | |
| 2704 | drop proce dure [dbo] .[spHL7Get PendingTra nsmissionM essages] | |
| 2705 | GO | |
| 2706 | ||
| 2707 | SET ANSI_N ULLS ON | |
| 2708 | GO | |
| 2709 | ||
| 2710 | SET QUOTED _IDENTIFIE R ON | |
| 2711 | GO | |
| 2712 | ||
| 2713 | ||
| 2714 | ||
| 2715 | /********* ********** ********** ********** ********** ********** ********** ********** ********** ********** ********** ********** ********** ********** ********** ********** ********** ****** | |
| 2716 | ** Desc: Gets H L7 Message s with a P endingTran smission s tate and s ets the | |
| 2717 | ** Me ssageStatu s to Await ing Respon se. | |
| 2718 | ** | |
| 2719 | ** Author: Br ian Tomlin | |
| 2720 | ** | |
| 2721 | ** Date: 3/04/2 004 | |
| 2722 | ** | |
| 2723 | ********** ********** ********** ********** ********** ********** ********** ********** ********** ********** ********** ********** ********** ********** ********** ********** ********** ***** | |
| 2724 | ** Mo dified: | |
| 2725 | ** Da te Name Descri ption | |
| 2726 | ** ---------- - ------ ------- ------ ---------- ---------- ---------- ---------- ---------- ---------- ---------- ---------- ---------- ---------- ---------- ---------- ---------- ---------- ---------- ---------- -- | |
| 2727 | ** 06 /29/05 N. Pat erson ** Reviewe d for comp liance wit h database standards and recom mendations ** | |
| 2728 | ** Comm ent Header Adjusted, Added NO COUNT, Spe cified tab le owners | |
| 2729 | ** 03 /17/11 D. Ask ew Removed co mmented-ou t code; ad ded Tansmi tCount (CR 2962) | |
| 2730 | ** 03 /20/11 D. Ask ew Added code to NOT re turn messa ges which have been re-sent Re TransmitAt tempts + 1 (CR 2967) | |
| 2731 | ** 04 /18/11 K. Adu -Poku ** Reviewe d for comp liance wit h database standards and recom mendations ** | |
| 2732 | ** 06 /19/12 C. Van Stedum Changed th e where cl ause of th e first up date state ment so th at it coul d grab the first row with a st atus of 1 and has no t exceeded its retry attempts CR 3233 | |
| 2733 | ** 06 /26/12 K. Adu -Poku ** Reviewe d for comp liance wit h database standards and recom mendations ** | |
| 2734 | ** 07 /18/16 M. Gla ze Updated to reflect c hanges mad e for Vbec sAdmin con figuration such as d eleting In terfaceCon trol table (Defect 3 40457). | |
| 2735 | ** 11 /29/16 M. Gla ze Remove unu sed _ReTra nsmitAttem pts lookup s for indi vidual int erfaces (D efect 3404 57). | |
| 2736 | ** 02 /14/17 K. Adu -Poku ** Reviewe d for comp liance wit h database standards and recom mendations ** | |
| 2737 | ********** ********** ********** ********** ********** ********** ********** ********** ********** ********** ********** ********** ********** ********** ********** ********** ********** *****/ | |
| 2738 | CREATE PRO CEDURE [db o].[spHL7G etPendingT ransmissio nMessages] | |
| 2739 | ||
| 2740 | AS | |
| 2741 | ||
| 2742 | SET NOCOUN T ON | |
| 2743 | ||
| 2744 | DECLARE @p endingmess agelogid INT | |
| 2745 | DECLARE @m essagestre am VARCHAR(3 500) | |
| 2746 | DECLARE @i nterfaceid TINYINT | |
| 2747 | DECLARE @m essagecont rolid VA RCHAR(20) | |
| 2748 | DECLARE @t ransmitcou nt TINYIN T | |
| 2749 | ||
| 2750 | UP DATE | |
| 2751 | dbo.Me ssageLog | |
| 2752 | SE T | |
| 2753 | @pendi ngmessagel ogid = Mes sageLogId, | |
| 2754 | @inter faceid = I nterfaceId , | |
| 2755 | @messa gecontroli d = Messag eControlId , | |
| 2756 | @messa gestream = MessageSt ream, | |
| 2757 | @trans mitcount = TransmitC ount, | |
| 2758 | Messag eStatusCod e = 8, | |
| 2759 | LastUp dateDate = GETUTCDAT E(), | |
| 2760 | LastUp dateUser = SUSER_NAM E() | |
| 2761 | WH ERE | |
| 2762 | Messag eLogId = ( | |
| 2763 | SELECT TOP 1 Mes sageLogId | |
| 2764 | FROM d bo.Message Log ML | |
| 2765 | IN NER JOIN d bo.Interfa ce I ON ML .interface Id = I.Int erfaceId | |
| 2766 | LE FT JOIN db o.VbecsGlo balConfig vgcr on I. Applicatio nName = vg cr.Applica tionName a nd vgcr.Pa rameterNam e = 'VBECS _ReTransmi tAttempts' | |
| 2767 | WHERE MessageSta tusCode = 1 | |
| 2768 | an d ISNULL(T ransmitCou nt, 0) <= isnull(con vert(int, vgcr.Param eterValue) , 0) | |
| 2769 | ) | |
| 2770 | ||
| 2771 | --If the re's a mes sage to pr ocess, sen d back the fields | |
| 2772 | IF @pend ingmessage logid IS N OT NULL | |
| 2773 | BEGIN | |
| 2774 | SE LECT @i nterfaceid AS Interf aceId, | |
| 2775 | @m essagecont rolid AS M essageCont rolId, | |
| 2776 | @m essagestre am AS Mess ageStream, | |
| 2777 | IS NULL(@tran smitcount, 0) AS Tra nsmitCount | |
| 2778 | END | |
| 2779 | ||
| 2780 | ||
| 2781 | SET NOCOUN T OFF | |
| 2782 | ||
| 2783 | ||
| 2784 | GO | |
| 2785 | ||
| 2786 | ||
| 2787 | if exists (select * from dbo.s ysobjects where id = object_id (N'[dbo].[ spHL7Inser tMessageLo g]') and O BJECTPROPE RTY(id, N' IsProcedur e') = 1) | |
| 2788 | drop proce dure [dbo] .[spHL7Ins ertMessage Log] | |
| 2789 | GO | |
| 2790 | ||
| 2791 | ||
| 2792 | SET ANSI_N ULLS ON | |
| 2793 | GO | |
| 2794 | ||
| 2795 | SET QUOTED _IDENTIFIE R ON | |
| 2796 | GO | |
| 2797 | ||
| 2798 | ||
| 2799 | /********* ********** ********** ********** ********** ********** ********** ********** ********** ********** ********** ********** ********** ********** ********** ********** ********** ****** | |
| 2800 | ** De sc: Inse rts entry in the Mes sageLog ta ble | |
| 2801 | ** | |
| 2802 | ** Au thor: Bria n Tomlin | |
| 2803 | ** | |
| 2804 | ** Da te: 10/0 8/2003 | |
| 2805 | ********** ********** ********** ********** ********** ********** ********** ********** ********** ********** ********** ********** ********** ********** ********** ********** ********** ***** | |
| 2806 | ** Mo dified: | |
| 2807 | ** Da te Name De scription | |
| 2808 | ** -- ---------- ------- -------- ---------- ----- ---- ---------- ---------- ---------- ---------- ---------- ---------- ---------- ---------- ---------- ---------- ---------- ---------- ---------- ---------- ---------- ---------- ---- | |
| 2809 | ** 01 /10/05 D. Ask ew Ad ded @lastu pdatedate | |
| 2810 | ** 06 /29/05 NPater son ** Reviewe d for comp liance wit h database standards and recom mendations ** | |
| 2811 | ** Comment He ader Adjus ted, Added NOCOUNT, Specified table owne rs, NULLs are OK no change | |
| 2812 | Did not ad d error ch ecking as planned, as it woul d change l ogic | |
| 2813 | ** 09 /02/05 Lohse Changed co mments fie ld length from 255 t o 510 | |
| 2814 | ** 07 /18/16 M. Gla ze Changed In terfaceCon trolId to InterfaceI d (Defect 340457). | |
| 2815 | ** 02 /14/17 K. Adu -Poku ** Reviewe d for comp liance wit h database standards and recom mendations ** | |
| 2816 | ********** ********** ********** ********** ********** ********** ********** ********** ********** ********** ********** ********** ********** ********** ********** ********** ********** *****/ | |
| 2817 | CREATE PRO CEDURE [db o].[spHL7I nsertMessa geLog] | |
| 2818 | ( | |
| 2819 | @m essagestat uscode INT, | |
| 2820 | @m essagecont rolid VARCHAR( 20), | |
| 2821 | @m essagetype VARCHAR( 13), | |
| 2822 | @d atetimeofm essage DATETIME , | |
| 2823 | @s endingappl ication VARCHAR( 50), | |
| 2824 | @r eceivingap plication VARCHAR( 50), | |
| 2825 | @m essagestre am VARCHA R(3500), | |
| 2826 | @i nterfaceid TINYIN T, | |
| 2827 | @e rrortext VARCHAR( 3500) = NU LL, | |
| 2828 | @l astupdateu ser VARCHA R(30), | |
| 2829 | @l astupdatef unctionid INT, | |
| 2830 | @l astupdated ate DATETI ME | |
| 2831 | ) | |
| 2832 | AS | |
| 2833 | ||
| 2834 | SET NOCOUN T ON | |
| 2835 | ||
| 2836 | DECLARE @E RROR INT, | |
| 2837 | @R OWCOUNT INT | |
| 2838 | ||
| 2839 | SET @ERROR = 0 | |
| 2840 | ||
| 2841 | IF EXISTS( | |
| 2842 | SE LECT Messa geControlI D FROM dbo .MessageLo g WHERE Me ssageContr olID = @me ssagecontr olid | |
| 2843 | ) | |
| 2844 | ||
| 2845 | BE GIN | |
| 2846 | UPDA TE | |
| 2847 | dbo.Me ssageLog | |
| 2848 | SET | |
| 2849 | Messag eStatusCod e = @m essagestat uscode, | |
| 2850 | Messag eControlID = @m essagecont rolid, | |
| 2851 | Messag eType = @m essagetype , | |
| 2852 | DateTi meOfMessag e = @d atetimeofm essage, | |
| 2853 | Sendin gApplicati on = @s endingappl ication, | |
| 2854 | Receiv ingApplica tion = @r eceivingap plication, | |
| 2855 | Messag eStream = @m essagestre am, | |
| 2856 | Interf aceID = @interface id, | |
| 2857 | ErrorT ext = @e rrortext, | |
| 2858 | LastUp dateDate = @l astupdated ate, | |
| 2859 | LastUp dateUser = @l astupdateu ser, | |
| 2860 | LastUp dateFuncti onId = @l astupdatef unctionid | |
| 2861 | WHER E | |
| 2862 | Messag eControlID = @messag econtrolid | |
| 2863 | EN D | |
| 2864 | ||
| 2865 | ELSE | |
| 2866 | ||
| 2867 | BE GIN | |
| 2868 | INSERT INTO | |
| 2869 | dbo.Mess ageLog | |
| 2870 | ( | |
| 2871 | MessageS tatusCode, | |
| 2872 | MessageC ontrolID, | |
| 2873 | MessageT ype, | |
| 2874 | DateTime OfMessage, | |
| 2875 | SendingA pplication , | |
| 2876 | Receivin gApplicati on, | |
| 2877 | MessageS tream, | |
| 2878 | Interfac eID, | |
| 2879 | ErrorTex t, | |
| 2880 | LastUpda teDate, | |
| 2881 | LastUpda teUser, | |
| 2882 | LastUpda teFunction Id | |
| 2883 | ) | |
| 2884 | VALUES | |
| 2885 | ( | |
| 2886 | @message statuscode , | |
| 2887 | @message controlid, | |
| 2888 | @message type, | |
| 2889 | @datetim eofmessage , | |
| 2890 | @sending applicatio n, | |
| 2891 | @receivi ngapplicat ion, | |
| 2892 | @message stream, | |
| 2893 | @interfa ceid, | |
| 2894 | @errorte xt, | |
| 2895 | @lastupd atedate, | |
| 2896 | @lastupd ateuser, | |
| 2897 | @lastupd atefunctio nid | |
| 2898 | ) | |
| 2899 | ||
| 2900 | SELECT @ERROR = @@ERROR, @ ROWCOUNT = @@ROWCOUN T | |
| 2901 | IF (@ERR OR = 0) | |
| 2902 | IF @ROWCOU NT <> 1 | |
| 2903 | SE T @ERROR = -1 | |
| 2904 | EN D | |
| 2905 | ||
| 2906 | SET NOCOUN T OFF | |
| 2907 | ||
| 2908 | RETURN (@E RROR) | |
| 2909 | ||
| 2910 | ||
| 2911 | GO | |
| 2912 | ||
| 2913 | ||
| 2914 | if exists (select * from dbo.s ysobjects where id = object_id (N'[dbo].[ spHL7Purge MessageLog ]') and OB JECTPROPER TY(id, N'I sProcedure ') = 1) | |
| 2915 | drop proce dure [dbo] .[spHL7Pur geMessageL og] | |
| 2916 | GO | |
| 2917 | ||
| 2918 | ||
| 2919 | SET ANSI_N ULLS ON | |
| 2920 | GO | |
| 2921 | ||
| 2922 | SET QUOTED _IDENTIFIE R ON | |
| 2923 | GO | |
| 2924 | ||
| 2925 | ||
| 2926 | ||
| 2927 | /********* ********** ********** ********** ********** ********** ********** ********** ********** ********** ********** ********** ********** ********** ********** ********** ********** ****** | |
| 2928 | ** De sc: Purg es HL7 mes sages from the Messa geLog tabl e based on criteria defined in VBECS Adm inistrator (CR 2519) | |
| 2929 | ** | |
| 2930 | ** Au thor: Davi d Askew | |
| 2931 | ** | |
| 2932 | ** Da te: 11/2 2/08 | |
| 2933 | ********** ********** ********** ********** ********** ********** ********** ********** ********** ********** ********** ********** ********** ********** ********** ********** ********** ***** | |
| 2934 | ** Mo dified: | |
| 2935 | ** Da te Name De scription | |
| 2936 | ** -- ---------- ------- -------- ---------- ----- ---- ---------- ---------- ---------- ---------- ---------- ---------- ---------- ---------- ---------- ---------- ---------- ---------- ---------- ---------- ---------- ---------- ---- | |
| 2937 | ** 7/ 28/11 D. A skew Changed MessageSta tusCode IN (2, 6) to MessageSt atusCode I N (1, 2, 6 , 7, 8) to handle pu rging | |
| 2938 | ** failed mes sages too. (CR 3059) | |
| 2939 | ** 6/ 26/12 Lohs e Removed 2nd WHERE clause so that only processed messages a re purged (MessageSt atusCode = 3) CR 323 3 | |
| 2940 | ** 6/ 26/12 K. A du-Poku ** Revie wed for co mpliance w ith databa se standar ds and rec ommendatio ns ** | |
| 2941 | ** 8/ 04/16 P. S anchez Changed table refe rences to use Interf ace table (Defect 34 0457). | |
| 2942 | ** 2/ 14/17 K. A du-Poku ** Revie wed for co mpliance w ith databa se standar ds and rec ommendatio ns ** | |
| 2943 | ********** ********** ********** ********** ********** ********** ********** ********** ********** ********** ********** ********** ********** ********** ********** ********** ********** *****/ | |
| 2944 | CREATE PRO CEDURE [db o].[spHL7P urgeMessag eLog] | |
| 2945 | ||
| 2946 | AS | |
| 2947 | ||
| 2948 | SET NOCOUN T ON | |
| 2949 | ||
| 2950 | DE CLARE @Row Count INT | |
| 2951 | ||
| 2952 | DE CLARE @Now DATETIME | |
| 2953 | ||
| 2954 | SE T @RowCoun t = 0 | |
| 2955 | ||
| 2956 | SE T @Now = G ETUTCDATE( ) | |
| 2957 | ||
| 2958 | DE LETE ML | |
| 2959 | ||
| 2960 | FR OM | |
| 2961 | dbo. MessageLog ML | |
| 2962 | ||
| 2963 | JOIN dbo.Inter face I ON ML.Interfa ceId = I.I nterfaceId | |
| 2964 | ||
| 2965 | WH ERE | |
| 2966 | ||
| 2967 | ( Me ssageStatu sCode = 3 AND ML.Las tUpdateDat e <= DATEA DD(DAY, -P urgeSucces sfulMessag e, @Now ) ) | |
| 2968 | ||
| 2969 | ||
| 2970 | SE T @RowCoun t = @@ROWC OUNT | |
| 2971 | ||
| 2972 | ||
| 2973 | SET NOCOUN T OFF | |
| 2974 | ||
| 2975 | RETURN (@R owCount) | |
| 2976 | ||
| 2977 | GO | |
| 2978 | ||
| 2979 | ||
| 2980 | if exists (select * from dbo.s ysobjects where id = object_id (N'[dbo].[ spInsertVb ecsEndPoin t]') and O BJECTPROPE RTY(id, N' IsProcedur e') = 1) | |
| 2981 | drop proce dure [dbo] .[spInsert VbecsEndPo int] | |
| 2982 | GO | |
| 2983 | ||
| 2984 | SET ANSI_N ULLS ON | |
| 2985 | GO | |
| 2986 | ||
| 2987 | SET QUOTED _IDENTIFIE R ON | |
| 2988 | GO | |
| 2989 | ||
| 2990 | ||
| 2991 | ||
| 2992 | /********* ********** ********** ********** ********** ********** ********** ********** ********** ********** ********** ********** ********** ********** ********** ********** ********** ****** | |
| 2993 | ** De sc: Inse rt into Vb ecsEndPoin t table (D efect 3404 57). | |
| 2994 | ** | |
| 2995 | ** Au thor: Pabl o Sanchez | |
| 2996 | ** | |
| 2997 | ** Da te: 08/3 1/2016 | |
| 2998 | ********** ********** ********** ********** ********** ********** ********** ********** ********** ********** ********** ********** ********** ********** ********** ********** ********** ***** | |
| 2999 | ** Mo dified: | |
| 3000 | ** Da te Name De scription | |
| 3001 | ** -- ---------- ------- -------- ---------- ----- ---- ---------- ---------- ---------- ---------- ---------- ---------- ---------- ---------- ---------- ---------- ---------- ----- | |
| 3002 | ** 02 /14/17 K. Adu -Poku ** Reviewe d for comp liance wit h database standards and recom mendations ** | |
| 3003 | ********** ********** ********** ********** ********** ********** ********** ********** ********** ********** ********** ********** ********** ********** ********** ********** ********** *****/ | |
| 3004 | CREATE PRO CEDURE [db o].[spInse rtVbecsEnd Point] | |
| 3005 | ( | |
| 3006 | @vbe csendpoint id INT, | |
| 3007 | @end pointaddre ss varchar (255), | |
| 3008 | @end pointport INT, | |
| 3009 | @end pointtype varchar(50 ), | |
| 3010 | @las tupdatedat e DATETIME , | |
| 3011 | @las tupdateuse r varchar( 30), | |
| 3012 | @las tupdatefun ctionid INT | |
| 3013 | ||
| 3014 | ) | |
| 3015 | AS | |
| 3016 | ||
| 3017 | SET NOCOUN T ON | |
| 3018 | ||
| 3019 | DECLARE @e rror INT | |
| 3020 | DECLARE @r owcount INT | |
| 3021 | ||
| 3022 | ||
| 3023 | INSERT INT O [dbo].[V becsEndPoi nt] | |
| 3024 | ( | |
| 3025 | VbecsE ndPointId, | |
| 3026 | EndPoi ntAddress, | |
| 3027 | EndPoi ntPort, | |
| 3028 | EndPoi ntType, | |
| 3029 | LastUp dateDate, | |
| 3030 | LastUp dateUser, | |
| 3031 | LastUp dateFuncti onId | |
| 3032 | ) | |
| 3033 | VALUE S | |
| 3034 | ( | |
| 3035 | @ vbecsendpo intid, | |
| 3036 | @ endpointad dress, | |
| 3037 | @ endpointpo rt, | |
| 3038 | @ endpointty pe, | |
| 3039 | @ lastupdate date, | |
| 3040 | @ lastupdate user, | |
| 3041 | @ lastupdate functionid | |
| 3042 | ) | |
| 3043 | ||
| 3044 | ||
| 3045 | SE LECT @erro r = @@ERRO R, @rowcou nt = @@ROW COUNT | |
| 3046 | ||
| 3047 | IF @rowcount <> 1 RAIS ERROR( 500 03, 16, 1, 'VbecsEnd Point', @r owcount ) | |
| 3048 | ||
| 3049 | SET NOCOUN T OFF | |
| 3050 | ||
| 3051 | RETURN(@er ror) | |
| 3052 | ||
| 3053 | GO | |
| 3054 | ||
| 3055 | ||
| 3056 | if exists (select * from dbo.s ysobjects where id = object_id (N'[dbo].[ spGetVbecs Divisions] ') and OBJ ECTPROPERT Y(id, N'Is Procedure' ) = 1) | |
| 3057 | drop proce dure [dbo] .[spGetVbe csDivision s] | |
| 3058 | GO | |
| 3059 | ||
| 3060 | SET ANSI_N ULLS ON | |
| 3061 | GO | |
| 3062 | ||
| 3063 | SET QUOTED _IDENTIFIE R ON | |
| 3064 | GO | |
| 3065 | ||
| 3066 | ||
| 3067 | ||
| 3068 | /********* ********** ********** ********** ********** ********** ********** ********** ********** ********** ********** ********** ********** ********** ********** ********** ********** ****** | |
| 3069 | ** De sc: Sele cts divisi on informt ion from V AMCDivisio n table | |
| 3070 | ** | |
| 3071 | ** Au thor: Stas Antropov | |
| 3072 | ** | |
| 3073 | ** Da te: 03/2 3/2005 | |
| 3074 | ********** ********** ********** ********** ********** ********** ********** ********** ********** ********** ********** ********** ********** ********** ********** ********** ********** ***** | |
| 3075 | ** Mo dified: | |
| 3076 | ** Da te Name Descriptio n | |
| 3077 | ** -- ---------- ------- -------- ---------- ----- ---- ---------- ---------- ---------- ---------- ---------- ---------- ---------- ---------- ---------- ---------- ---------- ---------- ---------- ---------- ---------- ---------- ---- | |
| 3078 | ** 07 /05/2005 NPater son ** Reviewe d for comp liance wit h database standards and recom mendations ** | |
| 3079 | ** Removed na me from he ader comme nts, added set nocou nt, specif ied object owners, s pace out S QL | |
| 3080 | ** 08 /11/2005 J.Engs trom Removed jo in on Dayl ightSaving s table. Removed se lection of DaylightS avingsYear column. | |
| 3081 | ** Changed to select Da ylighSavin gsStartDat e & Daylig hSavingsEn dDate from VamcDivis ion table. | |
| 3082 | ** 10 /18/2007 C. Jen sen Added Prin terName fi eld to acc omodate re trieval of reports p rinter (CR 2320). | |
| 3083 | ** 10 /01/2009 K.Dobr anowski Added Reac tivityPhas eCode (CR 2717) | |
| 3084 | ** 08 /18/2010 K. Adu -Poku ** Reviewe d for comp liance wit h database standards and recom mendations ** | |
| 3085 | ** 09 /01/2016 D. Koz lov Added Labe lPrinterEn dPointId t o SELECT, removed La belPrinter ComPortNum ber, Label PrinterIPA ddress and LabelPrin terTcpPort Number (De fect 34045 7). | |
| 3086 | ** 12 /19/2016 K. Adu -Poku ** Reviewe d for comp liance wit h database standards and recom mendations ** | |
| 3087 | ********** ********** ********** ********** ********** ********** ********** ********** ********** ********** ********** ********** ********** ********** ********** ********** ********** *****/ | |
| 3088 | ||
| 3089 | CREATE PRO CEDURE [db o].[spGetV becsDivisi ons] | |
| 3090 | ( | |
| 3091 | @a ctiveonly BIT | |
| 3092 | ) | |
| 3093 | ||
| 3094 | AS | |
| 3095 | ||
| 3096 | DECLARE @E RROR INT | |
| 3097 | ||
| 3098 | SET NOCOUN T ON | |
| 3099 | ||
| 3100 | SE LECT VamcDi vision.Div isionCode, | |
| 3101 | Division Guid, | |
| 3102 | Division Name, | |
| 3103 | ServiceT ypeIndicat or, | |
| 3104 | VamcDivi sion.Iccbb aRegistrat ionNumber, | |
| 3105 | Electron icCrossmat chIndicato r, | |
| 3106 | VamcDivi sion.Facil ityGuid, | |
| 3107 | Accessio nAreaId, | |
| 3108 | Facility .FacilityN ame, | |
| 3109 | LocalSup plierGuid, | |
| 3110 | Antibody ScreenDisp layCode, | |
| 3111 | MaximumS pecimenExp irationDay s, | |
| 3112 | Automate dInstrumen tIndicator , | |
| 3113 | LabelPri nterUseInd icator, | |
| 3114 | PrinterN ame, | |
| 3115 | TimeZone Id, | |
| 3116 | Daylight SavingsTyp eId, | |
| 3117 | Daylight SavingsSta rtDate, | |
| 3118 | Daylight SavingsEnd Date, | |
| 3119 | PrinterA lertsIndic ator, | |
| 3120 | PrinterA lertsPrint erName, | |
| 3121 | PrinterO rderAlertT ypeCode, | |
| 3122 | PrinterO rdersNeede dHours, | |
| 3123 | IconAler tsIndicato r, | |
| 3124 | IconOrde rAlertType Code, | |
| 3125 | IconOrde rsNeededHo urs, | |
| 3126 | IconRefr eshRate, | |
| 3127 | LoginMes sageText, | |
| 3128 | InvoiceT emplateTex t, | |
| 3129 | MedicalD irectorNam e, | |
| 3130 | LockInac tivityTime outMin, | |
| 3131 | VamcDivi sion.Recor dStatusCod e, | |
| 3132 | VamcDivi sion.[RowV ersion], | |
| 3133 | Reactivi tyPhaseCod e, | |
| 3134 | LabelPri nterEndPoi ntId | |
| 3135 | ||
| 3136 | FR OM dbo.Va mcDivision | |
| 3137 | ||
| 3138 | LEFT O UTER JOIN dbo.Facili ty | |
| 3139 | ||
| 3140 | ON dbo .Facility. FacilityGu id = dbo.V amcDivisio n.Facility Guid | |
| 3141 | ||
| 3142 | WH ERE ( @act iveonly = 1 AND dbo. VamcDivisi on.RecordS tatusCode = 'A' ) OR ( @active only = 0 ) | |
| 3143 | ||
| 3144 | SET @ERROR = @@ERROR | |
| 3145 | ||
| 3146 | SET NOCOUN T OFF | |
| 3147 | ||
| 3148 | RETURN(@ER ROR) | |
| 3149 | ||
| 3150 | ||
| 3151 | GO | |
| 3152 | ||
| 3153 | ||
| 3154 | if exists (select * from dbo.s ysobjects where id = object_id (N'[dbo].[ spInsertVb ecsGlobalC onfig]') a nd OBJECTP ROPERTY(id , N'IsProc edure') = 1) | |
| 3155 | drop proce dure [dbo] .[spInsert VbecsGloba lConfig] | |
| 3156 | GO | |
| 3157 | ||
| 3158 | SET ANSI_N ULLS ON | |
| 3159 | GO | |
| 3160 | ||
| 3161 | SET QUOTED _IDENTIFIE R ON | |
| 3162 | GO | |
| 3163 | ||
| 3164 | /********* ********** ********** ********** ********** ********** ********** ********** ********** ********** ********** ********** ********** ********** ********** ********** ********** ****** | |
| 3165 | ** De sc: Inse rts parame ter into V becsGlobal Config tab le. | |
| 3166 | ** | |
| 3167 | ** Au thor: Carr ie Van Ste dum | |
| 3168 | ** | |
| 3169 | ** Da te: 01/1 5/2013 | |
| 3170 | ********** ********** ********** ********** ********** ********** ********** ********** ********** ********** ********** ********** ********** ********** ********** ********** ********** ***** | |
| 3171 | ** Mo dified: | |
| 3172 | ** Da te Name Descriptio n | |
| 3173 | ** -- ---------- -- ------ --- ---------- -------- | |
| 3174 | ** 11 /01/2013 K. Adu -Poku ** Reviewe d for comp liance wit h database standards and recom mendations ** | |
| 3175 | ** 09 /04/2016 M. Gla ze Added upda te section (Defect 3 40457). | |
| 3176 | ** 02 /14/17 K. Adu -Poku ** Reviewe d for comp liance wit h database standards and recom mendations ** | |
| 3177 | ********** ********** ********** ********** ********** ********** ********** ********** ********** ********** ********** ********** ********** ********** ********** ********** ********** *****/ | |
| 3178 | CREATE PRO CEDURE [db o].[spInse rtVbecsGlo balConfig] | |
| 3179 | ( | |
| 3180 | @a pplication name VA RCHAR(100) , | |
| 3181 | @p arameterna me VARCHAR( 100), | |
| 3182 | @p arameterva lue VARCHAR( 1000), | |
| 3183 | @l astupdateu ser VARCHAR( 30), | |
| 3184 | @l astupdatef unctionid INT, | |
| 3185 | @l astupdated ate DATETIME | |
| 3186 | ) | |
| 3187 | ||
| 3188 | AS | |
| 3189 | ||
| 3190 | SET NOCOUN T ON | |
| 3191 | ||
| 3192 | DE CLARE @err or INT, | |
| 3193 | @ro wcount INT ; | |
| 3194 | ||
| 3195 | if exists (s elect 1 fr om dbo.Vbe csGlobalCo nfig where Applicati onName=@ap plicationn ame and Pa rameterNam e=@paramet ername) | |
| 3196 | be gin | |
| 3197 | ||
| 3198 | upda te dbo.Vbe csGlobalCo nfig | |
| 3199 | set Pa rameterVal ue = @para metervalue , | |
| 3200 | La stUpdateDa te = @last updatedate , | |
| 3201 | LastUpda teUser = @ lastupdate user, | |
| 3202 | LastUpda teFunction ID = @last updatefunc tionid | |
| 3203 | where Applicatio nName = @a pplication name | |
| 3204 | and ParameterN ame = @par ametername ; | |
| 3205 | ||
| 3206 | en d | |
| 3207 | el se | |
| 3208 | be gin | |
| 3209 | ||
| 3210 | INSE RT INTO dbo.Vbec sGlobalCon fig | |
| 3211 | ||
| 3212 | ( applic ationname, | |
| 3213 | Parame terName , | |
| 3214 | Parame terValue , | |
| 3215 | LastUp dateDate , | |
| 3216 | LastUp dateUser , | |
| 3217 | LastUp dateFuncti onId | |
| 3218 | ) | |
| 3219 | VALU ES | |
| 3220 | ( | |
| 3221 | @applica tionname, | |
| 3222 | @paramet ername, | |
| 3223 | @paramet ervalue, | |
| 3224 | @lastupd atedate, | |
| 3225 | @lastupd ateuser, | |
| 3226 | @lastupd atefunctio nid | |
| 3227 | ); | |
| 3228 | ||
| 3229 | SELE CT @error = @@ERROR, @rowcoun t = @@ROWC OUNT; | |
| 3230 | ||
| 3231 | en d; | |
| 3232 | ||
| 3233 | ||
| 3234 | IF @rowcount <> 1 RAIS ERROR( 500 02, 16, 1, 'VbecsGlo balConfig' , @rowcoun t ) | |
| 3235 | ||
| 3236 | SET NOCOUN T OFF | |
| 3237 | ||
| 3238 | RETURN(isn ull(@error , 0)) | |
| 3239 | ||
| 3240 | GO | |
| 3241 | ||
| 3242 | ||
| 3243 | ||
| 3244 | ||
| 3245 | ||
| 3246 | ||
| 3247 | --Permissi on | |
| 3248 | GRANT EXEC UTE ON [d bo].[spGet VbecsEndPo int] TO [V becsAppUse r] | |
| 3249 | GO | |
| 3250 | ||
| 3251 | GRANT EXEC UTE ON [d bo].[spUpd ateVbecsEn dPoint] TO [VbecsApp User] | |
| 3252 | GO | |
| 3253 | ||
| 3254 | GRANT EXEC UTE ON [d bo].[spUpd ateVbecsGl obalConfig ] TO [Vbec sAppUser] | |
| 3255 | GO | |
| 3256 | ||
| 3257 | GRANT EXEC UTE ON [d bo].[spHL7 GetInterfa ce] TO [Vb ecsAppUser ] | |
| 3258 | GO | |
| 3259 | ||
| 3260 | GRANT EXEC UTE ON [d bo].[spHL7 GetPending Transmissi onMessages ] TO [Vbec sAppUser] | |
| 3261 | GO | |
| 3262 | ||
| 3263 | GRANT EXEC UTE ON [d bo].[spHL7 InsertMess ageLog] TO [VbecsApp User] | |
| 3264 | GO | |
| 3265 | ||
| 3266 | GRANT EXEC UTE ON [d bo].[spHL7 PurgeMessa geLog] TO [VbecsAppU ser] | |
| 3267 | GO | |
| 3268 | ||
| 3269 | GRANT EXEC UTE ON [d bo].[spIns ertVbecsEn dPoint] TO [VbecsApp User] | |
| 3270 | GO | |
| 3271 | ||
| 3272 | GRANT EXEC UTE ON [d bo].[spGet VbecsDivis ions] TO [ VbecsAppUs er] | |
| 3273 | GO | |
| 3274 | ||
| 3275 | GRANT EXEC UTE ON [d bo].[spIns ertVbecsGl obalConfig ] TO [Vbec sAppUser] | |
| 3276 | GO | |
| 3277 | ||
| 3278 | ||
| 3279 | ||
| 3280 | --Add Data | |
| 3281 | --Data Mig ration Scr ipt | |
| 3282 | ||
| 3283 | declare @u pdateDate date; | |
| 3284 | set @updat eDate = ge tUTCdate() ; | |
| 3285 | ||
| 3286 | declare @u pdateUser varchar(25 5); | |
| 3287 | select @up dateUser = 'VBECS' ---nt_us er_name fr om sys.dm_ exec_sessi ons where session_id =@@SPID; | |
| 3288 | ||
| 3289 | declare @a pplication Name varch ar(100); | |
| 3290 | declare @p arameterNa me varchar (100); | |
| 3291 | declare @p arameterVa lue varcha r(100); | |
| 3292 | ||
| 3293 | ||
| 3294 | ||
| 3295 | /* | |
| 3296 | ** * SECTION 2: transfe r data fro m Interfac eControl t o new stru cture: | |
| 3297 | - In terface | |
| 3298 | - Vb ecsGlobalC onfig | |
| 3299 | - Vb ecsEndPoin t | |
| 3300 | */ | |
| 3301 | ||
| 3302 | -- 2.1. up date Appli cationName and Confi gPrefix fo r interfac es | |
| 3303 | update i | |
| 3304 | se t i.Applic ationName = 'HL7Serv ice', | |
| 3305 | i.Co nfigPrefix = 'Interf ace_' + i. InterfaceN ame | |
| 3306 | from Inter face i; | |
| 3307 | ||
| 3308 | -- 2.2. co py data fr om Interfa ceControl to Interfa ce | |
| 3309 | -- this replaces the values that were filled in by the de fault cons traints ab ove | |
| 3310 | update i | |
| 3311 | se t i.Proces singId = i c.Processi ngId, | |
| 3312 | i.PurgeS uccessfulM essage = 7 , | |
| 3313 | i. PurgeUnSuc cessfulMes sage = 7, | |
| 3314 | i. LogEventsI ndicator = 1, | |
| 3315 | i. VbecsFacil ityId = 'V BECS', | |
| 3316 | i.La stUpdateDa te = '2016 -09-15', | |
| 3317 | i.La stUpdateUs er = 'vhai shadupok' | |
| 3318 | from Inter face i | |
| 3319 | inner join Interface Control ic on ic.Int erfaceId = i.Interfa ceId; | |
| 3320 | ||
| 3321 | ||
| 3322 | -- 2.3. lo op through Interface s and add EndPoints one by one | |
| 3323 | ||
| 3324 | declare @i nterfaceId int; | |
| 3325 | declare @i nterfaceNa me varchar (255); | |
| 3326 | declare @i nterfaceIp Address va rchar(255) ; | |
| 3327 | declare @i nterfaceSe rverName n varchar(25 5); | |
| 3328 | declare @i nterfacePo rtNumber i nt; | |
| 3329 | declare @i nterfaceEn dPointId i nt; | |
| 3330 | declare @i nterfaceEn dPointType varchar(2 55); | |
| 3331 | ||
| 3332 | declare in terfaceCur sor cursor for | |
| 3333 | se lect i.Int erfaceId, i.Interfac eName, ic. InterfaceI PAddress, ic.Interfa ceDomainNa me, ic.Int erfacePort Number | |
| 3334 | fr om Interfa ce i | |
| 3335 | in ner join I nterfaceCo ntrol ic o n ic.Inter faceId = i .Interface Id; | |
| 3336 | ||
| 3337 | open inter faceCursor ; | |
| 3338 | ||
| 3339 | fetch next from inte rfaceCurso r | |
| 3340 | in to @interf aceId, @in terfaceNam e, @interf aceIpAddre ss, @inter faceServer Name, @int erfacePort Number; | |
| 3341 | ||
| 3342 | while @@FE TCH_STATUS = 0 | |
| 3343 | begin | |
| 3344 | ||
| 3345 | -- print 'Ins ert endpoi nt for int erface ' + @interfac eName + ' (' + forma t(@interfa ceId, '0') + ')' + ' : ' + isn ull(isnull (@interfac eIpAddress , @interfa ceServerNa me), '<nul l>') + ' : ' + isnul l(format(@ interfaceP ortNumber, '0'), '<n ull>'); | |
| 3346 | ||
| 3347 | se t @interfa ceEndPoint Id = null; | |
| 3348 | ||
| 3349 | -- clear the endpoint details if this is n ot one of the 2-way interfaces | |
| 3350 | if not @inte rfaceName in ('CPRS' , 'BCE_COT S') | |
| 3351 | be gin | |
| 3352 | sele ct @interf aceIpAddre ss = null, @interfac eServerNam e = null, @interface PortNumber = null; | |
| 3353 | en d; | |
| 3354 | ||
| 3355 | ||
| 3356 | ||
| 3357 | se t @interfa ceEndPoint Type = (ca se | |
| 3358 | when n ot @interf aceIpAddre ss is null then 'IPA ddress' | |
| 3359 | when n ot @interf aceServerN ame is nul l then 'Dn sHostName' | |
| 3360 | else ' None' end) ; | |
| 3361 | ||
| 3362 | se t @interfa ceIpAddres s = rtrim( isnull(@in terfaceIpA ddress, @i nterfaceSe rverName)) ; | |
| 3363 | ||
| 3364 | ||
| 3365 | in sert into VbecsEndPo int | |
| 3366 | (E ndPointAdd ress, EndP ointPort, EndPointTy pe, LastUp dateDate, LastUpdate User, Last UpdateFunc tionId) | |
| 3367 | se lect | |
| 3368 | @int erfaceIpAd dress as [ EndPointAd dress], | |
| 3369 | @int erfacePort Number as [EndPointP ort], | |
| 3370 | @int erfaceEndP ointType a s [EndPoin tType], | |
| 3371 | @upd ateDate as [LastUpda teDate], | |
| 3372 | @upd ateUser as [LastUpda teUser], | |
| 3373 | 0 as [LastUpda teFunction Id]; | |
| 3374 | ||
| 3375 | se t @interfa ceEndPoint Id = SCOPE _IDENTITY( ); | |
| 3376 | ||
| 3377 | up date Inter face set V becsEndPoi ntId = @in terfaceEnd PointId wh ere Interf aceId = @i nterfaceId ; | |
| 3378 | ||
| 3379 | ||
| 3380 | -- 2.7. copy IsActive flag for i nterfaces into globa l config | |
| 3381 | ||
| 3382 | se lect | |
| 3383 | @app licationNa me = 'HL7S ervice', | |
| 3384 | @par ameterName = i.Confi gPrefix + '_IsActive ', | |
| 3385 | @par ameterValu e = (case when ic.In terfaceAct iveIndicat or = 1 the n 'True' e lse 'False ' end) | |
| 3386 | fr om Interfa ce i | |
| 3387 | in ner join I nterfaceCo ntrol ic o n i.Interf aceId = ic .Interface Id | |
| 3388 | wh ere i.Inte rfaceId = @interface Id; | |
| 3389 | ||
| 3390 | ex ec spInser tVbecsGlob alConfig @ applicatio nname=@app licationNa me, @param etername=@ parameterN ame, @para metervalue =@paramete rValue, @l astupdateu ser=@updat eUser, @la stupdatefu nctionid=0 , @lastupd atedate=@u pdateDate; | |
| 3391 | ||
| 3392 | ||
| 3393 | if @interfac eName in ( 'CPRS', 'B CE_COTS') | |
| 3394 | be gin | |
| 3395 | ||
| 3396 | -- 2 .8. copy F acility ID for inter faces into global co nfig | |
| 3397 | ||
| 3398 | sele ct | |
| 3399 | @appli cationName = 'HL7Ser vice', | |
| 3400 | @param eterName = i.ConfigP refix + '_ FacilityID ', | |
| 3401 | @param eterValue = ic.Inter faceFacili tyId | |
| 3402 | from Interface i | |
| 3403 | inne r join Int erfaceCont rol ic on i.Interfac eId = ic.I nterfaceId | |
| 3404 | wher e i.Interf aceId = @i nterfaceId ; | |
| 3405 | ||
| 3406 | exec spInsertV becsGlobal Config @ap plicationn ame=@appli cationName , @paramet ername=@pa rameterNam e, @parame tervalue=@ parameterV alue, @las tupdateuse r=@updateU ser, @last updatefunc tionid=0, @lastupdat edate=@upd ateDate; | |
| 3407 | ||
| 3408 | en d; | |
| 3409 | ||
| 3410 | ||
| 3411 | fe tch next f rom interf aceCursor | |
| 3412 | into @interfac eId, @inte rfaceName, @interfac eIpAddress , @interfa ceServerNa me, @inter facePortNu mber; | |
| 3413 | end; | |
| 3414 | ||
| 3415 | close inte rfaceCurso r; | |
| 3416 | deallocate interface Cursor; | |
| 3417 | ||
| 3418 | ||
| 3419 | -- 2.9. co py EmailAl ert Addres s from int erfaces in to global config (si ngle globa l setting) - copy fr om CPRS | |
| 3420 | -- note : this fie ld was pre viously ca lled [Inte rfaceAdmin istratorNa me] - but is in fact an email address | |
| 3421 | ||
| 3422 | select | |
| 3423 | @a pplication Name = 'HL 7Service', | |
| 3424 | @p arameterNa me = 'VBEC S_EmailAle rtAddress' , | |
| 3425 | @p arameterVa lue = ic.I nterfaceAd ministrato rName | |
| 3426 | from Inter face i | |
| 3427 | inner join Interface Control ic on i.Inte rfaceId = ic.Interfa ceId | |
| 3428 | where i.In terfaceNam e = 'CPRS' ; | |
| 3429 | ||
| 3430 | exec spIns ertVbecsGl obalConfig @applicat ionname=@a pplication Name, @par ametername =@paramete rName, @pa rameterval ue=@parame terValue, @lastupdat euser=@upd ateUser, @ lastupdate functionid =0, @lastu pdatedate= @updateDat e; | |
| 3431 | ||
| 3432 | ||
| 3433 | -- 2.10. c opy Ack Ti meout from CPRS inte rface to g lobal conf ig (single global se tting) | |
| 3434 | ||
| 3435 | select | |
| 3436 | @a pplication Name = 'HL 7Service', | |
| 3437 | @p arameterNa me = 'VBEC S_AckTimeo ut', | |
| 3438 | @p arameterVa lue = form at(ic.AckT imeout, '0 ') | |
| 3439 | from Inter face i | |
| 3440 | inner join Interface Control ic on i.Inte rfaceId = ic.Interfa ceId | |
| 3441 | where i.In terfaceNam e = 'CPRS' ; | |
| 3442 | ||
| 3443 | exec spIns ertVbecsGl obalConfig @applicat ionname=@a pplication Name, @par ametername =@paramete rName, @pa rameterval ue=@parame terValue, @lastupdat euser=@upd ateUser, @ lastupdate functionid =0, @lastu pdatedate= @updateDat e; | |
| 3444 | ||
| 3445 | ||
| 3446 | -- 2.11. c opy ReTran smit Attem pts from C PRS interf ace to glo bal config (single g lobal sett ing) | |
| 3447 | select | |
| 3448 | @a pplication Name = 'HL 7Service', | |
| 3449 | @p arameterNa me = 'VBEC S_ReTransm itAttempts ', | |
| 3450 | @p arameterVa lue = form at(ic.ReTr ansmitAtte mpts, '0') | |
| 3451 | from Inter face i | |
| 3452 | inner join Interface Control ic on i.Inte rfaceId = ic.Interfa ceId | |
| 3453 | where i.In terfaceNam e = 'CPRS' ; | |
| 3454 | ||
| 3455 | exec spIns ertVbecsGl obalConfig @applicat ionname=@a pplication Name, @par ametername =@paramete rName, @pa rameterval ue=@parame terValue, @lastupdat euser=@upd ateUser, @ lastupdate functionid =0, @lastu pdatedate= @updateDat e; | |
| 3456 | ||
| 3457 | ||
| 3458 | -- 2.12. i nsert new EndPoint r ecord for VBECS HL7 Service - use values from CPRS interface | |
| 3459 | -- not e: overrid e address - we only support lo calhost no w | |
| 3460 | ||
| 3461 | declare @h l7EndPoint Id int; | |
| 3462 | ||
| 3463 | insert int o VbecsEnd Point | |
| 3464 | (EndPointA ddress, En dPointPort , EndPoint Type, Last UpdateDate , LastUpda teUser) | |
| 3465 | select | |
| 3466 | CA SE WHEN Vb ecsIPAddre ss IS NULL Then NULL ELSE 'loc alhost' EN D as [EndP ointAddres s], | |
| 3467 | ic .VbecsPort Number as [EndPointP ort], | |
| 3468 | CA SE WHEN Vb ecsIPAddre ss IS NULL Then 'Non e' ELSE 'A nyLocal' E ND as [End PointType] , | |
| 3469 | @u pdateDate as [LastUp dateDate], | |
| 3470 | @u pdateUser as [LastUp dateUser] | |
| 3471 | from Inter faceContro l ic | |
| 3472 | inner join Interface i on ic.I nterfaceId = i.Inter faceId | |
| 3473 | where i.In terfaceNam e = 'CPRS' ; | |
| 3474 | ||
| 3475 | select @hl 7EndPointI d = SCOPE_ IDENTITY() ; | |
| 3476 | ||
| 3477 | select | |
| 3478 | @a pplication Name = 'HL 7Service', | |
| 3479 | @p arameterVa lue = form at(@hl7End PointId, ' 0'), | |
| 3480 | @p arameterNa me = 'VBEC S_EndPoint '; | |
| 3481 | ||
| 3482 | exec spIns ertVbecsGl obalConfig @applicat ionname=@a pplication Name, @par ametername =@paramete rName, @pa rameterval ue=@parame terValue, @lastupdat euser=@upd ateUser, @ lastupdate functionid =0, @lastu pdatedate= @updateDat e; | |
| 3483 | ||
| 3484 | ||
| 3485 | /* | |
| 3486 | ** * SECTION 3: pull va lues for V istaLink i nto tables : | |
| 3487 | -- V becsGlobal Config | |
| 3488 | -- V becsEndPoi nt | |
| 3489 | */ | |
| 3490 | ||
| 3491 | -- 3.1. in sert addre ss/port da ta for Vis ta interfa ce from Vi staLinkCon trol to Vb ecsEndPoin t | |
| 3492 | ||
| 3493 | declare @v istaInterf aceEndPoin tId int; | |
| 3494 | ||
| 3495 | insert int o VbecsEnd Point | |
| 3496 | (EndPointA ddress, En dPointPort , EndPoint Type, Last UpdateDate , LastUpda teUser) | |
| 3497 | select | |
| 3498 | rt rim(isnull (CONVERT (VARCHAR ( 200),vlc.V istaIpAddr ess), vlc. VistaDomai nName)) as [EndPoint Address], | |
| 3499 | vl c.VistaPor tNumber as [EndPoint Port], | |
| 3500 | (c ase | |
| 3501 | when not vlc.V istaIpAddr ess is nul l then 'IP Address' | |
| 3502 | when not vlc.V istaDomain Name is nu ll then 'D nsHostName ' | |
| 3503 | else 'None' en d) as [End PointType] , | |
| 3504 | @u pdateDate as [LastUp dateDate], | |
| 3505 | @u pdateUser as [LastUp dateUser] | |
| 3506 | from (sele ct null as x) vlc_nu ll | |
| 3507 | left join VistaLinkC ontrol vlc on 1 = 1; | |
| 3508 | ||
| 3509 | select @vi staInterfa ceEndPoint Id = SCOPE _IDENTITY( ); | |
| 3510 | ||
| 3511 | -- 3.2. in sert endpo int id for Vista int erface int o VbecsGlo balConfig | |
| 3512 | ||
| 3513 | select | |
| 3514 | @a pplication Name = 'Vb ecs', | |
| 3515 | @p arameterNa me = 'Inte rface_Vist a_EndPoint ', | |
| 3516 | @p arameterVa lue = form at(@vistaI nterfaceEn dPointId, '0'); | |
| 3517 | ||
| 3518 | exec spIns ertVbecsGl obalConfig @applicat ionname=@a pplication Name, @par ametername =@paramete rName, @pa rameterval ue=@parame terValue, @lastupdat euser=@upd ateUser, @ lastupdate functionid =0, @lastu pdatedate= @updateDat e; | |
| 3519 | ||
| 3520 | -- 3.3. in sert addre ss/port da ta for Vis ta service from Vist aLinkContr ol to Vbec sEndPoint | |
| 3521 | ||
| 3522 | declare @v istaServic eEndPointI d int; | |
| 3523 | ||
| 3524 | insert int o VbecsEnd Point | |
| 3525 | (EndPointA ddress, En dPointPort , EndPoint Type, Last UpdateDate , LastUpda teUser) | |
| 3526 | select | |
| 3527 | CA SE WHEN Vb ecsService IPAddress IS NULL Th en NULL EL SE 'localh ost' END a s [EndPoin tAddress], | |
| 3528 | vl c.VbecsSer vicePortNu mber as [E ndPointPor t], | |
| 3529 | CA SE WHEN Vb ecsService IPAddress IS NULL Th en 'None' ELSE 'AnyL ocal' END as [EndPoi ntType], | |
| 3530 | @u pdateDate as [LastUp dateDate], | |
| 3531 | @u pdateUser as [LastUp dateUser] | |
| 3532 | from (sele ct null as x) vlc_nu ll | |
| 3533 | left join VistaLinkC ontrol vlc on 1 = 1; | |
| 3534 | ||
| 3535 | select @vi staService EndPointId = SCOPE_I DENTITY(); | |
| 3536 | ||
| 3537 | -- 3.4. in sert endpo int id for Vista ser vice into VbecsGloba lConfig | |
| 3538 | ||
| 3539 | select | |
| 3540 | @a pplication Name = 'Vi stALinkSer vice', | |
| 3541 | @p arameterNa me = 'VBEC S_EndPoint ', | |
| 3542 | @p arameterVa lue = form at(@vistaS erviceEndP ointId, '0 '); | |
| 3543 | ||
| 3544 | exec spIns ertVbecsGl obalConfig @applicat ionname=@a pplication Name, @par ametername =@paramete rName, @pa rameterval ue=@parame terValue, @lastupdat euser=@upd ateUser, @ lastupdate functionid =0, @lastu pdatedate= @updateDat e; | |
| 3545 | ||
| 3546 | ||
| 3547 | -- 3.4.1 I nsert NULL values fo r Vista Br oker IP an d Port num ber | |
| 3548 | ||
| 3549 | declare @v istaBroker EndPointId int; | |
| 3550 | ||
| 3551 | insert int o VbecsEnd Point | |
| 3552 | (EndPointA ddress, En dPointPort , EndPoint Type, Last UpdateDate , LastUpda teUser) | |
| 3553 | ||
| 3554 | VA LUES ('0.0 .0.0', 102 4, 'IPAddr ess', @upd ateDate, @ updateUser ) | |
| 3555 | ||
| 3556 | select @vi staBrokerE ndPointId = SCOPE_ID ENTITY(); | |
| 3557 | ||
| 3558 | -- 3.4.2 i nsert endp oint id fo r Vista se rvice into VbecsGlob alConfig | |
| 3559 | ||
| 3560 | select | |
| 3561 | @a pplication Name = 'Vb ecs', | |
| 3562 | @p arameterNa me = 'Inte rface_Vist a_BrokerEn dPoint', | |
| 3563 | @p arameterVa lue = form at(@vistaB rokerEndPo intId, '0' ); | |
| 3564 | ||
| 3565 | exec spIns ertVbecsGl obalConfig @applicat ionname=@a pplication Name, @par ametername =@paramete rName, @pa rameterval ue=@parame terValue, @lastupdat euser=@upd ateUser, @ lastupdate functionid =0, @lastu pdatedate= @updateDat e; | |
| 3566 | ||
| 3567 | ||
| 3568 | -- 3.5. in sert IsAct ive flag f or Vista i nterface i nto VbecsG lobalConfi g | |
| 3569 | ||
| 3570 | select | |
| 3571 | @ap plicationN ame = 'Vis tALinkServ ice', | |
| 3572 | @pa rameterNam e = 'Inter face_Vista _IsActive' , | |
| 3573 | @pa rameterVal ue = 'True '; | |
| 3574 | ||
| 3575 | exec spIns ertVbecsGl obalConfig @applicat ionname=@a pplication Name, @par ametername =@paramete rName, @pa rameterval ue=@parame terValue, @lastupdat euser=@upd ateUser, @ lastupdate functionid =0, @lastu pdatedate= @updateDat e; | |
| 3576 | ||
| 3577 | ||
| 3578 | -- 3.6. in sert IsAct ive flag f or Vista s ervice int o VbecsGlo balConfig | |
| 3579 | ||
| 3580 | select | |
| 3581 | @ap plicationN ame = 'Vis tALinkServ ice', | |
| 3582 | @pa rameterNam e = 'VBECS _IsActive' , | |
| 3583 | @pa rameterVal ue = 'True '; | |
| 3584 | ||
| 3585 | exec spIns ertVbecsGl obalConfig @applicat ionname=@a pplication Name, @par ametername =@paramete rName, @pa rameterval ue=@parame terValue, @lastupdat euser=@upd ateUser, @ lastupdate functionid =0, @lastu pdatedate= @updateDat e; | |
| 3586 | ||
| 3587 | ||
| 3588 | -- 3.7. in sert IsAct ive flag f or HL7 ser vice into VbecsGloba lConfig | |
| 3589 | ||
| 3590 | select | |
| 3591 | @ap plicationN ame = 'Hl7 Service', | |
| 3592 | @pa rameterNam e = 'VBECS _IsActive' , | |
| 3593 | @pa rameterVal ue = 'True '; | |
| 3594 | ||
| 3595 | exec spIns ertVbecsGl obalConfig @applicat ionname=@a pplication Name, @par ametername =@paramete rName, @pa rameterval ue=@parame terValue, @lastupdat euser=@upd ateUser, @ lastupdate functionid =0, @lastu pdatedate= @updateDat e; | |
| 3596 | ||
| 3597 | ||
| 3598 | -- 4.3. cu rsor to lo op through each divi sion recor d and copy label pri nter value s to new V becsEndPoi nt record | |
| 3599 | ||
| 3600 | declare @d ivisionCod e char(5); | |
| 3601 | declare @i pAddress v archar(255 ); | |
| 3602 | declare @p ortNumber int; | |
| 3603 | declare @p rinterEndP ointId int ; | |
| 3604 | ||
| 3605 | declare va mcDivision Cursor cur sor for | |
| 3606 | se lect Divis ionCode, L abelPrinte rIPAddress , LabelPri nterTcpPor tNumber | |
| 3607 | fr om VamcDiv ision; | |
| 3608 | ||
| 3609 | open vamcD ivisionCur sor; | |
| 3610 | ||
| 3611 | fetch next from vamc DivisionCu rsor | |
| 3612 | in to @divisi onCode, @i pAddress, @portNumbe r; | |
| 3613 | ||
| 3614 | while @@FE TCH_STATUS = 0 | |
| 3615 | begin | |
| 3616 | ||
| 3617 | -- print 'Ins ert endpoi nt for div ision ' + @divisionC ode + ' : ' + isnull (@ipAddres s, '<null> ') + ' : ' + isnull( format(@po rtNumber, '0'), '<nu ll>'); | |
| 3618 | ||
| 3619 | se t @printer EndPointId = null; | |
| 3620 | ||
| 3621 | -- if not @ip Address is null | |
| 3622 | be gin | |
| 3623 | ||
| 3624 | inse rt into Vb ecsEndPoin t | |
| 3625 | (End PointAddre ss, EndPoi ntPort, En dPointType , LastUpda teDate, La stUpdateUs er) | |
| 3626 | sele ct | |
| 3627 | rtrim( @ipAddress ) as [EndP ointAddres s], | |
| 3628 | @portN umber as [ EndPointPo rt], | |
| 3629 | (case | |
| 3630 | when not @ipAddres s is null then 'IPAd dress' | |
| 3631 | else 'No ne' end) a s [EndPoin tType], | |
| 3632 | @updat eDate, | |
| 3633 | @updat eUser; | |
| 3634 | ||
| 3635 | set @printerEn dPointId = SCOPE_IDE NTITY(); | |
| 3636 | ||
| 3637 | en d; | |
| 3638 | ||
| 3639 | up date VamcD ivision se t LabelPri nterEndPoi ntID = @pr interEndPo intId wher e Division Code = @di visionCode ; | |
| 3640 | ||
| 3641 | fe tch next f rom vamcDi visionCurs or | |
| 3642 | into @division Code, @ipA ddress, @p ortNumber; | |
| 3643 | end; | |
| 3644 | ||
| 3645 | close vamc DivisionCu rsor; | |
| 3646 | deallocate vamcDivis ionCursor; | |
| 3647 | ||
| 3648 | ||
| 3649 | USE @DBNAM E@_MIRROR | |
| 3650 | GO | |
| 3651 | ||
| 3652 | update vdm | |
| 3653 | se t vdm.Labe lPrinterEn dPointId = vd.LabelP rinterEndP ointId | |
| 3654 | from VamcD ivision vd m | |
| 3655 | inner join Syn_VamcD ivision vd on vdm.Di visionCode = vd.Divi sionCode; | |
| 3656 | ||
| 3657 | ||
| 3658 | ||
| 3659 | USE @DBNAM E@ | |
| 3660 | GO | |
| 3661 | ||
| 3662 | -- Delete rows from [dbo].[Vbe csGlobalCo nfig] | |
| 3663 | DELETE FRO M [dbo].[V becsGlobal Config] WH ERE [Appli cationName ]='HL7Serv ice' AND [ ParameterN ame]='List enerIpAddr ess' | |
| 3664 | DELETE FRO M [dbo].[V becsGlobal Config] WH ERE [Appli cationName ]='HL7Serv ice' AND [ ParameterN ame]='List enerPortNu mber' | |
| 3665 | DELETE FRO M [dbo].[V becsGlobal Config] WH ERE [Appli cationName ]='VistaLi nkService' AND [Para meterName] ='Listener IpAddress' | |
| 3666 | DELETE FRO M [dbo].[V becsGlobal Config] WH ERE [Appli cationName ]='VistaLi nkService' AND [Para meterName] ='Listener PortNumber ' | |
| 3667 | DELETE FRO M [dbo].[V becsGlobal Config] WH ERE [Appli cationName ]='VbecsAd min' AND [ ParameterN ame]='Vist AClientTim eout' | |
| 3668 | DELETE FRO M [dbo].[V becsGlobal Config] WH ERE [Appli cationName ]='VistaLi nkService' AND [Para meterName] ='VistACli entTimeout ' | |
| 3669 | ||
| 3670 | --Delete r ows from B rokenRuleS et | |
| 3671 | ||
| 3672 | DELETE FRO M dbo.Brok enRuleSet WHERE Form Name = 'La belPrinter Config' AN D FieldNam e IN ('Com PortNumber NotSet','C omPortNumb erOutOfRan ge'); | |
| 3673 | ||
| 3674 | --Remove t able and c olumns | |
| 3675 | ||
| 3676 | ||
| 3677 | ALTER TABL E [dbo].[I nterfaceCo ntrol] DRO P CONSTRAI NT[FK_Inte rfaceContr ol_Interfa ce] | |
| 3678 | GO | |
| 3679 | ||
| 3680 | ALTER TABL E [dbo].[I nterfaceCo ntrol] DRO P CONSTRAI NT [PK_Int erfaceCont rol] | |
| 3681 | GO | |
| 3682 | ||
| 3683 | ALTER TABL E [dbo].[I nterfaceCo ntrol] DRO P CONSTRAI NT [DF_Int erfaceCont rol_AckTim eout] | |
| 3684 | GO | |
| 3685 | ||
| 3686 | ALTER TABL E [dbo].[I nterfaceCo ntrol] DRO P CONSTRAI NT [DF_Int erfaceCont rol_ReTran smitAttemp ts] | |
| 3687 | GO | |
| 3688 | ||
| 3689 | ALTER TABL E [dbo].[I nterfaceCo ntrol] DRO P CONSTRAI NT [DF_Int erfaceCont rol_PurgeS uccessfulM essage] | |
| 3690 | GO | |
| 3691 | ||
| 3692 | ALTER TABL E [dbo].[I nterfaceCo ntrol] DRO P CONSTRAI NT [DF_Int erfaceCont rol_PurgeU nSuccessfu lMessage] | |
| 3693 | GO | |
| 3694 | ||
| 3695 | ALTER TABL E [dbo].[I nterfaceCo ntrol] DRO P CONSTRAI NT [DF_Int erfaceCont rol_LogEve ntsIndicat or] | |
| 3696 | GO | |
| 3697 | ||
| 3698 | ALTER TABL E [dbo].[I nterfaceCo ntrol] DRO P CONSTRAI NT [DF_Int erfaceCont rol_LastUp dateFuncti onId] | |
| 3699 | GO | |
| 3700 | ||
| 3701 | ALTER TABL E [dbo].[V istaLinkCo ntrol] DRO P CONSTRAI NT [PK_Vis taLinkCont rol] | |
| 3702 | GO | |
| 3703 | ||
| 3704 | ALTER TABL E [dbo].[V istaLinkCo ntrol] DRO P CONSTRAI NT [DF_Vis taLinkCont rol_LastUp dateFuncti onId] | |
| 3705 | GO | |
| 3706 | ||
| 3707 | DROP INDEX [IX_Inter faceContro l_Interfac eId] ON [d bo].[Inter faceContro l] | |
| 3708 | GO | |
| 3709 | ||
| 3710 | DROP TABLE [dbo].[Vi staLinkCon trol] | |
| 3711 | GO | |
| 3712 | ||
| 3713 | DROP TABLE [dbo].[In terfaceCon trol] | |
| 3714 | GO | |
| 3715 | ||
| 3716 | DROP SYNON YM [dbo].[ SynMirror_ InterfaceC ontrol] | |
| 3717 | GO | |
| 3718 | ||
| 3719 | DROP SYNON YM [dbo].[ SynMirror_ V_Interfac eControl] | |
| 3720 | GO | |
| 3721 | ||
| 3722 | DROP SYNON YM [dbo].[ SynMirror_ V_VistaLin kControl] | |
| 3723 | GO | |
| 3724 | ||
| 3725 | DROP SYNON YM [dbo].[ SynMirror_ VistaLinkC ontrol] | |
| 3726 | GO | |
| 3727 | ||
| 3728 | ALTER TABL E [dbo].[V amcDivisio n] DROP | |
| 3729 | COLUMN [La belPrinter ComPortNum ber], | |
| 3730 | COLUMN [La belPrinter IPAddress] , | |
| 3731 | COLUMN [La belPrinter TcpPortNum ber] | |
| 3732 | GO | |
| 3733 | ||
| 3734 | ||
| 3735 | IF OBJECT_ ID(N'[dbo] .[spHL7Upd ateInterfa ceControlP arameters] ', 'P') IS NOT NULL | |
| 3736 | DROP PROCE DURE [dbo] .[spHL7Upd ateInterfa ceControlP arameters] | |
| 3737 | GO | |
| 3738 | ||
| 3739 | IF OBJECT_ ID(N'[dbo] .[spUpdate VistALinkC onfig]', ' P') IS NOT NULL | |
| 3740 | DROP PROCE DURE [dbo] .[spUpdate VistALinkC onfig] | |
| 3741 | GO | |
| 3742 | ||
| 3743 | IF OBJECT_ ID(N'[dbo] .[spInsert VistALinkC onfig]', ' P') IS NOT NULL | |
| 3744 | DROP PROCE DURE [dbo] .[spInsert VistALinkC onfig] | |
| 3745 | GO | |
| 3746 | ||
| 3747 | IF OBJECT_ ID(N'[dbo] .[spGetVis tALinkConf ig]', 'P') IS NOT NU LL | |
| 3748 | DROP PROCE DURE [dbo] .[spGetVis tALinkConf ig] | |
| 3749 | GO | |
| 3750 | ||
| 3751 | IF OBJECT_ ID(N'[dbo] .[spHL7Upd ateInterfa ceControlS tatus]', ' P') IS NOT NULL | |
| 3752 | DROP PROCE DURE [dbo] .[spHL7Upd ateInterfa ceControlS tatus] | |
| 3753 | GO | |
| 3754 | ||
| 3755 | IF OBJECT_ ID(N'[dbo] .[spHL7Get InterfaceC ontrolPara meters]', 'P') IS NO T NULL | |
| 3756 | DROP PROCE DURE [dbo] .[spHL7Get InterfaceC ontrolPara meters] | |
| 3757 | GO | |
| 3758 | ||
| 3759 | IF OBJECT_ ID(N'[dbo] .[spHL7Get MessageTyp esByInterf aceControl ID]', 'P') IS NOT NU LL | |
| 3760 | DROP PROCE DURE [dbo] .[spHL7Get MessageTyp esByInterf aceControl ID] | |
| 3761 | GO | |
| 3762 | ||
| 3763 | IF OBJECT_ ID(N'[dbo] .[spGetInt erfaceActi veIndicato r]', 'P') IS NOT NUL L | |
| 3764 | DROP PROCE DURE [dbo] .[spGetInt erfaceActi veIndicato r] | |
| 3765 | GO | |
| 3766 | ||
| 3767 | ||
| 3768 | USE @DBNAM E@_MIRROR | |
| 3769 | GO | |
| 3770 | ||
| 3771 | ALTER TABL E [dbo].[I nterfaceCo ntrol] DRO P CONSTRAI NT [PK_Int erfaceCont rol] | |
| 3772 | GO | |
| 3773 | ||
| 3774 | ALTER TABL E [dbo].[V istaLinkCo ntrol] DRO P CONSTRAI NT [PK_Vis taLinkCont rol] | |
| 3775 | GO | |
| 3776 | ||
| 3777 | DROP INDEX [IX_Vista LinkContro l_MirrorDa te] ON [db o].[VistaL inkControl ] | |
| 3778 | GO | |
| 3779 | ||
| 3780 | DROP INDEX [IX_Vista LinkContro l] ON [dbo ].[VistaLi nkControl] | |
| 3781 | GO | |
| 3782 | ||
| 3783 | DROP VIEW [dbo].[V_V istaLinkCo ntrol] | |
| 3784 | GO | |
| 3785 | ||
| 3786 | DROP VIEW [dbo].[V_I nterfaceCo ntrol] | |
| 3787 | GO | |
| 3788 | ||
| 3789 | DROP TABLE [dbo].[Vi staLinkCon trol] | |
| 3790 | GO | |
| 3791 | ||
| 3792 | DROP TABLE [dbo].[In terfaceCon trol] | |
| 3793 | GO | |
| 3794 | ||
| 3795 | DROP SYNON YM [dbo].[ Syn_Interf aceControl ] | |
| 3796 | GO | |
| 3797 | ||
| 3798 | DROP SYNON YM [dbo].[ Syn_VistaL inkControl ] | |
| 3799 | GO | |
| 3800 | ||
| 3801 | ||
| 3802 | ALTER TABL E [dbo].[V amcDivisio n] DROP | |
| 3803 | COLUMN [La belPrinter ComPortNum ber], | |
| 3804 | COLUMN [La belPrinter IPAddress] , | |
| 3805 | COLUMN [La belPrinter TcpPortNum ber] | |
| 3806 | GO | |
| 3807 | ||
| 3808 | ||
| 3809 | /*-------- ---------- ---------- ---------- ---------- --------- | |
| 3810 | Create t he VamcDiv ision view in the Mi rror datab ase | |
| 3811 | (now tha t both mir ror/non-mi rror are u pdated) | |
| 3812 | ---------- ---------- ---------- ---------- ---------- -------*/ | |
| 3813 | if exists (select * from dbo.s ysobjects where id = object_id (N'[dbo].[ V_VamcDivi sion]') an d OBJECTPR OPERTY(id, N'IsView' ) = 1) | |
| 3814 | drop view dbo.V_Vamc Division | |
| 3815 | GO | |
| 3816 | ||
| 3817 | SET QUOTED _IDENTIFIE R ON | |
| 3818 | GO | |
| 3819 | SET ANSI_N ULLS ON | |
| 3820 | GO | |
| 3821 | ||
| 3822 | /********* ********** ********** ********** ********** ********** ********** ********** ********** ********** ********** ********** ********** ********** ********** ********** * | |
| 3823 | ** Na me: V_Va mcDivision | |
| 3824 | ** | |
| 3825 | ** De sc: Retu rns data i n VamcDivi sion table (main and mirror) ( Defect 340 457). | |
| 3826 | ** | |
| 3827 | ** Au thor: Kwam e Adu-Poku | |
| 3828 | ** | |
| 3829 | ** Da te: 09/1 9/2016 | |
| 3830 | ** | |
| 3831 | ********** ********** ********** ********** ********** ********** ********** ********** ********** ********** ********** ********** ********** ********** ********** ********** ** | |
| 3832 | ** Mo dified: | |
| 3833 | ** Da te Name Descriptio n | |
| 3834 | ** -- ---------- - ------ --- ---------- -------- | |
| 3835 | ** 02 /14/17 K. Adu -Poku ** Reviewe d for comp liance wit h database standards and recom mendations ** | |
| 3836 | ********** ********** ********** ********** ********** ********** ********** ********** ********** ********** ********** ********** ********** ********** ********** *******/ | |
| 3837 | ||
| 3838 | CREATE VIE W V_VamcDi vision | |
| 3839 | AS | |
| 3840 | SELECT Sou rce='MIRRO R', Mirror Id, Divisi onCode, Di visionGuid , Division Name, Serv iceTypeInd icator, Ic cbbaRegist rationNumb er, Electr onicCrossm atchIndica tor, Facil ityGuid, L ocalSuppli erGuid, An tibodyScre enDisplayC ode, Maxim umSpecimen Expiration Days, Auto matedInstr umentIndic ator, Labe lPrinterUs eIndicator , TimeZone Id, Daylig htSavingsT ypeId, Pri nterName, PrinterAle rtsIndicat or, Printe rAlertsPri nterName, PrinterOrd erAlertTyp eCode, Pri nterOrders NeededHour s, IconAle rtsIndicat or, IconOr derAlertTy peCode, Ic onOrdersNe ededHours, IconRefre shRate, Lo ginMessage Text, Invo iceTemplat eText, Med icalDirect orName, Us aIndicator , LockInac tivityTime outMin, Ac cessionAre aId, Dayli ghtSavings StartDate, DaylightS avingsEndD ate, React ivityPhase Code, Reco rdStatusCo de, LabelP rinterEndP ointId, La stUpdateDa te, LastUp dateUser, [ROWVERSIO N], LastUp dateFuncti onId, Mirr orDate | |
| 3841 | FROM dbo.V amcDivisio n | |
| 3842 | UNION ALL | |
| 3843 | SELECT Sou rce='ACTIV E', 0, Div isionCode, DivisionG uid, Divis ionName, S erviceType Indicator, IccbbaReg istrationN umber, Ele ctronicCro ssmatchInd icator, Fa cilityGuid , LocalSup plierGuid, AntibodyS creenDispl ayCode, Ma ximumSpeci menExpirat ionDays, A utomatedIn strumentIn dicator, L abelPrinte rUseIndica tor, TimeZ oneId, Day lightSavin gsTypeId, PrinterNam e, Printer AlertsIndi cator, Pri nterAlerts PrinterNam e, Printer OrderAlert TypeCode, PrinterOrd ersNeededH ours, Icon AlertsIndi cator, Ico nOrderAler tTypeCode, IconOrder sNeededHou rs, IconRe freshRate, LoginMess ageText, I nvoiceTemp lateText, MedicalDir ectorName, UsaIndica tor, LockI nactivityT imeoutMin, Accession AreaId, Da ylightSavi ngsStartDa te, Daylig htSavingsE ndDate, Re activityPh aseCode, R ecordStatu sCode, Lab elPrinterE ndPointId, LastUpdat eDate, Las tUpdateUse r, [ROWVER SION], Las tUpdateFun ctionId, L astUpdateD ate AS Mir rorDate | |
| 3844 | FROM Syn_V amcDivisio n | |
| 3845 | GO | |
| 3846 | ||
| 3847 | SET QUOTED _IDENTIFIE R OFF | |
| 3848 | GO | |
| 3849 | SET ANSI_N ULLS ON | |
| 3850 | GO | |
| 3851 | ||
| 3852 | --Permissi ons | |
| 3853 | ||
| 3854 | GRANT SELE CT ON dbo. V_VamcDivi sion TO Vb ecsAppMirr orUser | |
| 3855 | GO | |
| 3856 | ||
| 3857 | ALTER TABL E [dbo].[V amcDivisio n] ALTER C OLUMN [Lab elPrinterE ndPointId] int NOT N ULL | |
| 3858 | ||
| 3859 | ||
| 3860 | USE @DBNAM E@ | |
| 3861 | GO | |
| 3862 | ||
| 3863 | if exists (select * from dbo.s ysobjects where id = object_id (N'[dbo].[ spGetVbecs UserDivisi onsAndRole s]') and O BJECTPROPE RTY(id, N' IsProcedur e') = 1) | |
| 3864 | drop proce dure [dbo] .[spGetVbe csUserDivi sionsAndRo les] | |
| 3865 | GO | |
| 3866 | ||
| 3867 | SET ANSI_N ULLS ON | |
| 3868 | GO | |
| 3869 | ||
| 3870 | SET QUOTED _IDENTIFIE R ON | |
| 3871 | GO | |
| 3872 | ||
| 3873 | /********* ********** ********** ********** ********** ********** ********** ********** ********** ********** ********** ********** ********** ********** ********** ********** ********** ****** | |
| 3874 | ** De sc: Retr ieves divi sions with associate d roles (i ncluding i nactive) f or a given user. | |
| 3875 | ** | |
| 3876 | ** Au thor: Stas Antropov | |
| 3877 | ** | |
| 3878 | ** Da te: 11/1 5/2004 | |
| 3879 | ** | |
| 3880 | ********** ********** ********** ********** ********** ********** ********** ********** ********** ********** ********** ********** ********** ********** ********** ********** ********** ***** | |
| 3881 | ** Mo dified: | |
| 3882 | ** Da te Name De scription | |
| 3883 | ** -- ---------- ------- -------- ---------- ----- ---- ---------- ---------- ---------- ---------- ---------- ---------- ---------- ---------- ---------- ---------- ---------- ---------- ---------- ---------- ---------- ---------- ---- | |
| 3884 | ** 02 /14/2005 Stas A ntropov Added wher e clause t o exclude system use rs. | |
| 3885 | ** 07 /05/2005 NPater son ** Reviewe d for comp liance wit h database standards and recom mendations ** | |
| 3886 | ** Removed na me, input/ output des criptions from heade r comment, added set nocount, capitalize d AS, | |
| 3887 | ** placed row count in s quare brac kets, spac ed out SQL , specifie d object o wners | |
| 3888 | ** 08 /15/2005 J. Eng strom Removed jo in on Dayl ightSaving s table. Removed se lection of DaylightS avingsYear column. | |
| 3889 | ** Ch anged to s elect Dayl ighSavings StartDate & DaylighS avingsEndD ate from V amcDivisio n table. | |
| 3890 | ** 10 /18/2007 C. Jen sen Added Prin terName fi eld to acc omodate re trieval of reports p rinter (CR 2320). | |
| 3891 | ** 10 /01/2009 K. Dob ranowski Added Reac tivityPhas eCode (CR 2717) | |
| 3892 | ** 08 /18/2010 K. Adu -Poku ** Reviewe d for comp liance wit h database standards and recom mendations ** | |
| 3893 | ** 09 /13/2016 Pablo Sanchez Removed La belPrinter ComPortNum ber, Label PrinterIPA ddress, La belPrinter TcpPortNum ber column s and adde d LabelPri nterEndPoi ntId colum n (Defect 340457). | |
| 3894 | ** 12 /19/2016 K. Adu -Poku ** Reviewe d for comp liance wit h database standards and recom mendations ** | |
| 3895 | ********** ********** ********** ********** ********** ********** ********** ********** ********** ********** ********** ********** ********** ********** ********** ********** ********** *****/ | |
| 3896 | ||
| 3897 | CREATE PRO CEDURE [db o].[spGetV becsUserDi visionsAnd Roles] | |
| 3898 | ( | |
| 3899 | @v becsuserid VARCHA R (30) | |
| 3900 | ) | |
| 3901 | AS | |
| 3902 | ||
| 3903 | DECLARE @E RROR INT | |
| 3904 | ||
| 3905 | SET NOCOUN T ON | |
| 3906 | ||
| 3907 | SE LECT | |
| 3908 | Vamc Division.D ivisionCod e, | |
| 3909 | Vamc Division.D ivisionGui d, | |
| 3910 | Vamc Division.D ivisionNam e, | |
| 3911 | Vamc Division.S erviceType Indicator, | |
| 3912 | Vamc Division.I ccbbaRegis trationNum ber, | |
| 3913 | Vamc Division.E lectronicC rossmatchI ndicator, | |
| 3914 | Vamc Division.F acilityGui d, | |
| 3915 | Vamc Division.A ccessionAr eaId, | |
| 3916 | Vamc Division.L ocalSuppli erGuid, | |
| 3917 | Vamc Division.A ntibodyScr eenDisplay Code, | |
| 3918 | Vamc Division.M aximumSpec imenExpira tionDays, | |
| 3919 | Vamc Division.A utomatedIn strumentIn dicator, | |
| 3920 | Vamc Division.L abelPrinte rUseIndica tor, | |
| 3921 | Vamc Division.P rinterName , | |
| 3922 | Vamc Division.T imeZoneId, | |
| 3923 | Vamc Division.D aylightSav ingsTypeId , | |
| 3924 | Vamc Division.D aylightSav ingsStartD ate, | |
| 3925 | Vamc Division.D aylightSav ingsEndDat e, | |
| 3926 | Vamc Division.P rinterAler tsIndicato r, | |
| 3927 | Vamc Division.P rinterAler tsPrinterN ame, | |
| 3928 | Vamc Division.P rinterOrde rAlertType Code, | |
| 3929 | Vamc Division.P rinterOrde rsNeededHo urs, | |
| 3930 | Vamc Division.I conAlertsI ndicator, | |
| 3931 | Vamc Division.I conOrderAl ertTypeCod e, | |
| 3932 | Vamc Division.I conOrdersN eededHours , | |
| 3933 | Vamc Division.I conRefresh Rate, | |
| 3934 | Vamc Division.L oginMessag eText, | |
| 3935 | Vamc Division.I nvoiceTemp lateText, | |
| 3936 | Vamc Division.M edicalDire ctorName, | |
| 3937 | Vamc Division.L ockInactiv ityTimeout Min, | |
| 3938 | Vamc Division.R ecordStatu sCode, | |
| 3939 | Vamc Division.[ RowVersion ], | |
| 3940 | Vamc Division.R eactivityP haseCode, | |
| 3941 | Vamc Division.L abelPrinte rEndPointI d, | |
| 3942 | User Role.UserR oleID, | |
| 3943 | User Role.UserR oleName, | |
| 3944 | Vbec sUserDivis ionRole.Re cordStatus Code AS U serDivisio nRoleRecor dStatusCod e, | |
| 3945 | Vbec sUserDivis ionRole.[R owVersion] AS Use rDivisionR oleRowVers ion | |
| 3946 | ||
| 3947 | FR OM dbo.Va mcDivision | |
| 3948 | ||
| 3949 | IN NER JOIN dbo.Vb ecsUserDiv isionRole ON | |
| 3950 | ||
| 3951 | dbo. VamcDivisi on.Divisio nCode =dbo .VbecsUser DivisionRo le.Divisio nCode | |
| 3952 | ||
| 3953 | INNE R JOIN dbo.User Role ON | |
| 3954 | ||
| 3955 | dbo.Vb ecsUserDiv isionRole. UserRoleId = dbo.Use rRole.User RoleId | |
| 3956 | ||
| 3957 | INNER JOIN dbo.VbecsU ser ON | |
| 3958 | ||
| 3959 | dbo.Vbec sUser.Vbec sUserId = dbo.VbecsU serDivisio nRole.Vbec sUserId | |
| 3960 | ||
| 3961 | WH ERE dbo.Vb ecsUserDiv isionRole. VbecsUserI d = @vbecs userid | |
| 3962 | ||
| 3963 | AND System UserIndica tor <> 1; | |
| 3964 | ||
| 3965 | SET @ERROR = @@ERROR | |
| 3966 | ||
| 3967 | SET NOCOUN T OFF | |
| 3968 | ||
| 3969 | RETURN(@ER ROR) | |
| 3970 | ||
| 3971 | GO | |
| 3972 | ||
| 3973 | ||
| 3974 | if exists (select * from dbo.s ysobjects where id = object_id (N'[dbo].[ spInsertVa mcDivision Base]') an d OBJECTPR OPERTY(id, N'IsProce dure') = 1 ) | |
| 3975 | drop proce dure [dbo] .[spInsert VamcDivisi onBase] | |
| 3976 | GO | |
| 3977 | ||
| 3978 | SET ANSI_N ULLS ON | |
| 3979 | GO | |
| 3980 | ||
| 3981 | SET QUOTED _IDENTIFIE R ON | |
| 3982 | GO | |
| 3983 | ||
| 3984 | ||
| 3985 | ||
| 3986 | ||
| 3987 | /********* ********** ********** ********** ********** ********** ********** ********** ********** ********** ********** ********** ********** ********** ********** ********** ********** ****** | |
| 3988 | ** | |
| 3989 | ** De sc: Adds the infor mation to the VamcDi vision tab le. | |
| 3990 | ** | |
| 3991 | ** Au thor: Stas A ntropov | |
| 3992 | ** | |
| 3993 | ** Da te: 07/2 3/2004 | |
| 3994 | ** | |
| 3995 | ********** ********** ********** ********** ********** ********** ********** ********** ********** ********** ********** ********** ********** ********** ********** ********** ********** ***** | |
| 3996 | ** Mo dified: | |
| 3997 | ** Da te Name De scription | |
| 3998 | ** -- ---------- -------- ---- ------ ---------- --- | |
| 3999 | ** 10 /31/2004 Stas A ntropov Ad ded @facil ityguid, @ accessiona reaid, | |
| 4000 | ** @d aylightsav ingsstartd ate and @d aylightsav ingsenddat e | |
| 4001 | ** 12 /2/2004 Stas A ntropov Ad ded Invoic eTemplateT ext (BR_17 .05). | |
| 4002 | ** 01 /10/2005 D. Ask ew Ad ded @lastu pdatedate | |
| 4003 | ** 06 /06/2005 D. Ask ew ** Reviewed for compli ance with database s tandards a nd recomme ndations * * | |
| 4004 | ** Re moved exec ution opti on SET XAC T_ABORT ON ; changed SQL key wo rds to all caps; | |
| 4005 | ** Mi nor change s made to error hand ling; veri fied NO CO UNT is ON/ OFF; chang ed to retu rn | |
| 4006 | ** @e rror rathe r than alw ays 0; rem oved super fluous BEG IN/END | |
| 4007 | ** 06 /28/2005 D. Ask ew Co mments upd ated | |
| 4008 | ** 07 /28/2005 D. Ask ew Re moved call to spSave VamcDivisi onDaylight SavingsCon fig (now h andled in code); | |
| 4009 | ** re moved unus ed paramet ers @dayli ghtsavings startdate and @dayli ghtsavings enddate | |
| 4010 | ** 08 /11/2005 J. Eng strom Ad ded param eters @day lightsavin gsstartdat e and @day lightsavin gsenddate. | |
| 4011 | ** Ch anged proc edure to s et Dayligh tSavingsSt artDate an d Daylight SavingsEnd Date on th e VamcDivi sion table . | |
| 4012 | ** 10 /18/2007 C. Jen sen Ad ded Printe rName fiel d to accom odate inse rtion of r eports pri nter name (CR 2320). | |
| 4013 | ** 09 /13/2016 Pablo Sanchez Removed La belPrinter ComPortNum ber, Label PrinterIPA ddress, La belPrinter TcpPortNum ber column s (Defect 340457). | |
| 4014 | ** 10 /14/2016 Michae l Lerner Added @lab elprintere ndpointadd ress,@labe lprinteren dpointport ,@labelpri nterendpoi nttype,rem oved NULL from @time zoneid, | |
| 4015 | ** added Insert sta tement int o EndPoint Table,sele ct stateme nt IDENT_C URRENT('db o.VbecsEnd Point') (D efect 3404 57). | |
| 4016 | ** 02 /14/17 K. Adu -Poku ** Reviewe d for comp liance wit h database standards and recom mendations ** | |
| 4017 | ********** ********** ********** ********** ********** ********** ********** ********** ********** ********** ********** ********** ********** ********** ********** ********** ********** *****/ | |
| 4018 | CREATE PRO CEDURE [db o].[spInse rtVamcDivi sionBase] | |
| 4019 | ( | |
| 4020 | @d ivisioncod e CHAR(5), | |
| 4021 | @d ivisionnam e VARCHAR(50 ), | |
| 4022 | @d ivisiongui d UNIQUEIDEN TIFIER, | |
| 4023 | @f acilitygui d UNIQUEIDEN TIFIER, | |
| 4024 | @l ocalsuppli erguid UNIQUEIDEN TIFIER, | |
| 4025 | @a ccessionar eaid INT, | |
| 4026 | @s ervicetype indicator BIT, | |
| 4027 | @l abelprinte ruseindica tor BIT, | |
| 4028 | @p rintername VARCHAR(50 ) = NU LL, -- not supplied if no prin ters are i nstalled o n the serv er | |
| 4029 | @t imezoneid CHAR(1), | |
| 4030 | @d aylightsav ingstypeid SMALLINT, | |
| 4031 | @d aylightsav ingsstartd ate DATETIME = NU LL, -- not supplied if divisio n doesn't use custom daylight savings | |
| 4032 | @d aylightsav ingsenddat e DATETIME = NULL, -- n ot supplie d if divis ion doesn' t use cust om dayligh t savings | |
| 4033 | @l ockinactiv itytimeout min INT, | |
| 4034 | @i nvoicetemp latetext VARCHAR(10 00), | |
| 4035 | @r ecordstatu scode CHAR(1), | |
| 4036 | @l astupdateu ser VARCHAR(30 ), | |
| 4037 | @l astupdatef unctionid INT, | |
| 4038 | @l astupdated ate DATETIME , | |
| 4039 | @l abelprinte rendpointa ddress VARCHAR(25 5) = NULL, | |
| 4040 | @l abelprinte rendpointp ort IN T = NULL, | |
| 4041 | @l abelprinte rendpointt ype VA RCHAR(50) | |
| 4042 | ) | |
| 4043 | ||
| 4044 | AS | |
| 4045 | ||
| 4046 | SET NOCOUN T ON | |
| 4047 | ||
| 4048 | DECLARE @e rror INT | |
| 4049 | DECLARE @r owcount INT | |
| 4050 | DECLARE @l abelprinte rendpointi d INT | |
| 4051 | ||
| 4052 | BEGIN TRAN SACTION In nerTran | |
| 4053 | BE GIN TRY | |
| 4054 | ||
| 4055 | INSE RT INTO db o.VbecsEnd Point | |
| 4056 | ( | |
| 4057 | EndPoi ntAddress, | |
| 4058 | EndPoi ntPort, | |
| 4059 | EndPoi ntType, | |
| 4060 | LastUp dateDate, | |
| 4061 | LastUp dateUser, | |
| 4062 | LastUp dateFuncti onId | |
| 4063 | ) | |
| 4064 | VALU ES | |
| 4065 | ( | |
| 4066 | @label printerend pointaddre ss, | |
| 4067 | @label printerend pointport, | |
| 4068 | @label printerend pointtype, | |
| 4069 | @lastu pdatedate, | |
| 4070 | @lastu pdateuser, | |
| 4071 | @lastu pdatefunct ionid | |
| 4072 | ) | |
| 4073 | EN D TRY | |
| 4074 | BE GIN CATCH | |
| 4075 | SELE CT @error = @@ERROR, @rowcount = @@ROWCO UNT | |
| 4076 | IF @ rowcount < > 1 | |
| 4077 | BEGIN | |
| 4078 | RAISERRO R( 50003, 16, 1, 'Vb ecsEndPoin t', @rowco unt ) | |
| 4079 | IF @@TRA NCOUNT > 0 ROLLBACK TRANSACTIO N InnerTra n | |
| 4080 | SET NOCO UNT OFF | |
| 4081 | RETURN(@ error) | |
| 4082 | END | |
| 4083 | EN D CATCH | |
| 4084 | ||
| 4085 | BE GIN TRY | |
| 4086 | SELE CT @labelp rinterendp ointid = I DENT_CURRE NT('dbo.Vb ecsEndPoin t'), @rowc ount = @@R OWCOUNT, @ error = @@ ERROR | |
| 4087 | EN D TRY | |
| 4088 | BEGIN CATCH | |
| 4089 | IF @ rowcount < > 1 | |
| 4090 | BEGIN | |
| 4091 | RAISERRO R( 50003, 16, 1, 'Vb ecsEndPoin t', @rowco unt ) | |
| 4092 | IF @@TRA NCOUNT > 0 ROLLBACK TRANSACTIO N InnerTra n | |
| 4093 | SET NOCO UNT OFF | |
| 4094 | RETURN(@ error) | |
| 4095 | END | |
| 4096 | EN D CATCH | |
| 4097 | ||
| 4098 | BE GIN TRY | |
| 4099 | INSE RT INTO db o.VamcDivi sion | |
| 4100 | ( | |
| 4101 | Divisi onCode, | |
| 4102 | Divisi onName, | |
| 4103 | Divisi onGuid, | |
| 4104 | Facili tyGuid, | |
| 4105 | LocalS upplierGui d, | |
| 4106 | Access ionAreaId, | |
| 4107 | Servic eTypeIndic ator, | |
| 4108 | LabelP rinterUseI ndicator, | |
| 4109 | Printe rName, | |
| 4110 | TimeZo neId, | |
| 4111 | Daylig htSavingsT ypeId, | |
| 4112 | Daylig htSavingsS tartDate, | |
| 4113 | Daylig htSavingsE ndDate, | |
| 4114 | LockIn activityTi meoutMin, | |
| 4115 | Invoic eTemplateT ext, | |
| 4116 | LabelP rinterEndP ointId, | |
| 4117 | Record StatusCode , | |
| 4118 | LastUp dateDate, | |
| 4119 | LastUp dateUser, | |
| 4120 | LastUp dateFuncti onId | |
| 4121 | ) | |
| 4122 | VALU ES | |
| 4123 | ( | |
| 4124 | @divis ioncode, | |
| 4125 | @divis ionname, | |
| 4126 | @divis ionguid, | |
| 4127 | @facil ityguid, | |
| 4128 | @local suppliergu id, | |
| 4129 | @acces sionareaid , | |
| 4130 | @servi cetypeindi cator, | |
| 4131 | @label printeruse indicator, | |
| 4132 | @print ername, | |
| 4133 | @timez oneid, | |
| 4134 | @dayli ghtsavings typeid, | |
| 4135 | @dayli ghtsavings startdate, | |
| 4136 | @dayli ghtsavings enddate, | |
| 4137 | @locki nactivityt imeoutmin, | |
| 4138 | @invoi cetemplate text, | |
| 4139 | @label printerend pointid, | |
| 4140 | @recor dstatuscod e, | |
| 4141 | @lastu pdatedate, | |
| 4142 | @lastu pdateuser, | |
| 4143 | @lastu pdatefunct ionid | |
| 4144 | ) | |
| 4145 | ||
| 4146 | EN D TRY | |
| 4147 | BE GIN CATCH | |
| 4148 | SELE CT @error = @@ERROR, @rowcount = @@ROWCO UNT | |
| 4149 | IF @ rowcount < > 1 | |
| 4150 | BEGIN | |
| 4151 | IF @@TRA NCOUNT > 0 ROLLBACK TRANSACTIO N InnerTra n | |
| 4152 | RAISERRO R( 50003, 16, 1, 'Va mcDivision ', @rowcou nt ) | |
| 4153 | SET NOCO UNT OFF | |
| 4154 | RETURN(@ error) | |
| 4155 | END | |
| 4156 | EN D CATCH | |
| 4157 | ||
| 4158 | IF @@TRANCOU NT > 0 COM MIT TRANSA CTION Inne rTran | |
| 4159 | ||
| 4160 | SE LECT @erro r = @@ERRO R | |
| 4161 | ||
| 4162 | SET NOCOUN T OFF | |
| 4163 | ||
| 4164 | RETURN(@er ror) | |
| 4165 | ||
| 4166 | ||
| 4167 | ||
| 4168 | GO | |
| 4169 | ||
| 4170 | ||
| 4171 | ||
| 4172 | if exists (select * from dbo.s ysobjects where id = object_id (N'[dbo].[ spUpdateVa mcDivision Base]') an d OBJECTPR OPERTY(id, N'IsProce dure') = 1 ) | |
| 4173 | drop proce dure [dbo] .[spUpdate VamcDivisi onBase] | |
| 4174 | GO | |
| 4175 | ||
| 4176 | ||
| 4177 | SET ANSI_N ULLS ON | |
| 4178 | GO | |
| 4179 | ||
| 4180 | SET QUOTED _IDENTIFIE R ON | |
| 4181 | GO | |
| 4182 | ||
| 4183 | /********* ********** ********** ********** ********** ********** ********** ********** ********** ********** ********** ********** ********** ********** ********** ********** ********** ****** | |
| 4184 | ** De sc: Upda tes inform ation in t he VamcDiv ision tabl e. | |
| 4185 | ** | |
| 4186 | ** Au thor: Stas A ntropov | |
| 4187 | ** | |
| 4188 | ** Da te: 07/2 3/2004 | |
| 4189 | ********** ********** ********** ********** ********** ********** ********** ********** ********** ********** ********** ********** ********** ********** ********** ********** ********** ***** | |
| 4190 | ** Mo dified: | |
| 4191 | ** Da te Name Descriptio n | |
| 4192 | ** -- ---------- -------- ---- ---- ---------- ----- | |
| 4193 | ** 10 /31/2004 S. Ant ropov Added @fac ilityguid, @accessio nareaid, | |
| 4194 | ** @daylights avingsstar tdate and @daylights avingsendd ate | |
| 4195 | ** 01 /10/2005 D. Ask ew Added @las tupdatedat e | |
| 4196 | ** 07 /28/2005 D. Ask ew Capitalize d all SQL keywords; removed SE T XACT_ABO RT ON/OFF; | |
| 4197 | ** added NOCO UNT ON/OFF ; removed call to sp SaveVamcDi visionDayl ightSaving sConfig | |
| 4198 | ** (now handl ed in code ); removed BEGIN/END ; removed RETURN 0; | |
| 4199 | ** removed un used param eters @day lightsavin gsstartdat e and @day lightsavin gsenddate; | |
| 4200 | ** changed pa rameter na mes to all lower cas e in UPDAT E statemen t | |
| 4201 | ** 08 /11/2005 J. Eng strom Changed pr ocedure to set Dayli ghtSavings StartDate and Daylig htSavingsE ndDate on the VamcDi vision tab le. | |
| 4202 | Removed li ne calling spSaveVam cDivisionD aylightSav ingsConfig . | |
| 4203 | ** 07 /12/2005 N.Pate rson ** Seconda ry review for compli ance with database s tandards a nd recomme ndations * * capitali zed NULL | |
| 4204 | ** 10 /18/2007 C. Jen sen Added Prin terName fi eld to acc omodate up date of re ports prin ter name ( CR 2320). | |
| 4205 | ** 09 /13/16 Pablo Sanchez Removed La belPrinter ComPortNum ber, Label PrinterIPA ddress, La belPrinter TcpPortNum ber column added @la belprinter endpointid . Removed NULL from @timezonei d (Defect 340457). | |
| 4206 | ** 02 /14/17 K. Adu -Poku ** Reviewe d for comp liance wit h database standards and recom mendations ** | |
| 4207 | ********** ********** ********** ********** ********** ********** ********** ********** ********** ********** ********** ********** ********** ********** ********** ********** ********** *****/ | |
| 4208 | CREATE PRO CEDURE [db o].[spUpda teVamcDivi sionBase] | |
| 4209 | ( | |
| 4210 | @d ivisioncod e CHAR(5), | |
| 4211 | @d ivisionnam e VARCHAR(50 ), | |
| 4212 | @d ivisiongui d UNIQUEIDEN TIFIER, -- stub para meter, not used | |
| 4213 | @f acilitygui d UNIQUEIDEN TIFIER, | |
| 4214 | @l ocalsuppli erguid UNIQUEIDEN TIFIER, | |
| 4215 | @a ccessionar eaid INT, | |
| 4216 | @s ervicetype indicator BIT, | |
| 4217 | @l abelprinte ruseindica tor BIT, | |
| 4218 | @p rintername VARCHAR(50 ) = NU LL, -- not supplied if no prin ters are i nstalled o n the serv er | |
| 4219 | @t imezoneid CHAR(1), | |
| 4220 | @d aylightsav ingstypeid SMALLINT, | |
| 4221 | @d aylightsav ingsstartd ate datetime = NULL, -- not suppli ed if dayl ight savin gs is not custom | |
| 4222 | @d aylightsav ingsenddat e datetime = NULL, - - not supp lied if da ylight sav ings is no t custom | |
| 4223 | @l ockinactiv itytimeout min INT, | |
| 4224 | @r ecordstatu scode CHAR(1), | |
| 4225 | @l abelprinte rendpointi d INT, | |
| 4226 | @l astupdateu ser VARCHAR(30 ), | |
| 4227 | @l astupdatef unctionid INT, | |
| 4228 | @r owversion ROWVERSION , | |
| 4229 | @l astupdated ate DATETIME | |
| 4230 | ) | |
| 4231 | ||
| 4232 | AS | |
| 4233 | ||
| 4234 | SET NOCOUN T ON | |
| 4235 | ||
| 4236 | DECLARE @ERR OR INT, | |
| 4237 | @ROW COUNT INT; | |
| 4238 | ||
| 4239 | UP DATE | |
| 4240 | dbo. VamcDivisi on | |
| 4241 | SE T | |
| 4242 | Divi sionName = @division name, | |
| 4243 | Faci lityGuid = @facility guid, | |
| 4244 | Loca lSupplierG uid = @loc alsupplier guid, | |
| 4245 | Acce ssionAreaI d = @acces sionareaid , | |
| 4246 | Serv iceTypeInd icator = @ servicetyp eindicator , | |
| 4247 | Labe lPrinterUs eIndicator = @labelp rinterusei ndicator, | |
| 4248 | Prin terName = @printerna me, | |
| 4249 | Time ZoneId = @ timezoneid , | |
| 4250 | Dayl ightSaving sTypeId = @daylights avingstype id, | |
| 4251 | Dayl ightSaving sStartDate = @daylig htsavingss tartdate, | |
| 4252 | Dayl ightSaving sEndDate = @daylight savingsend date, | |
| 4253 | Lock Inactivity TimeoutMin = @lockin activityti meoutmin, | |
| 4254 | Reco rdStatusCo de = @reco rdstatusco de, | |
| 4255 | Labe lPrinterEn dPointId = @labelpri nterendpoi ntid, | |
| 4256 | Last UpdateDate = @lastup datedate, | |
| 4257 | Last UpdateUser = @lastup dateuser, | |
| 4258 | Last UpdateFunc tionId = @ lastupdate functionid | |
| 4259 | WH ERE | |
| 4260 | Divi sionCode = @division code | |
| 4261 | AND [RowVersio n] = @rowv ersion | |
| 4262 | ||
| 4263 | SE LECT @ERRO R = @@ERRO R, | |
| 4264 | @ROW COUNT = @@ ROWCOUNT | |
| 4265 | ||
| 4266 | IF @ERROR = 0 AND @ROW COUNT <> 1 AND ( SEL ECT COUNT( 1) FROM db o.VamcDivi sion WHERE [RowVersi on] = @row version ) <> 1 | |
| 4267 | RAIS ERROR( 500 01, 16, 12 7 ) | |
| 4268 | ||
| 4269 | EL SE | |
| 4270 | IF @ROWCOUNT <> 1 | |
| 4271 | RAIS ERROR( 500 02, 16, 1, 'VamcDivi sion', @RO WCOUNT ) | |
| 4272 | ||
| 4273 | SET NOCOUN T OFF | |
| 4274 | ||
| 4275 | GO | |
| 4276 | ||
| 4277 | ||
| 4278 | ||
| 4279 | if exists (select * from dbo.s ysobjects where id = object_id (N'[dbo].[ spGetDivis ion]') and OBJECTPRO PERTY(id, N'IsProced ure') = 1) | |
| 4280 | drop proce dure [dbo] .[spGetDiv ision] | |
| 4281 | GO | |
| 4282 | ||
| 4283 | SET ANSI_N ULLS ON | |
| 4284 | GO | |
| 4285 | ||
| 4286 | SET QUOTED _IDENTIFIE R ON | |
| 4287 | GO | |
| 4288 | ||
| 4289 | /********* ********** ********** ********** ********** ********** ********** ********** ********** ********** ********** ********** ********** ********** ********** ********** ********** ****** | |
| 4290 | ** | |
| 4291 | ** De sc: Sele cts record s from the VamcDivis ion table based on t he primary key. | |
| 4292 | ** | |
| 4293 | ** Au thor: Came ron Taylor | |
| 4294 | ** | |
| 4295 | ** Da te: 10/3 0/2002 | |
| 4296 | ** | |
| 4297 | ********** ********** ********** ********** ********** ********** ********** ********** ********** ********** ********** ********** ********** ********** ********** ********** ********** ***** | |
| 4298 | ** Mo dified: | |
| 4299 | ** Da te Name De scription | |
| 4300 | ** 04 /08/2003 LMeyer Added Serv iceTypeInd icator, An tibodyScre enDisplayC ode, AutoA boRhIndica tor, | |
| 4301 | ** Ma ximumSpeci menExpirat ionDays | |
| 4302 | ** 01 /14/2004 C. Jen sen Added fiel ds from pe rtaining t o Division Alerts. | |
| 4303 | ** 03 /04/2004 C. Tay lor Added Medi calDirecto rName. | |
| 4304 | ** 04 /08/2004 Greg L ohse Adding Div isionGUID field | |
| 4305 | ** 04 /15/2004 C. Jen sen Added Faci lityGUID | |
| 4306 | ** 06 /25/2004 S. Ant ropov Updatred l ist of col umns | |
| 4307 | ** 09 /09/2004 S. Ant ropov Added Vamc Division.A ccessionAr eaId | |
| 4308 | ** 07 /18/2005 D. Ask ew ** Reviewe d for comp liance wit h database standards and recom mendations ** | |
| 4309 | ** NO COUNT set OFF; comm ents updat ed; capita lized SQL statements ; | |
| 4310 | ** ch anged form atting sli ghtly for readabilit y | |
| 4311 | ** 08 /10/2005 J. Eng strom Modified p rocedure t o get Dayl ighSavings StartDate and DayLig htSavingsE ndDate fro m VamcDivi sion | |
| 4312 | ** ta ble. Remo ved Left O uter Join on Dayligh Savings ta ble. | |
| 4313 | ** 10 /18/2007 C. Jen sen Added Prin terName fi eld to acc omodate re trieval of reports p rinter (CR 2320). | |
| 4314 | ** 10 /01/2009 K. Dob ranowski Added Reac tivityPhas eCode (CR 2717) | |
| 4315 | ** 08 /18/2010 K. Adu -Poku ** Reviewe d for comp liance wit h database standards and recom mendations ** | |
| 4316 | ** 09 /13/2016 Pablo Sanchez Removed La belPrinter ComPortNum ber, Label PrinterIPA ddress, La belPrinter TcpPortNum ber column s and adde d LabelPri nterEndPoi ntId colum n (Defect 340457). | |
| 4317 | ** 12 /19/2016 K. Adu -Poku ** Reviewe d for comp liance wit h database standards and recom mendations ** | |
| 4318 | ********** ********** ********** ********** ********** ********** ********** ********** ********** ********** ********** ********** ********** ********** ********** ********** ********** *****/ | |
| 4319 | CREATE PRO CEDURE [db o].[spGetD ivision] | |
| 4320 | ( | |
| 4321 | @d ivisioncod e CHAR(5 ) | |
| 4322 | ) | |
| 4323 | ||
| 4324 | AS | |
| 4325 | ||
| 4326 | SET NOCOUN T ON | |
| 4327 | ||
| 4328 | SE LECT Vamc Division.D ivisionCod e, | |
| 4329 | Divisi onGuid, | |
| 4330 | Divisi onName, | |
| 4331 | Servic eTypeIndic ator, | |
| 4332 | VamcDi vision.Icc bbaRegistr ationNumbe r, | |
| 4333 | Electr onicCrossm atchIndica tor, | |
| 4334 | VamcDi vision.Fac ilityGuid, | |
| 4335 | VamcDi vision.Acc essionArea Id, | |
| 4336 | Facili ty.Facilit yName, | |
| 4337 | VamcDi vision.Loc alSupplier Guid, | |
| 4338 | Antibo dyScreenDi splayCode, | |
| 4339 | Maximu mSpecimenE xpirationD ays, | |
| 4340 | Automa tedInstrum entIndicat or, | |
| 4341 | LabelP rinterUseI ndicator, | |
| 4342 | Printe rName, | |
| 4343 | TimeZo neId, | |
| 4344 | Daylig htSavingsT ypeId, | |
| 4345 | Daylig htSavingsS tartDate, | |
| 4346 | Daylig htSavingsE ndDate, | |
| 4347 | Printe rAlertsInd icator, | |
| 4348 | Printe rAlertsPri nterName, | |
| 4349 | Printe rOrderAler tTypeCode, | |
| 4350 | Printe rOrdersNee dedHours, | |
| 4351 | IconAl ertsIndica tor, | |
| 4352 | IconOr derAlertTy peCode, | |
| 4353 | IconOr dersNeeded Hours, | |
| 4354 | IconRe freshRate, | |
| 4355 | LoginM essageText , | |
| 4356 | Invoic eTemplateT ext, | |
| 4357 | Medica lDirectorN ame, | |
| 4358 | LockIn activityTi meoutMin, | |
| 4359 | VamcDi vision.Rec ordStatusC ode, | |
| 4360 | VamcDi vision.[Ro wVersion], | |
| 4361 | Reacti vityPhaseC ode, | |
| 4362 | LabelP rinterEndP ointId | |
| 4363 | FR OM dbo.Va mcDivision | |
| 4364 | LEFT OUTER JOI N dbo.Faci lity ON Fa cility.Fac ilityGuid = VamcDivi sion.Facil ityGuid | |
| 4365 | WH ERE | |
| 4366 | Vamc Division.D ivisionCod e = @divis ionCode; | |
| 4367 | ||
| 4368 | RETURN @@E RROR | |
| 4369 | ||
| 4370 | SET NOCOUN T OFF | |
| 4371 | ||
| 4372 | GO | |
| 4373 | ||
| 4374 | if exists (select * from dbo.s ysobjects where id = object_id (N'[dbo].[ spGetVbecs GlobalConf igValue]') and OBJEC TPROPERTY( id, N'IsPr ocedure') = 1) | |
| 4375 | drop proce dure [dbo] .[spGetVbe csGlobalCo nfigValue] | |
| 4376 | GO | |
| 4377 | ||
| 4378 | ||
| 4379 | SET ANSI_N ULLS ON | |
| 4380 | GO | |
| 4381 | ||
| 4382 | SET QUOTED _IDENTIFIE R ON | |
| 4383 | GO | |
| 4384 | ||
| 4385 | /********* ********** ********** ********** ********** ********** ********** ********** ********** ********** ********** ********** ********** ********** ********** ********** ********** ****** | |
| 4386 | ** De sc: Sele cts parame ter value from HL7 C lient Moni tor Config . | |
| 4387 | ** | |
| 4388 | ** Au thor: Carr ie Van Ste dum | |
| 4389 | ** | |
| 4390 | ** Da te: 1/15 /2013 | |
| 4391 | ********** ********** ********** ********** ********** ********** ********** ********** ********** ********** ********** ********** ********** ********** ********** ********** ********** ***** | |
| 4392 | ** Mo dified: | |
| 4393 | ** Da te Name Descriptio n | |
| 4394 | ** -- ---------- ------- -------- ---------- ----- ---- ---------- ---------- ---------- ---------- ---------- ---------- ---------- ---------- ---------- ---------- ---------- ---------- ---------- ---------- ---------- ---------- ---- | |
| 4395 | ** 11 /01/2013 K. Adu -Poku ** Reviewe d for comp liance wit h database standards and recom mendations ** | |
| 4396 | ** 09 /13/16 P. San chez Added Last UpdateFunc tionId to SELECT (De fect 34045 7). | |
| 4397 | ** 12 /19/2016 K. Adu -Poku ** Reviewe d for comp liance wit h database standards and recom mendations ** | |
| 4398 | ********** ********** ********** ********** ********** ********** ********** ********** ********** ********** ********** ********** ********** ********** ********** ********** ********** *****/ | |
| 4399 | ||
| 4400 | CREATE PRO CEDURE [db o].[spGetV becsGlobal ConfigValu e] | |
| 4401 | ( | |
| 4402 | @a pplication name VARCHAR( 100), | |
| 4403 | @p arameterna me VARCHAR( 100) | |
| 4404 | ) | |
| 4405 | AS | |
| 4406 | ||
| 4407 | DECLARE @E RROR INT | |
| 4408 | ||
| 4409 | SET @ERROR = 0 | |
| 4410 | ||
| 4411 | SET NOCOUN T ON | |
| 4412 | ||
| 4413 | SE LECT | |
| 4414 | Para meterValue , | |
| 4415 | Last UpdateUser , | |
| 4416 | Last UpdateDate , | |
| 4417 | [Row Version], | |
| 4418 | Last UpdateFunc tionID | |
| 4419 | FR OM | |
| 4420 | dbo. VbecsGloba lConfig | |
| 4421 | WH ERE | |
| 4422 | Appl icationNam e = @appli cationname AND | |
| 4423 | Para meterName = @paramet ername | |
| 4424 | ||
| 4425 | SET @ERROR = @@ERROR | |
| 4426 | ||
| 4427 | SET NOCOUN T OFF | |
| 4428 | ||
| 4429 | RETURN(@ER ROR) | |
| 4430 | ||
| 4431 | GO | |
| 4432 | ||
| 4433 | ||
| 4434 | if exists (select * from dbo.s ysobjects where id = object_id (N'[dbo].[ spGetAllVb ecsGlobalC onfigValue ]') and OB JECTPROPER TY(id, N'I sProcedure ') = 1) | |
| 4435 | drop proce dure [dbo] .[spGetAll VbecsGloba lConfigVal ue] | |
| 4436 | GO | |
| 4437 | ||
| 4438 | ||
| 4439 | SET ANSI_N ULLS ON | |
| 4440 | GO | |
| 4441 | ||
| 4442 | SET QUOTED _IDENTIFIE R ON | |
| 4443 | GO | |
| 4444 | ||
| 4445 | /********* ********** ********** ********** ********** ********** ********** ********** ********** ********** ********** ********** ********** ********** ********** ********** ********** ****** | |
| 4446 | ** De sc: Sele cts parame ter value from HL7 C lient Moni tor Config . | |
| 4447 | ** | |
| 4448 | ** Au thor: Carr ie Van Ste dum | |
| 4449 | ** | |
| 4450 | ** Da te: 1/15 /2013 | |
| 4451 | ********** ********** ********** ********** ********** ********** ********** ********** ********** ********** ********** ********** ********** ********** ********** ********** ********** ***** | |
| 4452 | ** Mo dified: | |
| 4453 | ** Da te Name Descriptio n | |
| 4454 | ** -- ---------- ------- -------- ---------- ----- ---- ---------- ---------- ---------- ---------- ---------- ---------- ---------- ---------- ---------- ---------- ---------- ---------- ---------- ---------- ---------- ---------- ---- | |
| 4455 | ** 11 /01/2013 K. Adu -Poku ** Reviewe d for comp liance wit h database standards and recom mendations ** | |
| 4456 | ** 09 /13/2016 P. San chez Added Last UpdateFunc tionId to SELECT (De fect 34045 7). | |
| 4457 | ** 12 /19/2016 K. Adu -Poku ** Reviewe d for comp liance wit h database standards and recom mendations ** | |
| 4458 | ********** ********** ********** ********** ********** ********** ********** ********** ********** ********** ********** ********** ********** ********** ********** ********** ********** *****/ | |
| 4459 | ||
| 4460 | CREATE PRO CEDURE [db o].[spGetA llVbecsGlo balConfigV alue] | |
| 4461 | ( | |
| 4462 | @a pplication name VARCHAR( 100) | |
| 4463 | ) | |
| 4464 | AS | |
| 4465 | ||
| 4466 | DECLARE @E RROR INT | |
| 4467 | ||
| 4468 | SET @ERROR = 0 | |
| 4469 | ||
| 4470 | SET NOCOUN T ON | |
| 4471 | ||
| 4472 | SE LECT | |
| 4473 | Para meterName, | |
| 4474 | Para meterValue , | |
| 4475 | Last UpdateUser , | |
| 4476 | Last UpdateDate , | |
| 4477 | [Row Version], | |
| 4478 | Last UpdateFunc tionId | |
| 4479 | FR OM | |
| 4480 | dbo. VbecsGloba lConfig | |
| 4481 | WH ERE | |
| 4482 | Appl icationNam e = @appli cationname | |
| 4483 | ||
| 4484 | SET @ERROR = @@ERROR | |
| 4485 | ||
| 4486 | SET NOCOUN T OFF | |
| 4487 | ||
| 4488 | RETURN(@ER ROR) | |
| 4489 | ||
| 4490 | GO | |
| 4491 | ||
| 4492 | ||
| 4493 | ||
| 4494 | if exists (select * from dbo.s ysobjects where id = object_id (N'[dbo].[ trCreateEx piredOrder edComponen tMessage]' ) and OBJE CTPROPERTY (id, N'IsT rigger') = 1) | |
| 4495 | drop trigg er [dbo].[ trCreateEx piredOrder edComponen tMessage] | |
| 4496 | GO | |
| 4497 | ||
| 4498 | ||
| 4499 | SET ANSI_N ULLS ON | |
| 4500 | GO | |
| 4501 | ||
| 4502 | SET QUOTED _IDENTIFIE R ON | |
| 4503 | GO | |
| 4504 | ||
| 4505 | /********* ********** ********** ********** ********** ********** ********** ********** ********** ********** ********** ********** ********** ********** ********** ********** ********** ****** | |
| 4506 | ** De sc: Crea tes HL7 Co mponent Or der Update Message ( CR 2368) | |
| 4507 | ** | |
| 4508 | ** Au thor: Davi d Askew | |
| 4509 | ** | |
| 4510 | ** Da te: 10/2 8/2009 | |
| 4511 | ** | |
| 4512 | ********** ********** ********** ********** ********** ********** ********** ********** ********** ********** ********** ********** ********** ********** ********** ********** ********** ***** | |
| 4513 | ** Mo dified: | |
| 4514 | ** Da te Name De scription | |
| 4515 | ** -- ---------- ------- -------- ---------- ----- ---- ---------- ---------- ---------- ---------- ---------- ---------- ---------- ---------- ---------- ---------- ---------- ---------- ---------- ---------- ---------- ---------- ---- | |
| 4516 | ** 08 /15/11 M. Smi th ** Reviewe d for comp liance wit h database standards and recom mendations ** | |
| 4517 | ** 09 /13/16 Pablo Sanchez Changed to get Proce ssing Id a nd VbecsFa cilityId f rom Interf ace tables and Inter faceFaicil ityId from VbecsGlob alConfgig table(Defe ct 340457) . | |
| 4518 | ** 02 /14/17 K. Adu -Poku ** Reviewe d for comp liance wit h database standards and recom mendations ** | |
| 4519 | ********** ********** ********** ********** ********** ********** ********** ********** ********** ********** ********** ********** ********** ********** ********** ********** ********** *****/ | |
| 4520 | CREATE TRI GGER [dbo] .[trCreate ExpiredOrd eredCompon entMessage ] | |
| 4521 | ||
| 4522 | ON [dbo].[ OrderedCom ponent] | |
| 4523 | ||
| 4524 | FOR UPDATE | |
| 4525 | ||
| 4526 | AS | |
| 4527 | ||
| 4528 | IF EXISTS (SELECT Or deredCompo nentGuid F ROM Insert ed WHERE O rderStatus Code = 'X' AND TaskS tatusCode = 'E') | |
| 4529 | ||
| 4530 | BEGIN | |
| 4531 | ||
| 4532 | DE CLARE @mes sageStream VARCHAR(35 00) | |
| 4533 | ||
| 4534 | DE CLARE @car riageRetur n VA RCHAR(5) | |
| 4535 | DE CLARE @cur rentTime DATETIME | |
| 4536 | DE CLARE @cur rentUtcTim e DATETIME | |
| 4537 | DE CLARE @hl7 CurrentTim e VARCHAR(10 0) | |
| 4538 | ||
| 4539 | DE CLARE @msh VARCHAR(87 5) | |
| 4540 | DE CLARE @pid VARCHAR(87 5) | |
| 4541 | DE CLARE @orc VARCHAR(87 5) | |
| 4542 | DE CLARE @obr VARCHAR(87 5) | |
| 4543 | ||
| 4544 | DE CLARE @fie ldSeparato r CH AR(1) -- Int erface | |
| 4545 | DE CLARE @enc odingChara cters CH AR(4) -- Int erface | |
| 4546 | DE CLARE @int erfaceAppl icationId VARCHAR(50 ) -- Int erface | |
| 4547 | DE CLARE @vbe csApplicat ionId VA RCHAR(50) -- Inter face | |
| 4548 | DE CLARE @ver sionId VA RCHAR(8) -- Inter face | |
| 4549 | DE CLARE @int erfaceFaci lityId VA RCHAR(20) -- Vbecs GlobalConf ig | |
| 4550 | DE CLARE @pro cessingId CHAR(1) -- I nterface | |
| 4551 | DE CLARE @vbe csFacility Id VA RCHAR(20) -- Inter face | |
| 4552 | ||
| 4553 | DE CLARE @com ponentSepa rator CHAR(1) | |
| 4554 | DE CLARE @mes sageContro lId VA RCHAR(50) | |
| 4555 | DE CLARE @mes sageType VARCHAR(13 ) | |
| 4556 | DE CLARE @ord erControlC ode CH AR(2) | |
| 4557 | DE CLARE @nam espaceId VARCHAR(5) | |
| 4558 | DE CLARE @ord erStatus CH AR(2) | |
| 4559 | DE CLARE @ord erComments VARCHAR(25 5) | |
| 4560 | ||
| 4561 | DE CLARE @pat ientLastNa me VA RCHAR(30) | |
| 4562 | DE CLARE @pat ientFirstN ame VA RCHAR(30) | |
| 4563 | DE CLARE @pat ientMiddle Name VA RCHAR(30) | |
| 4564 | DE CLARE @pat ientSexCod e CHAR(1) | |
| 4565 | DE CLARE @pat ientDob VA RCHAR(100) | |
| 4566 | DE CLARE @vis taPatientI d VA RCHAR(50) | |
| 4567 | ||
| 4568 | DE CLARE @cpr sOrderNumb er VA RCHAR(20) | |
| 4569 | DE CLARE @vbe csOrderNum ber VA RCHAR(25) | |
| 4570 | DE CLARE @ord erGroupNum ber VA RCHAR(30) | |
| 4571 | DE CLARE @ord erStatusCo de CH AR(1) | |
| 4572 | DE CLARE @ord erSpecialI nstruction s VA RCHAR(510) | |
| 4573 | DE CLARE @lab OrderNumbe r VARCHAR(20 ) | |
| 4574 | DE CLARE @lab TestId CH AR(15) | |
| 4575 | DE CLARE @cpr sOrderable ItemID CHAR(2) | |
| 4576 | DE CLARE @com ponentClas sName VARCHAR(35 ) | |
| 4577 | ||
| 4578 | -- Get inter face data for messag e | |
| 4579 | SE LECT | |
| 4580 | @fie ldSeparato r = I. FieldSepar ator, | |
| 4581 | @enc odingChara cters = I.Encoding Characters , | |
| 4582 | @int erfaceAppl icationId = I. InterfaceA pplication Id, | |
| 4583 | @vbe csApplicat ionId = I.VbecsApp licationId , | |
| 4584 | @ver sionId = I.VersionI d, | |
| 4585 | @int erfaceFaci lityId = VGC.Parame terValue, | |
| 4586 | @pro cessingId = I.Processi ngId, | |
| 4587 | @vbe csFacility Id = I.VbecsFac ilityId | |
| 4588 | FR OM | |
| 4589 | dbo. Interface I | |
| 4590 | LEFT JOIN dbo. VbecsGloba lConfig VG C on VGC.A pplication Name = I.A pplication Name | |
| 4591 | AND VG C.Paramete rName = I. ConfigPref ix + '_Fac ilityID' | |
| 4592 | ||
| 4593 | WH ERE | |
| 4594 | I.In terfaceId = 1 | |
| 4595 | ||
| 4596 | -- Get patie nt order d ata for me ssage | |
| 4597 | SE LECT | |
| 4598 | @pat ientLastNa me = P.PatientL astName, | |
| 4599 | @pat ientFirstN ame = P.PatientF irstName, | |
| 4600 | @pat ientMiddle Name = ISNULL(P.P atientMidd leName, '' ), | |
| 4601 | @pat ientSexCod e = ISNULL(P .PatientSe xCode, '') , | |
| 4602 | @pat ientDob = ISNULL(SUB STRING(dbo .fnDateTim eConversio nToHL7Date Time(P.Pat ientDob),0 , 9), ''), | |
| 4603 | @vis taPatientI d = CAST(P.Vis taPatientI d AS VARCH AR(50)), | |
| 4604 | @cpr sOrderNumb er = OC.CprsOrd erNumber, | |
| 4605 | @vbe csOrderNum ber = CAST(OC.Vb ecsOrderNu mber AS VA RCHAR(25)) , | |
| 4606 | @ord erGroupNum ber = PO.OrderGr oupNumber, | |
| 4607 | @ord erStatusCo de = OC.OrderSt atusCode, | |
| 4608 | @ord erSpecialI nstruction s = ISNULL(OC. OrderSpeci alInstruct ions, ''), | |
| 4609 | @lab OrderNumbe r = OC.LabOr derNumber, | |
| 4610 | @lab TestId = OC.LabTest Id, | |
| 4611 | @cpr sOrderable ItemID = CCLASS.Cpr sOrderable ItemID, | |
| 4612 | @com ponentClas sName = CCLASS.Com ponentClas sName | |
| 4613 | FR OM | |
| 4614 | dbo. Patient P | |
| 4615 | JOIN dbo.Patie ntTreatmen t PT ON P .PatientGu id = PT.Patient Guid | |
| 4616 | JOIN dbo.Patie ntOrder PO ON P T.PatientT reatmentGu id = PO.Patient TreatmentG uid | |
| 4617 | JOIN dbo.Order edComponen t OC ON PO.Patien tOrderGuid = OC.Pat ientOrderG uid | |
| 4618 | JOIN dbo.Compo nentClass CCLASS ON OC.Compon entClassId = CCLASS .Component ClassId | |
| 4619 | WH ERE | |
| 4620 | OC.O rderedComp onentGuid = (SELECT Or deredCompo nentGuid F ROM Insert ed) | |
| 4621 | AND OC.OrderSt atusCode = 'X' | |
| 4622 | AND TaskStatus Code = 'E' | |
| 4623 | ||
| 4624 | -- Set the v ariables v alues | |
| 4625 | SE T @carriag eReturn = CHAR(13) | |
| 4626 | SE T @compone ntSeparato r = SUBSTRIN G(@encodin gCharacter s, 1, 1) | |
| 4627 | SE T @current UtcTime = GETUTCDA TE() | |
| 4628 | -- Only used to calcul ate the ti me zone di fferential | |
| 4629 | SE T @current Time = GETDATE( ) | |
| 4630 | ||
| 4631 | SE T @hl7Curr entTime = REPLACE( REPLACE(RE PLACE(CONV ERT(VARCHA R(36), @cu rrentUtcTi me, 20), ' ',''),'-' ,''),':',' ') -- yyyyMMd dhhss | |
| 4632 | + '-0' + CONVERT( V ARCHAR(10) , ABS(DATE PART(HOUR, @currentTi me) - DATE PART(HOUR, @currentUt cTime))) + '00' -- Get t ime zone i n -0500 fo rmat, wher e 5 is hrs from UTC | |
| 4633 | ||
| 4634 | SE T @message ControlId = 'VBECS' + REPLACE( REPLACE(RE PLACE(REPL ACE(CONVER T( VARCHAR (36), @cur rentUtcTim e, 21 ),'- ',''),' ', ''),':','' ),'.','') -- yyyyMMd dhhssccc ( c = millis econds) | |
| 4635 | ||
| 4636 | SE T @message Type = 'OMG^O1 9' | |
| 4637 | SE T @namespa ceId = 'VBEC' | |
| 4638 | SE T @orderSt atus = 'ZE' | |
| 4639 | SE T @orderCo mments = 'Expired by backgr ound job' | |
| 4640 | ||
| 4641 | -- ********* ********** ********** ********** ********** ********** ********** ********** ********** ********** ********** ********** ********** ********** ********** ********** ********** ********** ********** ********** ********** ********** ********** ********** ********** ********** ********** | |
| 4642 | -- MSH SEGM ENT | |
| 4643 | SE T @msh = | |
| 4644 | 'MSH ' | |
| 4645 | + @f ieldSepara tor | |
| 4646 | + @e ncodingCha racters | |
| 4647 | + @f ieldSepara tor | |
| 4648 | + @v becsApplic ationId | |
| 4649 | + @f ieldSepara tor | |
| 4650 | + @v becsFacili tyId | |
| 4651 | + @f ieldSepara tor | |
| 4652 | + @i nterfaceAp plicationI d | |
| 4653 | + @f ieldSepara tor | |
| 4654 | + @i nterfaceFa cilityId | |
| 4655 | + @f ieldSepara tor | |
| 4656 | + @h l7CurrentT ime | |
| 4657 | + @f ieldSepara tor | |
| 4658 | + @f ieldSepara tor | |
| 4659 | + @m essageType | |
| 4660 | + @f ieldSepara tor | |
| 4661 | + @m essageCont rolId | |
| 4662 | + @f ieldSepara tor | |
| 4663 | + @p rocessingI d | |
| 4664 | + @f ieldSepara tor | |
| 4665 | + @v ersionId | |
| 4666 | + @c arriageRet urn | |
| 4667 | ||
| 4668 | -- ********* ********** ********** ********** ********** ********** ********** ********** ********** ********** ********** ********** ********** ********** ********** ********** ********** ********** ********** ********** ********** ********** ********** ********** ********** ********** ********** | |
| 4669 | -- PID SEGM ENT | |
| 4670 | SE T @pid = | |
| 4671 | 'PID ' | |
| 4672 | + @f ieldSepara tor | |
| 4673 | + @f ieldSepara tor | |
| 4674 | + @f ieldSepara tor | |
| 4675 | + @v istaPatien tId | |
| 4676 | + @f ieldSepara tor | |
| 4677 | + @f ieldSepara tor | |
| 4678 | + @p atientLast Name | |
| 4679 | + @c omponentSe parator | |
| 4680 | + @p atientFirs tName | |
| 4681 | + @c omponentSe parator | |
| 4682 | + @p atientMidd leName | |
| 4683 | + @f ieldSepara tor | |
| 4684 | + @f ieldSepara tor | |
| 4685 | + @p atientDob | |
| 4686 | + @f ieldSepara tor | |
| 4687 | + @p atientSexC ode | |
| 4688 | + @c arriageRet urn | |
| 4689 | ||
| 4690 | -- ********* ********** ********** ********** ********** ********** ********** ********** ********** ********** ********** ********** ********** ********** ********** ********** ********** ********** ********** ********** ********** ********** ********** ********** ********** ********** ********** | |
| 4691 | -- ORC SEGM ENT | |
| 4692 | SE T @orc = | |
| 4693 | 'ORC ' | |
| 4694 | + @f ieldSepara tor | |
| 4695 | + 'S C' -- Always se nd a Statu s Change O rder Contr ol code | |
| 4696 | + @f ieldSepara tor | |
| 4697 | + @c prsOrderNu mber | |
| 4698 | + @c omponentSe parator | |
| 4699 | + 'O R' | |
| 4700 | + @f ieldSepara tor | |
| 4701 | + @v becsOrderN umber | |
| 4702 | + @c omponentSe parator | |
| 4703 | + @n amespaceId | |
| 4704 | + @f ieldSepara tor | |
| 4705 | + @o rderGroupN umber | |
| 4706 | + @f ieldSepara tor | |
| 4707 | + @o rderStatus | |
| 4708 | + @f ieldSepara tor | |
| 4709 | + @f ieldSepara tor | |
| 4710 | + @f ieldSepara tor | |
| 4711 | + @f ieldSepara tor | |
| 4712 | + @f ieldSepara tor | |
| 4713 | + @f ieldSepara tor | |
| 4714 | + @f ieldSepara tor | |
| 4715 | + @f ieldSepara tor | |
| 4716 | + @f ieldSepara tor | |
| 4717 | + @f ieldSepara tor | |
| 4718 | + @f ieldSepara tor | |
| 4719 | + @c omponentSe parator | |
| 4720 | + @o rderCommen ts | |
| 4721 | + @c arriageRet urn | |
| 4722 | ||
| 4723 | -- ********* ********** ********** ********** ********** ********** ********** ********** ********** ********** ********** ********** ********** ********** ********** ********** ********** ********** ********** ********** ********** ********** ********** ********** ********** ********** ********** | |
| 4724 | -- OBR SEGM ENT | |
| 4725 | SE T @obr = | |
| 4726 | 'OBR ' | |
| 4727 | + @f ieldSepara tor | |
| 4728 | + '1 ' -- Set ID | |
| 4729 | + @f ieldSepara tor | |
| 4730 | + @c prsOrderNu mber | |
| 4731 | + @c omponentSe parator | |
| 4732 | + 'O R' | |
| 4733 | + @f ieldSepara tor | |
| 4734 | + @v becsOrderN umber | |
| 4735 | + @c omponentSe parator | |
| 4736 | + @n amespaceId | |
| 4737 | + @f ieldSepara tor | |
| 4738 | + @c prsOrderab leItemID | |
| 4739 | + @c omponentSe parator | |
| 4740 | + @c omponentCl assName | |
| 4741 | + @c omponentSe parator | |
| 4742 | + '9 9VBC' | |
| 4743 | + @c omponentSe parator | |
| 4744 | + @c omponentSe parator | |
| 4745 | + @o rderSpecia lInstructi ons | |
| 4746 | + @f ieldSepara tor | |
| 4747 | + @f ieldSepara tor | |
| 4748 | + @f ieldSepara tor | |
| 4749 | + @f ieldSepara tor | |
| 4750 | + @f ieldSepara tor | |
| 4751 | + @f ieldSepara tor | |
| 4752 | + @f ieldSepara tor | |
| 4753 | + @f ieldSepara tor | |
| 4754 | + @f ieldSepara tor | |
| 4755 | + @l abOrderNum ber | |
| 4756 | + '; ;;' | |
| 4757 | + @l abTestId | |
| 4758 | + @c arriageRet urn | |
| 4759 | ||
| 4760 | -- ********* ********** ********** ********** ********** ********** ********** ********** ********** ********** ********** ********** ********** ********** ********** ********** ********** ********** ********** ********** ********** ********** ********** ********** ********** ********** ********** | |
| 4761 | -- Create HL 7 message | |
| 4762 | SE T @message Stream = @ msh + @pid + @orc + @obr | |
| 4763 | ||
| 4764 | -- Insert HL 7 into Mes sageLog ta ble for tr ansmission to CPRS ( via Client Monitor S ervice) | |
| 4765 | EX EC spHL7In sertMessag eLog | |
| 4766 | 1, | |
| 4767 | @mes sageContro lId, | |
| 4768 | @mes sageType, | |
| 4769 | @cur rentUtcTim e, | |
| 4770 | @vbe csApplicat ionId, | |
| 4771 | @int erfaceAppl icationId, | |
| 4772 | @mes sageStream , | |
| 4773 | 1, | |
| 4774 | NULL , | |
| 4775 | 'Sys tem', | |
| 4776 | -1, | |
| 4777 | @cur rentUtcTim e | |
| 4778 | ||
| 4779 | END | |
| 4780 | ||
| 4781 | ||
| 4782 | ||
| 4783 | GO | |
| 4784 | ||
| 4785 | ||
| 4786 | if exists (select * from dbo.s ysobjects where id = object_id (N'[dbo].[ trSetOrder Acceptance DateForOrd eredCompon ent]') and OBJECTPRO PERTY(id, N'IsTrigge r') = 1) | |
| 4787 | drop trigg er [dbo].[ trSetOrder Acceptance DateForOrd eredCompon ent] | |
| 4788 | GO | |
| 4789 | ||
| 4790 | SET ANSI_N ULLS ON | |
| 4791 | GO | |
| 4792 | ||
| 4793 | SET QUOTED _IDENTIFIE R ON | |
| 4794 | GO | |
| 4795 | ||
| 4796 | /********* ********** ********** ********** ********** ********** ********** ********** ********** ********** ********** ********** ********** ********** ********** ********** ********** ****** | |
| 4797 | ** De sc: Sets the Order Acceptance Date | |
| 4798 | ** | |
| 4799 | ** Au thor: Krzy sztof Dobr anowski | |
| 4800 | ** | |
| 4801 | ** Da te: 11/9 /2009 | |
| 4802 | ** | |
| 4803 | ********** ********** ********** ********** ********** ********** ********** ********** ********** ********** ********** ********** ********** ********** ********** ********** ********** ***** | |
| 4804 | ** Mo dified: | |
| 4805 | ** Da te Name De scription | |
| 4806 | ** -- ---------- ------- -------- ---------- ----- ---- ---------- ---------- ---------- ---------- ---------- ---------- ---------- ---------- ---------- ---------- ---------- ---------- ---------- ---------- ---------- ---------- ---- | |
| 4807 | ** 11 /9/2009 Krzysz tof Dobran owski In itial crea tion (CR 2 368) | |
| 4808 | ** 08 /15/11 M. Smi th ** Reviewe d for comp liance wit h database standards and recom mendations ** | |
| 4809 | ** 02 /14/17 K. Adu -Poku Added dbo prefix to table name (Defect 3 40457). | |
| 4810 | ** 02 /14/17 K. Adu -Poku ** Reviewe d for comp liance wit h database standards and recom mendations ** | |
| 4811 | ********** ********** ********** ********** ********** ********** ********** ********** ********** ********** ********** ********** ********** ********** ********** ********** ********** *****/ | |
| 4812 | CREATE TRI GGER [dbo] .[trSetOrd erAcceptan ceDateForO rderedComp onent] | |
| 4813 | ON [dbo].[ OrderedCom ponent] | |
| 4814 | FOR UPDATE | |
| 4815 | AS | |
| 4816 | DE CLARE @sta tusbeforeu pdate CHAR | |
| 4817 | DE CLARE @sta tusafterup date CHAR | |
| 4818 | DE CLARE @ord eredcompon entguid UN IQUEIDENTI FIER | |
| 4819 | ||
| 4820 | SE LECT @stat usbeforeup date = Ord erStatusCo de FROM DE LETED | |
| 4821 | SE LECT @stat usafterupd ate = Orde rStatusCod e FROM INS ERTED | |
| 4822 | ||
| 4823 | IF (@statu sbeforeupd ate = 'P' AND @statu safterupda te = 'A') | |
| 4824 | BEGIN | |
| 4825 | SE LECT @orde redcompone ntguid = O rderedComp onentGuid FROM INSER TED | |
| 4826 | ||
| 4827 | UP DATE | |
| 4828 | dbo. OrderedCom ponent | |
| 4829 | SE T | |
| 4830 | Orde rAcceptanc eDate = GE TUTCDATE() | |
| 4831 | WH ERE | |
| 4832 | Orde redCompone ntGuid = @ orderedcom ponentguid | |
| 4833 | ||
| 4834 | END | |
| 4835 | ||
| 4836 | ||
| 4837 | ||
| 4838 | GO | |
| 4839 | ||
| 4840 | ||
| 4841 | if exists (select * from dbo.s ysobjects where id = object_id (N'[dbo].[ trCreateEx piredOrder edTestMess age]') and OBJECTPRO PERTY(id, N'IsTrigge r') = 1) | |
| 4842 | drop trigg er [dbo].[ trCreateEx piredOrder edTestMess age] | |
| 4843 | GO | |
| 4844 | ||
| 4845 | ||
| 4846 | SET ANSI_N ULLS ON | |
| 4847 | GO | |
| 4848 | ||
| 4849 | SET QUOTED _IDENTIFIE R ON | |
| 4850 | GO | |
| 4851 | ||
| 4852 | /********* ********** ********** ********** ********** ********** ********** ********** ********** ********** ********** ********** ********** ********** ********** ********** ********** ****** | |
| 4853 | ** De sc: Crea tes HL7 Co mponent Or der Update Message ( CR 2368) | |
| 4854 | ** | |
| 4855 | ** Au thor: Davi d Askew | |
| 4856 | ** | |
| 4857 | ** Da te: 11/2 /2009 | |
| 4858 | ** | |
| 4859 | ********** ********** ********** ********** ********** ********** ********** ********** ********** ********** ********** ********** ********** ********** ********** ********** ********** ***** | |
| 4860 | ** Mo dified: | |
| 4861 | ** Da te Name De scription | |
| 4862 | ** -- ---------- ------- -------- ---------- ----- ---- ---------- ---------- ---------- ---------- ---------- ---------- ---------- ---------- ---------- ---------- ---------- ---------- ---------- ---------- ---------- ---------- ---- | |
| 4863 | ** 08 /15/11 M. Smi th ** Reviewe d for comp liance wit h database standards and recom mendations ** | |
| 4864 | ** 09 /13/16 Pablo Sanchez Changed to get Proce ssing Id a nd VbecsFa cilityId f rom Interf ace tables and Inter faceFaicil ityId from VbecsGlob alConfgig table(Defe ct 340457) . | |
| 4865 | ** 02 /14/17 K. Adu -Poku ** Reviewe d for comp liance wit h database standards and recom mendations ** | |
| 4866 | ********** ********** ********** ********** ********** ********** ********** ********** ********** ********** ********** ********** ********** ********** ********** ********** ********** *****/ | |
| 4867 | CREATE TRI GGER [dbo] .[trCreate ExpiredOrd eredTestMe ssage] | |
| 4868 | ||
| 4869 | ON [dbo].[ OrderedTes t] | |
| 4870 | ||
| 4871 | FOR UPDATE | |
| 4872 | ||
| 4873 | AS | |
| 4874 | ||
| 4875 | IF EXISTS (SELECT Or deredTestG uid FROM I nserted WH ERE OrderS tatusCode = 'X' AND TaskStatus Code = 'E' ) | |
| 4876 | ||
| 4877 | BEGIN | |
| 4878 | ||
| 4879 | DE CLARE @mes sageStream VARCHAR(35 00) | |
| 4880 | ||
| 4881 | DE CLARE @car riageRetur n VA RCHAR(5) | |
| 4882 | DE CLARE @cur rentTime DATETIME | |
| 4883 | DE CLARE @cur rentUtcTim e DATETIME | |
| 4884 | DE CLARE @hl7 CurrentTim e VARCHAR(10 0) | |
| 4885 | ||
| 4886 | DE CLARE @msh VARCHAR(87 5) | |
| 4887 | DE CLARE @pid VARCHAR(87 5) | |
| 4888 | DE CLARE @orc VARCHAR(87 5) | |
| 4889 | DE CLARE @obr VARCHAR(87 5) | |
| 4890 | ||
| 4891 | DE CLARE @fie ldSeparato r CH AR(1) -- Int erface | |
| 4892 | DE CLARE @enc odingChara cters CH AR(4) -- Int erface | |
| 4893 | DE CLARE @int erfaceAppl icationId VARCHAR(50 ) -- Int erface | |
| 4894 | DE CLARE @vbe csApplicat ionId VA RCHAR(50) -- Inter face | |
| 4895 | DE CLARE @ver sionId VA RCHAR(8) -- Inter face | |
| 4896 | DE CLARE @int erfaceFaci lityId VA RCHAR(20) -- Vbecs GlobalConf ig | |
| 4897 | DE CLARE @pro cessingId CHAR(1) -- I nterface | |
| 4898 | DE CLARE @vbe csFacility Id VA RCHAR(20) -- Inter face | |
| 4899 | ||
| 4900 | DE CLARE @com ponentSepa rator CHAR(1) | |
| 4901 | DE CLARE @mes sageContro lId VA RCHAR(50) | |
| 4902 | DE CLARE @mes sageType VARCHAR(13 ) | |
| 4903 | DE CLARE @ord erControlC ode CH AR(2) | |
| 4904 | DE CLARE @nam espaceId VARCHAR(5) | |
| 4905 | DE CLARE @ord erStatus CH AR(2) | |
| 4906 | DE CLARE @ord erComments VARCHAR(25 5) | |
| 4907 | ||
| 4908 | DE CLARE @pat ientLastNa me VA RCHAR(30) | |
| 4909 | DE CLARE @pat ientFirstN ame VA RCHAR(30) | |
| 4910 | DE CLARE @pat ientMiddle Name VA RCHAR(30) | |
| 4911 | DE CLARE @pat ientSexCod e CHAR(1) | |
| 4912 | DE CLARE @pat ientDob VA RCHAR(100) | |
| 4913 | DE CLARE @vis taPatientI d VA RCHAR(50) | |
| 4914 | ||
| 4915 | DE CLARE @cpr sOrderNumb er VA RCHAR(20) | |
| 4916 | DE CLARE @vbe csOrderNum ber VA RCHAR(25) | |
| 4917 | DE CLARE @ord erGroupNum ber VA RCHAR(30) | |
| 4918 | DE CLARE @ord erStatusCo de CH AR(1) | |
| 4919 | DE CLARE @ord erSpecialI nstruction s VA RCHAR(510) | |
| 4920 | DE CLARE @lab OrderNumbe r VARCHAR(20 ) | |
| 4921 | DE CLARE @lab TestId CH AR(15) | |
| 4922 | DE CLARE @cpr sOrderable ItemID CHAR(2) | |
| 4923 | DE CLARE @ord erableTest Name VA RCHAR(35) | |
| 4924 | ||
| 4925 | -- Get inter face data for messag e | |
| 4926 | SE LECT | |
| 4927 | @fie ldSeparato r = I. FieldSepar ator, | |
| 4928 | @enc odingChara cters = I.Encoding Characters , | |
| 4929 | @int erfaceAppl icationId = I. InterfaceA pplication Id, | |
| 4930 | @vbe csApplicat ionId = I.VbecsApp licationId , | |
| 4931 | @ver sionId = I.VersionI d, | |
| 4932 | @int erfaceFaci lityId = VGC.Parame terValue, | |
| 4933 | @pro cessingId = I.Processi ngId, | |
| 4934 | @vbe csFacility Id = I.VbecsFac ilityId | |
| 4935 | FR OM | |
| 4936 | dbo. Interface I | |
| 4937 | LEFT JOIN dbo. VbecsGloba lConfig VG C on VGC.A pplication Name = I.A pplication Name | |
| 4938 | AND VG C.Paramete rName = I. ConfigPref ix + '_Fac ilityID' | |
| 4939 | WH ERE | |
| 4940 | I.In terfaceId = 1 | |
| 4941 | ||
| 4942 | -- Get patie nt order d ata for me ssage | |
| 4943 | SE LECT | |
| 4944 | @pat ientLastNa me = P.PatientL astName, | |
| 4945 | @pat ientFirstN ame = P.PatientF irstName, | |
| 4946 | @pat ientMiddle Name = ISNULL(P.P atientMidd leName, '' ), | |
| 4947 | @pat ientSexCod e = ISNULL(P .PatientSe xCode, '') , | |
| 4948 | @pat ientDob = ISNULL(SUB STRING(dbo .fnDateTim eConversio nToHL7Date Time(P.Pat ientDob),0 , 9), ''), | |
| 4949 | @vis taPatientI d = CAST(P.Vis taPatientI d AS VARCH AR(50)), | |
| 4950 | @cpr sOrderNumb er = OT.CprsOrd erNumber, | |
| 4951 | @vbe csOrderNum ber = CAST(OT.Vb ecsOrderNu mber AS VA RCHAR(25)) , | |
| 4952 | @ord erGroupNum ber = PO.OrderGr oupNumber, | |
| 4953 | @ord erStatusCo de = OT.OrderSt atusCode, | |
| 4954 | @ord erableTest Name = ORT.Ordera bleTestNam e, | |
| 4955 | @lab OrderNumbe r = OT.LabOr derNumber, | |
| 4956 | @lab TestId = OT.LabTest Id, | |
| 4957 | @cpr sOrderable ItemID = ORT.CprsOr derableIte mID | |
| 4958 | FR OM | |
| 4959 | dbo. Patient P | |
| 4960 | JOIN dbo.Patie ntTreatmen t PT ON P .PatientGu id = PT.Patient Guid | |
| 4961 | JOIN dbo.Patie ntOrder PO ON P T.PatientT reatmentGu id = PO.Patient TreatmentG uid | |
| 4962 | JOIN dbo.Order edTest OT ON P O.PatientO rderGuid = OT.Patie ntOrderGui d | |
| 4963 | JOIN dbo.Order ableTest O RT ON O T.Orderabl eTestId = ORT.Ordera bleTestId | |
| 4964 | WH ERE | |
| 4965 | OT.O rderedTest Guid = (SELECT Or deredTestG uid FROM I nserted) | |
| 4966 | AND OT.OrderSt atusCode = 'X' | |
| 4967 | AND OT.TaskSta tusCode = 'E' | |
| 4968 | ||
| 4969 | -- Set the v ariables v alues | |
| 4970 | SE T @carriag eReturn = CHAR(13) | |
| 4971 | SE T @compone ntSeparato r = SUBSTRIN G(@encodin gCharacter s, 1, 1) | |
| 4972 | SE T @current UtcTime = GETUTCDA TE() | |
| 4973 | -- Only used to calcul ate the ti me zone di fferential | |
| 4974 | SE T @current Time = GETDATE( ) | |
| 4975 | ||
| 4976 | SE T @hl7Curr entTime = REPLACE( REPLACE(RE PLACE(CONV ERT(VARCHA R(36), @cu rrentUtcTi me, 20), ' ',''),'-' ,''),':',' ') -- yyyyMMd dhhss | |
| 4977 | + '-0' + CONVERT( V ARCHAR(10) , ABS(DATE PART(HOUR, @currentTi me) - DATE PART(HOUR, @currentUt cTime))) + '00' -- Get t ime zone i n -0500 fo rmat, wher e 5 is hrs from UTC | |
| 4978 | ||
| 4979 | SE T @message ControlId = 'VBECS' + REPLACE( REPLACE(RE PLACE(REPL ACE(CONVER T( VARCHAR (36), @cur rentUtcTim e, 21 ),'- ',''),' ', ''),':','' ),'.','') -- yyyyMMd dhhssccc ( c = millis econds) | |
| 4980 | ||
| 4981 | SE T @message Type = 'OMG^O1 9' | |
| 4982 | SE T @namespa ceId = 'VBEC' | |
| 4983 | SE T @orderSt atus = 'ZE' | |
| 4984 | SE T @orderCo mments = 'Expired by backgr ound job' | |
| 4985 | ||
| 4986 | -- ********* ********** ********** ********** ********** ********** ********** ********** ********** ********** ********** ********** ********** ********** ********** ********** ********** ********** ********** ********** ********** ********** ********** ********** ********** ********** ********** | |
| 4987 | -- MSH SEGM ENT | |
| 4988 | SE T @msh = | |
| 4989 | 'MSH ' | |
| 4990 | + @f ieldSepara tor | |
| 4991 | + @e ncodingCha racters | |
| 4992 | + @f ieldSepara tor | |
| 4993 | + @v becsApplic ationId | |
| 4994 | + @f ieldSepara tor | |
| 4995 | + @v becsFacili tyId | |
| 4996 | + @f ieldSepara tor | |
| 4997 | + @i nterfaceAp plicationI d | |
| 4998 | + @f ieldSepara tor | |
| 4999 | + @i nterfaceFa cilityId | |
| 5000 | + @f ieldSepara tor | |
| 5001 | + @h l7CurrentT ime | |
| 5002 | + @f ieldSepara tor | |
| 5003 | + @f ieldSepara tor | |
| 5004 | + @m essageType | |
| 5005 | + @f ieldSepara tor | |
| 5006 | + @m essageCont rolId | |
| 5007 | + @f ieldSepara tor | |
| 5008 | + @p rocessingI d | |
| 5009 | + @f ieldSepara tor | |
| 5010 | + @v ersionId | |
| 5011 | + @c arriageRet urn | |
| 5012 | ||
| 5013 | -- ********* ********** ********** ********** ********** ********** ********** ********** ********** ********** ********** ********** ********** ********** ********** ********** ********** ********** ********** ********** ********** ********** ********** ********** ********** ********** ********** | |
| 5014 | -- PID SEGM ENT | |
| 5015 | SE T @pid = | |
| 5016 | 'PID ' | |
| 5017 | + @f ieldSepara tor | |
| 5018 | + @f ieldSepara tor | |
| 5019 | + @f ieldSepara tor | |
| 5020 | + @v istaPatien tId | |
| 5021 | + @f ieldSepara tor | |
| 5022 | + @f ieldSepara tor | |
| 5023 | + @p atientLast Name | |
| 5024 | + @c omponentSe parator | |
| 5025 | + @p atientFirs tName | |
| 5026 | + @c omponentSe parator | |
| 5027 | + @p atientMidd leName | |
| 5028 | + @f ieldSepara tor | |
| 5029 | + @f ieldSepara tor | |
| 5030 | + @p atientDob | |
| 5031 | + @f ieldSepara tor | |
| 5032 | + @p atientSexC ode | |
| 5033 | + @c arriageRet urn | |
| 5034 | ||
| 5035 | -- ********* ********** ********** ********** ********** ********** ********** ********** ********** ********** ********** ********** ********** ********** ********** ********** ********** ********** ********** ********** ********** ********** ********** ********** ********** ********** ********** | |
| 5036 | -- ORC SEGM ENT | |
| 5037 | SE T @orc = | |
| 5038 | 'ORC ' | |
| 5039 | + @f ieldSepara tor | |
| 5040 | + 'S C' -- Always se nd a Statu s Change O rder Contr ol code | |
| 5041 | + @f ieldSepara tor | |
| 5042 | + @c prsOrderNu mber | |
| 5043 | + @c omponentSe parator | |
| 5044 | + 'O R' | |
| 5045 | + @f ieldSepara tor | |
| 5046 | + @v becsOrderN umber | |
| 5047 | + @c omponentSe parator | |
| 5048 | + @n amespaceId | |
| 5049 | + @f ieldSepara tor | |
| 5050 | + @o rderGroupN umber | |
| 5051 | + @f ieldSepara tor | |
| 5052 | + @o rderStatus | |
| 5053 | + @f ieldSepara tor | |
| 5054 | + @f ieldSepara tor | |
| 5055 | + @f ieldSepara tor | |
| 5056 | + @f ieldSepara tor | |
| 5057 | + @f ieldSepara tor | |
| 5058 | + @f ieldSepara tor | |
| 5059 | + @f ieldSepara tor | |
| 5060 | + @f ieldSepara tor | |
| 5061 | + @f ieldSepara tor | |
| 5062 | + @f ieldSepara tor | |
| 5063 | + @f ieldSepara tor | |
| 5064 | + @c omponentSe parator | |
| 5065 | + @o rderCommen ts | |
| 5066 | + @c arriageRet urn | |
| 5067 | ||
| 5068 | -- ********* ********** ********** ********** ********** ********** ********** ********** ********** ********** ********** ********** ********** ********** ********** ********** ********** ********** ********** ********** ********** ********** ********** ********** ********** ********** ********** | |
| 5069 | -- OBR SEGM ENT | |
| 5070 | SE T @obr = | |
| 5071 | 'OBR ' | |
| 5072 | + @f ieldSepara tor | |
| 5073 | + '1 ' -- Set ID | |
| 5074 | + @f ieldSepara tor | |
| 5075 | + @c prsOrderNu mber | |
| 5076 | + @c omponentSe parator | |
| 5077 | + 'O R' | |
| 5078 | + @f ieldSepara tor | |
| 5079 | + @v becsOrderN umber | |
| 5080 | + @c omponentSe parator | |
| 5081 | + @n amespaceId | |
| 5082 | + @f ieldSepara tor | |
| 5083 | + @c prsOrderab leItemID | |
| 5084 | + @c omponentSe parator | |
| 5085 | + @o rderableTe stName | |
| 5086 | + @c omponentSe parator | |
| 5087 | + '9 9VBC' | |
| 5088 | + @f ieldSepara tor | |
| 5089 | + @f ieldSepara tor | |
| 5090 | + @f ieldSepara tor | |
| 5091 | + @f ieldSepara tor | |
| 5092 | + @f ieldSepara tor | |
| 5093 | + @f ieldSepara tor | |
| 5094 | + @f ieldSepara tor | |
| 5095 | + @f ieldSepara tor | |
| 5096 | + @f ieldSepara tor | |
| 5097 | + @l abOrderNum ber | |
| 5098 | + '; ;;' | |
| 5099 | + @l abTestId | |
| 5100 | + @c arriageRet urn | |
| 5101 | ||
| 5102 | -- ********* ********** ********** ********** ********** ********** ********** ********** ********** ********** ********** ********** ********** ********** ********** ********** ********** ********** ********** ********** ********** ********** ********** ********** ********** ********** ********** | |
| 5103 | -- Create HL 7 message | |
| 5104 | SE T @message Stream = @ msh + @pid + @orc + @obr | |
| 5105 | ||
| 5106 | -- Insert HL 7 into Mes sageLog ta ble for tr ansmission to CPRS ( via Client Monitor S ervice) | |
| 5107 | EX EC spHL7In sertMessag eLog | |
| 5108 | 1, | |
| 5109 | @mes sageContro lId, | |
| 5110 | @mes sageType, | |
| 5111 | @cur rentUtcTim e, | |
| 5112 | @vbe csApplicat ionId, | |
| 5113 | @int erfaceAppl icationId, | |
| 5114 | @mes sageStream , | |
| 5115 | 1, | |
| 5116 | NULL , | |
| 5117 | 'Sys tem', | |
| 5118 | -1, | |
| 5119 | @cur rentUtcTim e | |
| 5120 | ||
| 5121 | END | |
| 5122 | ||
| 5123 | ||
| 5124 | ||
| 5125 | GO | |
| 5126 | ||
| 5127 | if exists (select * from dbo.s ysobjects where id = object_id (N'[dbo].[ trSetOrder Acceptance DateForOrd eredTest]' ) and OBJE CTPROPERTY (id, N'IsT rigger') = 1) | |
| 5128 | drop trigg er [dbo].[ trSetOrder Acceptance DateForOrd eredTest] | |
| 5129 | GO | |
| 5130 | ||
| 5131 | SET ANSI_N ULLS ON | |
| 5132 | GO | |
| 5133 | ||
| 5134 | SET QUOTED _IDENTIFIE R ON | |
| 5135 | GO | |
| 5136 | ||
| 5137 | /********* ********** ********** ********** ********** ********** ********** ********** ********** ********** ********** ********** ********** ********** ********** ********** ********** ****** | |
| 5138 | ** De sc: Sets the Order Acceptance Date | |
| 5139 | ** | |
| 5140 | ** Au thor: Krzy sztof Dobr anowski | |
| 5141 | ** | |
| 5142 | ** Da te: 11/9 /2009 | |
| 5143 | ** | |
| 5144 | ********** ********** ********** ********** ********** ********** ********** ********** ********** ********** ********** ********** ********** ********** ********** ********** ********** ***** | |
| 5145 | ** Mo dified: | |
| 5146 | ** Da te Name De scription | |
| 5147 | ** -- ---------- ------- -------- ---------- ----- ---- ---------- ---------- ---------- ---------- ---------- ---------- ---------- ---------- ---------- ---------- ---------- ---------- ---------- ---------- ---------- ---------- ---- | |
| 5148 | ** 08 /15/11 M. Smi th ** Reviewe d for comp liance wit h database standards and recom mendations ** | |
| 5149 | ** 02 /14/17 K. Adu -Poku Added dbo prefix to table name (Defect 3 40457). | |
| 5150 | ** 02 /14/17 K. Adu -Poku ** Reviewe d for comp liance wit h database standards and recom mendations ** | |
| 5151 | ********** ********** ********** ********** ********** ********** ********** ********** ********** ********** ********** ********** ********** ********** ********** ********** ********** *****/ | |
| 5152 | CREATE TRI GGER [dbo] .[trSetOrd erAcceptan ceDateForO rderedTest ] | |
| 5153 | ON [dbo].[ OrderedTes t] | |
| 5154 | FOR UPDATE | |
| 5155 | AS | |
| 5156 | DE CLARE @sta tusbeforeu pdate CHAR | |
| 5157 | DE CLARE @sta tusafterup date CHAR | |
| 5158 | DE CLARE @ord eredtestgu id UNIQUEI DENTIFIER | |
| 5159 | ||
| 5160 | SE LECT @stat usbeforeup date = Ord erStatusCo de FROM DE LETED | |
| 5161 | SE LECT @stat usafterupd ate = Orde rStatusCod e FROM INS ERTED | |
| 5162 | ||
| 5163 | IF (@statu sbeforeupd ate = 'P' AND @statu safterupda te = 'A') | |
| 5164 | BEGIN | |
| 5165 | SE LECT @orde redtestgui d = Ordere dTestGuid FROM INSER TED | |
| 5166 | ||
| 5167 | UP DATE | |
| 5168 | dbo. OrderedTes t | |
| 5169 | SE T | |
| 5170 | Orde rAcceptanc eDate = GE TUTCDATE() | |
| 5171 | WH ERE | |
| 5172 | Orde redTestGui d = @order edtestguid | |
| 5173 | ||
| 5174 | END | |
| 5175 | ||
| 5176 | ||
| 5177 | GO | |
| 5178 | ||
| 5179 | ||
| 5180 | ||
| 5181 | if exists (select * from dbo.s ysobjects where id = object_id (N'[dbo].[ spGetAudit Division]' ) and OBJE CTPROPERTY (id, N'IsP rocedure') = 1) | |
| 5182 | drop proce dure [dbo] .[spGetAud itDivision ] | |
| 5183 | GO | |
| 5184 | ||
| 5185 | SET ANSI_N ULLS ON | |
| 5186 | GO | |
| 5187 | ||
| 5188 | SET QUOTED _IDENTIFIE R ON | |
| 5189 | GO | |
| 5190 | ||
| 5191 | /********* ********** ********** ********** ********** ********** ********** ********** ********** ********** ********** ********** ********** ********** ********** ********** ********** ****** | |
| 5192 | ** De sc: Get Division a udit infor mation | |
| 5193 | ** | |
| 5194 | ** Au thor: Krzy sztof Dobr anowski | |
| 5195 | ** | |
| 5196 | ** Da te: 02/1 3/2004 | |
| 5197 | ** | |
| 5198 | ********** ********** ********** ********** ********** ********** ********** ********** ********** ********** ********** ********** ********** ********** ********** ********** ********** ***** | |
| 5199 | ** Mo dified: | |
| 5200 | ** Da te Name De scription | |
| 5201 | ** -- ---------- -------- -------- ---------- ----- ---- ---------- ---------- ---------- ---------- ---------- ---------- ---------- ---------- ---------- ---------- ---------- ---------- ---------- ---------- ---------- ---------- ---- | |
| 5202 | ** 04 /27/2004 M. Jab lonski Ca ll fnTimeZ oneConvers ionDateTim e function on all da tes | |
| 5203 | ** 07 /13/2005 N.Pate rson ** Reviewe d for comp liance wit h database standards and recom mendations ** | |
| 5204 | Removed Na me/input/o utput from comment h eader, add ed SET NOC OUNT, form atted SQL | |
| 5205 | Changed da te filter from => <= to using BETWEEN, p laced inpu t paramert ers in bra ckets, err or check i nput dates | |
| 5206 | ** 08 /18/2005 N.Pate rson Implemente d differen ces betwee n Review_S tart and D EV before porting ch anges to D EV | |
| 5207 | ** 10 /24/2007 K. Dob ranowski C hanged all JOINS to LEFT JOINS (CR 2312) | |
| 5208 | ** 10 /25/2007 K. Dob ranowski A dded Print erName to SELECT sta tement (CR 2320) | |
| 5209 | ** 10 /02/2009 K.Dobr anowski Ad ded Reacti vityPhaseC ode to SEL ECT statem ent (CR 27 17) | |
| 5210 | ** 08 /18/2010 K. Adu -Poku ** Reviewe d for comp liance wit h database standards and recom mendations ** | |
| 5211 | ** 09 /14/2016 Pablo Sanchez Removed La belPrinter ComPortNum ber, Label PrinterIPA ddress, La belPrinter TcpPortNum ber column s and adde d LabelPri nterEndPoi ntId colum n (Defect 340457). | |
| 5212 | ** 10 /02/2016 K. Dob ranowski Added seco nd SELECT to get the Label Pri nter IP an d Port (De fect 34045 7). | |
| 5213 | ** 02 /14/2017 K. Adu -Poku ** Reviewe d for comp liance wit h database standards and recom mendations ** | |
| 5214 | ********** ********** ********** ********** ********** ********** ********** ********** ********** ********** ********** ********** ********** ********** ********** ********** ********** *****/ | |
| 5215 | ||
| 5216 | CREATE PRO CEDURE [db o].[spGetA uditDivisi on] | |
| 5217 | ( | |
| 5218 | @s tartdate DATETI ME, | |
| 5219 | @e nddate DATETI ME, | |
| 5220 | @d ivisioncod e CHAR(5 ) | |
| 5221 | ) | |
| 5222 | AS | |
| 5223 | ||
| 5224 | /* @E RROR VARIA BLE USED BECAUSE SE T NOCOUNT OFF RESETS THE @@ERR OR TO ZERO */ | |
| 5225 | DECLARE @E RROR INT | |
| 5226 | ||
| 5227 | SET NOCOUN T ON | |
| 5228 | --Since al l the date s are save d in UTC, start and end data h as to be a djusted fi rst for co rrect comp arison | |
| 5229 | SET @start date = dbo .fnTimeZon eConversio nDateTime( @divisionc ode, 1, @s tartdate) | |
| 5230 | ||
| 5231 | SET @ERROR = @@ERROR | |
| 5232 | IF @ERROR != 0 GOTO SPR OC_EXIT | |
| 5233 | ||
| 5234 | SET @endda te = dbo.f nTimeZoneC onversionD ateTime(@d ivisioncod e, 1, @end date) | |
| 5235 | ||
| 5236 | SET @ERROR = @@ERROR | |
| 5237 | IF @ERROR != 0 GOTO SPR OC_EXIT | |
| 5238 | ||
| 5239 | SE LECT | |
| 5240 | ||
| 5241 | VVD. DivisionCo de, | |
| 5242 | VVD. DivisionNa me, | |
| 5243 | VVD. ServiceTyp eIndicator , | |
| 5244 | dbo. Facility.F acilityNam e, | |
| 5245 | VVD. RecordStat usCode, | |
| 5246 | VVD. LabelPrint erUseIndic ator, | |
| 5247 | VVD. AccessionA reaId, | |
| 5248 | VVD. LockInacti vityTimeou tMin, | |
| 5249 | dbo. TimeZone.T imeZoneNam e, | |
| 5250 | dbo. DaylightSa vingsType. DaylightSa vingsTypeT ext, | |
| 5251 | VVD. Electronic Crossmatch Indicator, | |
| 5252 | VVD. IccbbaRegi strationNu mber, | |
| 5253 | VVD. MaximumSpe cimenExpir ationDays, | |
| 5254 | VVD. MedicalDir ectorName, | |
| 5255 | VVD. LoginMessa geText, | |
| 5256 | VVD. InvoiceTem plateText, | |
| 5257 | dbo. AntibodySc reenDispla y.Antibody ScreenDisp layText, | |
| 5258 | VVD. MirrorId, | |
| 5259 | dbo. fnTimeZone Conversion DateTime(@ divisionco de, 0, VVD .LastUpdat eDate) AS MirrorDate , | |
| 5260 | VVD. LastUpdate User, | |
| 5261 | VVD. DaylightSa vingsStart Date, | |
| 5262 | VVD. DaylightSa vingsEndDa te, | |
| 5263 | VVD. PrinterNam e, | |
| 5264 | VVD. Reactivity PhaseCode, | |
| 5265 | VVD. LabelPrint erEndPoint Id | |
| 5266 | ||
| 5267 | FR OM | |
| 5268 | ||
| 5269 | dbo. SynMirror_ V_VamcDivi sion VVD | |
| 5270 | ||
| 5271 | LE FT JOIN db o.Facility ON dbo.Fa cility.Fac ilityGuid = VVD.Faci lityGuid | |
| 5272 | ||
| 5273 | LE FT JOIN db o.TimeZone ON dbo.Ti meZone.Tim eZoneId = VVD.TimeZo neId | |
| 5274 | LE FT JOIN db o.Antibody ScreenDisp lay ON dbo .AntibodyS creenDispl ay.Antibod yScreenDis playCode = VVD.Antib odyScreenD isplayCode | |
| 5275 | LE FT JOIN db o.Daylight SavingsTyp e ON dbo.D aylightSav ingsType.D aylightSav ingsTypeId = VVD.Day lightSavin gsTypeId | |
| 5276 | ||
| 5277 | WH ERE | |
| 5278 | ||
| 5279 | VVD. MirrorDate BETWEEN @ startdate AND @end date | |
| 5280 | ||
| 5281 | AN D | |
| 5282 | ||
| 5283 | VVD. DivisionCo de = @divi sioncode | |
| 5284 | ||
| 5285 | OR DER BY | |
| 5286 | ||
| 5287 | VVD. DivisionCo de, | |
| 5288 | VVD. Source, | |
| 5289 | VVD. MirrorId D ESC | |
| 5290 | ||
| 5291 | -- getting la bel printe r IP and P ort | |
| 5292 | SE LECT | |
| 5293 | ||
| 5294 | VD.D ivisionCod e, | |
| 5295 | VD.D ivisionNam e, | |
| 5296 | VEP. EndPointPo rt, | |
| 5297 | VEP. EndPointAd dress, | |
| 5298 | VEP. MirrorId, | |
| 5299 | dbo. fnTimeZone Conversion DateTime(@ divisionco de, 0, VEP .LastUpdat eDate) AS MirrorDate , | |
| 5300 | VEP. LastUpdate User | |
| 5301 | ||
| 5302 | FR OM | |
| 5303 | ||
| 5304 | dbo. SynMirror_ V_VbecsEnd Point VEP | |
| 5305 | ||
| 5306 | LE FT JOIN db o.VamcDivi sion VD ON VD.LabelP rinterEndP ointId = V EP.VbecsEn dPointId | |
| 5307 | ||
| 5308 | WH ERE | |
| 5309 | ||
| 5310 | VEP. MirrorDate BETWEEN @ startdate AND @end date | |
| 5311 | ||
| 5312 | AN D | |
| 5313 | ||
| 5314 | VD.D ivisionCod e = @divis ioncode | |
| 5315 | ||
| 5316 | OR DER BY | |
| 5317 | ||
| 5318 | VD.D ivisionCod e, | |
| 5319 | VEP. Source, | |
| 5320 | VEP. MirrorId D ESC | |
| 5321 | ||
| 5322 | SET @ERROR = @@ERROR | |
| 5323 | ||
| 5324 | ||
| 5325 | SPROC_EXIT : | |
| 5326 | ||
| 5327 | SE T NOCOUNT OFF | |
| 5328 | RE TURN(@ERRO R) | |
| 5329 | ||
| 5330 | ||
| 5331 | ||
| 5332 | GO | |
| 5333 | ||
| 5334 | ||
| 5335 | if exists (select * from dbo.s ysobjects where id = object_id (N'[dbo].[ spVistaGet XmlBloodBa nkData]') and OBJECT PROPERTY(i d, N'IsPro cedure') = 1) | |
| 5336 | drop proce dure [dbo] .[spVistaG etXmlBlood BankData] | |
| 5337 | GO | |
| 5338 | ||
| 5339 | ||
| 5340 | SET ANSI_N ULLS ON | |
| 5341 | GO | |
| 5342 | ||
| 5343 | SET QUOTED _IDENTIFIE R ON | |
| 5344 | GO | |
| 5345 | ||
| 5346 | ||
| 5347 | /********* ********** ********** ********** ********** ********** ********** ********** ********** ********** ********** ********** ********** ********** ********** ********** ********** ****** | |
| 5348 | ** De sc: Retr ieves bloo d bank dat a XML to r eturn to V istA | |
| 5349 | ** | |
| 5350 | ** Au thor: Bria n Tomlin / Stas Antr opov | |
| 5351 | ** | |
| 5352 | ** Da te: 01/2 5/2005 | |
| 5353 | ** | |
| 5354 | ********** ********** ********** ********** ********** ********** ********** ********** ********** ********** ********** ********** ********** ********** ********** ********** ********** ***** | |
| 5355 | ** Mo dified: | |
| 5356 | ** Da te Name Descriptio n | |
| 5357 | ** -- ---------- - -------- - ---- ---------- --- | |
| 5358 | ** 07 /19/05 C. Tay lor Added call to fnOrde redUnitCro ssmatchRes ultCode to ensure la test cross match resu lt is used | |
| 5359 | ** (there may be repeat XMs) | |
| 5360 | ** 06 /29/05 N. Pat erson ** Reviewe d for comp liance wit h database standards and recom mendations ** | |
| 5361 | ** Header add ed, Added NOCOUNT, S pecified t able owner s, Removed comments, UPPERCASE D SQL | |
| 5362 | ** 08 /21/05 S. Ant ropov ** Reviewe d for comp liance wit h database standards and recom mendations ** | |
| 5363 | ** Performed secondary review dur ing the co de promoti on - merge d changes | |
| 5364 | ** 08 /24/05 C. Tay lor Fixed typo introduce d during c ompliance: INNER JOI N | |
| 5365 | ** dbo.Patien tTransfusi onRequirem ent.Patien tTransReq | |
| 5366 | ** 09 /09/05 D. Ask ew Changed JO IN on Pati ent to sel ect either the Final MergeToPat ient if th e patient has one or more | |
| 5367 | ** merges (ch oosing the final mer ge record) or simply the patie nt guid if there are none | |
| 5368 | ** 10 /27/05 C. Jen sen Added code to not ge t ABO/Rh i f from Db conversion . | |
| 5369 | ** 01 /23/06 M. Smi th ** Reviewe d for comp liance wit h database standards and recom mendations ** | |
| 5370 | ** 03 /29/07 D. Ask ew Made chang es for DR 2595, see Assigned a nd crossma tched unit s: changed [Unit!10! expDate] t o use | |
| 5371 | ** BloodUnitM edia.UnitE xpirationD ate rather than Pati entSpecime n.Specimen Expiration Date; chan ged | |
| 5372 | ** INNER JOIN on dbo.Pa tientSpeci men to LEF T JOIN; ad ded AND co ndition fo r | |
| 5373 | ** dbo.Patien tSpecimen. SpecimenEx pirationDa te, which will be NU LL for cer tain blood product t ypes | |
| 5374 | ** 07 /13/07 Lohse Adding dat etime conv ersion for CR2253. | |
| 5375 | ** 05 /13/08 M. Smi th Changed @V istaPatien tID to BIG INT dataty pe (CR 243 1) | |
| 5376 | ** 06 /04/08 K. Adu -Poku ** Reviewe d for comp liance wit h database standards and recom mendations ** | |
| 5377 | ** 01 /04/10 M. Smi th Changed to get and c heck UnitS tatusCode from the B loodUnitSt atusCodeCu rrent tabl e. (CR 117 4) | |
| 5378 | ** 01 /25/10 K. Adu -Poku ** Reviewe d for comp liance wit h database standards and recom mendations ** | |
| 5379 | ** 02 /18/10 D. Ask ew Added noBl oodRequire dIndicator to SELECT (CR 2742) . | |
| 5380 | ** 06 /24/10 D. Ask ew Reformatte d SQL; rem oved merge code; add ed product Code to SE LECT (CR 2 806). | |
| 5381 | ** 07 /18/11 K. Dob ranowski Modified J OIN statem ents for P atientTran sfusion re cord (CR 2 901) | |
| 5382 | ** 07 /28/11 D. Ask ew Added AND Msbos.Reco rdStatusCo de <> 'X' to WHERE c lause for MSBOS entr ies. (CR 3 078) | |
| 5383 | ** 10 /14/11 M. Smi th Added AND MsbosCompo nentClass. RecordStat usCode <> 'X' to WHE RE clause for MSBOS entries | |
| 5384 | ** and Msbos .DivisionC ode = @Div isionCode for surger y names. ( CR 3156) | |
| 5385 | ** 11 /14/11 K. Adu -Poku ** Reviewe d for comp liance wit h database standards and recom mendations ** | |
| 5386 | ** 07 /28/16 K. Adu -Poku Added Surg ery!19!nam e to the o rder by li st. (Defec t 334314) | |
| 5387 | ** 07 /28/16 K. Adu -Poku Added stat ement to S ELECT Divi sionCode f rom Associ atedInstit ution. (De fect 21052 0) | |
| 5388 | ** 02 /14/17 K. Adu -Poku ** Reviewe d for comp liance wit h database standards and recom mendations ** | |
| 5389 | ********** ********** ********** ********** ********** ********** ********** ********** ********** ********** ********** ********** ********** ********** ********** ********** ********** *****/ | |
| 5390 | CREATE PRO CEDURE [db o].[spVist aGetXmlBlo odBankData ] | |
| 5391 | ( | |
| 5392 | @v istapatien tid BIGINT, | |
| 5393 | @d ivisioncod e CHAR(5 ) | |
| 5394 | ) | |
| 5395 | AS | |
| 5396 | ||
| 5397 | SET NOCOUN T ON | |
| 5398 | ||
| 5399 | DECLARE @p atientfoun dflag AS B IT; | |
| 5400 | DECLARE @p atientguid AS UNIQUE IDENTIFIER ; | |
| 5401 | DECLARE @a bo AS VarC har(2); | |
| 5402 | DECLARE @r h AS VarCh ar(2); | |
| 5403 | ||
| 5404 | /*** *** Defect 210520: i nclude ass ociated in stitutions (convert parameter from assoc iated divi sion to a regular di vision) ** *****/ | |
| 5405 | IF EXISTS (S ELECT 1 FR OM dbo.Ass ociatedIns titution W HERE Recor dStatusCod e = 'A' AN D Institut ionDivisio nCode = @d ivisioncod e) | |
| 5406 | SELE CT @divisi oncode = A ssociatedI nstitution .DivisionC ode FROM d bo.Associa tedInstitu tion WHERE RecordSta tusCode = 'A' AND In stitutionD ivisionCod e = @divis ioncode | |
| 5407 | ||
| 5408 | ||
| 5409 | SE LECT @pati entfoundfl ag = ISNUL L(( SE LECT TOP 1 1 | |
| 5410 | FR OM dbo. Patient | |
| 5411 | WH ERE Vist aPatientID = @vistap atientid), 0 ); | |
| 5412 | ||
| 5413 | SE LECT @pati entguid = (SELECT TO P 1 Patien tGuid FROM dbo.Patie nt P WHERE P.VistaPa tientID = @vistapati entid); | |
| 5414 | ||
| 5415 | SE LECT @abo = (SELECT ABO FROM d bo.fnGetAB ORhTable(@ patientgui d) WHERE T estDivisio n IS NOT N ULL); | |
| 5416 | ||
| 5417 | SE LECT @rh = (SELECT R h FROM dbo .fnGetABOR hTable(@pa tientguid) WHERE Tes tDivision IS NOT NUL L); | |
| 5418 | ||
| 5419 | ||
| 5420 | -- <BloodBan k> | |
| 5421 | SE LECT 1 AS T ag, | |
| 5422 | NULL AS Par ent, | |
| 5423 | 1 AS [B loodbank!1 !GroupOrde r!hide], | |
| 5424 | NULL AS [C omponent!1 3!GroupOrd er!hide], | |
| 5425 | NULL AS [B loodbank!1 ], | |
| 5426 | NULL AS [P atient!2!d fn], | |
| 5427 | NULL AS [P atient!2!f irstName], | |
| 5428 | NULL AS [P atient!2!l astName], | |
| 5429 | NULL AS [P atient!2!s sn], | |
| 5430 | NULL AS [P atient!2!a bo], | |
| 5431 | NULL AS [P atient!2!r h], | |
| 5432 | NULL AS [T ransfusion Reactions! 3], | |
| 5433 | NULL AS [T ransfusion Reaction!4 !type], | |
| 5434 | NULL AS [T ransfusion Reaction!4 !date], | |
| 5435 | NULL AS [T ransfusion Requiremen ts!5], | |
| 5436 | NULL AS [T ransfusion Requiremen t!6!modifi er], | |
| 5437 | NULL AS [A ntibodies! 7], | |
| 5438 | NULL AS [A ntibody!8! name], | |
| 5439 | NULL AS [U nits!9], | |
| 5440 | NULL AS [U nit!10!sta tus], | |
| 5441 | NULL AS [U nit!10!id] , | |
| 5442 | NULL AS [U nit!10!pro duct], | |
| 5443 | NULL AS [U nit!10!pro ductCode], | |
| 5444 | NULL AS [U nit!10!loc ation], | |
| 5445 | NULL AS [U nit!10!exp Date], | |
| 5446 | NULL AS [S pecimen!11 !expDate], | |
| 5447 | NULL AS [S pecimen!11 !uid], | |
| 5448 | NULL AS [C omponents! 12], | |
| 5449 | NULL AS [C omponent!1 3!name], | |
| 5450 | NULL AS [C omponent!1 3!id], | |
| 5451 | NULL AS [C omponent!1 3!specimen ], | |
| 5452 | NULL AS [L abTests!14 ], | |
| 5453 | NULL AS [L abTest!15! id], | |
| 5454 | NULL AS [L abTest!15! name], | |
| 5455 | NULL AS [M sbosList!1 6], | |
| 5456 | NULL AS [M sbos!17!na me], | |
| 5457 | NULL AS [M sbos!17!th reshold], | |
| 5458 | NULL AS [S urgeries!1 8], | |
| 5459 | NULL AS [S urgery!19! name], | |
| 5460 | NULL AS [S urgery!19! noBloodReq uiredIndic ator] | |
| 5461 | ||
| 5462 | UN ION ALL | |
| 5463 | ||
| 5464 | -- <Patient dfn="" fir stName="" lastName=" " ssn="" a bo="" rh=" "> | |
| 5465 | SE LECT 2 AS T ag, | |
| 5466 | 1 AS Par ent, | |
| 5467 | 2 AS [B loodbank!1 !GroupOrde r!hide], | |
| 5468 | NULL AS [C omponent!1 3!GroupOrd er!hide], | |
| 5469 | NULL AS [B loodbank!1 ], | |
| 5470 | P.Vist aPatientID AS [Pati ent!2!dfn] , | |
| 5471 | P.Pati entFirstNa me AS [P atient!2!f irstName], | |
| 5472 | P.Pati entLastNam e AS [P atient!2!l astName], | |
| 5473 | P.Pati entSSN AS [P atient!2!s sn], | |
| 5474 | @abo AS [Pa tient!2!ab o], | |
| 5475 | @rh AS [Pa tient!2!rh ], | |
| 5476 | NULL AS [T ransfusion Reactions! 3], | |
| 5477 | NULL AS [T ransfusion Reaction!4 !type], | |
| 5478 | NULL AS [T ransfusion Reaction!4 !date], | |
| 5479 | NULL AS [T ransfusion Requiremen ts!5], | |
| 5480 | NULL AS [T ransfusion Requiremen t!6!modifi er], | |
| 5481 | NULL AS [A ntibodies! 7], | |
| 5482 | NULL AS [A ntibody!8! name], | |
| 5483 | NULL AS [U nits!9], | |
| 5484 | NULL AS [U nit!10!sta tus], | |
| 5485 | NULL AS [U nit!10!id] , | |
| 5486 | NULL AS [U nit!10!pro duct], | |
| 5487 | NULL AS [U nit!10!pro ductCode], | |
| 5488 | NULL AS [U nit!10!loc ation], | |
| 5489 | NULL AS [U nit!10!exp Date], | |
| 5490 | NULL AS [S pecimen!11 !expDate], | |
| 5491 | NULL AS [S pecimen!11 !uid], | |
| 5492 | NULL AS [C omponents! 12], | |
| 5493 | NULL AS [C omponent!1 3!name], | |
| 5494 | NULL AS [C omponent!1 3!id], | |
| 5495 | NULL AS [C omponent!1 3!specimen ], | |
| 5496 | NULL AS [L abTests!14 ], | |
| 5497 | NULL AS [L abTest!15! id], | |
| 5498 | NULL AS [L abTest!15! name], | |
| 5499 | NULL AS [M sbosList!1 6], | |
| 5500 | NULL AS [M sbos!17!na me], | |
| 5501 | NULL AS [M sbos!17!th reshold], | |
| 5502 | NULL AS [S urgeries!1 8], | |
| 5503 | NULL AS [S urgery!19! name], | |
| 5504 | NULL AS [S urgery!19! noBloodReq uiredIndic ator] | |
| 5505 | ||
| 5506 | FR OM | |
| 5507 | dbo. Patient P | |
| 5508 | ||
| 5509 | WH ERE | |
| 5510 | P.Vi staPatient ID = @vist apatientid | |
| 5511 | ||
| 5512 | UN ION ALL | |
| 5513 | ||
| 5514 | -- <Transfus ionReactio ns> | |
| 5515 | SE LECT 3 AS T ag, | |
| 5516 | 2 AS Par ent, | |
| 5517 | 2 AS [B loodbank!1 !GroupOrde r!hide], | |
| 5518 | NULL AS [C omponent!1 3!GroupOrd er!hide], | |
| 5519 | NULL AS [B loodbank!1 ], | |
| 5520 | NULL AS [P atient!2!d fn], | |
| 5521 | NULL AS [P atient!2!f irstName], | |
| 5522 | NULL AS [P atient!2!l astName], | |
| 5523 | NULL AS [P atient!2!s sn], | |
| 5524 | NULL AS [P atient!2!a bo], | |
| 5525 | NULL AS [P atient!2!r h], | |
| 5526 | NULL AS [T ransfusion Reactions! 3], | |
| 5527 | NULL AS [T ransfusion Reaction!4 !type], | |
| 5528 | NULL AS [T ransfusion Reaction!4 !date], | |
| 5529 | NULL AS [T ransfusion Requiremen ts!5], | |
| 5530 | NULL AS [T ransfusion Requiremen t!6!modifi er], | |
| 5531 | NULL AS [A ntibodies! 7], | |
| 5532 | NULL AS [A ntibody!8! name], | |
| 5533 | NULL AS [U nits!9], | |
| 5534 | NULL AS [U nit!10!sta tus], | |
| 5535 | NULL AS [U nit!10!id] , | |
| 5536 | NULL AS [U nit!10!pro duct], | |
| 5537 | NULL AS [U nit!10!pro ductCode], | |
| 5538 | NULL AS [U nit!10!loc ation], | |
| 5539 | NULL AS [U nit!10!exp Date], | |
| 5540 | NULL AS [S pecimen!11 !expDate], | |
| 5541 | NULL AS [S pecimen!11 !uid], | |
| 5542 | NULL AS [C omponents! 12], | |
| 5543 | NULL AS [C omponent!1 3!name], | |
| 5544 | NULL AS [C omponent!1 3!id], | |
| 5545 | NULL AS [C omponent!1 3!specimen ], | |
| 5546 | NULL AS [L abTests!14 ], | |
| 5547 | NULL AS [L abTest!15! id], | |
| 5548 | NULL AS [L abTest!15! name], | |
| 5549 | NULL AS [M sbosList!1 6], | |
| 5550 | NULL AS [M sbos!17!na me], | |
| 5551 | NULL AS [M sbos!17!th reshold], | |
| 5552 | NULL AS [S urgeries!1 8], | |
| 5553 | NULL AS [S urgery!19! name], | |
| 5554 | NULL AS [S urgery!19! noBloodReq uiredIndic ator] | |
| 5555 | ||
| 5556 | WH ERE | |
| 5557 | @pat ientfoundf lag = 1 | |
| 5558 | ||
| 5559 | UN ION ALL | |
| 5560 | ||
| 5561 | -- <Transfus ionReactio n type="" date=""> | |
| 5562 | SE LECT DISTI NCT | |
| 5563 | 4 AS Tag , | |
| 5564 | 3 AS Par ent, | |
| 5565 | 2 AS [B loodbank!1 !GroupOrde r!hide], | |
| 5566 | NULL AS [C omponent!1 3!GroupOrd er!hide], | |
| 5567 | NULL AS [B loodbank!1 ], | |
| 5568 | NULL AS [P atient!2!d fn], | |
| 5569 | NULL AS [P atient!2!f irstName], | |
| 5570 | NULL AS [P atient!2!l astName], | |
| 5571 | NULL AS [P atient!2!s sn], | |
| 5572 | NULL AS [P atient!2!a bo], | |
| 5573 | NULL AS [P atient!2!r h], | |
| 5574 | NULL AS [T ransfusion Reactions! 3], | |
| 5575 | TRT.Tr ansfusionR eactionTyp eText AS [Transfusi onReaction !4!type], | |
| 5576 | dbo.fn DateTimeCo nversionTo HL7DateTim e(dbo.fnTi meZoneConv ersionDate Time( @div isioncode, 0, PTR.No tedDateTim e )) AS [T ransfusion Reaction!4 !date], | |
| 5577 | NULL AS [T ransfusion Requiremen ts!5], | |
| 5578 | NULL AS [T ransfusion Requiremen t!6!modifi er], | |
| 5579 | NULL AS [A ntibodiess !7], | |
| 5580 | NULL AS [A ntibody!8! name], | |
| 5581 | NULL AS [U nits!9], | |
| 5582 | NULL AS [U nit!10!sta tus], | |
| 5583 | NULL AS [U nit!10!id] , | |
| 5584 | NULL AS [U nit!10!pro duct], | |
| 5585 | NULL AS [U nit!10!pro ductCode], | |
| 5586 | NULL AS [U nit!10!loc ation], | |
| 5587 | NULL AS [U nit!10!exp Date], | |
| 5588 | NULL AS [S pecimen!11 !expDate], | |
| 5589 | NULL AS [S pecimen!11 !uid], | |
| 5590 | NULL AS [C omponents! 12], | |
| 5591 | NULL AS [C omponent!1 3!name], | |
| 5592 | NULL AS [C omponent!1 3!id], | |
| 5593 | NULL AS [C omponent!1 3!specimen ], | |
| 5594 | NULL AS [L abTests!14 ], | |
| 5595 | NULL AS [L abTest!15! id], | |
| 5596 | NULL AS [L abTest!15! name], | |
| 5597 | NULL AS [M sbosList!1 6], | |
| 5598 | NULL AS [M sbos!17!na me], | |
| 5599 | NULL AS [M sbos!17!th reshold], | |
| 5600 | NULL AS [S urgeries!1 8], | |
| 5601 | NULL AS [S urgery!19! name], | |
| 5602 | NULL AS [S urgery!19! noBloodReq uiredIndic ator] | |
| 5603 | ||
| 5604 | FR OM | |
| 5605 | dbo. PatientTra nsfusionRe action PTR | |
| 5606 | ||
| 5607 | JOIN dbo.Patie nt P | |
| 5608 | ON P.P atientGuid = PTR.Pat ientGuid | |
| 5609 | ||
| 5610 | LEFT JOIN dbo. Transfusio nReactionT ype TRT | |
| 5611 | ON TRT .Transfusi onReaction TypeCode = PTR.Trans fusionReac tionTypeCo de | |
| 5612 | ||
| 5613 | WH ERE | |
| 5614 | P.Vi staPatient ID = @vist apatientid | |
| 5615 | ||
| 5616 | AND PTR.Record StatusCode NOT IN (' X','I','E' ) | |
| 5617 | ||
| 5618 | AND @patientfo undflag = 1 | |
| 5619 | ||
| 5620 | UN ION ALL | |
| 5621 | ||
| 5622 | -- <Transfus ionRequire ments> | |
| 5623 | SE LECT 5 AS T ag, | |
| 5624 | 2 AS Par ent, | |
| 5625 | 2 AS [B loodbank!1 !GroupOrde r!hide], | |
| 5626 | NULL AS [C omponent!1 3!GroupOrd er!hide], | |
| 5627 | NULL AS [B loodbank!1 ], | |
| 5628 | NULL AS [P atient!2!d fn], | |
| 5629 | NULL AS [P atient!2!f irstName], | |
| 5630 | NULL AS [P atient!2!l astName], | |
| 5631 | NULL AS [P atient!2!s sn], | |
| 5632 | NULL AS [P atient!2!a bo], | |
| 5633 | NULL AS [P atient!2!r h], | |
| 5634 | NULL AS [T ransfusion Reactions! 3], | |
| 5635 | NULL AS [T ransfusion Reaction!4 !type], | |
| 5636 | NULL AS [T ransfusion Reaction!4 !date], | |
| 5637 | NULL AS [T ransfusion Requiremen ts!5], | |
| 5638 | NULL AS [T ransfusion Requiremen t!6!modifi er], | |
| 5639 | NULL AS [A ntibodies! 7], | |
| 5640 | NULL AS [A ntibody!8! name], | |
| 5641 | NULL AS [U nits!9], | |
| 5642 | NULL AS [U nit!10!sta tus], | |
| 5643 | NULL AS [U nit!10!id] , | |
| 5644 | NULL AS [U nit!10!pro duct], | |
| 5645 | NULL AS [U nit!10!pro ductCode], | |
| 5646 | NULL AS [U nit!10!loc ation], | |
| 5647 | NULL AS [U nit!10!exp Date], | |
| 5648 | NULL AS [S pecimen!11 !expDate], | |
| 5649 | NULL AS [S pecimen!11 !uid], | |
| 5650 | NULL AS [C omponents! 12], | |
| 5651 | NULL AS [C omponent!1 3!name], | |
| 5652 | NULL AS [C omponent!1 3!id], | |
| 5653 | NULL AS [C omponent!1 3!specimen ], | |
| 5654 | NULL AS [L abTests!14 ], | |
| 5655 | NULL AS [L abTest!15! id], | |
| 5656 | NULL AS [L abTest!15! name], | |
| 5657 | NULL AS [M sbosList!1 6], | |
| 5658 | NULL AS [M sbos!17!na me], | |
| 5659 | NULL AS [M sbos!17!th reshold], | |
| 5660 | NULL AS [S urgeries!1 8], | |
| 5661 | NULL AS [S urgery!19! name], | |
| 5662 | NULL AS [S urgery!19! noBloodReq uiredIndic ator] | |
| 5663 | ||
| 5664 | WH ERE | |
| 5665 | @pat ientfoundf lag = 1 | |
| 5666 | ||
| 5667 | UN ION ALL | |
| 5668 | ||
| 5669 | -- <Transfus ionRequire ment modif ier="" > | |
| 5670 | SE LECT 6 AS Tag, | |
| 5671 | 5 AS Parent, | |
| 5672 | 2 AS [Bloodban k!1!GroupO rder!hide] , | |
| 5673 | NULL AS [Componen t!13!Group Order!hide ], | |
| 5674 | NULL AS [Bloodban k!1], | |
| 5675 | NULL AS [Patient! 2!dfn], | |
| 5676 | NULL AS [Patient! 2!firstNam e], | |
| 5677 | NULL AS [Patient! 2!lastName ], | |
| 5678 | NULL AS [Patient! 2!ssn], | |
| 5679 | NULL AS [Patient! 2!abo], | |
| 5680 | NULL AS [Patient! 2!rh], | |
| 5681 | NULL AS [Transfus ionReactio ns!3], | |
| 5682 | NULL AS [Transfus ionReactio n!4!type], | |
| 5683 | NULL AS [Transfus ionReactio n!4!date], | |
| 5684 | NULL AS [Transfus ionRequire ments!5], | |
| 5685 | dbo.Pa tientTrans fusionRequ irement.Tr ansfusionR equirement Text AS [Transfus ionRequire ment!6!mod ifier], | |
| 5686 | NULL AS [Antibodi es!7], | |
| 5687 | NULL AS [Antibody !8!name], | |
| 5688 | NULL AS [Units!9] , | |
| 5689 | NULL AS [Unit!10! status], | |
| 5690 | NULL AS [Unit!10! id], | |
| 5691 | NULL AS [Unit!10! product], | |
| 5692 | NULL AS [Unit!10! productCod e], | |
| 5693 | NULL AS [Unit!10! location], | |
| 5694 | NULL AS [Unit!10! expDate], | |
| 5695 | NULL AS [Specimen !11!expDat e], | |
| 5696 | NULL AS [Specimen !11!uid], | |
| 5697 | NULL AS [Componen ts!12], | |
| 5698 | NULL AS [Componen t!13!name] , | |
| 5699 | NULL AS [Componen t!13!id], | |
| 5700 | NULL AS [Componen t!13!speci men], | |
| 5701 | NULL AS [LabTests !14], | |
| 5702 | NULL AS [LabTest! 15!id], | |
| 5703 | NULL AS [LabTest! 15!name], | |
| 5704 | NULL AS [MsbosLis t!16], | |
| 5705 | NULL AS [Msbos!17 !name], | |
| 5706 | NULL AS [Msbos!17 !threshold ], | |
| 5707 | NULL AS [Surgerie s!18], | |
| 5708 | NULL AS [Surgery! 19!name], | |
| 5709 | NULL AS [Surgery! 19!noBlood RequiredIn dicator] | |
| 5710 | ||
| 5711 | ||
| 5712 | FR OM | |
| 5713 | dbo. Patient | |
| 5714 | ||
| 5715 | INNE R JOIN dbo .PatientTr ansfusionR equirement | |
| 5716 | ON dbo .Patient.P atientGuid = dbo.Pat ientTransf usionRequi rement.Pat ientGuid | |
| 5717 | ||
| 5718 | WH ERE | |
| 5719 | dbo. Patient.Vi staPatient ID = @vist apatientid | |
| 5720 | ||
| 5721 | AND dbo.Patien tTransfusi onRequirem ent.Patien tGUID = db o.Patient. PatientGUI D | |
| 5722 | ||
| 5723 | AND dbo.Patien tTransfusi onRequirem ent.Record StatusCode IN ('A', 'C', 'H' ) | |
| 5724 | ||
| 5725 | -- T he followi ng line Ad dresses CR 840 | |
| 5726 | AND dbo.Patien tTransfusi onRequirem ent.Transf usionRequi rementCate goryCode I N ('AN', ' CR') | |
| 5727 | ||
| 5728 | AND @patientfo undflag = 1 | |
| 5729 | ||
| 5730 | UN ION ALL | |
| 5731 | ||
| 5732 | -- <Antibodi es> | |
| 5733 | SE LECT 7 AS T ag, | |
| 5734 | 2 AS Par ent, | |
| 5735 | 2 AS [Bl oodbank!1! GroupOrder !hide], | |
| 5736 | NULL AS [Co mponent!13 !GroupOrde r!hide], | |
| 5737 | NULL AS [Bl oodbank!1] , | |
| 5738 | NULL AS [Pa tient!2!df n], | |
| 5739 | NULL AS [Pa tient!2!fi rstName], | |
| 5740 | NULL AS [Pa tient!2!la stName], | |
| 5741 | NULL AS [Pa tient!2!ss n], | |
| 5742 | NULL AS [Pa tient!2!ab o], | |
| 5743 | NULL AS [Pa tient!2!rh ], | |
| 5744 | NULL AS [Tr ansfusionR eactions!3 ], | |
| 5745 | NULL AS [Tr ansfusionR eaction!4! type], | |
| 5746 | NULL AS [Tr ansfusionR eaction!4! date], | |
| 5747 | NULL AS [Tr ansfusionR equirement s!5], | |
| 5748 | NULL AS [Tr ansfusionR equirement !6!modifie r], | |
| 5749 | NULL AS [An tibodies!7 ], | |
| 5750 | NULL AS [An tibody!8!n ame], | |
| 5751 | NULL AS [Un its!9], | |
| 5752 | NULL AS [Un it!10!stat us], | |
| 5753 | NULL AS [Un it!10!id], | |
| 5754 | NULL AS [Un it!10!prod uct], | |
| 5755 | NULL AS [Un it!10!prod uctCode], | |
| 5756 | NULL AS [Un it!10!loca tion], | |
| 5757 | NULL AS [Un it!10!expD ate], | |
| 5758 | NULL AS [Sp ecimen!11! expDate], | |
| 5759 | NULL AS [Sp ecimen!11! uid], | |
| 5760 | NULL AS [Co mponents!1 2], | |
| 5761 | NULL AS [Co mponent!13 !name], | |
| 5762 | NULL AS [Co mponent!13 !id], | |
| 5763 | NULL AS [Co mponent!13 !specimen] , | |
| 5764 | NULL AS [La bTests!14] , | |
| 5765 | NULL AS [La bTest!15!i d], | |
| 5766 | NULL AS [La bTest!15!n ame], | |
| 5767 | NULL AS [Ms bosList!16 ], | |
| 5768 | NULL AS [Ms bos!17!nam e], | |
| 5769 | NULL AS [Ms bos!17!thr eshold], | |
| 5770 | NULL AS [Su rgeries!18 ], | |
| 5771 | NULL AS [Su rgery!19!n ame], | |
| 5772 | NULL AS [Su rgery!19!n oBloodRequ iredIndica tor] | |
| 5773 | ||
| 5774 | WH ERE | |
| 5775 | @pat ientfoundf lag = 1 | |
| 5776 | ||
| 5777 | UN ION ALL | |
| 5778 | ||
| 5779 | -- <Antibody name=""> | |
| 5780 | SE LECT DISTI NCT | |
| 5781 | 8 AS Tag , | |
| 5782 | 7 AS Par ent, | |
| 5783 | 2 AS [Bl oodbank!1! GroupOrder !hide], | |
| 5784 | NULL AS [Co mponent!13 !GroupOrde r!hide], | |
| 5785 | NULL AS [Bl oodbank!1] , | |
| 5786 | NULL AS [Pa tient!2!df n], | |
| 5787 | NULL AS [Pa tient!2!fi rstName], | |
| 5788 | NULL AS [Pa tient!2!la stName], | |
| 5789 | NULL AS [Pa tient!2!ss n], | |
| 5790 | NULL AS [Pa tient!2!ab o], | |
| 5791 | NULL AS [Pa tient!2!rh ], | |
| 5792 | NULL AS [Tr ansfusionR eactions!3 ], | |
| 5793 | NULL AS [Tr ansfusionR eaction!4! type], | |
| 5794 | NULL AS [Tr ansfusionR eaction!4! date], | |
| 5795 | NULL AS [Tr ansfusionR equirement s!5], | |
| 5796 | NULL AS [Tr ansfusionR equirement !6!modifie r], | |
| 5797 | NULL AS [An tibodies!7 ], | |
| 5798 | dbo.An tibodyType .AntibodyT ypeName AS [An tibody!8!n ame], | |
| 5799 | NULL AS [Un its!9], | |
| 5800 | NULL AS [Un it!10!stat us], | |
| 5801 | NULL AS [Un it!10!id], | |
| 5802 | NULL AS [Un it!10!prod uct], | |
| 5803 | NULL AS [Un it!10!prod uctCode], | |
| 5804 | NULL AS [Un it!10!loca tion], | |
| 5805 | NULL AS [Un it!10!expD ate], | |
| 5806 | NULL AS [Sp ecimen!11! expDate], | |
| 5807 | NULL AS [Sp ecimen!11! uid], | |
| 5808 | NULL AS [Co mponents!1 2], | |
| 5809 | NULL AS [Co mponent!13 !name], | |
| 5810 | NULL AS [Co mponent!13 !id], | |
| 5811 | NULL AS [Co mponent!13 !specimen] , | |
| 5812 | NULL AS [La bTests!14] , | |
| 5813 | NULL AS [La bTest!15!i d], | |
| 5814 | NULL AS [La bTest!15!n ame], | |
| 5815 | NULL AS [Ms bosList!16 ], | |
| 5816 | NULL AS [Ms bos!17!nam e], | |
| 5817 | NULL AS [Ms bos!17!thr eshold], | |
| 5818 | NULL AS [Su rgeries!18 ], | |
| 5819 | NULL AS [Su rgery!19!n ame], | |
| 5820 | NULL AS [Su rgery!19!n oBloodRequ iredIndica tor] | |
| 5821 | ||
| 5822 | FR OM | |
| 5823 | dbo. Patient | |
| 5824 | ||
| 5825 | INNE R JOIN dbo .PatientTr ansfusionR equirement | |
| 5826 | ON dbo .PatientTr ansfusionR equirement .PatientGU ID = dbo.P atient.Pat ientGUID | |
| 5827 | ||
| 5828 | INNE R JOIN dbo .AntibodyT ype | |
| 5829 | ON dbo .AntibodyT ype.Antibo dyTypeID = dbo. Patie ntTransfus ionRequire ment.Antib odyTypeID | |
| 5830 | ||
| 5831 | WH ERE | |
| 5832 | dbo. Patient.Vi staPatient ID = @vist apatientid | |
| 5833 | ||
| 5834 | AND @patientfo undflag = 1 | |
| 5835 | ||
| 5836 | AND dbo.Antibo dyType.Ant ibodyTypeI d != 1 | |
| 5837 | ||
| 5838 | AND dbo.Antibo dyType.Ant ibodyTypeI d != 4 | |
| 5839 | ||
| 5840 | AND dbo.Patien tTransfusi onRequirem ent.Record StatusCode IN ('A', 'C', 'H' ) | |
| 5841 | ||
| 5842 | ||
| 5843 | UN ION ALL | |
| 5844 | ||
| 5845 | -- <Units> | |
| 5846 | SE LECT 9 AS T ag, | |
| 5847 | 2 AS Par ent, | |
| 5848 | 2 AS [Bl oodbank!1! GroupOrder !hide], | |
| 5849 | NULL AS [Co mponent!13 !GroupOrde r!hide], | |
| 5850 | NULL AS [Bl oodbank!1] , | |
| 5851 | NULL AS [Pa tient!2!df n], | |
| 5852 | NULL AS [Pa tient!2!fi rstName], | |
| 5853 | NULL AS [Pa tient!2!la stName], | |
| 5854 | NULL AS [Pa tient!2!ss n], | |
| 5855 | NULL AS [Pa tient!2!ab o], | |
| 5856 | NULL AS [Pa tient!2!rh ], | |
| 5857 | NULL AS [Tr ansfusionR eactions!3 ], | |
| 5858 | NULL AS [Tr ansfusionR eaction!4! type], | |
| 5859 | NULL AS [Tr ansfusionR eaction!4! date], | |
| 5860 | NULL AS [Tr ansfusionR equirement s!5], | |
| 5861 | NULL AS [Tr ansfusionR equirement !6!modifie r], | |
| 5862 | NULL AS [An tibodies!7 ], | |
| 5863 | NULL AS [An tibody!8!n ame], | |
| 5864 | NULL AS [Un its!9], | |
| 5865 | NULL AS [Un it!10!stat us], | |
| 5866 | NULL AS [Un it!10!id], | |
| 5867 | NULL AS [Un it!10!prod uct], | |
| 5868 | NULL AS [Un it!10!prod uctCode], | |
| 5869 | NULL AS [Un it!10!loca tion], | |
| 5870 | NULL AS [Un it!10!expD ate], | |
| 5871 | NULL AS [Sp ecimen!11! expDate], | |
| 5872 | NULL AS [Sp ecimen!11! uid], | |
| 5873 | NULL AS [Co mponents!1 2], | |
| 5874 | NULL AS [Co mponent!13 !name], | |
| 5875 | NULL AS [Co mponent!13 !id], | |
| 5876 | NULL AS [Co mponent!13 !specimen] , | |
| 5877 | NULL AS [La bTests!14] , | |
| 5878 | NULL AS [La bTest!15!i d], | |
| 5879 | NULL AS [La bTest!15!n ame], | |
| 5880 | NULL AS [Ms bosList!16 ], | |
| 5881 | NULL AS [Ms bos!17!nam e], | |
| 5882 | NULL AS [Ms bos!17!thr eshold], | |
| 5883 | NULL AS [Su rgeries!18 ], | |
| 5884 | NULL AS [Su rgery!19!n ame], | |
| 5885 | NULL AS [Su rgery!19!n oBloodRequ iredIndica tor] | |
| 5886 | ||
| 5887 | WH ERE | |
| 5888 | @pat ientfoundf lag = 1 | |
| 5889 | ||
| 5890 | UN ION ALL | |
| 5891 | ||
| 5892 | -- Assigned and crossm atched uni ts | |
| 5893 | -- <Unit sta tus="" id= "" product ="" locati on="" expD ate="" /> | |
| 5894 | SE LECT DISTI NCT | |
| 5895 | 10 AS Tag, | |
| 5896 | 9 AS Parent, | |
| 5897 | 2 AS [Bloodb ank!1!Grou pOrder!hid e], | |
| 5898 | NULL AS [Compon ent!13!Gro upOrder!hi de], | |
| 5899 | NULL AS [Bloodb ank!1], | |
| 5900 | NULL AS [Patien t!2!dfn], | |
| 5901 | NULL AS [Patien t!2!firstN ame], | |
| 5902 | NULL AS [Patien t!2!lastNa me], | |
| 5903 | NULL AS [Patien t!2!ssn], | |
| 5904 | NULL AS [Patien t!2!abo], | |
| 5905 | NULL AS [Patien t!2!rh], | |
| 5906 | NULL AS [Transf usionReact ions!3], | |
| 5907 | NULL AS [Transf usionReact ion!4!type ], | |
| 5908 | NULL AS [Transf usionReact ion!4!date ], | |
| 5909 | NULL AS [Transf usionRequi rements!5] , | |
| 5910 | NULL AS [Transf usionRequi rement!6!m odifier], | |
| 5911 | NULL AS [Antibo dies!7], | |
| 5912 | NULL AS [Antibo dy!8!name] , | |
| 5913 | NULL AS [Units! 9], | |
| 5914 | BUSCC. UnitStatus Code AS [Unit!1 0!status], | |
| 5915 | dbo.Bl oodUnit.Ey eReadableU nitId AS [Unit !10!id], | |
| 5916 | dbo.Pr oductType. ProductTyp ePrintName AS [Unit!1 0!product] , | |
| 5917 | -- *** ********** ********** ********** ********** ********** ********** ********** ********** ********** ********** ********** ********** ********** ********** ********** ********** ********** ********** *** | |
| 5918 | CASE d bo.BloodUn it.LabelTy peCode | |
| 5919 | WHEN ' I' THEN | |
| 5920 | dbo.Bloo dUnit.Unit ProductCod e | |
| 5921 | + dbo.Do nationType .DonationT ypeCode CO LLATE SQL_ Latin1_Gen eral_CP1_C S_AS | |
| 5922 | + dbo.Bl oodUnit.Un itDivision Id | |
| 5923 | ELSE | |
| 5924 | dbo.Bloo dUnit.Unit ProductCod e | |
| 5925 | END AS [Unit!1 0!productC ode], | |
| 5926 | -- *** ********** ********** ********** ********** ********** ********** ********** ********** ********** ********** ********** ********** ********** ********** ********** ********** ********** ********** *** | |
| 5927 | dbo.Va mcDivision .DivisionN ame AS [Unit!1 0!location ], | |
| 5928 | dbo.fn DateTimeCo nversionTo HL7DateTim e( | |
| 5929 | dbo.fnTi meZoneConv ersionDate Time( | |
| 5930 | @divisionc ode, 0, Bl oodUnitMed ia.UnitExp irationDat e )) AS [Unit!1 0!expDate] , | |
| 5931 | NULL AS [Specim en!11!expD ate], | |
| 5932 | NULL AS [Specim en!11!uid] , | |
| 5933 | NULL AS [Compon ents!12], | |
| 5934 | NULL AS [Compon ent!13!nam e], | |
| 5935 | NULL AS [Compon ent!13!id] , | |
| 5936 | NULL AS [Compon ent!13!spe cimen], | |
| 5937 | NULL AS [LabTes ts!14], | |
| 5938 | NULL AS [LabTes t!15!id], | |
| 5939 | NULL AS [LabTes t!15!name] , | |
| 5940 | NULL AS [MsbosL ist!16], | |
| 5941 | NULL AS [Msbos! 17!name], | |
| 5942 | NULL AS [Msbos! 17!thresho ld], | |
| 5943 | NULL AS [Surger ies!18], | |
| 5944 | NULL AS [Surger y!19!name] , | |
| 5945 | NULL AS [Surger y!19!noBlo odRequired Indicator] | |
| 5946 | ||
| 5947 | FR OM | |
| 5948 | dbo. BloodUnitS tatusCodeC urrent BUS CC | |
| 5949 | ||
| 5950 | INNE R JOIN dbo .BloodUnit | |
| 5951 | ON BUS CC.BloodUn itGUID = d bo.BloodUn it.BloodUn itGUID | |
| 5952 | ||
| 5953 | LEFT JOIN dbo .PatientTr ansfusion | |
| 5954 | ON dbo .BloodUnit .BloodUnit Guid = dbo .PatientTr ansfusion. BloodUnitG uid AND db o.PatientT ransfusion .RecordSta tusCode = 'A' | |
| 5955 | ||
| 5956 | INNE R JOIN dbo .OrderedUn it | |
| 5957 | ON dbo .BloodUnit .BloodUnit GUID = dbo .OrderedUn it.BloodUn itGUID | |
| 5958 | ||
| 5959 | INNE R JOIN dbo .OrderedCo mponent | |
| 5960 | ON dbo .OrderedUn it.Ordered ComponentG UID = dbo. OrderedCom ponent.Ord eredCompon entGUID | |
| 5961 | ||
| 5962 | LEFT JOIN dbo. PatientSpe cimen | |
| 5963 | ON dbo .OrderedCo mponent.Pa tientSpeci menGuid = dbo.Patien tSpecimen. PatientSpe cimenGuid | |
| 5964 | ||
| 5965 | INNE R JOIN dbo .PatientOr der | |
| 5966 | ON dbo .OrderedCo mponent.Pa tientOrder GUID = dbo .PatientOr der.Patien tOrderGUID | |
| 5967 | ||
| 5968 | INNE R JOIN dbo .PatientTr eatment | |
| 5969 | ON dbo .PatientOr der.Patien tTreatment GUID = dbo .PatientTr eatment.Pa tientTreat mentGUID | |
| 5970 | ||
| 5971 | INNE R JOIN dbo .Patient | |
| 5972 | ON dbo .PatientTr eatment.Pa tientGUID = dbo.Pati ent.Patien tGUID | |
| 5973 | ||
| 5974 | INNE R JOIN dbo .BloodProd uct | |
| 5975 | ON dbo .BloodUnit .BloodProd uctGUID = dbo.BloodP roduct.Blo odProductG UID | |
| 5976 | ||
| 5977 | INNE R JOIN dbo .ProductTy pe | |
| 5978 | ON db o.BloodPro duct.Produ ctTypeCode = dbo.Pro ductType.P roductType Code | |
| 5979 | ||
| 5980 | INNE R JOIN dbo .VamcDivis ion | |
| 5981 | ON db o.BloodUni t.Division Code = dbo .VamcDivis ion.Divisi onCode | |
| 5982 | ||
| 5983 | INNE R JOIN dbo .BloodUnit Media | |
| 5984 | ON dbo .BloodUnit .BloodUnit GUID = dbo .BloodUnit Media.Bloo dUnitGUID | |
| 5985 | ||
| 5986 | INNE R JOIN dbo .DonationT ype | |
| 5987 | ON dbo .BloodUnit .DonationT ypeId = db o.Donation Type.Donat ionTypeId | |
| 5988 | ||
| 5989 | WH ERE | |
| 5990 | ||
| 5991 | dbo. Patient.Vi staPatient ID = @vist apatientid | |
| 5992 | ||
| 5993 | AND BUSCC.Unit StatusCode IN ( 'S', 'C' ) | |
| 5994 | ||
| 5995 | AND @patientfo undflag = 1 | |
| 5996 | ||
| 5997 | AND dbo.Patien tTransfusi on.Transfu sionStartD ateTime IS NULL | |
| 5998 | ||
| 5999 | AND | |
| 6000 | ( | |
| 6001 | dbo.Pa tientSpeci men.Specim enExpirati onDate IS NULL | |
| 6002 | OR dbo .PatientSp ecimen.Spe cimenExpir ationDate IS NOT NUL L AND dbo. PatientSpe cimen.Spec imenExpira tionDate > GETUTCDAT E() | |
| 6003 | ) | |
| 6004 | ||
| 6005 | AND dbo.Ordere dUnit.Rele aseDate IS NULL | |
| 6006 | ||
| 6007 | AND dbo.Ordere dUnit.Sele ctedDate I S NOT NULL | |
| 6008 | ||
| 6009 | AND ((dbo.fnOr deredUnitC rossmatchR esultCode( OrderedUni t.OrderedU nitGuid) I N ('C', 'E ', 'G')) O R (Ordered Unit.Cross matchResul tCode IS N ULL)) | |
| 6010 | ||
| 6011 | UN ION ALL | |
| 6012 | ||
| 6013 | -- Autologou s units | |
| 6014 | -- <Unit sta tus="" id= "" product ="" locati on="" expD ate="" /> | |
| 6015 | SE LECT DISTI NCT | |
| 6016 | 10 AS Tag, | |
| 6017 | 9 AS Parent, | |
| 6018 | 2 AS [Bloodb ank!1!Grou pOrder!hid e], | |
| 6019 | NULL AS [Compon ent!13!Gro upOrder!hi de], | |
| 6020 | NULL AS [Bloodb ank!1], | |
| 6021 | NULL AS [Patien t!2!dfn], | |
| 6022 | NULL AS [Patien t!2!firstN ame], | |
| 6023 | NULL AS [Patien t!2!lastNa me], | |
| 6024 | NULL AS [Patien t!2!ssn], | |
| 6025 | NULL AS [Patien t!2!abo], | |
| 6026 | NULL AS [Patien t!2!rh], | |
| 6027 | NULL AS [Transf usionReact ions!3], | |
| 6028 | NULL AS [Transf usionReact ion!4!type ], | |
| 6029 | NULL AS [Transf usionReact ion!4!date ], | |
| 6030 | NULL AS [Transf usionRequi rements!5] , | |
| 6031 | NULL AS [Transf usionRequi rement!6!m odifier], | |
| 6032 | NULL AS [Antibo dies!7], | |
| 6033 | NULL AS [Antibo dy!8!name] , | |
| 6034 | NULL AS [Units! 9], | |
| 6035 | dbo.Do nationType .Restricti onTypeCode AS [Unit!1 0!status], | |
| 6036 | dbo.Bl oodUnit.Ey eReadableU nitId AS [Unit !10!id], | |
| 6037 | dbo.Pr oductType. ProductTyp ePrintName AS [Unit!1 0!product] , | |
| 6038 | -- *** ********** ********** ********** ********** ********** ********** ********** ********** ********** ********** ********** ********** ********** ********** ********** ********** ********** ********** *** | |
| 6039 | CASE d bo.BloodUn it.LabelTy peCode | |
| 6040 | WHEN ' I' THEN | |
| 6041 | dbo.Bloo dUnit.Unit ProductCod e | |
| 6042 | + dbo.Do nationType .DonationT ypeCode CO LLATE SQL_ Latin1_Gen eral_CP1_C S_AS | |
| 6043 | + dbo.Bl oodUnit.Un itDivision Id | |
| 6044 | ELSE | |
| 6045 | dbo.Bloo dUnit.Unit ProductCod e | |
| 6046 | END AS [Unit!1 0!productC ode], | |
| 6047 | -- *** ********** ********** ********** ********** ********** ********** ********** ********** ********** ********** ********** ********** ********** ********** ********** ********** ********** ********** *** | |
| 6048 | dbo.Va mcDivision .DivisionN ame AS [Unit!1 0!location ], | |
| 6049 | dbo.fn DateTimeCo nversionTo HL7DateTim e( | |
| 6050 | dbo.fnTi meZoneConv ersionDate Time( | |
| 6051 | @divisionc ode, 0, Bl oodUnitMed ia.UnitExp irationDat e )) AS [Unit!1 0!expDate] , | |
| 6052 | NULL AS [Specim en!11!expD ate], | |
| 6053 | NULL AS [Specim en!11!uid] , | |
| 6054 | NULL AS [Compon ents!12], | |
| 6055 | NULL AS [Compon ent!13!nam e], | |
| 6056 | NULL AS [Compon ent!13!id] , | |
| 6057 | NULL AS [Compon ent!13!spe cimen], | |
| 6058 | NULL AS [LabTes ts!14], | |
| 6059 | NULL AS [LabTes t!15!id], | |
| 6060 | NULL AS [LabTes t!15!name] , | |
| 6061 | NULL AS [MsbosL ist!16], | |
| 6062 | NULL AS [Msbos! 17!name], | |
| 6063 | NULL AS [Msbos! 17!thresho ld], | |
| 6064 | NULL AS [Surger ies!18], | |
| 6065 | NULL AS [Surger y!19!name] , | |
| 6066 | NULL AS [Surger y!19!noBlo odRequired Indicator] | |
| 6067 | ||
| 6068 | FR OM | |
| 6069 | dbo. DonationTy pe | |
| 6070 | ||
| 6071 | INNE R JOIN dbo .BloodUnit | |
| 6072 | ON dbo .DonationT ype.Donati onTypeId = dbo.Blood Unit.Donat ionTypeId | |
| 6073 | ||
| 6074 | INNE R JOIN dbo .BloodUnit Media | |
| 6075 | ON dbo .BloodUnit .BloodUnit GUID = dbo .BloodUnit Media.Bloo dUnitGUID | |
| 6076 | ||
| 6077 | LEFT OUTER JOI N dbo.Pati entTransfu sion | |
| 6078 | ON dbo .BloodUnit .BloodUnit Guid = dbo .PatientTr ansfusion. BloodUnitG uid AND db o.PatientT ransfusion .RecordSta tusCode = 'A' | |
| 6079 | ||
| 6080 | INNE R JOIN dbo .OrderedUn it | |
| 6081 | ON dbo .BloodUnit .BloodUnit GUID = dbo .OrderedUn it.BloodUn itGUID | |
| 6082 | ||
| 6083 | INNE R JOIN dbo .Patient | |
| 6084 | ON dbo .BloodUnit Media.Dire ctedPatien tGUID = db o.Patient. PatientGUI D | |
| 6085 | ||
| 6086 | INNE R JOIN dbo .BloodProd uct | |
| 6087 | ON dbo .BloodUnit .BloodProd uctGUID = dbo.BloodP roduct.Blo odProductG UID | |
| 6088 | ||
| 6089 | INNE R JOIN dbo .ProductTy pe | |
| 6090 | ON dbo .BloodProd uct.Produc tTypeCode = dbo.Prod uctType.Pr oductTypeC ode | |
| 6091 | ||
| 6092 | INNE R JOIN dbo .VamcDivis ion | |
| 6093 | ON dbo .BloodUnit .DivisionC ode = dbo. VamcDivisi on.Divisio nCode | |
| 6094 | ||
| 6095 | WH ERE | |
| 6096 | dbo. Patient.Vi staPatient ID = @vist apatientid | |
| 6097 | ||
| 6098 | AND dbo.Donati onType.Res trictionTy peCode IN ('A', 'D') | |
| 6099 | ||
| 6100 | AND @patientfo undflag = 1 | |
| 6101 | ||
| 6102 | AND dbo.BloodU nitMedia.U nitExpirat ionDate > GETUTCDATE () | |
| 6103 | ||
| 6104 | AND PatientTra nsfusion.T ransfusion StartDateT ime IS NUL L | |
| 6105 | ||
| 6106 | AND dbo.Ordere dUnit.Rele aseDate IS NULL | |
| 6107 | ||
| 6108 | AND dbo.Ordere dUnit.Sele ctedDate I S NOT NULL | |
| 6109 | ||
| 6110 | AND ((dbo.Orde redUnit.Cr ossmatchRe sultCode I N ('C', 'G ')) OR (db o.OrderedU nit.Crossm atchResult Code IS NU LL)) | |
| 6111 | ||
| 6112 | UN ION ALL | |
| 6113 | ||
| 6114 | -- <Specimen expDate=" " uid="" / > | |
| 6115 | SE LECT DISTI NCT | |
| 6116 | 11 AS Tag , | |
| 6117 | 2 AS Par ent, | |
| 6118 | 2 AS [Bl oodbank!1! GroupOrder !hide], | |
| 6119 | NULL AS [Co mponent!13 !GroupOrde r!hide], | |
| 6120 | NULL AS [Bl oodbank!1] , | |
| 6121 | NULL AS [Pa tient!2!df n], | |
| 6122 | NULL AS [Pa tient!2!fi rstName], | |
| 6123 | NULL AS [Pa tient!2!la stName], | |
| 6124 | NULL AS [Pa tient!2!ss n], | |
| 6125 | NULL AS [Pa tient!2!ab o], | |
| 6126 | NULL AS [Pa tient!2!rh ], | |
| 6127 | NULL AS [Tr ansfusionR eactions!3 ], | |
| 6128 | NULL AS [Tr ansfusionR eaction!4! type], | |
| 6129 | NULL AS [Tr ansfusionR eaction!4! date], | |
| 6130 | NULL AS [Tr ansfusionR equirement s!5], | |
| 6131 | NULL AS [Tr ansfusionR equirement !6!modifie r], | |
| 6132 | NULL AS [An tibodies!7 ], | |
| 6133 | NULL AS [An tibody!8!n ame], | |
| 6134 | NULL AS [Un its!9], | |
| 6135 | NULL AS [Un it!10!stat us], | |
| 6136 | NULL AS [Un it!10!id], | |
| 6137 | NULL AS [Un it!10!prod uct], | |
| 6138 | NULL AS [Un it!10!prod uctCode], | |
| 6139 | NULL AS [Un it!10!loca tion], | |
| 6140 | NULL AS [Un it!10!expD ate], | |
| 6141 | dbo.fn DateTimeCo nversionTo HL7DateTim e( | |
| 6142 | dbo.fnTi meZoneConv ersionDate Time( | |
| 6143 | @divisionc ode, 0, Pa tientSpeci men.Specim enExpirati onDate )) AS [Sp ecimen!11! expDate], | |
| 6144 | dbo.Pa tientSpeci men.Specim enUID AS [ Specimen!1 1!uid], | |
| 6145 | NULL AS [Co mponents!1 2], | |
| 6146 | NULL AS [Co mponent!13 !name], | |
| 6147 | NULL AS [Co mponent!13 !id], | |
| 6148 | NULL AS [Co mponent!13 !specimen] , | |
| 6149 | NULL AS [La bTests!14] , | |
| 6150 | NULL AS [La bTest!15!i d], | |
| 6151 | NULL AS [La bTest!15!n ame], | |
| 6152 | NULL AS [Ms bosList!16 ], | |
| 6153 | NULL AS [Ms bos!17!nam e], | |
| 6154 | NULL AS [Ms bos!17!thr eshold], | |
| 6155 | NULL AS [Su rgeries!18 ], | |
| 6156 | NULL AS [Su rgery!19!n ame], | |
| 6157 | NULL AS [Su rgery!19!n oBloodRequ iredIndica tor] | |
| 6158 | ||
| 6159 | FR OM | |
| 6160 | dbo. PatientSpe cimen | |
| 6161 | ||
| 6162 | INNE R JOIN dbo .OrderedTe st | |
| 6163 | ON dbo .PatientSp ecimen.Pat ientSpecim enGUID = d bo.Ordered Test.Patie ntSpecimen GUID | |
| 6164 | ||
| 6165 | INNE R JOIN dbo .Orderable Test | |
| 6166 | ON dbo .OrderedTe st.Orderab leTestID = dbo.Order ableTest.O rderableTe stID | |
| 6167 | ||
| 6168 | INNE R JOIN dbo .Patient | |
| 6169 | ON dbo .PatientSp ecimen.Pat ientGUID = dbo. Patie nt.Patient GUID | |
| 6170 | ||
| 6171 | WH ERE | |
| 6172 | dbo. Patient.Vi staPatient ID = @vist apatientid | |
| 6173 | ||
| 6174 | AND dbo.Patien tSpecimen. Unacceptab leSpecimen Indicator <> 1 | |
| 6175 | ||
| 6176 | AND dbo.Ordera bleTest.Cp rsOrderabl eItemID = '1' | |
| 6177 | ||
| 6178 | AND dbo.Patien tSpecimen. SpecimenEx pirationDa te > GETUT CDATE() | |
| 6179 | ||
| 6180 | AND @patientfo undflag = 1 | |
| 6181 | ||
| 6182 | /* ***** Bria n Tomlin: Added Div ision chec k on Patie ntSpecimen 07-12-200 4 *******/ | |
| 6183 | AND dbo.Patien tSpecimen. DivisionCo de = @divi sioncode | |
| 6184 | ||
| 6185 | ||
| 6186 | UN ION ALL | |
| 6187 | ||
| 6188 | -- <Componen ts> | |
| 6189 | SE LECT | |
| 6190 | 12 AS Tag , | |
| 6191 | 1 AS Par ent, | |
| 6192 | 3 AS [Bl oodbank!1! GroupOrder !hide], | |
| 6193 | NULL AS [Co mponent!13 !GroupOrde r!hide], | |
| 6194 | NULL AS [Bl oodbank!1] , | |
| 6195 | NULL AS [Pa tient!2!df n], | |
| 6196 | NULL AS [Pa tient!2!fi rstName], | |
| 6197 | NULL AS [Pa tient!2!la stName], | |
| 6198 | NULL AS [Pa tient!2!ss n], | |
| 6199 | NULL AS [Pa tient!2!ab o], | |
| 6200 | NULL AS [Pa tient!2!rh ], | |
| 6201 | NULL AS [Tr ansfusionR eactions!3 ], | |
| 6202 | NULL AS [Tr ansfusionR eaction!4! type], | |
| 6203 | NULL AS [Tr ansfusionR eaction!4! date], | |
| 6204 | NULL AS [Tr ansfusionR equirement s!5], | |
| 6205 | NULL AS [Tr ansfusionR equirement !6!modifie r], | |
| 6206 | NULL AS [An tibodies!7 ], | |
| 6207 | NULL AS [An tibody!8!n ame], | |
| 6208 | NULL AS [Un its!9], | |
| 6209 | NULL AS [Un it!10!stat us], | |
| 6210 | NULL AS [Un it!10!id], | |
| 6211 | NULL AS [Un it!10!prod uct], | |
| 6212 | NULL AS [Un it!10!prod uctCode], | |
| 6213 | NULL AS [Un it!10!loca tion], | |
| 6214 | NULL AS [Un it!10!expD ate], | |
| 6215 | NULL AS [Sp ecimen!11! expDate], | |
| 6216 | NULL AS [Sp ecimen!11! uid], | |
| 6217 | NULL AS [Co mponents!1 2], | |
| 6218 | NULL AS [Co mponent!13 !name], | |
| 6219 | NULL AS [Co mponent!13 !id], | |
| 6220 | NULL AS [Co mponent!13 !specimen] , | |
| 6221 | NULL AS [La bTests!14] , | |
| 6222 | NULL AS [La bTest!15!i d], | |
| 6223 | NULL AS [La bTest!15!n ame], | |
| 6224 | NULL AS [Ms bosList!16 ], | |
| 6225 | NULL AS [Ms bos!17!nam e], | |
| 6226 | NULL AS [Ms bos!17!thr eshold], | |
| 6227 | NULL AS [Su rgeries!18 ], | |
| 6228 | NULL AS [Su rgery!19!n ame], | |
| 6229 | NULL AS [Su rgery!19!n oBloodRequ iredIndica tor] | |
| 6230 | ||
| 6231 | UN ION ALL | |
| 6232 | ||
| 6233 | -- <Componen t name="" id="" spec imen=""> | |
| 6234 | SE LECT DISTI NCT | |
| 6235 | 13 AS Tag, | |
| 6236 | 12 AS Paren t, | |
| 6237 | 3 AS [Bloo dbank!1!Gr oupOrder!h ide], | |
| 6238 | NULL AS [Comp onent!13!G roupOrder! hide], | |
| 6239 | NULL AS [Bloo dbank!1], | |
| 6240 | NULL AS [Pati ent!2!dfn] , | |
| 6241 | NULL AS [Pati ent!2!firs tName], | |
| 6242 | NULL AS [Pati ent!2!last Name], | |
| 6243 | NULL AS [Pati ent!2!ssn] , | |
| 6244 | NULL AS [Pati ent!2!abo] , | |
| 6245 | NULL AS [Pati ent!2!rh], | |
| 6246 | NULL AS [Tran sfusionRea ctions!3], | |
| 6247 | NULL AS [Tran sfusionRea ction!4!ty pe], | |
| 6248 | NULL AS [Tran sfusionRea ction!4!da te], | |
| 6249 | NULL AS [Tran sfusionReq uirements! 5], | |
| 6250 | NULL AS [Tran sfusionReq uirement!6 !modifier] , | |
| 6251 | NULL AS [Anti bodies!7], | |
| 6252 | NULL AS [Anti body!8!nam e], | |
| 6253 | NULL AS [Unit s!9], | |
| 6254 | NULL AS [Unit !10!status ], | |
| 6255 | NULL AS [Unit !10!id], | |
| 6256 | NULL AS [Unit !10!produc t], | |
| 6257 | NULL AS [Unit !10!produc tCode], | |
| 6258 | NULL AS [Unit !10!locati on], | |
| 6259 | NULL AS [Unit !10!expDat e], | |
| 6260 | NULL AS [Spec imen!11!ex pDate], | |
| 6261 | NULL AS [Spec imen!11!ui d], | |
| 6262 | NULL AS [Comp onents!12] , | |
| 6263 | CompCl s.Componen tClassShor tName AS [Co mponent!13 !name], | |
| 6264 | RTRIM( CompCls.C prsOrderab leItemID ) AS [Comp onent!13!i d], | |
| 6265 | CompCl sParam.Spe cimenRequi redIndicat or AS [Co mponent!13 !specimen] , | |
| 6266 | NULL AS [LabT ests!14], | |
| 6267 | NULL AS [LabT est!15!id] , | |
| 6268 | NULL AS [LabT est!15!nam e], | |
| 6269 | NULL AS [Msbo sList!16], | |
| 6270 | NULL AS [Msbo s!17!name] , | |
| 6271 | NULL AS [Msbo s!17!thres hold], | |
| 6272 | NULL AS [Surg eries!18], | |
| 6273 | NULL AS [Surg ery!19!nam e], | |
| 6274 | NULL AS [Surg ery!19!noB loodRequir edIndicato r] | |
| 6275 | ||
| 6276 | FR OM | |
| 6277 | dbo. ComponentC lass CompC ls | |
| 6278 | ||
| 6279 | INNE R JOIN dbo .Component ClassParam eter CompC lsParam | |
| 6280 | ON Com pCls.Compo nentClassI D = CompCl sParam.Com ponentClas sID | |
| 6281 | ||
| 6282 | WH ERE | |
| 6283 | Comp Cls.CprsOr derableIte mID IS NOT NULL | |
| 6284 | ||
| 6285 | AND CompClsPar am.Divisio nCode = @d ivisioncod e | |
| 6286 | ||
| 6287 | UN ION ALL | |
| 6288 | ||
| 6289 | -- <LabTests > | |
| 6290 | SE LECT | |
| 6291 | 14 AS Tag , | |
| 6292 | 13 AS Par ent, | |
| 6293 | 3 AS [Bl oodbank!1! GroupOrder !hide], | |
| 6294 | 1 AS [Co mponent!13 !GroupOrde r!hide], | |
| 6295 | NULL AS [Bl oodbank!1] , | |
| 6296 | NULL AS [Pa tient!2!df n], | |
| 6297 | NULL AS [Pa tient!2!fi rstName], | |
| 6298 | NULL AS [Pa tient!2!la stName], | |
| 6299 | NULL AS [Pa tient!2!ss n], | |
| 6300 | NULL AS [Pa tient!2!ab o], | |
| 6301 | NULL AS [Pa tient!2!rh ], | |
| 6302 | NULL AS [Tr ansfusionR eactions!3 ], | |
| 6303 | NULL AS [Tr ansfusionR eaction!4! type], | |
| 6304 | NULL AS [Tr ansfusionR eaction!4! date], | |
| 6305 | NULL AS [Tr ansfusionR equirement s!5], | |
| 6306 | NULL AS [Tr ansfusionR equirement !6!modifie r], | |
| 6307 | NULL AS [An tibodies!7 ], | |
| 6308 | NULL AS [An tibody!8!n ame], | |
| 6309 | NULL AS [Un its!9], | |
| 6310 | NULL AS [Un it!10!stat us], | |
| 6311 | NULL AS [Un it!10!id], | |
| 6312 | NULL AS [Un it!10!prod uct], | |
| 6313 | NULL AS [Un it!10!prod uctCode], | |
| 6314 | NULL AS [Un it!10!loca tion], | |
| 6315 | NULL AS [Un it!10!expD ate], | |
| 6316 | NULL AS [Sp ecimen!11! expDate], | |
| 6317 | NULL AS [Sp ecimen!11! uid], | |
| 6318 | NULL AS [Co mponents!1 2], | |
| 6319 | NULL AS [Co mponent!13 !name], | |
| 6320 | RTRIM( CompCls.C prsOrderab leItemID ) AS [Co mponent!13 !id], | |
| 6321 | NULL AS [Co mponent!13 !specimen] , | |
| 6322 | NULL AS [La bTests!14] , | |
| 6323 | NULL AS [La bTest!15!i d], | |
| 6324 | NULL AS [La bTest!15!n ame], | |
| 6325 | NULL AS [Ms bosList!16 ], | |
| 6326 | NULL AS [Ms bos!17!nam e], | |
| 6327 | NULL AS [Ms bos!17!thr eshold], | |
| 6328 | NULL AS [Su rgeries!18 ], | |
| 6329 | NULL AS [Su rgery!19!n ame], | |
| 6330 | NULL AS [Su rgery!19!n oBloodRequ iredIndica tor] | |
| 6331 | ||
| 6332 | FR OM | |
| 6333 | dbo. ComponentC lass CompC ls | |
| 6334 | ||
| 6335 | INNE R JOIN dbo .Component ClassParam eter CompC lsParam | |
| 6336 | ON Com pCls.Compo nentClassI D = CompCl sParam.Com ponentClas sID | |
| 6337 | ||
| 6338 | WH ERE | |
| 6339 | Comp Cls.CprsOr derableIte mID IS NOT NULL | |
| 6340 | ||
| 6341 | AND CompClsPar am.Divisio nCode = @d ivisioncod e | |
| 6342 | ||
| 6343 | UN ION ALL | |
| 6344 | ||
| 6345 | -- <LabTest id="" name =""> | |
| 6346 | SE LECT DISTI NCT | |
| 6347 | 15 AS Ta g, | |
| 6348 | 14 AS Pa rent, | |
| 6349 | 3 AS [B loodbank!1 !GroupOrde r!hide], | |
| 6350 | 1 AS [C omponent!1 3!GroupOrd er!hide], | |
| 6351 | NULL AS [B loodbank!1 ], | |
| 6352 | NULL AS [P atient!2!d fn], | |
| 6353 | NULL AS [P atient!2!f irstName], | |
| 6354 | NULL AS [P atient!2!l astName], | |
| 6355 | NULL AS [P atient!2!s sn], | |
| 6356 | NULL AS [P atient!2!a bo], | |
| 6357 | NULL AS [P atient!2!r h], | |
| 6358 | NULL AS [T ransfusion Reactions! 3], | |
| 6359 | NULL AS [T ransfusion Reaction!4 !type], | |
| 6360 | NULL AS [T ransfusion Reaction!4 !date], | |
| 6361 | NULL AS [T ransfusion Requiremen ts!5], | |
| 6362 | NULL AS [T ransfusion Requiremen t!6!modifi er], | |
| 6363 | NULL AS [A ntibodies! 7], | |
| 6364 | NULL AS [A ntibody!8! name], | |
| 6365 | NULL AS [U nits!9], | |
| 6366 | NULL AS [U nit!10!sta tus], | |
| 6367 | NULL AS [U nit!10!id] , | |
| 6368 | NULL AS [U nit!10!pro duct], | |
| 6369 | NULL AS [U nit!10!pro ductCode], | |
| 6370 | NULL AS [U nit!10!loc ation], | |
| 6371 | NULL AS [U nit!10!exp Date], | |
| 6372 | NULL AS [S pecimen!11 !expDate], | |
| 6373 | NULL AS [S pecimen!11 !uid], | |
| 6374 | NULL AS [C omponents! 12], | |
| 6375 | NULL AS [C omponent!1 3!name], | |
| 6376 | RTRIM( CompCls.C prsOrderab leItemID ) AS [C omponent!1 3!id], | |
| 6377 | NULL AS [C omponent!1 3!specimen ], | |
| 6378 | NULL AS [L abTests!14 ], | |
| 6379 | RTRIM( SpecTestT hrd.LabTes tID ) AS [L abTest!15! id], | |
| 6380 | SpecTe stThrd.Vis tALaborato ryTestName AS [L abTest!15! name], | |
| 6381 | NULL AS [M sbosList!1 6], | |
| 6382 | NULL AS [M sbos!17!na me], | |
| 6383 | NULL AS [M sbos!17!th reshold], | |
| 6384 | NULL AS [S urgeries!1 8], | |
| 6385 | NULL AS [S urgery!19! name], | |
| 6386 | NULL AS [S urgery!19! noBloodReq uiredIndic ator] | |
| 6387 | ||
| 6388 | FR OM | |
| 6389 | dbo. ComponentC lass CompC ls | |
| 6390 | ||
| 6391 | INNE R JOIN dbo .SpecimenT estThresho ld SpecTes tThrd | |
| 6392 | ON Spe cTestThrd. ComponentC lassID = C ompCls.Com ponentClas sID | |
| 6393 | ||
| 6394 | WH ERE | |
| 6395 | Comp Cls.CprsOr derableIte mID IS NOT NULL | |
| 6396 | ||
| 6397 | AND SpecTestTh rd.Divisio nCode = @d ivisioncod e | |
| 6398 | ||
| 6399 | UN ION ALL | |
| 6400 | ||
| 6401 | -- <MsbosLis t> | |
| 6402 | SE LECT | |
| 6403 | 16 AS Tag , | |
| 6404 | 13 AS Par ent, | |
| 6405 | 3 AS [Bl oodbank!1! GroupOrder ], | |
| 6406 | 2 AS [Co mponent!13 !GroupOrde r!hide], | |
| 6407 | NULL AS [Bl oodbank!1] , | |
| 6408 | NULL AS [Pa tient!2!df n], | |
| 6409 | NULL AS [Pa tient!2!fi rstName], | |
| 6410 | NULL AS [Pa tient!2!la stName], | |
| 6411 | NULL AS [Pa tient!2!ss n], | |
| 6412 | NULL AS [Pa tient!2!ab o], | |
| 6413 | NULL AS [Pa tient!2!rh ], | |
| 6414 | NULL AS [Tr ansfusionR eactions!3 ], | |
| 6415 | NULL AS [Tr ansfusionR eaction!4! type], | |
| 6416 | NULL AS [Tr ansfusionR eaction!4! date], | |
| 6417 | NULL AS [Tr ansfusionR equirement s!5], | |
| 6418 | NULL AS [Tr ansfusionR equirement !6!modifie r], | |
| 6419 | NULL AS [An tibodies!7 ], | |
| 6420 | NULL AS [An tibody!8!n ame], | |
| 6421 | NULL AS [Un its!9], | |
| 6422 | NULL AS [Un it!10!stat us], | |
| 6423 | NULL AS [Un it!10!id], | |
| 6424 | NULL AS [Un it!10!prod uct], | |
| 6425 | NULL AS [Un it!10!prod uctCode], | |
| 6426 | NULL AS [Un it!10!loca tion], | |
| 6427 | NULL AS [Un it!10!expD ate], | |
| 6428 | NULL AS [Sp ecimen!11! expDate], | |
| 6429 | NULL AS [Sp ecimen!11! uid], | |
| 6430 | NULL AS [Co mponents!1 2], | |
| 6431 | NULL AS [Co mponent!13 !name], | |
| 6432 | RTRIM( CompCls.C prsOrderab leItemID ) AS [Co mponent!13 !id], | |
| 6433 | NULL AS [Co mponent!13 !specimen] , | |
| 6434 | NULL AS [La bTests!14] , | |
| 6435 | NULL AS [La bTest!15!i d], | |
| 6436 | NULL AS [La bTest!15!n ame], | |
| 6437 | NULL AS [Ms bosList!16 ], | |
| 6438 | NULL AS [Ms bos!17!nam e], | |
| 6439 | NULL AS [Ms bos!17!thr eshold], | |
| 6440 | NULL AS [Su rgeries!18 ], | |
| 6441 | NULL AS [Su rgery!19!n ame], | |
| 6442 | NULL AS [Su rgery!19!n oBloodRequ iredIndica tor] | |
| 6443 | ||
| 6444 | FR OM | |
| 6445 | dbo. ComponentC lass CompC ls | |
| 6446 | ||
| 6447 | INNE R JOIN dbo .Component ClassParam eter CompC lsParam | |
| 6448 | ON Com pCls.Compo nentClassI D = CompCl sParam.Com ponentClas sID | |
| 6449 | ||
| 6450 | WH ERE | |
| 6451 | Comp Cls.CprsOr derableIte mID IS NOT NULL | |
| 6452 | ||
| 6453 | AND CompClsPar am.Divisio nCode = @d ivisioncod e | |
| 6454 | ||
| 6455 | UN ION ALL | |
| 6456 | ||
| 6457 | -- <Msbos na me="" thre shold="" / > | |
| 6458 | SE LECT DISTI NCT | |
| 6459 | 17 AS Tag, | |
| 6460 | 16 AS Parent, | |
| 6461 | 3 AS [Bloodb ank!1!Grou pOrder!hid e], | |
| 6462 | 2 AS [Compon ent!13!Gro upOrder!hi de], | |
| 6463 | NULL AS [Bloodb ank!1], | |
| 6464 | NULL AS [Patien t!2!dfn], | |
| 6465 | NULL AS [Patien t!2!firstN ame], | |
| 6466 | NULL AS [Patien t!2!lastNa me], | |
| 6467 | NULL AS [Patien t!2!ssn], | |
| 6468 | NULL AS [Patien t!2!abo], | |
| 6469 | NULL AS [Patien t!2!rh], | |
| 6470 | NULL AS [Transf usionReact ions!3], | |
| 6471 | NULL AS [Transf usionReact ion!4!type ], | |
| 6472 | NULL AS [Transf usionReact ion!4!date ], | |
| 6473 | NULL AS [Transf usionRequi rements!5] , | |
| 6474 | NULL AS [Transf usionRequi rement!6!m odifier], | |
| 6475 | NULL AS [Antibo dies!7], | |
| 6476 | NULL AS [Antibo dy!8!name] , | |
| 6477 | NULL AS [Units! 9], | |
| 6478 | NULL AS [Unit!1 0!status], | |
| 6479 | NULL AS [Unit!1 0!id], | |
| 6480 | NULL AS [Unit!1 0!product] , | |
| 6481 | NULL AS [Unit!1 0!productC ode], | |
| 6482 | NULL AS [Unit!1 0!location ], | |
| 6483 | NULL AS [Unit!1 0!expDate] , | |
| 6484 | NULL AS [Specim en!11!expD ate], | |
| 6485 | NULL AS [Specim en!11!uid] , | |
| 6486 | NULL AS [Compon ents!12], | |
| 6487 | NULL AS [Compon ent!13!nam e], | |
| 6488 | rtrim( CompCls.C prsOrderab leItemID ) AS [Compon ent!13!id] , | |
| 6489 | NULL AS [Compon ent!13!spe cimen], | |
| 6490 | NULL AS [LabTes ts!14], | |
| 6491 | NULL AS [LabTes t!15!id], | |
| 6492 | NULL AS [LabTes t!15!name] , | |
| 6493 | NULL AS [MsbosL ist!16], | |
| 6494 | Msbos. SurgeryNam e AS [Msbos! 17!name], | |
| 6495 | MsbosC omponentCl ass.Maximu mSetupUnit Quantity AS [Msbo s!17!thres hold], | |
| 6496 | NULL AS [Surger ies!18], | |
| 6497 | NULL AS [Surger y!19!name] , | |
| 6498 | NULL AS [Surger y!19!noBlo odRequired Indicator] | |
| 6499 | ||
| 6500 | FR OM | |
| 6501 | dbo. ComponentC lass CompC ls | |
| 6502 | ||
| 6503 | INNE R JOIN dbo .MsbosComp onentClass | |
| 6504 | ON Com pCls.Compo nentClassI D = MsbosC omponentCl ass.Compon entClassID | |
| 6505 | ||
| 6506 | ||
| 6507 | INNE R JOIN dbo .Msbos | |
| 6508 | ON Msb os.MsbosGU ID = Msbos ComponentC lass.Msbos GUID | |
| 6509 | ||
| 6510 | WHER E | |
| 6511 | Msbos. DivisionCo de = @divi sioncode | |
| 6512 | ||
| 6513 | AND Co mpCls.Cprs OrderableI temID IS N OT NULL | |
| 6514 | ||
| 6515 | /***** * CR 3078: filter ou t inactive MSBOS rec ords ***** **/ | |
| 6516 | AND Ms bos.Record StatusCode <> 'X' | |
| 6517 | /***** * CR 3156: filter ou t inactive MsbosComp onentClass records * ******/ | |
| 6518 | AND Ms bosCompone ntClass.Re cordStatus Code <> 'X ' | |
| 6519 | ||
| 6520 | UN ION ALL | |
| 6521 | ||
| 6522 | -- <Surgerie s> | |
| 6523 | SE LECT | |
| 6524 | 18 AS Tag , | |
| 6525 | 1 AS Par ent, | |
| 6526 | 4 AS [Bl oodbank!1! GroupOrder !hide], | |
| 6527 | NULL AS [Co mponent!13 !GroupOrde r!hide], | |
| 6528 | NULL AS [Bl oodbank!1] , | |
| 6529 | NULL AS [Pa tient!2!df n], | |
| 6530 | NULL AS [Pa tient!2!fi rstName], | |
| 6531 | NULL AS [Pa tient!2!la stName], | |
| 6532 | NULL AS [Pa tient!2!ss n], | |
| 6533 | NULL AS [Pa tient!2!ab o], | |
| 6534 | NULL AS [Pa tient!2!rh ], | |
| 6535 | NULL AS [Tr ansfusionR eactions!3 ], | |
| 6536 | NULL AS [Tr ansfusionR eaction!4! type], | |
| 6537 | NULL AS [Tr ansfusionR eaction!4! date], | |
| 6538 | NULL AS [Tr ansfusionR equirement s!5], | |
| 6539 | NULL AS [Tr ansfusionR equirement !6!modifie r], | |
| 6540 | NULL AS [An tibodies!7 ], | |
| 6541 | NULL AS [An tibody!8!n ame], | |
| 6542 | NULL AS [Un its!9], | |
| 6543 | NULL AS [Un it!10!stat us], | |
| 6544 | NULL AS [Un it!10!id], | |
| 6545 | NULL AS [Un it!10!prod uct], | |
| 6546 | NULL AS [Un it!10!prod uctCode], | |
| 6547 | NULL AS [Un it!10!loca tion], | |
| 6548 | NULL AS [Un it!10!expD ate], | |
| 6549 | NULL AS [Sp ecimen!11! expDate], | |
| 6550 | NULL AS [Sp ecimen!11! uid], | |
| 6551 | NULL AS [Co mponents!1 2], | |
| 6552 | NULL AS [Co mponent!13 !name], | |
| 6553 | NULL AS [Co mponent!13 !id], | |
| 6554 | NULL AS [Co mponent!13 !specimen] , | |
| 6555 | NULL AS [La bTests!14] , | |
| 6556 | NULL AS [La bTest!15!i d], | |
| 6557 | NULL AS [La bTest!15!n ame], | |
| 6558 | NULL AS [Ms bosList!16 ], | |
| 6559 | NULL AS [Ms bos!17!nam e], | |
| 6560 | NULL AS [Ms bos!17!thr eshold], | |
| 6561 | NULL AS [Su rgeries!18 ], | |
| 6562 | NULL AS [Su rgery!19!n ame], | |
| 6563 | NULL AS [Su rgery!19!n oBloodRequ iredIndica tor] | |
| 6564 | ||
| 6565 | UN ION ALL | |
| 6566 | ||
| 6567 | -- <Surgery name=""> | |
| 6568 | SE LECT DISTI NCT | |
| 6569 | 19 AS Tag , | |
| 6570 | 18 AS Par ent, | |
| 6571 | 4 AS [Bl oodbank!1! GroupOrder !hide], | |
| 6572 | NULL AS [Co mponent!13 !GroupOrde r!hide], | |
| 6573 | NULL AS [Bl oodbank!1] , | |
| 6574 | NULL AS [Pa tient!2!df n], | |
| 6575 | NULL AS [Pa tient!2!fi rstName], | |
| 6576 | NULL AS [Pa tient!2!la stName], | |
| 6577 | NULL AS [Pa tient!2!ss n], | |
| 6578 | NULL AS [Pa tient!2!ab o], | |
| 6579 | NULL AS [Pa tient!2!rh ], | |
| 6580 | NULL AS [Tr ansfusionR eactions!3 ], | |
| 6581 | NULL AS [Tr ansfusionR eaction!4! type], | |
| 6582 | NULL AS [Tr ansfusionR eaction!4! date], | |
| 6583 | NULL AS [Tr ansfusionR equirement s!5], | |
| 6584 | NULL AS [Tr ansfusionR equirement !6!modifie r], | |
| 6585 | NULL AS [An tibodies!7 ], | |
| 6586 | NULL AS [An tibody!8!n ame], | |
| 6587 | NULL AS [Un its!9], | |
| 6588 | NULL AS [Un it!10!stat us], | |
| 6589 | NULL AS [Un it!10!id], | |
| 6590 | NULL AS [Un it!10!prod uct], | |
| 6591 | NULL AS [Un it!10!prod uctCode], | |
| 6592 | NULL AS [Un it!10!loca tion], | |
| 6593 | NULL AS [Un it!10!expD ate], | |
| 6594 | NULL AS [Sp ecimen!11! expDate], | |
| 6595 | NULL AS [Sp ecimen!11! uid], | |
| 6596 | NULL AS [Co mponents!1 2], | |
| 6597 | NULL AS [Co mponent!13 !name], | |
| 6598 | NULL AS [Co mponent!13 !id], | |
| 6599 | NULL AS [Co mponent!13 !specimen] , | |
| 6600 | NULL AS [La bTests!14] , | |
| 6601 | NULL AS [La bTest!15!i d], | |
| 6602 | NULL AS [La bTest!15!n ame], | |
| 6603 | NULL AS [Ms bosList!16 ], | |
| 6604 | NULL AS [Ms bos!17!nam e], | |
| 6605 | NULL AS [Ms bos!17!thr eshold], | |
| 6606 | NULL AS [Su rgeries!18 ], | |
| 6607 | dbo.Ms bos.Surger yName AS [Su rgery!19!n ame], | |
| 6608 | CASE W HEN (TypeA ndScreenIn dicator = 1 OR NoBlo odRequired Indicator = 1) | |
| 6609 | THEN 1 | |
| 6610 | ELSE 0 | |
| 6611 | END AS [Su rgery!19!n oBloodRequ iredIndica tor] | |
| 6612 | ||
| 6613 | FR OM dbo.Ms bos | |
| 6614 | ||
| 6615 | WH ERE | |
| 6616 | /***** * CR 3156: filter ou t by divis ion ****** */ | |
| 6617 | Msbos.Divi sionCode = @division code | |
| 6618 | ||
| 6619 | /***** * CR 3078: filter ou t inactive MSBOS rec ords ***** **/ | |
| 6620 | AND Msbos. RecordStat usCode <> 'X' | |
| 6621 | ||
| 6622 | OR DER BY [Blood bank!1!Gro upOrder!hi de], | |
| 6623 | [Compo nent!13!id ], | |
| 6624 | [Compo nent!13!Gr oupOrder!h ide], | |
| 6625 | [LabTe st!15!id], | |
| 6626 | [Msbos !17!name], | |
| 6627 | [Surge ry!19!name ], | |
| 6628 | Tag | |
| 6629 | ||
| 6630 | FO R XML EXPL ICIT | |
| 6631 | ||
| 6632 | SET NOCOUN T OFF | |
| 6633 | ||
| 6634 | GO | |
| 6635 | ||
| 6636 | ||
| 6637 | if exists (select * from dbo.s ysobjects where id = object_id (N'[dbo].[ V_LinearIn terface]') and OBJEC TPROPERTY( id, N'IsVi ew') = 1) | |
| 6638 | drop view [dbo].[V_L inearInter face] | |
| 6639 | GO | |
| 6640 | ||
| 6641 | SET ANSI_N ULLS ON | |
| 6642 | GO | |
| 6643 | ||
| 6644 | SET QUOTED _IDENTIFIE R ON | |
| 6645 | GO | |
| 6646 | ||
| 6647 | ||
| 6648 | ||
| 6649 | /********* ********** ********** ********** ********** ********** ********** ********** ********** ********** ********** ********** ********** ********** ********** ********** * | |
| 6650 | ** Na me: V_Li nearInterf ace | |
| 6651 | ** | |
| 6652 | ** De sc: Retu rns data l ike old in terfacecon trol table (Defect 3 40457). | |
| 6653 | ** | |
| 6654 | ** Au thor: Pabl o Sanchez | |
| 6655 | ** | |
| 6656 | ** Da te: 09/1 9/2016 | |
| 6657 | ** | |
| 6658 | ********** ********** ********** ********** ********** ********** ********** ********** ********** ********** ********** ********** ********** ********** ********** ********** ** | |
| 6659 | ** Mo dified: | |
| 6660 | ** Da te Name Descriptio n | |
| 6661 | ** -- ---------- - ------ --- ---------- -------- | |
| 6662 | ** 02 /14/17 K. Adu -Poku ** Reviewe d for comp liance wit h database standards and recom mendations ** | |
| 6663 | ********** ********** ********** ********** ********** ********** ********** ********** ********** ********** ********** ********** ********** ********** ********** *******/ | |
| 6664 | CREATE VIE W [dbo].[V _LinearInt erface] | |
| 6665 | AS | |
| 6666 | ||
| 6667 | SE LECT | |
| 6668 | I.[Int erfaceId], | |
| 6669 | I.[Int erfaceName ], | |
| 6670 | I.[Fie ldSeparato r], | |
| 6671 | I.[Enc odingChara cters], | |
| 6672 | I.[Int erfaceAppl icationID] , | |
| 6673 | I.[Vbe csApplicat ionID], | |
| 6674 | I.[Ver sionID], | |
| 6675 | I.[App licationAc kType], | |
| 6676 | ||
| 6677 | (case when vep.[ EndPointTy pe] = 'IPA ddress' th en vep.[En dPointAddr ess] else convert(va rchar(255) , null) en d) as [Int erfaceIPAd dress], | |
| 6678 | (case when vep.[ EndPointTy pe] = 'Dns HostName' then vep.[ EndPointAd dress] els e convert( varchar(25 5), null) end) as [I nterfaceDo mainName], | |
| 6679 | vep.[E ndPointPor t] as [Int erfacePort Number], | |
| 6680 | vep.[E ndPointAdd ress] as [ InterfaceE ndPointAdd ress], | |
| 6681 | vep.[E ndPointTyp e] as [Int erfaceEndP ointType], | |
| 6682 | ||
| 6683 | conver t(bit, (ca se when vg c2.[Parame terValue] = 'true' t hen 1 else 0 end)) a s [Interfa ceActiveIn dicator], | |
| 6684 | ||
| 6685 | vgc3.[ ParameterV alue] as [ InterfaceF acilityID] , | |
| 6686 | ||
| 6687 | vep2.[ EndPointAd dress] as [VbecsIPAd dress], | |
| 6688 | vep2.[ EndPointPo rt] as [Vb ecsPortNum ber], | |
| 6689 | vep2.[ EndPointAd dress] as [VbecsEndP ointAddres s], | |
| 6690 | vep2.[ EndPointTy pe] as [Vb ecsEndPoin tType], | |
| 6691 | ||
| 6692 | conver t(int, vgc 5.[Paramet erValue]) as [AckTim eout], | |
| 6693 | conver t(int, vgc 6.[Paramet erValue]) as [ReTran smitAttemp ts], | |
| 6694 | vgc7.[ ParameterV alue] as [ InterfaceA dministrat orName], - - should t his be ren amed to Em ailAddress ? | |
| 6695 | ||
| 6696 | I.[Vbe csFacility ID], | |
| 6697 | I.[Log EventsIndi cator], | |
| 6698 | I.[Pro cessingID] , | |
| 6699 | I.[Pur geSuccessf ulMessage] , | |
| 6700 | I.[Pur geUnSucces sfulMessag e], | |
| 6701 | ||
| 6702 | vep.Vb ecsEndPoin tId as End PointId, | |
| 6703 | ||
| 6704 | isnull (vep.LastU pdateDate, I.LastUpd ateDate) a s LastUpda teDate, | |
| 6705 | isnull (vep.LastU pdateUser, I.LastUpd ateUser) a s LastUpda teUser, | |
| 6706 | isnull (vep.[RowV ersion], I .[RowVersi on]) as [R owVersion] , | |
| 6707 | isnull (vep.LastU pdateFunct ionId, I.L astUpdateF unctionId) as LastUp dateFuncti onId | |
| 6708 | ||
| 6709 | ||
| 6710 | FR OM dbo.Int erface I | |
| 6711 | ||
| 6712 | LEFT JOIN dbo. VbecsEndPo int vep on vep.Vbecs EndPointId = I.Vbecs EndPointId | |
| 6713 | ||
| 6714 | LEFT JOIN dbo. VbecsGloba lConfig vg c2 on vgc2 .Applicati onName = I .Applicati onName | |
| 6715 | AND vgc2.Para meterName = I.Config Prefix + ' _IsActive' | |
| 6716 | ||
| 6717 | LEFT JOIN dbo. VbecsGloba lConfig vg c3 on vgc3 .Applicati onName = I .Applicati onName | |
| 6718 | AND vgc3.Para meterName = I.Config Prefix + ' _FacilityI D' | |
| 6719 | ||
| 6720 | LEFT JOIN dbo. VbecsGloba lConfig vg c4 on vgc4 .Applicati onName = I .Applicati onName | |
| 6721 | AND vgc4.Para meterName = 'VBECS' + '_EndPoi nt' | |
| 6722 | ||
| 6723 | LEFT JOIN dbo. VbecsEndPo int vep2 o n vep2.Vbe csEndPoint Id = conve rt(int, vg c4.Paramet erValue) | |
| 6724 | ||
| 6725 | LEFT JOIN dbo. VbecsGloba lConfig vg c5 on vgc5 .Applicati onName = I .Applicati onName | |
| 6726 | AND vgc5.Para meterName = 'VBECS' + '_AckTim eout' | |
| 6727 | ||
| 6728 | LEFT JOIN dbo. VbecsGloba lConfig vg c6 on vgc6 .Applicati onName = I .Applicati onName | |
| 6729 | AND vgc6.Para meterName = 'VBECS' + '_ReTran smitAttemp ts' | |
| 6730 | ||
| 6731 | LEFT JOIN dbo. VbecsGloba lConfig vg c7 on vgc7 .Applicati onName = I .Applicati onName | |
| 6732 | AND vgc7.Para meterName = 'VBECS' + '_EmailA lertAddres s' | |
| 6733 | ||
| 6734 | ||
| 6735 | ||
| 6736 | ||
| 6737 | GO | |
| 6738 | ||
| 6739 | ||
| 6740 | -- alter t he column added to n ot allow N ULLS | |
| 6741 | ||
| 6742 | ALTER TABL E [dbo].[I nterface] ALTER COLU MN [Applic ationName] [varchar] (100) COL LATE SQL_L atin1_Gene ral_CP1_CI _AS NOT NU LL | |
| 6743 | ALTER TABL E [dbo].[I nterface] ALTER COLU MN [Config Prefix] [v archar] (1 00) COLLAT E SQL_Lati n1_General _CP1_CI_AS NOT NULL | |
| 6744 | ALTER TABL E [dbo].[I nterface] ALTER COLU MN [Proces singId] [c har] (1) C OLLATE SQL _Latin1_Ge neral_CP1_ CI_AS NOT NULL | |
| 6745 | ALTER TABL E [dbo].[I nterface] ALTER COLU MN [PurgeS uccessfulM essage] [t inyint] NO T NULL | |
| 6746 | ALTER TABL E [dbo].[I nterface] ALTER COLU MN [PurgeU nSuccessfu lMessage] [tinyint] NOT NULL | |
| 6747 | ALTER TABL E [dbo].[I nterface] ALTER COLU MN [LogEve ntsIndicat or] [bit] NOT NULL | |
| 6748 | ALTER TABL E [dbo].[I nterface] ALTER COLU MN [VbecsF acilityId] [varchar] (20) COLL ATE SQL_La tin1_Gener al_CP1_CI_ AS NOT NUL L | |
| 6749 | ALTER TABL E [dbo].[I nterface] ALTER COLU MN [VbecsE ndPointId] [int] NOT NULL | |
| 6750 | ALTER TABL E [dbo].[I nterface] ALTER COLU MN [Applic ationAckTy pe] [char] (2) COLLA TE SQL_Lat in1_Genera l_CP1_CI_A S NOT NULL | |
| 6751 | ALTER TABL E [dbo].[V becsEndPoi nt] ALTER COLUMN [En dPointType ] [varchar ] (50) COL LATE SQL_L atin1_Gene ral_CP1_CI _AS NOT NU LL | |
| 6752 | ||
| 6753 | ALTER TABL E [dbo].[I nterface] WITH CHEC K ADD CON STRAINT [F K_Interfac e_VbecsEnd Point] FOR EIGN KEY([ VbecsEndPo intId]) | |
| 6754 | REFERENCES [dbo].[Vb ecsEndPoin t] ([Vbecs EndPointId ]) | |
| 6755 | GO | |
| 6756 | ||
| 6757 | ALTER TABL E [dbo].[I nterface] CHECK CONS TRAINT [FK _Interface _VbecsEndP oint] | |
| 6758 | GO | |
| 6759 | ||
| 6760 | ALTER TABL E [dbo].[V amcDivisio n] ALTER C OLUMN [Lab elPrinterE ndPointId] int NOT N ULL | |
| 6761 | ||
| 6762 | CREATE NON CLUSTERED INDEX [IX_ VamcDivisi on_LabelPr interEndPo intId] ON [dbo].[Vam cDivision] ([LabelPr interEndPo intId]) ON [PRIMARY] | |
| 6763 | GO | |
| 6764 | ||
| 6765 | if exists (select * from dbo.s ysobjects where id = object_id (N'[dbo].[ spGetAudit InterfaceC ontrol]') and OBJECT PROPERTY(i d, N'IsPro cedure') = 1) | |
| 6766 | drop proce dure [dbo] .[spGetAud itInterfac eControl] | |
| 6767 | GO | |
| 6768 | ||
| 6769 | SET ANSI_N ULLS ON | |
| 6770 | GO | |
| 6771 | ||
| 6772 | SET QUOTED _IDENTIFIE R ON | |
| 6773 | GO | |
| 6774 | ||
| 6775 | ||
| 6776 | ||
| 6777 | ||
| 6778 | /********* ********** ********** ********** ********** ********** ********** ********** ********** ********** ********** ********** ********** ********** ********** ********** ********** ****** | |
| 6779 | ** De sc: Get Interface Control au dit inform ation | |
| 6780 | ** | |
| 6781 | ** Au thor: Krzy sztof Dobr anowski | |
| 6782 | ** | |
| 6783 | ** Da te: 03/1 8/2004 | |
| 6784 | ** | |
| 6785 | ********** ********** ********** ********** ********** ********** ********** ********** ********** ********** ********** ********** ********** ********** ********** ********** ********** ***** | |
| 6786 | ** Mo dified: | |
| 6787 | ** Da te Name De scription | |
| 6788 | ** -- ---------- -------- -------- ---------- ----- ---- ---------- ---------- ---------- ---------- ---------- ---------- ---------- ---------- ---------- ---------- ---------- ---------- ---------- ---------- ---------- ---------- ---- | |
| 6789 | ** 04 /27/2004 M. Jab lonski Ca ll fnTimeZ oneConvers ionDateTim e function on all da tes | |
| 6790 | ** 07 /13/2005 N.Pate rson ** Reviewe d for comp liance wit h database standards and recom mendations ** | |
| 6791 | ** Removed Na me/input/o utput from comment h eader, add ed SET NOC OUNT, form atted SQL | |
| 6792 | ** Changed da te filter from => <= to using BETWEEN, p laced inpu t paramert ers in bra ckets, err or check i nput dates | |
| 6793 | ** 08 /18/2005 N.Pate rson Implemente d differen ces betwee n Review_S tart and D EV before porting ch anges to D EV | |
| 6794 | ** 07 /17/2007 K. Dob ranowski Fixed name s of two c olumns Int erfaceFaci lityId and VbecsFaci lityId (wa s Interfac eFacilityI D and Vbec sFacilityI D) CR 1979 | |
| 6795 | ** 07 /17/2007 K. Dob ranowski Added Inte rfaceDomai nName to S ELECT stat ement CR 2 267 | |
| 6796 | ** 11 /14/2008 M. Smi th Changed to get the I nterfaceNa me from th e new Inte rface refe rence tabl e. CR 251 6 | |
| 6797 | ** 12 /17/2008 K. Adu -Poku ** Reviewe d for comp liance wit h database standards and recom mendations ** | |
| 6798 | ** 03 /16/2010 K. Dob ranowski Added Inte rfaceActiv eIndicator (CR 2940) | |
| 6799 | ** 04 /04/2011 K. Adu -Poku ** Reviewe d for comp liance wit h database standards and recom mendations ** | |
| 6800 | ** 09 /30/2016 K. Dob ranowski I rewrote this store d procedur e to acomm odate late st DB desi gn changes for inter face confi guration ( Defect 340 457). | |
| 6801 | ** 10 /25/2016 K. Dob ranowski Fixed sele ct getting the intef ace IP and Port to u se direct link from EndPoint t o Interfac e table (D efect 3404 57). | |
| 6802 | ** 02 /14/2017 K. Adu -Poku ** Reviewe d for comp liance wit h database standards and recom mendations ** | |
| 6803 | ********** ********** ********** ********** ********** ********** ********** ********** ********** ********** ********** ********** ********** ********** ********** ********** ********** *****/ | |
| 6804 | ||
| 6805 | CREATE PRO CEDURE [db o].[spGetA uditInterf aceControl ] | |
| 6806 | ( | |
| 6807 | @s tartdate DATETI ME, | |
| 6808 | @e nddate DATETI ME, | |
| 6809 | @d ivisioncod e CHAR(5 ) | |
| 6810 | ) | |
| 6811 | AS | |
| 6812 | ||
| 6813 | /* @E RROR VARIA BLE USED BECAUSE SE T NOCOUNT OFF RESETS THE @@ERR OR TO ZERO */ | |
| 6814 | DECLARE @E RROR INT | |
| 6815 | ||
| 6816 | SET NOCOUN T ON | |
| 6817 | --Since al l the date s are save d in UTC, start and end data h as to be a djusted fi rst for co rrect comp arison | |
| 6818 | SET @start date = dbo .fnTimeZon eConversio nDateTime( @divisionc ode, 1, @s tartdate) | |
| 6819 | ||
| 6820 | SET @ERROR = @@ERROR | |
| 6821 | IF @ERROR != 0 GOTO SPR OC_EXIT | |
| 6822 | ||
| 6823 | SET @endda te = dbo.f nTimeZoneC onversionD ateTime(@d ivisioncod e, 1, @end date) | |
| 6824 | ||
| 6825 | SET @ERROR = @@ERROR | |
| 6826 | IF @ERROR != 0 GOTO SPR OC_EXIT | |
| 6827 | ||
| 6828 | -- this SELEC T returns VBECS IP a nd Port | |
| 6829 | SE LECT | |
| 6830 | ||
| 6831 | VEP. EndPointAd dress AS V becsIPAddr ess, | |
| 6832 | VEP. EndPointPo rt AS Vbec sPortNumbe r, | |
| 6833 | VEP. MirrorId, | |
| 6834 | ||
| 6835 | dbo. fnTimeZone Conversion DateTime(@ divisionco de, 0, VEP .LastUpdat eDate) AS MirrorDate , | |
| 6836 | ||
| 6837 | VEP. LastUpdate User | |
| 6838 | ||
| 6839 | FR OM | |
| 6840 | ||
| 6841 | dbo. SynMirror_ V_VbecsEnd Point VEP | |
| 6842 | ||
| 6843 | JO IN dbo.Vbe csGlobalCo nfig VGC | |
| 6844 | ON V GC.Paramet erValue = VEP.VbecsE ndPointId AND VGC.Pa rameterNam e = 'VBECS _EndPoint' AND VGC.A pplication Name = 'HL 7Service' | |
| 6845 | ||
| 6846 | WH ERE | |
| 6847 | ||
| 6848 | VEP. MirrorDate BETWEEN @ startdate AND @endda te | |
| 6849 | ||
| 6850 | OR DER BY | |
| 6851 | ||
| 6852 | VEP. Source, | |
| 6853 | VEP. MirrorId D ESC | |
| 6854 | ||
| 6855 | -- this SELEC T returns Interface IP and Por t | |
| 6856 | SE LECT | |
| 6857 | ||
| 6858 | I.In terfaceId, | |
| 6859 | I.In terfaceNam e, | |
| 6860 | VEP. EndPointAd dress AS I nterfaceIP Address, | |
| 6861 | VEP. EndPointPo rt AS Inte rfacePortN umber, | |
| 6862 | VEP. MirrorId, | |
| 6863 | ||
| 6864 | dbo. fnTimeZone Conversion DateTime(@ divisionco de, 0, VEP .LastUpdat eDate) AS MirrorDate , | |
| 6865 | ||
| 6866 | VEP. LastUpdate User | |
| 6867 | ||
| 6868 | FR OM | |
| 6869 | ||
| 6870 | dbo. SynMirror_ V_VbecsEnd Point VEP | |
| 6871 | ||
| 6872 | JO IN dbo.Int erface I | |
| 6873 | ON I .VbecsEndP ointId = V EP.VbecsEn dPointId | |
| 6874 | ||
| 6875 | WH ERE | |
| 6876 | ||
| 6877 | VEP. MirrorDate BETWEEN @ startdate AND @endda te | |
| 6878 | AN D VEP.EndP ointType I S NOT NULL | |
| 6879 | ||
| 6880 | OR DER BY | |
| 6881 | ||
| 6882 | VEP. Source, | |
| 6883 | VEP. MirrorId D ESC | |
| 6884 | ||
| 6885 | -- this SELEC T returns Interface Status and Facility ID | |
| 6886 | SE LECT | |
| 6887 | ||
| 6888 | I.In terfaceId, | |
| 6889 | I.In terfaceNam e, | |
| 6890 | VGC. ParameterN ame, | |
| 6891 | VGC. ParameterV alue, | |
| 6892 | VGC. MirrorId, | |
| 6893 | ||
| 6894 | dbo. fnTimeZone Conversion DateTime(@ divisionco de, 0, VGC .LastUpdat eDate) AS MirrorDate , | |
| 6895 | ||
| 6896 | VGC. LastUpdate User | |
| 6897 | ||
| 6898 | FR OM | |
| 6899 | ||
| 6900 | dbo. SynMirror_ V_VbecsGlo balConfig VGC | |
| 6901 | ||
| 6902 | JO IN dbo.Int erface I | |
| 6903 | ON V GC.Paramet erName LIK E I.Config Prefix + ' %' | |
| 6904 | ||
| 6905 | WH ERE | |
| 6906 | ||
| 6907 | VGC. Applicatio nName = 'H L7Service' | |
| 6908 | AN D (VGC .Parameter Name LIKE '%Facility ID' OR VGC .Parameter Name LIKE '%IsActive ') | |
| 6909 | AN D VGC. MirrorDate BETWEEN @ startdate AND @endda te | |
| 6910 | ||
| 6911 | OR DER BY | |
| 6912 | ||
| 6913 | I.In terfaceId, | |
| 6914 | VGC. ParameterN ame, | |
| 6915 | VGC. Source, | |
| 6916 | VGC. MirrorId D ESC | |
| 6917 | ||
| 6918 | --th is SELECT returns Ac kTimeout, ReTransmit Attempts a nd Email t hat are co mmon for a ll interfa ces | |
| 6919 | SE LECT | |
| 6920 | ||
| 6921 | VGC. ParameterN ame, | |
| 6922 | VGC. ParameterV alue, | |
| 6923 | VGC. MirrorId, | |
| 6924 | ||
| 6925 | dbo. fnTimeZone Conversion DateTime(@ divisionco de, 0, VGC .LastUpdat eDate) AS MirrorDate , | |
| 6926 | ||
| 6927 | VGC. LastUpdate User | |
| 6928 | ||
| 6929 | FR OM | |
| 6930 | ||
| 6931 | dbo. SynMirror_ V_VbecsGlo balConfig VGC | |
| 6932 | ||
| 6933 | WH ERE | |
| 6934 | ||
| 6935 | VGC. Applicatio nName = 'H L7Service' | |
| 6936 | AN D VGC. ParameterN ame IN ('V BECS_AckTi meout', 'V BECS_Email AlertAddre ss','VBECS _ReTransmi tAttempts' ) | |
| 6937 | AN D VGC. MirrorDate BETWEEN @ startdate AND @endda te | |
| 6938 | ||
| 6939 | OR DER BY | |
| 6940 | ||
| 6941 | VGC. ParameterN ame, | |
| 6942 | VGC. Source, | |
| 6943 | VGC. MirrorId D ESC | |
| 6944 | ||
| 6945 | SET @ERROR = @@ERROR | |
| 6946 | ||
| 6947 | ||
| 6948 | ||
| 6949 | SPROC_EXIT : | |
| 6950 | ||
| 6951 | SE T NOCOUNT OFF | |
| 6952 | RE TURN(@ERRO R) | |
| 6953 | ||
| 6954 | ||
| 6955 | ||
| 6956 | GO | |
| 6957 | ||
| 6958 | ||
| 6959 | ||
| 6960 | ||
| 6961 | if exists (select * from dbo.s ysobjects where id = object_id (N'[dbo].[ spGetAudit VistALinkC ontrol]') and OBJECT PROPERTY(i d, N'IsPro cedure') = 1) | |
| 6962 | drop proce dure [dbo] .[spGetAud itVistALin kControl] | |
| 6963 | GO | |
| 6964 | ||
| 6965 | ||
| 6966 | SET ANSI_N ULLS ON | |
| 6967 | GO | |
| 6968 | ||
| 6969 | SET QUOTED _IDENTIFIE R ON | |
| 6970 | GO | |
| 6971 | ||
| 6972 | ||
| 6973 | /********* ********** ********** ********** ********** ********** ********** ********** ********** ********** ********** ********** ********** ********** ********** ********** ********** ****** | |
| 6974 | ** De sc: Get VistALink Control au dit inform ation | |
| 6975 | ** | |
| 6976 | ** Au thor: Krzy sztof Dobr anowski | |
| 6977 | ** | |
| 6978 | ** Da te: 02/1 0/2005 | |
| 6979 | ** | |
| 6980 | ********** ********** ********** ********** ********** ********** ********** ********** ********** ********** ********** ********** ********** ********** ********** ********** ********** ***** | |
| 6981 | ** Mo dified: | |
| 6982 | ** Da te Name De scription | |
| 6983 | ** -- ---------- -------- -------- ---------- ----- ---- ---------- ---------- ---------- ---------- ---------- ---------- ---------- ---------- ---------- ---------- ---------- ---------- ---------- ---------- ---------- ---------- ---- | |
| 6984 | ** 07 /14/2005 N.Pate rson ** Reviewe d for comp liance wit h database standards and recom mendations ** | |
| 6985 | Removed Na me/input/o utput from comment h eader, add ed SET NOC OUNT, form atted SQL | |
| 6986 | Changed da te filter from => <= to using BETWEEN, p laced inpu t paramert ers in bra ckets, err or check i nput dates | |
| 6987 | ** 07 /26/2007 K. Dob ranowski Added Vist aDomainNam e to SELEC T statemen t (CR 2267 ) | |
| 6988 | ** 02 /19/2014 C. Jen sen Added VVC. VbecsServi ceIpAddres s, VVC.Vbe csServiceP ortNumber to SELECT statement. (CR 3149) | |
| 6989 | ** 04 /28/2014 K. Adu -Poku ** Reviewe d for comp liance wit h database standards and recom mendations ** | |
| 6990 | ** 09 /30/2016 K. Dob ranowski U pdated spr oc to sele ct values from EndPo int and Gl obalConfig (Defect 3 40457). | |
| 6991 | ** 10 /25/2016 K. Dob ranowski R emoved LEF T from JOI Ns (Defect 340457). | |
| 6992 | ** 02 /13/2017 K. Dob ranowski A dded new S ELECT to g et the bro ker IP and Port (Tas k 459208). | |
| 6993 | ** 02 /14/2017 K. Adu -Poku ** Reviewe d for comp liance wit h database standards and recom mendations ** | |
| 6994 | ********** ********** ********** ********** ********** ********** ********** ********** ********** ********** ********** ********** ********** ********** ********** ********** ********** *****/ | |
| 6995 | ||
| 6996 | CREATE PRO CEDURE [db o].[spGetA uditVistAL inkControl ] | |
| 6997 | ( | |
| 6998 | @s tartdate DATETI ME, | |
| 6999 | @e nddate DATETI ME, | |
| 7000 | @d ivisioncod e CHAR(5 ) | |
| 7001 | ) | |
| 7002 | AS | |
| 7003 | ||
| 7004 | SET NOCOU NT ON | |
| 7005 | /* @E RROR VARIA BLE USED BECAUSE SE T NOCOUNT OFF RESETS THE @@ERR OR TO ZERO */ | |
| 7006 | DECLARE @E RROR INT | |
| 7007 | ||
| 7008 | ||
| 7009 | --Since al l the date s are save d in UTC, start and end data h as to be a djusted fi rst for co rrect comp arison | |
| 7010 | SET @start date = dbo .fnTimeZon eConversio nDateTime( @divisionc ode, 1, @s tartdate) | |
| 7011 | ||
| 7012 | SET @ERROR = @@ERROR | |
| 7013 | IF @ERROR != 0 GOTO SPR OC_EXIT | |
| 7014 | ||
| 7015 | SET @endda te = dbo.f nTimeZoneC onversionD ateTime(@d ivisioncod e, 1, @end date) | |
| 7016 | ||
| 7017 | SET @ERROR = @@ERROR | |
| 7018 | IF @ERROR != 0 GOTO SPR OC_EXIT | |
| 7019 | ||
| 7020 | -- this SELEC T returns VBECS IP a nd Port | |
| 7021 | SE LECT | |
| 7022 | ||
| 7023 | VEP. EndPointAd dress AS V becsServic eIpAddress , | |
| 7024 | VEP. EndPointPo rt AS Vbec sServicePo rtNumber, | |
| 7025 | VEP. MirrorId, | |
| 7026 | ||
| 7027 | dbo. fnTimeZone Conversion DateTime(@ divisionco de, 0, VEP .LastUpdat eDate) AS MirrorDate , | |
| 7028 | ||
| 7029 | VEP. LastUpdate User | |
| 7030 | ||
| 7031 | FR OM | |
| 7032 | ||
| 7033 | dbo. SynMirror_ V_VbecsEnd Point VEP | |
| 7034 | ||
| 7035 | JO IN dbo.Vbe csGlobalCo nfig VGC | |
| 7036 | ON V GC.Paramet erValue = VEP.VbecsE ndPointId AND VGC.Pa rameterNam e = 'VBECS _EndPoint' AND VGC.A pplication Name = 'Vi stALinkSer vice' | |
| 7037 | ||
| 7038 | WH ERE | |
| 7039 | ||
| 7040 | VEP. MirrorDate BETWEEN @ startdate AND @endda te | |
| 7041 | ||
| 7042 | OR DER BY | |
| 7043 | ||
| 7044 | VEP. Source, | |
| 7045 | VEP. MirrorId D ESC | |
| 7046 | ||
| 7047 | -- this SELEC T returns Vista IP a nd Port | |
| 7048 | SE LECT | |
| 7049 | ||
| 7050 | VEP. EndPointAd dress AS V istaIpAddr ess, | |
| 7051 | VEP. EndPointPo rt AS Vist aPortNumbe r, | |
| 7052 | VEP. MirrorId, | |
| 7053 | ||
| 7054 | dbo. fnTimeZone Conversion DateTime(@ divisionco de, 0, VEP .LastUpdat eDate) AS MirrorDate , | |
| 7055 | ||
| 7056 | VEP. LastUpdate User | |
| 7057 | ||
| 7058 | FR OM | |
| 7059 | ||
| 7060 | dbo. SynMirror_ V_VbecsEnd Point VEP | |
| 7061 | ||
| 7062 | JO IN dbo.Vbe csGlobalCo nfig VGC | |
| 7063 | ON V GC.Paramet erValue = VEP.VbecsE ndPointId AND VGC.Pa rameterNam e = 'Inter face_Vista _EndPoint' AND VGC.A pplication Name = 'Vb ecs' | |
| 7064 | ||
| 7065 | WH ERE | |
| 7066 | ||
| 7067 | VEP. MirrorDate BETWEEN @ startdate AND @endda te | |
| 7068 | ||
| 7069 | OR DER BY | |
| 7070 | ||
| 7071 | VEP. Source, | |
| 7072 | VEP. MirrorId D ESC | |
| 7073 | -- this SELEC T returns Broker IP and Port | |
| 7074 | SE LECT | |
| 7075 | ||
| 7076 | VEP. EndPointAd dress AS B rokerIpAdd ress, | |
| 7077 | VEP. EndPointPo rt AS Brok erPortNumb er, | |
| 7078 | VEP. MirrorId, | |
| 7079 | ||
| 7080 | dbo. fnTimeZone Conversion DateTime(@ divisionco de, 0, VEP .LastUpdat eDate) AS MirrorDate , | |
| 7081 | ||
| 7082 | VEP. LastUpdate User | |
| 7083 | ||
| 7084 | FR OM | |
| 7085 | ||
| 7086 | dbo. SynMirror_ V_VbecsEnd Point VEP | |
| 7087 | ||
| 7088 | JO IN dbo.Vbe csGlobalCo nfig VGC | |
| 7089 | ON V GC.Paramet erValue = VEP.VbecsE ndPointId AND VGC.Pa rameterNam e = 'Inter face_Vista _BrokerEnd Point' AND VGC.Appli cationName = 'Vbecs' | |
| 7090 | ||
| 7091 | WH ERE | |
| 7092 | ||
| 7093 | VEP. MirrorDate BETWEEN @ startdate AND @endda te | |
| 7094 | ||
| 7095 | OR DER BY | |
| 7096 | ||
| 7097 | VEP. Source, | |
| 7098 | VEP. MirrorId D ESC | |
| 7099 | ||
| 7100 | SET @ERROR = @@ERROR | |
| 7101 | ||
| 7102 | ||
| 7103 | SPROC_EXIT : | |
| 7104 | ||
| 7105 | SE T NOCOUNT OFF | |
| 7106 | RE TURN(@ERRO R) | |
| 7107 | ||
| 7108 | ||
| 7109 | GO | |
| 7110 | ||
| 7111 | ||
| 7112 | if exists (select * from dbo.s ysobjects where id = object_id (N'[dbo].[ spIncompat ibleCrossm atchResult sExist]') and OBJECT PROPERTY(i d, N'IsPro cedure') = 1) | |
| 7113 | drop proce dure [dbo] .[spIncomp atibleCros smatchResu ltsExist] | |
| 7114 | GO | |
| 7115 | ||
| 7116 | SET ANSI_N ULLS ON | |
| 7117 | GO | |
| 7118 | ||
| 7119 | SET QUOTED _IDENTIFIE R ON | |
| 7120 | GO | |
| 7121 | ||
| 7122 | ||
| 7123 | ||
| 7124 | /********* ********** ********** ********** ********** ********** ********** ********** ********** ********** ********** ********** ********** ********** ********** ********** ********** ****** | |
| 7125 | ** | |
| 7126 | ** De sc: BR_3 .23: | |
| 7127 | ** If t he selecte d unit in the past h as had an incompatib le crossma tch result with the current pa tient, | |
| 7128 | ** disp lay a warn ing messag e: 'Unit h as been pr eviously i ncompatibl e with thi s patient. Please se lect | |
| 7129 | ** a ne w unit'. T he unit is cleared f rom the sc reen and a new unit can be sel ected. | |
| 7130 | ** | |
| 7131 | ** Au thor: Carl Jensen | |
| 7132 | ** | |
| 7133 | ** Da te: 7/10 /2003 | |
| 7134 | ** | |
| 7135 | ********** ********** ********** ********** ********** ********** ********** ********** ********** ********** ********** ********** ********** ********** ********** ********** ********** ***** | |
| 7136 | ** Mo dified: | |
| 7137 | ** Da te Name Descriptio n | |
| 7138 | ** ** ********* ****** * ********** *** | |
| 7139 | ** 06 /08/2004 C. Tay lor Replaced P atientGuid clause wi th fnWhere PatientGui d function , to inclu de possibl e merged p atients | |
| 7140 | ** 01 /13/2005 D. Ask ew Added @las tupdatedat e | |
| 7141 | ** 06 /29/2005 NPater son ** Reviewe d for comp liance wit h database standards and recom mendations ** | |
| 7142 | ** Co mment Head er Adjuste d, Added N OCOUNT, Sp ecified ta ble owners , Removed comments, UPPERCASED SQL | |
| 7143 | ** 07 /19/2005 C. Tay lor Added chec k for inco mpatible r epeat cros smatch res ults | |
| 7144 | ** 07 /22/2005 N.Pate rson Reformatte d SQL to b e easier t o read | |
| 7145 | ** 08 /22/2005 S. Ant ropov ** Reviewe d for comp liance wit h database standards and recom mendations ** | |
| 7146 | ** Perf ormed seco ndary revi ew during the code p romotion - merged ch anges | |
| 7147 | ** 09 /09/2005 D. Ask ew Removed fn WherePatie ntGuid via sub-query using new PatientMe rgeGroup | |
| 7148 | ** 09 /29/2016 C. Jen sen Changed AN D Crossmat chResultCo de IN ('D' , 'I') to AND Crossm atchResult Code IN (' G', 'I') Defect 357 455. | |
| 7149 | ** 02 /14/17 K. Adu -Poku ** Reviewe d for comp liance wit h database standards and recom mendations ** | |
| 7150 | ********** ********** ********** ********** ********** ********** ********** ********** ********** ********** ********** ********** ********** ********** ********** ********** ********** *****/ | |
| 7151 | ||
| 7152 | CREATE PRO CEDURE [db o].[spInco mpatibleCr ossmatchRe sultsExist ] | |
| 7153 | ( | |
| 7154 | @p atientguid UNIQUEID ENTIFIER, | |
| 7155 | @b loodunitgu id UNIQUEID ENTIFIER, | |
| 7156 | @l astupdated ate DATETIME = NULL | |
| 7157 | ) | |
| 7158 | ||
| 7159 | AS | |
| 7160 | ||
| 7161 | SET NOCOUN T ON | |
| 7162 | ||
| 7163 | DECLARE @R eturnValue INT | |
| 7164 | ||
| 7165 | SET @Retur nValue = 0 | |
| 7166 | ||
| 7167 | IF EXISTS ( | |
| 7168 | SELECT 1 | |
| 7169 | FROM | |
| 7170 | dbo. OrderedUni t OU | |
| 7171 | JOIN | |
| 7172 | dbo. OrderedCom ponent OC ON OU.Orde redCompone ntGUID = O C.OrderedC omponentGU ID | |
| 7173 | JOIN | |
| 7174 | dbo. PatientOrd er PO ON O C.PatientO rderGUID = PO.Patien tOrderGUID | |
| 7175 | JOIN | |
| 7176 | dbo. PatientTre atment PT ON PO.Pati entTreatme ntGuid = P T.PatientT reatmentGu id | |
| 7177 | JOIN | |
| 7178 | dbo. Patient P ON P.Pati entGUID =P T.PatientG UID | |
| 7179 | WHERE | |
| 7180 | Bloo dUnitGUID = @bloodun itguid | |
| 7181 | AND P. PatientGUI D IN | |
| 7182 | ( | |
| 7183 | SELECT | |
| 7184 | P.PatientG uid | |
| 7185 | FROM | |
| 7186 | dbo.Patien t P | |
| 7187 | JOIN | |
| 7188 | dbo.Patien t LinkPati ent ON P. PatientMer geGroup = LinkPatien t.PatientM ergeGroup OR P.Patie ntGuid = L inkPatient .PatientGu id | |
| 7189 | WHERE | |
| 7190 | LinkPatien t.PatientG uid = @pat ientguid | |
| 7191 | ) | |
| 7192 | AND Cr ossmatchRe sultCode I N ('G', 'I ') | |
| 7193 | ) | |
| 7194 | SE T @ReturnV alue = 1 | |
| 7195 | ELSE IF EX ISTS ( | |
| 7196 | SELECT 1 | |
| 7197 | FROM | |
| 7198 | dbo. OrderedUni t OU | |
| 7199 | JOIN | |
| 7200 | dbo. OrderedTes t OT ON OU .OrderedTe stGUID = O T.OrderedT estGUID | |
| 7201 | JOIN | |
| 7202 | dbo. PatientOrd er PO ON O T.PatientO rderGUID = PO.Patien tOrderGUID | |
| 7203 | JOIN | |
| 7204 | dbo. PatientTre atment PT ON PO.Pati entTreatme ntGuid = P T.PatientT reatmentGu id | |
| 7205 | JOIN | |
| 7206 | dbo. Patient P ON P.Patie ntGUID =PT .PatientGU ID | |
| 7207 | WHERE | |
| 7208 | Bloo dUnitGUID = @bloodun itguid | |
| 7209 | AND P. PatientGUI D IN | |
| 7210 | ( | |
| 7211 | SELECT | |
| 7212 | P.PatientG uid | |
| 7213 | FROM | |
| 7214 | dbo.Patien t P | |
| 7215 | JOIN | |
| 7216 | dbo.Patien t LinkPati ent ON P. PatientMer geGroup = LinkPatien t.PatientM ergeGroup OR P.Patie ntGuid = L inkPatient .PatientGu id | |
| 7217 | WHERE | |
| 7218 | LinkPatien t.PatientG uid = @pat ientguid | |
| 7219 | ) | |
| 7220 | AND Cr ossmatchRe sultCode I N ('G', 'I ') | |
| 7221 | ) | |
| 7222 | SE T @ReturnV alue = 1 | |
| 7223 | ||
| 7224 | SET NOCOUN T OFF | |
| 7225 | ||
| 7226 | RETURN(@Re turnValue) | |
| 7227 | ||
| 7228 | GO | |
| 7229 | ||
| 7230 | ||
| 7231 | if exists (select * from dbo.s ysobjects where id = object_id (N'[dbo].[ vw_BloodUn itsWithAnt igensIdent ified]') a nd OBJECTP ROPERTY(id , N'IsView ') = 1) | |
| 7232 | drop view [dbo].[vw_ BloodUnits WithAntige nsIdentifi ed] | |
| 7233 | GO | |
| 7234 | ||
| 7235 | ||
| 7236 | SET ANSI_N ULLS ON | |
| 7237 | GO | |
| 7238 | ||
| 7239 | SET QUOTED _IDENTIFIE R ON | |
| 7240 | GO | |
| 7241 | ||
| 7242 | ||
| 7243 | /********* ********** ********** ********** ********** ********** ********** ********** ********** ********** ********** ******** | |
| 7244 | ** | |
| 7245 | ** Desc: Returns active blo od units w ith identi fied antig ens | |
| 7246 | ** | |
| 7247 | ** Author : Stas Ant ropov | |
| 7248 | ** | |
| 7249 | ** Date: 07/19/20 05 | |
| 7250 | ** | |
| 7251 | ********** ********** ********** ********** ********** ********** ********** ********** ********** ********** ********** ********** ********** ********** ********* | |
| 7252 | ** Modifi ed: | |
| 7253 | ** Da te Name Descriptio n | |
| 7254 | ** -- -------- -------- ----- ---- ---------- ------ | |
| 7255 | ** 11 /28/2008 M. Smi th Added dbo prefix to view name (CR 2503) | |
| 7256 | ** 12 /17/2008 K. Adu -Poku ** Reviewe d for comp liance wit h database standards and recom mendations ** | |
| 7257 | ** 01 /26/2017 K. Dob ranowski M odified JO IN ON Anti seraWorkli stTyping t o LEFT JOI N (Defect 434762) | |
| 7258 | ** 01 /26/2017 K. Adu -Poku ** Reviewe d for comp liance wit h database standards and recom mendations ** | |
| 7259 | ********** ********** ********** ********** ********** ********** ********** ********** ********** ********** ********** ********** ********** ********** *********/ | |
| 7260 | CREATE VI EW [dbo].[ vw_BloodUn itsWithAnt igensIdent ified] | |
| 7261 | AS | |
| 7262 | ||
| 7263 | SELECT DISTINCT | |
| 7264 | dbo.Bloo dUnit.Bloo dUnitGuid, | |
| 7265 | dbo.Anti genType.An tigenTypeI D, | |
| 7266 | dbo.Anti genType.An tigenTypeN ame + | |
| 7267 | (CASE WH EN dbo.Blo odUnitAnti gen.Positi ve = 1 THE N ' Pos' E LSE ' Neg' END) as A ntigenType Name | |
| 7268 | FROM | |
| 7269 | dbo.Bloo dUnit | |
| 7270 | JOIN | |
| 7271 | dbo.Bloo dUnitAntig en ON dbo. BloodUnit. BloodUnitG uid = dbo. BloodUnitA ntigen.Blo odUnitGuid | |
| 7272 | JOIN | |
| 7273 | dbo.Anti genType ON dbo.Antig enType.Ant igenTypeID = dbo.Blo odUnitAnti gen.Antige nTypeID | |
| 7274 | WHERE | |
| 7275 | dbo.Bloo dUnitAntig en.RecordS tatusCode = 'A' | |
| 7276 | AN D dbo.Bloo dUnit.Reco rdStatusCo de = 'A' | |
| 7277 | ||
| 7278 | UNION | |
| 7279 | ||
| 7280 | SELECT DISTINCT | |
| 7281 | dbo.Bloo dUnit.Bloo dUnitGuid, | |
| 7282 | dbo.Anti genType.An tigenTypeI D, | |
| 7283 | dbo.Anti genType.An tigenTypeN ame + ' ' + dbo.Test Result.Tes tResultTex t COLLATE SQL_Latin1 _General_C P1_CS_AS a s AntigenT ypeName | |
| 7284 | FROM | |
| 7285 | dbo.Bloo dUnitTest | |
| 7286 | JOIN | |
| 7287 | dbo.Test Result ON dbo.BloodU nitTest.Te stResultID = dbo.Tes tResult.Te stResultID | |
| 7288 | JOIN | |
| 7289 | dbo.Bloo dUnit ON d bo.BloodUn itTest.Blo odUnitGUID = dbo.Blo odUnit.Blo odUnitGuid | |
| 7290 | LEFT J OIN | |
| 7291 | dbo.Anti seraWorkli stTyping O N dbo.Bloo dUnitTest. AntiseraWo rklistTypi ngGUID = d bo.Antiser aWorklistT yping.Anti seraWorkli stTypingGU ID | |
| 7292 | JOIN | |
| 7293 | dbo.Anti genTest ON dbo.Blood UnitTest.B loodTestTy peID = dbo .AntigenTe st.BloodTe stTypeID | |
| 7294 | JOIN | |
| 7295 | dbo.Anti genType ON dbo.Antig enType.Ant igenTypeID = dbo.Ant igenTest.A ntigenType ID | |
| 7296 | WHERE | |
| 7297 | dbo.Bloo dUnitTest. RecordStat usCode = ' A' | |
| 7298 | AN D dbo.Bloo dUnit.Reco rdStatusCo de = 'A' | |
| 7299 | ||
| 7300 | ||
| 7301 | ||
| 7302 | ||
| 7303 | ||
| 7304 | ||
| 7305 | ||
| 7306 | ||
| 7307 | GO | |
| 7308 | ||
| 7309 | ||
| 7310 | ||
| 7311 | --Permissi ons | |
| 7312 | ||
| 7313 | GRANT EXEC UTE ON [d bo].[spGet VbecsUserD ivisionsAn dRoles] TO [VbecsApp User] | |
| 7314 | GO | |
| 7315 | ||
| 7316 | GRANT EXEC UTE ON [d bo].[spIns ertVamcDiv isionBase] TO [Vbecs AppUser] | |
| 7317 | GO | |
| 7318 | ||
| 7319 | GRANT EXEC UTE ON [d bo].[spUpd ateVamcDiv isionBase] TO [Vbecs AppUser] | |
| 7320 | GO | |
| 7321 | ||
| 7322 | GRANT EXEC UTE ON [d bo].[spGet Division] TO [VbecsA ppUser] | |
| 7323 | GO | |
| 7324 | ||
| 7325 | GRANT EXEC UTE ON [d bo].[spGet VbecsGloba lConfigVal ue] TO [Vb ecsAppUser ] | |
| 7326 | GO | |
| 7327 | ||
| 7328 | GRANT EXEC UTE ON [d bo].[spGet AllVbecsGl obalConfig Value] TO [VbecsAppU ser] | |
| 7329 | GO | |
| 7330 | ||
| 7331 | GRANT EXEC UTE ON [d bo].[spGet AuditDivis ion] TO [V becsAppUse r] | |
| 7332 | GO | |
| 7333 | ||
| 7334 | GRANT EXEC UTE ON [d bo].[spVis taGetXmlBl oodBankDat a] TO [Vbe csAppUser] | |
| 7335 | GO | |
| 7336 | ||
| 7337 | GRANT EXEC UTE ON [d bo].[spGet AuditInter faceContro l] TO [Vbe csAppUser] | |
| 7338 | GO | |
| 7339 | ||
| 7340 | GRANT EXEC UTE ON [d bo].[spGet AuditVistA LinkContro l] TO [Vbe csAppUser] | |
| 7341 | GO | |
| 7342 | ||
| 7343 | GRANT EXEC UTE ON [d bo].[spInc ompatibleC rossmatchR esultsExis t] TO [Vbe csAppUser] | |
| 7344 | GO | |
| 7345 | ||
| 7346 | GRANT SELE CT ON [db o].[V_Line arInterfac e] TO [Vbe csAppUser] | |
| 7347 | GO | |
| 7348 | ||
| 7349 | GRANT SELE CT ON [db o].[vw_Blo odUnitsWit hAntigensI dentified] TO [Vbecs AppUser] | |
| 7350 | GO | |
| 7351 | ||
| 7352 | --Adding B lood Produ ct Changes formerly 2.2.0.2 Re vB changes | |
| 7353 | ||
| 7354 | -- Delete rows from [dbo].[Blo odProductM odificatio n] | |
| 7355 | DELE TE FROM [d bo].[Blood ProductMod ification] WHERE [Bl oodProduct Modificati onGuid]='1 e68cdd4-e7 24-4008-96 10-37dde4c c28a3' | |
| 7356 | DELE TE FROM [d bo].[Blood ProductMod ification] WHERE [Bl oodProduct Modificati onGuid]='6 0b9c13e-8c 81-4a66-aa f0-40e137d 70fe2' | |
| 7357 | DELE TE FROM [d bo].[Blood ProductMod ification] WHERE [Bl oodProduct Modificati onGuid]='8 a7d8dda-46 64-40f7-bd 9d-58d4257 32a60' | |
| 7358 | DELE TE FROM [d bo].[Blood ProductMod ification] WHERE [Bl oodProduct Modificati onGuid]='d 0e67254-0b 8b-41bc-82 51-70b2726 f61f7' | |
| 7359 | DELE TE FROM [d bo].[Blood ProductMod ification] WHERE [Bl oodProduct Modificati onGuid]='c 63c3caa-bf c5-4880-ac d6-75d2f8f bd1e7' | |
| 7360 | DELE TE FROM [d bo].[Blood ProductMod ification] WHERE [Bl oodProduct Modificati onGuid]='8 73a5910-f3 f2-41ad-98 ac-8caf26c 2e0f6' | |
| 7361 | DELE TE FROM [d bo].[Blood ProductMod ification] WHERE [Bl oodProduct Modificati onGuid]='7 6a9121b-4b 27-4e98-ba ae-9b8c226 888cf' | |
| 7362 | DELE TE FROM [d bo].[Blood ProductMod ification] WHERE [Bl oodProduct Modificati onGuid]='2 ec37cd3-3b f9-4036-a0 64-a098290 26590' | |
| 7363 | DELE TE FROM [d bo].[Blood ProductMod ification] WHERE [Bl oodProduct Modificati onGuid]='a 27e655c-88 79-4ece-8a d8-a725ec4 6eafb' | |
| 7364 | DELE TE FROM [d bo].[Blood ProductMod ification] WHERE [Bl oodProduct Modificati onGuid]='b e5244fc-05 d8-49ef-a7 7e-b8e9153 476b5' | |
| 7365 | DELE TE FROM [d bo].[Blood ProductMod ification] WHERE [Bl oodProduct Modificati onGuid]='0 e4700e9-7a 41-4d9b-b8 0a-c461ea2 77293' | |
| 7366 | DELE TE FROM [d bo].[Blood ProductMod ification] WHERE [Bl oodProduct Modificati onGuid]='f 01c0894-e4 fd-4f73-a9 f8-c4bf85d 9e4a6' | |
| 7367 | DELE TE FROM [d bo].[Blood ProductMod ification] WHERE [Bl oodProduct Modificati onGuid]='2 e29495e-29 3b-4c3b-b1 6d-eaccbac ab863' | |
| 7368 | DELE TE FROM [d bo].[Blood ProductMod ification] WHERE [Bl oodProduct Modificati onGuid]='4 39317fc-b1 21-4488-b1 ec-fbb4b0e 07dba' | |
| 7369 | -- O peration a pplied to 14 rows ou t of 14 | |
| 7370 | ||
| 7371 | -- U pdate rows in [dbo]. [BloodProd uctModific ation] | |
| 7372 | UPDATE [db o].[BloodP roductModi fication] SET [Expir ationDateR ule]=24, [ LastUpdate Date]='201 6-07-27 11 :17:06.000 ', [LastUp dateUser]= ' RED A CTED ' WHERE [B loodProduc tModificat ionGuid]=' 5e20a657-c 397-461a-8 964-0819f0 d1da46' | |
| 7373 | UPDATE [db o].[BloodP roductModi fication] SET [Expir ationDateR ule]=24, [ LastUpdate Date]='201 6-07-27 11 :17:06.000 ', [LastUp dateUser]= ' RED A CTED ' WHERE [B loodProduc tModificat ionGuid]=' c4021584-5 8b2-465c-b eaf-3f3553 30ee36' | |
| 7374 | UPDATE [db o].[BloodP roductModi fication] SET [Expir ationDateR ule]=24, [ LastUpdate Date]='201 6-07-27 11 :17:06.000 ', [LastUp dateUser]= ' RED A CTED ' WHERE [B loodProduc tModificat ionGuid]=' 02500799-f e01-4b59-8 e93-86e4d3 fd57e0' | |
| 7375 | UPDATE [db o].[BloodP roductModi fication] SET [Expir ationDateR ule]=24, [ LastUpdate Date]='201 6-07-27 11 :17:06.000 ', [LastUp dateUser]= ' RED A CTED ' WHERE [B loodProduc tModificat ionGuid]=' d4c1bf83-f f57-4b49-b b6f-91485e bd88ec' | |
| 7376 | UPDATE [db o].[BloodP roductModi fication] SET [Expir ationDateR ule]=4, [L astUpdateD ate]='2016 -07-27 11: 17:06.000' , [LastUpd ateUser]=' RED A CTED ' WHERE [B loodProduc tModificat ionGuid]=' 07c18d8a-7 bc1-4cd7-9 c62-93b082 84e3e6' | |
| 7377 | UPDATE [db o].[BloodP roductModi fication] SET [Expir ationDateR ule]=24, [ LastUpdate Date]='201 6-07-27 11 :17:06.000 ', [LastUp dateUser]= ' RED A CTED ' WHERE [B loodProduc tModificat ionGuid]=' ad44cd81-d 5ea-4ad3-a e02-9a8f83 435973' | |
| 7378 | -- O peration a pplied to 6 rows out of 6 | |
| 7379 | ||
| 7380 | -- U pdate rows in [dbo]. [BloodProd uct] | |
| 7381 | UPDATE [db o].[BloodP roduct] SE T [Product Name]='Aph eresis FRE SH FROZEN PLASMA|NS/ XX/<=-30C| For mnf:no ninjectabl e|ResLeu:< 1E6|Frozen <=48h', [ LastUpdate Date]='201 6-07-27 11 :17:06.000 ', [LastUp dateUser]= ' RED A CTED ' WHERE [B loodProduc tGuid]='f7 511bf5-313 6-46c6-804 8-0002d234 403c' | |
| 7382 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLT AFR ACD-B PLS Red 1C', [ LastUpdate Date]='201 6-07-27 11 :17:06.000 ', [LastUp dateUser]= ' RED A CTED ' WHERE [B loodProduc tGuid]='5f 744803-a8c 7-4be8-b57 b-000dc9f2 62b9' | |
| 7383 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='FFP AFR None 3C', [LastUpdat eDate]='20 16-07-27 1 1:17:06.00 0', [LastU pdateUser] =' RED A CTED ' WHERE [B loodProduc tGuid]='2d 813e55-2ce 3-41e5-b6d b-00129a64 67b2' | |
| 7384 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLT AFR ACD-A NMT 1C', [Last UpdateDate ]='2016-07 -27 11:17: 06.000', [ LastUpdate User]=' RED A CTED ' WHERE [B loodProduc tGuid]='e9 5ecb89-ab1 c-4281-b11 6-00359945 3ee1' | |
| 7385 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC AFR Deg None O PN 7C', [L astUpdateD ate]='2016 -07-27 11: 17:06.000' , [LastUpd ateUser]=' RED A CTED ' WHERE [B loodProduc tGuid]='fa f0bec7-9a8 e-4d67-8a1 7-003edd51 8e1c' | |
| 7386 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLT AFR ACD-B MNFN I 1C', [La stUpdateDa te]='2016- 07-27 11:1 7:06.000', [LastUpda teUser]=' RED A CTED ' WHERE [B loodProduc tGuid]='58 3d0f67-65b a-48eb-851 f-00538406 88ac' | |
| 7387 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC AFR CP2D>AS3 O PN IRD LUK OPR ALB Ad d 1C', [La stUpdateDa te]='2016- 07-27 11:1 7:06.000', [LastUpda teUser]=' RED A CTED ' WHERE [B loodProduc tGuid]='fb d6f05f-03a a-4933-b89 7-005d13eb bd92' | |
| 7388 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLT AFR PAS-D LUKO PR 3C BacM tr', [Last UpdateDate ]='2016-07 -27 11:17: 06.000', [ LastUpdate User]=' RED A CTED ' WHERE [B loodProduc tGuid]='4f 609bce-199 4-43c0-abc 5-00797f5e cb87' | |
| 7389 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='FFP AFR CP2D IRD 1 C', [LastU pdateDate] ='2016-07- 27 11:17:0 6.000', [L astUpdateU ser]=' RED A CTED ' WHERE [B loodProduc tGuid]='d8 38e572-c8b c-489d-85e a-007ab19d ea5e' | |
| 7390 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='FFP AFR Thaw CP2D IRD 3C', [ LastUpdate Date]='201 6-07-27 11 :17:06.000 ', [LastUp dateUser]= ' RED A CTED ' WHERE [B loodProduc tGuid]='a3 a81e76-489 1-497e-94a 6-009e0668 4c19' | |
| 7391 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='WB CPDA- 1 IRD 1C', [LastUpda teDate]='2 016-07-27 11:17:06.0 00', [Last UpdateUser ]=' RED A CTED ' WHERE [B loodProduc tGuid]='40 4050f7-b7c b-46f2-ae9 2-00a9727e d76c' | |
| 7392 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC AFR CP2D>AS3 L UKOPR 5C', [LastUpda teDate]='2 016-07-27 11:17:06.0 00', [Last UpdateUser ]=' RED A CTED ' WHERE [B loodProduc tGuid]='99 ff5ca3-93d f-40bb-938 4-00b0e1d0 cca9' | |
| 7393 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLT AFR Thaw DMSO OPN IRD 2C NA', [Last UpdateDate ]='2016-07 -27 11:17: 06.000', [ LastUpdate User]=' RED A CTED ' WHERE [B loodProduc tGuid]='6c dfa3c0-8bc 1-4ecc-bd4 9-00ba5619 a3dd' | |
| 7394 | UPDATE [db o].[BloodP roduct] SE T [Product Name]='Fro zen Aphere sis PLATEL ETS|DMSO/X X/<=-80C|O pen|ResLeu :<1E6|Psor alen-treat ed', [Last UpdateDate ]='2016-07 -27 11:17: 06.000', [ LastUpdate User]=' RED A CTED ' WHERE [B loodProduc tGuid]='51 e7a037-8be 1-47f6-84a f-00c7f906 d08d' | |
| 7395 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLT AFR NS IRD LUK OPR 2C', [ LastUpdate Date]='201 6-07-27 11 :17:06.000 ', [LastUp dateUser]= ' RED A CTED ' WHERE [B loodProduc tGuid]='19 5c1032-be1 9-4459-9f5 9-00d63999 7b50' | |
| 7396 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='FFP AFR None QUAR 2C', [Last UpdateDate ]='2016-07 -27 11:17: 06.000', [ LastUpdate User]=' RED A CTED ' WHERE [B loodProduc tGuid]='9d c632dd-5e3 1-43b0-8d3 b-00dbaee1 4a9c' | |
| 7397 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLT AFR PAS-C MNFI LUKOPR 4C ', [LastUp dateDate]= '2016-07-2 7 11:17:06 .000', [La stUpdateUs er]=' RED A CTED ' WHERE [B loodProduc tGuid]='8c 84bc25-06c 9-4bd4-81b 6-00e3b885 7610' | |
| 7398 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC AFR Deg None O PN 1C', [L astUpdateD ate]='2016 -07-27 11: 17:06.000' , [LastUpd ateUser]=' RED A CTED ' WHERE [B loodProduc tGuid]='7c 466828-b52 2-4dc4-961 0-01045a3d 6257' | |
| 7399 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC CPD IRD LUKOPR 3C', [Las tUpdateDat e]='2016-0 7-27 11:17 :06.000', [LastUpdat eUser]=' RED A CTED ' WHERE [B loodProduc tGuid]='7b 24b30c-b62 8-4e5b-a79 5-01069472 0a6b' | |
| 7400 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC CPD> AS1 IRD 8C ', [LastUp dateDate]= '2016-07-2 7 11:17:06 .000', [La stUpdateUs er]=' RED A CTED ' WHERE [B loodProduc tGuid]='7a 74f83a-1bf 5-4567-a41 1-01305f7b 703a' | |
| 7401 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLT AFR ACD-A LUKO PR PLS Red 4C', [Las tUpdateDat e]='2016-0 7-27 11:17 :06.000', [LastUpdat eUser]=' RED A CTED ' WHERE [B loodProduc tGuid]='07 1c9183-124 f-4956-84d 5-0146dfc5 538c' | |
| 7402 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC AFR CP2D>AS3 2 C', [LastU pdateDate] ='2016-07- 27 11:17:0 6.000', [L astUpdateU ser]=' RED A CTED ' WHERE [B loodProduc tGuid]='86 7966e8-277 7-47c0-877 f-014a1b0b d3df' | |
| 7403 | UPDATE [db o].[BloodP roduct] SE T [Product Name]='Fro zen Aphere sis PLATEL ETS|DMSO/X X/<=-80C|O pen', [Las tUpdateDat e]='2016-0 7-27 11:17 :06.000', [LastUpdat eUser]=' RED A CTED ' WHERE [B loodProduc tGuid]='79 f2764e-62d 0-4671-9ad 1-014b972e 5969' | |
| 7404 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLT AFR ACD-B OPN IRD LUKOPR PLS Red 1 CNA', [Las tUpdateDat e]='2016-0 7-27 11:17 :06.000', [LastUpdat eUser]=' RED A CTED ' WHERE [B loodProduc tGuid]='59 907475-59c f-432b-908 7-01523ce7 4582' | |
| 7405 | UPDATE [db o].[BloodP roduct] SE T [Product Name]='FRE SH FROZEN PLASMA|CPD /350mL/<=- 30C', [Las tUpdateDat e]='2016-0 7-27 11:17 :06.000', [LastUpdat eUser]=' RED A CTED ' WHERE [B loodProduc tGuid]='09 8a3133-e1c f-4c0e-9d6 9-015dc0e4 33eb' | |
| 7406 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLT AFR ACD-B NMT OPN 1C', [ LastUpdate Date]='201 6-07-27 11 :17:06.000 ', [LastUp dateUser]= ' RED A CTED ' WHERE [B loodProduc tGuid]='82 c67c6f-988 7-4509-b18 e-016b454e 4d06' | |
| 7407 | UPDATE [db o].[BloodP roduct] SE T [Product Name]='Aph eresis FRE SH FROZEN PLASMA|ACD -A/XX/<=-6 5C|3rd con tainer|Qua r:>=112d/r etested', [ProductSh ortName]=' FFP AFR AC D-A 3C QUA R', [LastU pdateDate] ='2016-07- 27 11:17:0 6.000', [L astUpdateU ser]=' RED A CTED ' WHERE [B loodProduc tGuid]='61 ab2176-fb9 7-437c-b1a 4-0171db4f 0f86' | |
| 7408 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC AFR CP2D OPN I RD SR 1C', [LastUpda teDate]='2 016-07-27 11:17:06.0 00', [Last UpdateUser ]=' RED A CTED ' WHERE [B loodProduc tGuid]='87 a6aa63-824 d-4918-b26 b-01960469 100f' | |
| 7409 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC AFR CPD>AS1 OP N IRD LUKO PR SR 2C', [LastUpda teDate]='2 016-07-27 11:17:06.0 00', [Last UpdateUser ]=' RED A CTED ' WHERE [B loodProduc tGuid]='d3 d809fc-990 4-4ca7-a86 3-019b2892 ec9f' | |
| 7410 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLASMA A FR ACD-A 3 C', [LastU pdateDate] ='2016-07- 27 11:17:0 6.000', [L astUpdateU ser]=' RED A CTED ' WHERE [B loodProduc tGuid]='e3 a1fec2-b7a 6-4773-ab1 0-01a72e17 0eca' | |
| 7411 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLT AFR ACD-A IRD 6C', [Last UpdateDate ]='2016-07 -27 11:17: 06.000', [ LastUpdate User]=' RED A CTED ' WHERE [B loodProduc tGuid]='05 528312-299 a-49a4-a0e c-01c5057e 247a' | |
| 7412 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='FFP AFR Thaw NaCit 6C', [Las tUpdateDat e]='2016-0 7-27 11:17 :06.000', [LastUpdat eUser]=' RED A CTED ' WHERE [B loodProduc tGuid]='6e 43d868-596 3-4a36-927 6-01dd0a4a ac03' | |
| 7413 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC Deg Rej None O PN 2C', [L astUpdateD ate]='2016 -07-27 11: 17:06.000' , [LastUpd ateUser]=' RED A CTED ' WHERE [B loodProduc tGuid]='bc ef76b1-613 a-449d-ad1 8-01e0efd8 b493' | |
| 7414 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC AFR CP2D>AS3 I RD LUKOPR 1C', [Last UpdateDate ]='2016-07 -27 11:17: 06.000', [ LastUpdate User]=' RED A CTED ' WHERE [B loodProduc tGuid]='70 6144a6-cd5 0-4f92-8a8 d-01f9b6db 5212' | |
| 7415 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC AFR CP2D>AS3 S R/PA 1C', [LastUpdat eDate]='20 16-07-27 1 1:17:06.00 0', [LastU pdateUser] =' RED A CTED ' WHERE [B loodProduc tGuid]='da 80a69e-187 7-4c19-b4d 8-02167dd3 fa3c' | |
| 7416 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC CPD> AS1 IRD 3C ', [LastUp dateDate]= '2016-07-2 7 11:17:06 .000', [La stUpdateUs er]=' RED A CTED ' WHERE [B loodProduc tGuid]='82 4b7edd-711 3-4bb0-a65 4-022a635d dcd6' | |
| 7417 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLT AFR NS OPN LUK OPR 3C', [ LastUpdate Date]='201 6-07-27 11 :17:06.000 ', [LastUp dateUser]= ' RED A CTED ' WHERE [B loodProduc tGuid]='63 6e0e7e-334 8-4a77-981 f-023cad1a d338' | |
| 7418 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLT AFR ACD-B OPN LUKOPR 3C' , [LastUpd ateDate]=' 2016-07-27 11:17:06. 000', [Las tUpdateUse r]=' RED A CTED ' WHERE [B loodProduc tGuid]='78 bf99e9-e3d 1-45e2-9bc 7-02578767 eb28' | |
| 7419 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC Deg Rej None O PN IRD LUK OPR 8C', [ LastUpdate Date]='201 6-07-27 11 :17:06.000 ', [LastUp dateUser]= ' RED A CTED ' WHERE [B loodProduc tGuid]='18 8c0162-35a 0-4e79-899 8-0258bd6d 5053' | |
| 7420 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLT AFR ACD-A IRD LUKOPR 7C' , [LastUpd ateDate]=' 2016-07-27 11:17:06. 000', [Las tUpdateUse r]=' RED A CTED ' WHERE [B loodProduc tGuid]='4c e1ad4d-4e4 a-490a-af9 8-0269e1c6 131a' | |
| 7421 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLT AFR ACD-A IRD LUKOPR 1C BacMtr', [ LastUpdate Date]='201 6-07-27 11 :17:06.000 ', [LastUp dateUser]= ' RED A CTED ' WHERE [B loodProduc tGuid]='47 d0593b-cf7 2-4c31-a96 a-0275d808 134c' | |
| 7422 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLT AFR ACD-A OPN IRD LUKOPR 2C', [Las tUpdateDat e]='2016-0 7-27 11:17 :06.000', [LastUpdat eUser]=' RED A CTED ' WHERE [B loodProduc tGuid]='a3 d6398a-5ca b-4b4a-9d2 e-0288effc f01e' | |
| 7423 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLT AFR NS LUKOPR 3C', [Last UpdateDate ]='2016-07 -27 11:17: 06.000', [ LastUpdate User]=' RED A CTED ' WHERE [B loodProduc tGuid]='a5 9ffaef-a8f c-4f4b-8f8 9-02899aed f7dc' | |
| 7424 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC AFR ACD-A MNFI OPN 2C', [LastUpdat eDate]='20 16-07-27 1 1:17:06.00 0', [LastU pdateUser] =' RED A CTED ' WHERE [B loodProduc tGuid]='a1 84dbca-fae 5-4035-844 5-028db3a5 a370' | |
| 7425 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLT AFR Thaw DMSO OPN LUKOPR PA 2C', [ LastUpdate Date]='201 6-07-27 11 :17:06.000 ', [LastUp dateUser]= ' RED A CTED ' WHERE [B loodProduc tGuid]='ad 652829-d54 1-41c5-aa4 9-028ff30f f981' | |
| 7426 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC AFR ACD-A>AS1 IRD 1C', [ LastUpdate Date]='201 6-07-27 11 :17:06.000 ', [LastUp dateUser]= ' RED A CTED ' WHERE [B loodProduc tGuid]='21 1d5149-05f a-4152-b2c d-0296c9b7 a7c4' | |
| 7427 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC AFR ACD-A>AS3 6C', [Last UpdateDate ]='2016-07 -27 11:17: 06.000', [ LastUpdate User]=' RED A CTED ' WHERE [B loodProduc tGuid]='10 5c0e5a-ace 7-4178-9f0 5-02988457 01ef' | |
| 7428 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLT AFR Thaw DMSO OPN LUKOPR SR/PA 1C' , [LastUpd ateDate]=' 2016-07-27 11:17:06. 000', [Las tUpdateUse r]=' RED A CTED ' WHERE [B loodProduc tGuid]='df 3c69c7-845 8-4c5c-92d 2-02af6863 1d53' | |
| 7429 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLT AFR ACD-A>PAS- C IRD LUKO PR 3C', [L astUpdateD ate]='2016 -07-27 11: 17:06.000' , [LastUpd ateUser]=' RED A CTED ' WHERE [B loodProduc tGuid]='5f 4f5429-ffe 7-44f9-a1d c-02b7a768 f72b' | |
| 7430 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC AFR CP2D>AS3 6 C', [LastU pdateDate] ='2016-07- 27 11:17:0 6.000', [L astUpdateU ser]=' RED A CTED ' WHERE [B loodProduc tGuid]='66 ab7ef6-9dd d-4958-87e 2-02b85ac7 8325' | |
| 7431 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLT AFR ACD-A IRD LUKOPR 8C' , [LastUpd ateDate]=' 2016-07-27 11:17:06. 000', [Las tUpdateUse r]=' RED A CTED ' WHERE [B loodProduc tGuid]='3e dd6947-fda 6-4c4d-95c a-02d3233b c595' | |
| 7432 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLT AFR Wash NS LU KOPR 1C', [LastUpdat eDate]='20 16-07-27 1 1:17:06.00 0', [LastU pdateUser] =' RED A CTED ' WHERE [B loodProduc tGuid]='a6 0e16bc-df1 5-410b-af2 a-02f7be51 455b' | |
| 7433 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='FFP AFR Thaw None 2C', [Last UpdateDate ]='2016-07 -27 11:17: 06.000', [ LastUpdate User]=' RED A CTED ' WHERE [B loodProduc tGuid]='5f ff13bd-072 3-4b43-bbc 2-031d2b5d d83e' | |
| 7434 | UPDATE [db o].[BloodP roduct] SE T [Product Name]='Fro zen RED BL OOD CELLS| Gly40%/450 mL/<=-65C| Open|ResLe u:<1E6,WB filtr', [L astUpdateD ate]='2016 -07-27 11: 17:06.000' , [LastUpd ateUser]=' RED A CTED ' WHERE [B loodProduc tGuid]='a8 7f0df9-d7f 8-4951-950 6-03384413 e8b0' | |
| 7435 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC AFR ACD-A>AS3 IRD 6C', [ LastUpdate Date]='201 6-07-27 11 :17:06.000 ', [LastUp dateUser]= ' RED A CTED ' WHERE [B loodProduc tGuid]='39 d7c8f8-bbc 1-471c-aa4 9-0347535f 532a' | |
| 7436 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC AFR ACD-A OPN LUKOPR SR/ PA 2C', [L astUpdateD ate]='2016 -07-27 11: 17:06.000' , [LastUpd ateUser]=' RED A CTED ' WHERE [B loodProduc tGuid]='70 f09ae1-11b c-4ae3-baf 0-034cde02 878c' | |
| 7437 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLT AFR ACD-A IRD LUKOPR 7C BacMtr', [ LastUpdate Date]='201 6-07-27 11 :17:06.000 ', [LastUp dateUser]= ' RED A CTED ' WHERE [B loodProduc tGuid]='96 17d91c-db5 f-49aa-83c 9-035d1f74 598e' | |
| 7438 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='WB CPDA- 1 6C', [La stUpdateDa te]='2016- 07-27 11:1 7:06.000', [LastUpda teUser]=' RED A CTED ' WHERE [B loodProduc tGuid]='c1 2b66f1-fcd 9-4594-910 8-035d6871 efb0' | |
| 7439 | UPDATE [db o].[BloodP roduct] SE T [Product Name]='POO LED PLASMA |CPD/450mL /<=-30C|Cr yo reduced |Frozen <= 6h|2 units ', [Produc tShortName ]='PLASMA Pool CPD C RYORed 2U' , [LastUpd ateDate]=' 2016-07-27 11:17:06. 000', [Las tUpdateUse r]=' RED A CTED ' WHERE [B loodProduc tGuid]='e6 f525f9-63d 5-4a3e-a53 e-037cbcde 5454' | |
| 7440 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC AFR Deg None O PN IRD LUK OPR 2C', [ LastUpdate Date]='201 6-07-27 11 :17:06.000 ', [LastUp dateUser]= ' RED A CTED ' WHERE [B loodProduc tGuid]='05 1df4f3-023 e-45a6-85b 9-03866d05 ef7e' | |
| 7441 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLT AFR ACD-A>PAS- C IRD LUKO PR 1C Pedi ', [LastUp dateDate]= '2016-07-2 7 11:17:06 .000', [La stUpdateUs er]=' RED A CTED ' WHERE [B loodProduc tGuid]='a7 ec8df8-c4b 1-4b13-a85 d-03884647 4bd8' | |
| 7442 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC AFR ACD-A OPN 1C', [Last UpdateDate ]='2016-07 -27 11:17: 06.000', [ LastUpdate User]=' RED A CTED ' WHERE [B loodProduc tGuid]='ff 375825-7ea d-4fe5-9b5 d-039a1e07 e6f9' | |
| 7443 | UPDATE [db o].[BloodP roduct] SE T [Product Name]='FRE SH FROZEN PLASMA|CPD /450mL/<=- 30C|For mn f:injectab le|ResLeu: <1E6', [La stUpdateDa te]='2016- 07-27 11:1 7:06.000', [LastUpda teUser]=' RED A CTED ' WHERE [B loodProduc tGuid]='fc a0eeca-2ea c-4ab5-8d4 6-03c9979f 5c3e' | |
| 7444 | UPDATE [db o].[BloodP roduct] SE T [Product Name]='Aph eresis FRE SH FROZEN PLASMA|ACD -B/XX/<=-6 5C|Irradia ted|<200 m L|Quar:>=6 m/retested ', [LastUp dateDate]= '2016-07-2 7 11:17:06 .000', [La stUpdateUs er]=' RED A CTED ' WHERE [B loodProduc tGuid]='42 96af12-791 5-4a08-93b 5-03d48f57 d791' | |
| 7445 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLASMA A FR None 6C ', [LastUp dateDate]= '2016-07-2 7 11:17:06 .000', [La stUpdateUs er]=' RED A CTED ' WHERE [B loodProduc tGuid]='cb 762690-cfd 4-4aba-8a8 e-03d889ac 7394' | |
| 7446 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLT AFR NaCit PLS Red 4C', [ LastUpdate Date]='201 6-07-27 11 :17:06.000 ', [LastUp dateUser]= ' RED A CTED ' WHERE [B loodProduc tGuid]='32 5c1808-39f f-416d-ac6 0-03f17e83 0448' | |
| 7447 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC AFR Wash None OPN IRD LU KOPR 1C', [LastUpdat eDate]='20 16-07-27 1 1:17:06.00 0', [LastU pdateUser] =' RED A CTED ' WHERE [B loodProduc tGuid]='06 709155-fa6 0-46d9-852 9-03f1d878 3c1d' | |
| 7448 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC Froz None OPN IRD LUKOPR 2C', [Las tUpdateDat e]='2016-0 7-27 11:17 :06.000', [LastUpdat eUser]=' RED A CTED ' WHERE [B loodProduc tGuid]='f4 5a2983-59b 1-497e-9e3 e-04129e63 f639' | |
| 7449 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC AFR CPDA-1 IRD LUKOPR 2C ', [LastUp dateDate]= '2016-07-2 7 11:17:06 .000', [La stUpdateUs er]=' RED A CTED ' WHERE [B loodProduc tGuid]='3c a23cfa-f6e 9-4d7b-9a4 d-0446ac05 99c2' | |
| 7450 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='FFP AFR Thaw None IRD 3C', [ LastUpdate Date]='201 6-07-27 11 :17:06.000 ', [LastUp dateUser]= ' RED A CTED ' WHERE [B loodProduc tGuid]='b9 825717-ca0 9-4408-b9a 8-045f0e4d e9bd' | |
| 7451 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='FFP AFR None IRD L UKOPR 3C', [LastUpda teDate]='2 016-07-27 11:17:06.0 00', [Last UpdateUser ]=' RED A CTED ' WHERE [B loodProduc tGuid]='26 f1823e-f61 3-40f7-92c e-0464944b 660c' | |
| 7452 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLT AFR ACD-A 1C', [LastUpda teDate]='2 016-07-27 11:17:06.0 00', [Last UpdateUser ]=' RED A CTED ' WHERE [B loodProduc tGuid]='6e eb0fdf-098 e-4602-bc0 e-046f23c7 7d08' | |
| 7453 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC AFR CP2D>AS3 2 C', [LastU pdateDate] ='2016-07- 27 11:17:0 6.000', [L astUpdateU ser]=' RED A CTED ' WHERE [B loodProduc tGuid]='ec 6b8127-331 8-4ebc-81c f-04810db0 5ba4' | |
| 7454 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLT AFR PAS-E LUKO PR SUPRed 2C Psoraln ', [LastUp dateDate]= '2016-07-2 7 11:17:06 .000', [La stUpdateUs er]=' RED A CTED ' WHERE [B loodProduc tGuid]='d3 9ef13c-773 9-4aee-84f 6-04824bd7 d5ab' | |
| 7455 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLT AFR Froz ACD-A MNFI IRD LUKOPR 1C' , [LastUpd ateDate]=' 2016-07-27 11:17:06. 000', [Las tUpdateUse r]=' RED A CTED ' WHERE [B loodProduc tGuid]='ca 32f397-4cd 6-4e1c-8bd 3-04b845c0 097c' | |
| 7456 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='WB CPDA- 1 5C', [La stUpdateDa te]='2016- 07-27 11:1 7:06.000', [LastUpda teUser]=' RED A CTED ' WHERE [B loodProduc tGuid]='de c8cb24-a7b 9-4f97-812 f-04d10e52 05a7' | |
| 7457 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLT AFR Thaw DMSO OPN LUKOPR PA 2CNA', [LastUpda teDate]='2 016-07-27 11:17:06.0 00', [Last UpdateUser ]=' RED A CTED ' WHERE [B loodProduc tGuid]='33 f6e274-eec 6-4c5e-8d6 e-04e8d167 8340' | |
| 7458 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='FFP None 4C', [Las tUpdateDat e]='2016-0 7-27 11:17 :06.000', [LastUpdat eUser]=' RED A CTED ' WHERE [B loodProduc tGuid]='85 5f2295-09c 1-4a7d-b95 c-04edb3d5 fa11' | |
| 7459 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC AFR Wash None OPN IRD LU KOPR 2C', [LastUpdat eDate]='20 16-07-27 1 1:17:06.00 0', [LastU pdateUser] =' RED A CTED ' WHERE [B loodProduc tGuid]='d4 7550e2-2bf c-4150-971 b-04f2ad64 e8da' | |
| 7460 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLT AFR ACD-B OPN IRD PLS Re d 2CNA', [ LastUpdate Date]='201 6-07-27 11 :17:06.000 ', [LastUp dateUser]= ' RED A CTED ' WHERE [B loodProduc tGuid]='48 9df6c4-c8b a-4f61-9e2 9-0515b955 1be9' | |
| 7461 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='FFP AFR None 7C', [LastUpdat eDate]='20 16-07-27 1 1:17:06.00 0', [LastU pdateUser] =' RED A CTED ' WHERE [B loodProduc tGuid]='27 d919b8-a58 e-4094-a5e 6-051fb7ff 02be' | |
| 7462 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='FFP Thaw CPDA-1 1C QUAR', [L astUpdateD ate]='2016 -07-27 11: 17:06.000' , [LastUpd ateUser]=' RED A CTED ' WHERE [B loodProduc tGuid]='8d 5ed881-f6f b-47f0-871 e-05238afa 02ec' | |
| 7463 | UPDATE [db o].[BloodP roduct] SE T [Product Name]='Fro zen Aphere sis RED BL OOD CELLS| Gly40%/XX/ <=-80C|Res Leu:<1E6|1 st contain er', [Prod uctShortNa me]='RBC A FR Froz Gl y40% LUKOP R 1C', [La stUpdateDa te]='2016- 07-27 11:1 7:06.000', [LastUpda teUser]=' RED A CTED ' WHERE [B loodProduc tGuid]='e6 6efca8-67f 2-4571-996 5-0525a984 a76c' | |
| 7464 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLASMA A FR CP2D 1C ', [LastUp dateDate]= '2016-07-2 7 11:17:06 .000', [La stUpdateUs er]=' RED A CTED ' WHERE [B loodProduc tGuid]='4b ac4dec-085 1-4ca1-9aa 3-0539a05b f4aa' | |
| 7465 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLT AFR NS 2C', [L astUpdateD ate]='2016 -07-27 11: 17:06.000' , [LastUpd ateUser]=' RED A CTED ' WHERE [B loodProduc tGuid]='81 b3c073-64b 4-46fd-acd d-053f94e4 3df3' | |
| 7466 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='FFP AFR None IRD L UKOPR 4C', [LastUpda teDate]='2 016-07-27 11:17:06.0 00', [Last UpdateUser ]=' RED A CTED ' WHERE [B loodProduc tGuid]='06 b21389-297 7-4d71-bca c-0546a5c4 526a' | |
| 7467 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLT AFR PAS-B LUKO PR SUPRed 1C', [Last UpdateDate ]='2016-07 -27 11:17: 06.000', [ LastUpdate User]=' RED A CTED ' WHERE [B loodProduc tGuid]='90 d74415-9ff 7-4bcc-859 d-0552da15 9767' | |
| 7468 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLT AFR Froz ACD-A >PAS-C MNF NI LUKOPR 1C', [Last UpdateDate ]='2016-07 -27 11:17: 06.000', [ LastUpdate User]=' RED A CTED ' WHERE [B loodProduc tGuid]='f5 07150d-4ae b-4386-a28 b-059684e2 92bf' | |
| 7469 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC AFR Froz None OPN 6C', [ LastUpdate Date]='201 6-07-27 11 :17:06.000 ', [LastUp dateUser]= ' RED A CTED ' WHERE [B loodProduc tGuid]='6d 6e02f2-c3f 4-47ae-b1f d-05a6aa34 13f0' | |
| 7470 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLT AFR ACD-A NMT 2C', [Last UpdateDate ]='2016-07 -27 11:17: 06.000', [ LastUpdate User]=' RED A CTED ' WHERE [B loodProduc tGuid]='12 8c3c27-c07 4-413b-a6b d-05a895fc c859' | |
| 7471 | UPDATE [db o].[BloodP roduct] SE T [Product Name]='Fro zen Aphere sis RED BL OOD CELLS| None/XX/<= -65C|Irrad iated|ResL eu:<5E6|1s t containe r', [Produ ctShortNam e]='RBC AF R Froz Non e IRD LUKO PR 1C', [L astUpdateD ate]='2016 -07-27 11: 17:06.000' , [LastUpd ateUser]=' RED A CTED ' WHERE [B loodProduc tGuid]='44 07b919-86b 2-4a37-96b 1-05ba5d82 dfaf' | |
| 7472 | UPDATE [db o].[BloodP roduct] SE T [Product Name]='Aph eresis FRE SH FROZEN PLASMA|ACD -A/XX/<=-3 0C|For mnf :injectabl e|>=600mL| Frozen <=6 h|2nd cont ainer|Quar :>=4m/rete sted', [Pr oductShort Name]='FFP AFR ACD-A MNFI LrgV ol 2C QUAR ', [LastUp dateDate]= '2016-07-2 7 11:17:06 .000', [La stUpdateUs er]=' RED A CTED ' WHERE [B loodProduc tGuid]='6e 03cf02-e30 b-439b-80c d-05e1ec85 67c0' | |
| 7473 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC AFR ACD-A>AS1 1C', [Last UpdateDate ]='2016-07 -27 11:17: 06.000', [ LastUpdate User]=' RED A CTED ' WHERE [B loodProduc tGuid]='68 2984cc-98b 3-49ba-8db a-061fb4ee c53c' | |
| 7474 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLT AFR Thaw DMSO OPN LUKOPR PA 3C', [ LastUpdate Date]='201 6-07-27 11 :17:06.000 ', [LastUp dateUser]= ' RED A CTED ' WHERE [B loodProduc tGuid]='16 77b553-9b6 3-4d00-bd4 b-06498c4d 98f8' | |
| 7475 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='WB CPDA- 1 IRD 4C', [LastUpda teDate]='2 016-07-27 11:17:06.0 00', [Last UpdateUser ]=' RED A CTED ' WHERE [B loodProduc tGuid]='44 b2f3f6-137 9-4797-bad d-065873b7 118b' | |
| 7476 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLT AFR ACD-A>PAS- C IRD 3C', [LastUpda teDate]='2 016-07-27 11:17:06.0 00', [Last UpdateUser ]=' RED A CTED ' WHERE [B loodProduc tGuid]='1d 875474-077 f-441d-a26 2-0658820a 6503' | |
| 7477 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC CPDA -1 IRD LUK OPR PLS Re d/PA', [La stUpdateDa te]='2016- 07-27 11:1 7:06.000', [LastUpda teUser]=' RED A CTED ' WHERE [B loodProduc tGuid]='f6 445357-020 0-4539-868 6-06620832 8618' | |
| 7478 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC AFR ACD-A>AS3 MNFNI LUKO PR 1C', [L astUpdateD ate]='2016 -07-27 11: 17:06.000' , [LastUpd ateUser]=' RED A CTED ' WHERE [B loodProduc tGuid]='db bbcc07-701 b-40b2-960 a-06771b6b 2aa1' | |
| 7479 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLT AFR Wash NS IR D LUKOPR 2 C', [LastU pdateDate] ='2016-07- 27 11:17:0 6.000', [L astUpdateU ser]=' RED A CTED ' WHERE [B loodProduc tGuid]='27 d6efc5-7d6 4-41f3-8aa 4-06836453 cfca' | |
| 7480 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLT AFR ACD-A IRD LUKOPR 8C' , [LastUpd ateDate]=' 2016-07-27 11:17:06. 000', [Las tUpdateUse r]=' RED A CTED ' WHERE [B loodProduc tGuid]='fb bfdc87-b4f 0-4199-96d 0-06ad449f a101' | |
| 7481 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLT AFR ACD-A LUKO PR PLS Red 2C', [Las tUpdateDat e]='2016-0 7-27 11:17 :06.000', [LastUpdat eUser]=' RED A CTED ' WHERE [B loodProduc tGuid]='e3 aef376-72c b-46c9-839 d-06c062ca 6287' | |
| 7482 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC AFR Deg None O PN IRD LUK OPR 7C', [ LastUpdate Date]='201 6-07-27 11 :17:06.000 ', [LastUp dateUser]= ' RED A CTED ' WHERE [B loodProduc tGuid]='97 e7c70f-703 f-4eee-85d a-06d914d0 dd7d' | |
| 7483 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLT AFR PAS-C LUKO PR 3C Psor aln', [Las tUpdateDat e]='2016-0 7-27 11:17 :06.000', [LastUpdat eUser]=' RED A CTED ' WHERE [B loodProduc tGuid]='66 8c6063-787 b-4de8-939 d-06ddc66b 3069' | |
| 7484 | UPDATE [db o].[BloodP roduct] SE T [Product Name]='FRE SH FROZEN PLASMA|CPD /XX/<=-65C |Irradiate d|Quar:>=6 m/retested ', [LastUp dateDate]= '2016-07-2 7 11:17:06 .000', [La stUpdateUs er]=' RED A CTED ' WHERE [B loodProduc tGuid]='3a 9461b7-3d2 5-4d9c-87d d-06e07fd5 8f98' | |
| 7485 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='FFP AFR Thaw CPD-5 0 IRD LUKO PR 2C', [L astUpdateD ate]='2016 -07-27 11: 17:06.000' , [LastUpd ateUser]=' RED A CTED ' WHERE [B loodProduc tGuid]='0d f8383a-f81 f-4d9d-b01 9-06e27298 7e33' | |
| 7486 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='FFP None 6C', [Las tUpdateDat e]='2016-0 7-27 11:17 :06.000', [LastUpdat eUser]=' RED A CTED ' WHERE [B loodProduc tGuid]='1b 8acc66-ead a-4165-8ed c-06eda8cf f282' | |
| 7487 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC AFR ACD-A>AS3 LUKOPR 6C' , [LastUpd ateDate]=' 2016-07-27 11:17:06. 000', [Las tUpdateUse r]=' RED A CTED ' WHERE [B loodProduc tGuid]='04 80abb4-0b2 5-4dc8-9c0 b-06f82061 cc8f' | |
| 7488 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLT AFR Thaw DMSO OPN IRD LU KOPR PA 1C ', [LastUp dateDate]= '2016-07-2 7 11:17:06 .000', [La stUpdateUs er]=' RED A CTED ' WHERE [B loodProduc tGuid]='24 8be240-d74 4-4733-832 c-06fa7b19 30c9' | |
| 7489 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC AFR Wash None OPN 2C', [ LastUpdate Date]='201 6-07-27 11 :17:06.000 ', [LastUp dateUser]= ' RED A CTED ' WHERE [B loodProduc tGuid]='38 643514-2b2 5-485d-a48 2-07081960 2bae' | |
| 7490 | UPDATE [db o].[BloodP roduct] SE T [Product Name]='Aph eresis FRE SH FROZEN PLASMA|NS/ XX/<=-30C| ResLeu:<5E 6', [LastU pdateDate] ='2016-07- 27 11:17:0 6.000', [L astUpdateU ser]=' RED A CTED ' WHERE [B loodProduc tGuid]='9b 79f44f-f6b 8-4ab2-b5c a-070a40e2 8bda' | |
| 7491 | UPDATE [db o].[BloodP roduct] SE T [Product Name]='Aph eresis FRE SH FROZEN PLASMA|CPD -50/XX/<=- 30C|For mn f:noninjec table', [L astUpdateD ate]='2016 -07-27 11: 17:06.000' , [LastUpd ateUser]=' RED A CTED ' WHERE [B loodProduc tGuid]='58 e3ddd5-ec0 a-49bc-8de 5-07174db4 0efe' | |
| 7492 | UPDATE [db o].[BloodP roduct] SE T [Product Name]='PLA SMA|NS/XX/ <=-30C|Res Leu:<5E6', [LastUpda teDate]='2 016-07-27 11:17:06.0 00', [Last UpdateUser ]=' RED A CTED ' WHERE [B loodProduc tGuid]='a0 f825d1-d58 d-41f3-86d 5-071d50a5 6212' | |
| 7493 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC CPDA -1 IRD 2C' , [LastUpd ateDate]=' 2016-07-27 11:17:06. 000', [Las tUpdateUse r]=' RED A CTED ' WHERE [B loodProduc tGuid]='f0 f2c394-bc7 b-46e0-a48 f-0725d3f6 f0e2' | |
| 7494 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC AFR Deg None O PN PA 2C', [LastUpda teDate]='2 016-07-27 11:17:06.0 00', [Last UpdateUser ]=' RED A CTED ' WHERE [B loodProduc tGuid]='b6 09e90f-df5 3-440e-920 c-0734f5c4 65ec' | |
| 7495 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLASMA A FR None IR D 1C', [La stUpdateDa te]='2016- 07-27 11:1 7:06.000', [LastUpda teUser]=' RED A CTED ' WHERE [B loodProduc tGuid]='37 e6d83f-80d 5-4c63-b96 d-07489bba eff3' | |
| 7496 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC AFR CP2D>AS3 I RD 2C', [L astUpdateD ate]='2016 -07-27 11: 17:06.000' , [LastUpd ateUser]=' RED A CTED ' WHERE [B loodProduc tGuid]='8a 9f7a77-947 d-420b-8d3 e-074e642a f213' | |
| 7497 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLT AFR ACD-A IRD 2C', [Last UpdateDate ]='2016-07 -27 11:17: 06.000', [ LastUpdate User]=' RED A CTED ' WHERE [B loodProduc tGuid]='b5 673c4e-e05 1-4c03-ba9 0-0758e1b0 8279' | |
| 7498 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLT AFR ACD-B 1CNA ', [LastUp dateDate]= '2016-07-2 7 11:17:06 .000', [La stUpdateUs er]=' RED A CTED ' WHERE [B loodProduc tGuid]='2a 435bd6-962 f-4209-8a4 e-077a7708 c609' | |
| 7499 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLT AFR ACD-A IRD LUKOPR 2C' , [LastUpd ateDate]=' 2016-07-27 11:17:06. 000', [Las tUpdateUse r]=' RED A CTED ' WHERE [B loodProduc tGuid]='e1 e6ca56-eaa d-446b-92e 5-077f4fbf 374c' | |
| 7500 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLT AFR Thaw DMSO OPN IRD LU KOPR PA 1C NA', [Last UpdateDate ]='2016-07 -27 11:17: 06.000', [ LastUpdate User]=' RED A CTED ' WHERE [B loodProduc tGuid]='73 630e46-0c1 7-4524-985 f-07830377 4035' | |
| 7501 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='FFP None 7C', [Las tUpdateDat e]='2016-0 7-27 11:17 :06.000', [LastUpdat eUser]=' RED A CTED ' WHERE [B loodProduc tGuid]='21 9bbea2-7c4 0-40d9-ab2 1-078a6071 a62f' | |
| 7502 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC AFR ACD-A>AS1 LUKOPR 5C' , [LastUpd ateDate]=' 2016-07-27 11:17:06. 000', [Las tUpdateUse r]=' RED A CTED ' WHERE [B loodProduc tGuid]='5c 000aee-0d4 4-43cf-a0b 8-07991ac6 600e' | |
| 7503 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC AFR CPDA-1 IRD LUKOPR 3C ', [LastUp dateDate]= '2016-07-2 7 11:17:06 .000', [La stUpdateUs er]=' RED A CTED ' WHERE [B loodProduc tGuid]='31 f5c722-dae c-41af-938 d-07a80b3c 861e' | |
| 7504 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLT AFR ACD-A OPN 3C', [Last UpdateDate ]='2016-07 -27 11:17: 06.000', [ LastUpdate User]=' RED A CTED ' WHERE [B loodProduc tGuid]='72 7bcfd9-2b6 4-41ac-a69 a-07bb2633 ae22' | |
| 7505 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLT AFR ACD-A OPN LUKOPR PLS Red 1C', [LastUpdat eDate]='20 16-07-27 1 1:17:06.00 0', [LastU pdateUser] =' RED A CTED ' WHERE [B loodProduc tGuid]='2c 32ebce-3d5 5-4cde-b6b 3-07cc0de8 af49' | |
| 7506 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLT AFR ACD-A IRD LUKOPR 4C BacMtr', [ LastUpdate Date]='201 6-07-27 11 :17:06.000 ', [LastUp dateUser]= ' RED A CTED ' WHERE [B loodProduc tGuid]='35 e4e980-c8c 7-49e7-98f 4-07e33923 b347' | |
| 7507 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='FFP AFR ACD-A IRD 1C', [Last UpdateDate ]='2016-07 -27 11:17: 06.000', [ LastUpdate User]=' RED A CTED ' WHERE [B loodProduc tGuid]='d0 9cd63d-e7a 0-40f0-930 e-07e76c5f b09c' | |
| 7508 | UPDATE [db o].[BloodP roduct] SE T [Product Name]='Fro zen Rejuve nated Aphe resis RED BLOOD CELL S|None/XX/ <=-65C|Ope n|Irradiat ed|1st con tainer', [ ProductSho rtName]='R BC AFR Fro z Rej None OPN IRD 1 C', [LastU pdateDate] ='2016-07- 27 11:17:0 6.000', [L astUpdateU ser]=' RED A CTED ' WHERE [B loodProduc tGuid]='27 ad39ea-518 1-4908-991 c-07eea993 1680' | |
| 7509 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='WB CPD 5 C', [LastU pdateDate] ='2016-07- 27 11:17:0 6.000', [L astUpdateU ser]=' RED A CTED ' WHERE [B loodProduc tGuid]='bf 3baf3d-f1b 4-4644-966 3-08049fb2 8de2' | |
| 7510 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC AFR ACD-A>AS3 3C', [Last UpdateDate ]='2016-07 -27 11:17: 06.000', [ LastUpdate User]=' RED A CTED ' WHERE [B loodProduc tGuid]='b5 0cea2d-a6e f-4f80-bda 6-0840f644 7a25' | |
| 7511 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='WB CPDA- 1 4C', [La stUpdateDa te]='2016- 07-27 11:1 7:06.000', [LastUpda teUser]=' RED A CTED ' WHERE [B loodProduc tGuid]='06 a69853-cb5 1-4288-9f1 3-0874b4b1 0bd6' | |
| 7512 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLT AFR PAS-E IRD LUKOPR 3C BacTest', [LastUpdat eDate]='20 16-07-27 1 1:17:06.00 0', [LastU pdateUser] =' RED A CTED ' WHERE [B loodProduc tGuid]='c7 c3a567-db8 5-4950-821 f-08956431 b604' | |
| 7513 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='FFP Thaw CPDA-1 IR D 3C QUAR' , [LastUpd ateDate]=' 2016-07-27 11:17:06. 000', [Las tUpdateUse r]=' RED A CTED ' WHERE [B loodProduc tGuid]='ea be1783-8b5 f-4ef3-80e 5-08b0a0ce 007c' | |
| 7514 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLT AFR ACD-A MNFN I OPN 4C', [LastUpda teDate]='2 016-07-27 11:17:06.0 00', [Last UpdateUser ]=' RED A CTED ' WHERE [B loodProduc tGuid]='ed 47add9-653 3-4a99-a98 c-08f666eb 21f8' | |
| 7515 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC AFR CP2D>AS3 I RD LUKOPR 6C', [Last UpdateDate ]='2016-07 -27 11:17: 06.000', [ LastUpdate User]=' RED A CTED ' WHERE [B loodProduc tGuid]='15 264baa-013 1-406b-8d9 f-09070673 3c9f' | |
| 7516 | UPDATE [db o].[BloodP roduct] SE T [Product Name]='Aph eresis FRE SH FROZEN PLASMA|NaC itrate/XX/ <=-65C|Irr adiated|>= 600mL', [L astUpdateD ate]='2016 -07-27 11: 17:06.000' , [LastUpd ateUser]=' RED A CTED ' WHERE [B loodProduc tGuid]='8a 356896-f4a 3-4e6e-bb7 9-0937b9b7 0add' | |
| 7517 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLT AFR Wash NS OP N IRD 2C', [LastUpda teDate]='2 016-07-27 11:17:06.0 00', [Last UpdateUser ]=' RED A CTED ' WHERE [B loodProduc tGuid]='76 68fd6f-116 f-4aae-a96 1-0942e0c9 b99b' | |
| 7518 | UPDATE [db o].[BloodP roduct] SE T [Product Name]='Aph eresis FRE SH FROZEN PLASMA|NaC itrate/XX/ <=-30C|Irr adiated|Re sLeu:<1E6| >=200mL<40 0mL|Frozen <=6h|1st container' , [Product ShortName] ='FFP AFR Nacit IRD LUKOPR 1C' , [LastUpd ateDate]=' 2016-07-27 11:17:06. 000', [Las tUpdateUse r]=' RED A CTED ' WHERE [B loodProduc tGuid]='06 7a2092-911 e-4a90-ab4 4-095838e5 8dec' | |
| 7519 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC AFR Wash SAGM LUKOPR 1C' , [LastUpd ateDate]=' 2016-07-27 11:17:06. 000', [Las tUpdateUse r]=' RED A CTED ' WHERE [B loodProduc tGuid]='65 b63c62-136 1-4498-955 2-095a5e81 901f' | |
| 7520 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLT AFR PAS-D IRD LUKOPR 3C BacMtr', [ LastUpdate Date]='201 6-07-27 11 :17:06.000 ', [LastUp dateUser]= ' RED A CTED ' WHERE [B loodProduc tGuid]='fe 0aa3c5-35a 2-40a6-ba0 3-0971a9eb 3547' | |
| 7521 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLT AFR Wash NS IR D LUKOPR 2 C', [LastU pdateDate] ='2016-07- 27 11:17:0 6.000', [L astUpdateU ser]=' RED A CTED ' WHERE [B loodProduc tGuid]='e8 e21b35-ec9 c-4cae-8f2 2-098846ef dfae' | |
| 7522 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC AFR CPDA-1 LUK OPR 1C', [ LastUpdate Date]='201 6-07-27 11 :17:06.000 ', [LastUp dateUser]= ' RED A CTED ' WHERE [B loodProduc tGuid]='0e 5572ea-389 d-4fb1-85c f-098ebc3a 41db' | |
| 7523 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='WB CPDA- 1 IRD LUKO PR 5C', [L astUpdateD ate]='2016 -07-27 11: 17:06.000' , [LastUpd ateUser]=' RED A CTED ' WHERE [B loodProduc tGuid]='12 7fa837-932 f-4fd8-a18 a-099d7f7a b3bf' | |
| 7524 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLT AFR ACD-A MNFI 2C', [Las tUpdateDat e]='2016-0 7-27 11:17 :06.000', [LastUpdat eUser]=' RED A CTED ' WHERE [B loodProduc tGuid]='67 70dae1-6c2 3-4811-9f6 7-09a1c692 1443' | |
| 7525 | UPDATE [db o].[BloodP roduct] SE T [Product Name]='FRE SH FROZEN PLASMA|CPD /450mL/<=- 25C|Irradi ated|ResLe u:<1E6', [ LastUpdate Date]='201 6-07-27 11 :17:06.000 ', [LastUp dateUser]= ' RED A CTED ' WHERE [B loodProduc tGuid]='9f 7655a1-031 5-4e32-a76 4-09a4cbbe 5edc' | |
| 7526 | UPDATE [db o].[BloodP roduct] SE T [Product Name]='Aph eresis PLA SMA|NaCitr ate/XX/<=- 25C|For mn f:noninjec table|Froz en <=6h', [LastUpdat eDate]='20 16-07-27 1 1:17:06.00 0', [LastU pdateUser] =' RED A CTED ' WHERE [B loodProduc tGuid]='62 211d5a-b45 b-47b8-bd5 9-09af2d96 ddb6' | |
| 7527 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLT AFR Wash None NMT OPN 1C ', [LastUp dateDate]= '2016-07-2 7 11:17:06 .000', [La stUpdateUs er]=' RED A CTED ' WHERE [B loodProduc tGuid]='5a 36f0f9-8da 7-4972-ae8 a-09d2cd8c 8ccf' | |
| 7528 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='FFP Thaw CPDA-1 IR D 1C QUAR' , [LastUpd ateDate]=' 2016-07-27 11:17:06. 000', [Las tUpdateUse r]=' RED A CTED ' WHERE [B loodProduc tGuid]='c3 fcd359-868 4-4519-93e 4-09d875c8 41b3' | |
| 7529 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC CP2D 3C', [Las tUpdateDat e]='2016-0 7-27 11:17 :06.000', [LastUpdat eUser]=' RED A CTED ' WHERE [B loodProduc tGuid]='e5 2f0609-d86 e-4550-a55 1-09e035e7 ded2' | |
| 7530 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC CPD> AS5 IRD 7C ', [LastUp dateDate]= '2016-07-2 7 11:17:06 .000', [La stUpdateUs er]=' RED A CTED ' WHERE [B loodProduc tGuid]='1e 9b6f83-b66 d-4a3e-877 a-09e91806 50e9' | |
| 7531 | UPDATE [db o].[BloodP roduct] SE T [Product Name]='Aph eresis FRE SH FROZEN PLASMA|ACD -B/XX/<=-3 0C|Irradia ted|>=400m L<600mL', [LastUpdat eDate]='20 16-07-27 1 1:17:06.00 0', [LastU pdateUser] =' RED A CTED ' WHERE [B loodProduc tGuid]='6b 1cbe38-82f 8-444a-a9b 3-09f39625 3e9a' | |
| 7532 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC AFR Deg Rej No ne OPN LUK OPR 2C', [ LastUpdate Date]='201 6-07-27 11 :17:06.000 ', [LastUp dateUser]= ' RED A CTED ' WHERE [B loodProduc tGuid]='4e 7b85a0-121 0-43b2-8a3 4-09fe48af a9ab' | |
| 7533 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC AFR Wash None OPN PA 1C' , [LastUpd ateDate]=' 2016-07-27 11:17:06. 000', [Las tUpdateUse r]=' RED A CTED ' WHERE [B loodProduc tGuid]='77 1b139d-5b6 3-4fab-bc8 e-0a026a9e e62f' | |
| 7534 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLT AFR ACD-B OPN IRD 1C', [ LastUpdate Date]='201 6-07-27 11 :17:06.000 ', [LastUp dateUser]= ' RED A CTED ' WHERE [B loodProduc tGuid]='b7 236f8a-6c7 d-4f17-a1a 2-0a1d4ab6 3880' | |
| 7535 | UPDATE [db o].[BloodP roduct] SE T [Product Name]='FRE SH FROZEN PLASMA|CPD /450mL/<=- 30C|ResLeu :<1E6|Quar :>=90d/ret ested', [L astUpdateD ate]='2016 -07-27 11: 17:06.000' , [LastUpd ateUser]=' RED A CTED ' WHERE [B loodProduc tGuid]='f9 cd3c34-9d8 a-4e1e-a44 1-0a223926 6a2c' | |
| 7536 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC AFR CPDA-1 IRD 5C', [Las tUpdateDat e]='2016-0 7-27 11:17 :06.000', [LastUpdat eUser]=' RED A CTED ' WHERE [B loodProduc tGuid]='2e c50628-1eb c-438c-b27 8-0a260eb5 5a04' | |
| 7537 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC Froz None OPN 1C', [Last UpdateDate ]='2016-07 -27 11:17: 06.000', [ LastUpdate User]=' RED A CTED ' WHERE [B loodProduc tGuid]='50 7cbc05-6a5 0-4cde-b8a 5-0a352ea4 c523' | |
| 7538 | UPDATE [db o].[BloodP roduct] SE T [Product Name]='Aph eresis FRE SH FROZEN PLASMA|ACD -B/XX/<=-3 0C|Irradia ted|>=400m L<600mL|Qu ar:>=6m/re tested', [ LastUpdate Date]='201 6-07-27 11 :17:06.000 ', [LastUp dateUser]= ' RED A CTED ' WHERE [B loodProduc tGuid]='08 b963ae-448 b-4739-a0d 3-0a402e29 1954' | |
| 7539 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='FFP AFR NaCit 1C Q UAR', [Las tUpdateDat e]='2016-0 7-27 11:17 :06.000', [LastUpdat eUser]=' RED A CTED ' WHERE [B loodProduc tGuid]='8d 672738-180 3-4263-8f5 4-0a4a3675 2096' | |
| 7540 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC AFR CPDA-1 1C' , [LastUpd ateDate]=' 2016-07-27 11:17:06. 000', [Las tUpdateUse r]=' RED A CTED ' WHERE [B loodProduc tGuid]='29 92ec17-40d a-4711-942 1-0a4e8852 8ef2' | |
| 7541 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC CP2D >AS3 IRD L UKOPR 3C', [LastUpda teDate]='2 016-07-27 11:17:06.0 00', [Last UpdateUser ]=' RED A CTED ' WHERE [B loodProduc tGuid]='cb 19221e-840 8-4922-aa0 e-0a7d15da feb4' | |
| 7542 | UPDATE [db o].[BloodP roduct] SE T [Product Name]='Aph eresis FRE SH FROZEN PLASMA|ACD -B/XX/<=-6 5C|Fin Con :NS|Aphr n ot automat ed|Quar:>= 6m/reteste d', [LastU pdateDate] ='2016-07- 27 11:17:0 6.000', [L astUpdateU ser]=' RED A CTED ' WHERE [B loodProduc tGuid]='f9 b46ae4-4e7 3-4acf-95c 0-0a8a34b9 8a28' | |
| 7543 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLT AFR NS OPN LUK OPR PLS Re d 3C', [La stUpdateDa te]='2016- 07-27 11:1 7:06.000', [LastUpda teUser]=' RED A CTED ' WHERE [B loodProduc tGuid]='60 1f774e-613 8-4e63-83e e-0a9944d2 4ea9' | |
| 7544 | UPDATE [db o].[BloodP roduct] SE T [Product Name]='Aph eresis FRE SH FROZEN PLASMA|ACD -A/XX/<=-6 5C|Not for tx or mnf |Fin Con:N S', [LastU pdateDate] ='2016-07- 27 11:17:0 6.000', [L astUpdateU ser]=' RED A CTED ' WHERE [B loodProduc tGuid]='5c 5b2deb-1e4 9-4cdb-b3e 3-0aa40197 81a5' | |
| 7545 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC Froz Rej None OPN 8C', [ LastUpdate Date]='201 6-07-27 11 :17:06.000 ', [LastUp dateUser]= ' RED A CTED ' WHERE [B loodProduc tGuid]='af 3600b3-eae d-4adb-beb e-0aa8cedb 7e2c' | |
| 7546 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLT AFR ACD-A LUKO PR PLS Red 1C', [Las tUpdateDat e]='2016-0 7-27 11:17 :06.000', [LastUpdat eUser]=' RED A CTED ' WHERE [B loodProduc tGuid]='17 db7a9b-63e f-44de-a1a 1-0ac02ad5 dc43' | |
| 7547 | UPDATE [db o].[BloodP roduct] SE T [Product Name]='Fro zen Aphere sis RED BL OOD CELLS| None/XX/<= -65C|Open| Irradiated |2nd conta iner', [Pr oductShort Name]='RBC AFR Froz None OPN I RD 2C', [L astUpdateD ate]='2016 -07-27 11: 17:06.000' , [LastUpd ateUser]=' RED A CTED ' WHERE [B loodProduc tGuid]='16 5ee53d-d6d 8-4a75-848 a-0ac7ca5b a240' | |
| 7548 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLT AFR ACD-A OPN IRD PLS Re d 1C', [La stUpdateDa te]='2016- 07-27 11:1 7:06.000', [LastUpda teUser]=' RED A CTED ' WHERE [B loodProduc tGuid]='67 271341-169 4-4172-bec f-0ad5b38e 9b95' | |
| 7549 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='FFP AFR Thaw None IRD LUKOPR 8C', [Las tUpdateDat e]='2016-0 7-27 11:17 :06.000', [LastUpdat eUser]=' RED A CTED ' WHERE [B loodProduc tGuid]='51 5eda3b-78b b-4a6c-98c 1-0ae2069f 0d1b' | |
| 7550 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLT AFR ACD-A OPN IRD LUKOPR 1CNA', [L astUpdateD ate]='2016 -07-27 11: 17:06.000' , [LastUpd ateUser]=' RED A CTED ' WHERE [B loodProduc tGuid]='97 17eeeb-92f b-48ac-826 3-0af17cfa 5a81' | |
| 7551 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLT AFR ACD-A IRD LUKOPR 5C' , [LastUpd ateDate]=' 2016-07-27 11:17:06. 000', [Las tUpdateUse r]=' RED A CTED ' WHERE [B loodProduc tGuid]='5d 2703eb-ffb 9-40cd-992 4-0b0c6aa1 9455' | |
| 7552 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLT AFR NaCit IRD LUKOPR 2C' , [LastUpd ateDate]=' 2016-07-27 11:17:06. 000', [Las tUpdateUse r]=' RED A CTED ' WHERE [B loodProduc tGuid]='e9 34b552-b38 f-463e-a0f 4-0b12a8b5 c749' | |
| 7553 | UPDATE [db o].[BloodP roduct] SE T [Product Name]='FRE SH FROZEN PLASMA|CPD A-1/XX/<=- 25C|Ribofl avin-treat ed', [Last UpdateDate ]='2016-07 -27 11:17: 06.000', [ LastUpdate User]=' RED A CTED ' WHERE [B loodProduc tGuid]='b3 ddbb16-025 7-4d6d-a8f 3-0b1fbaec 3225' | |
| 7554 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC AFR CPDA-1 IRD 2C', [Las tUpdateDat e]='2016-0 7-27 11:17 :06.000', [LastUpdat eUser]=' RED A CTED ' WHERE [B loodProduc tGuid]='3c 348810-387 e-470b-990 7-0b23f91a 1a73' | |
| 7555 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC Deg Rej None O PN 5C', [L astUpdateD ate]='2016 -07-27 11: 17:06.000' , [LastUpd ateUser]=' RED A CTED ' WHERE [B loodProduc tGuid]='7e c2a692-594 7-4c3f-b77 c-0b24c5ca e89f' | |
| 7556 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC AFR Wash None OPN IRD 1C ', [LastUp dateDate]= '2016-07-2 7 11:17:06 .000', [La stUpdateUs er]=' RED A CTED ' WHERE [B loodProduc tGuid]='5f 29dcb2-be2 3-4465-93c 5-0b2fe80c 6f5f' | |
| 7557 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='WB CPDA- 1 IRD 1C', [LastUpda teDate]='2 016-07-27 11:17:06.0 00', [Last UpdateUser ]=' RED A CTED ' WHERE [B loodProduc tGuid]='54 075713-446 6-4607-bc1 6-0b34a5d3 1b0b' | |
| 7558 | UPDATE [db o].[BloodP roduct] SE T [Product Name]='Aph eresis FRE SH FROZEN PLASMA|NaC itrate/XX/ <=-65C|Irr adiated|<2 00 mL', [L astUpdateD ate]='2016 -07-27 11: 17:06.000' , [LastUpd ateUser]=' RED A CTED ' WHERE [B loodProduc tGuid]='33 de86a1-e01 c-4b6a-807 1-0b3bcdbe 486a' | |
| 7559 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='WB CP2D IRD LUKOPR 1C', [Las tUpdateDat e]='2016-0 7-27 11:17 :06.000', [LastUpdat eUser]=' RED A CTED ' WHERE [B loodProduc tGuid]='04 842478-bd3 9-4ebc-b18 1-0b3fb142 3a2c' | |
| 7560 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='FFP CPD 2C', [Last UpdateDate ]='2016-07 -27 11:17: 06.000', [ LastUpdate User]=' RED A CTED ' WHERE [B loodProduc tGuid]='c9 408d94-5e6 d-433f-908 3-0b455d29 dcf6' | |
| 7561 | UPDATE [db o].[BloodP roduct] SE T [Product Name]='FRE SH FROZEN PLASMA|CP2 D/XX/<=-65 C|Not for tx or mnf' , [LastUpd ateDate]=' 2016-07-27 11:17:06. 000', [Las tUpdateUse r]=' RED A CTED ' WHERE [B loodProduc tGuid]='11 c29961-fc1 2-4362-9a4 5-0b50e6ff 7b47' | |
| 7562 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLT AFR ACD-A LUKO PR 1C BacM tr', [Last UpdateDate ]='2016-07 -27 11:17: 06.000', [ LastUpdate User]=' RED A CTED ' WHERE [B loodProduc tGuid]='8c 8d85e9-191 3-4e8a-a2d c-0b5738e3 beea' | |
| 7563 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='WB CP2D IRD 4C', [ LastUpdate Date]='201 6-07-27 11 :17:06.000 ', [LastUp dateUser]= ' RED A CTED ' WHERE [B loodProduc tGuid]='d2 670dd0-f79 f-4789-900 6-0b770980 0319' | |
| 7564 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='FFP AFR None IRD Q UAR 8C', [ LastUpdate Date]='201 6-07-27 11 :17:06.000 ', [LastUp dateUser]= ' RED A CTED ' WHERE [B loodProduc tGuid]='72 68c0e1-2c2 1-42e9-a24 5-0b8b51a7 7b79' | |
| 7565 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='FFP AFR Thaw ACD-A LUKOPR 2C ', [LastUp dateDate]= '2016-07-2 7 11:17:06 .000', [La stUpdateUs er]=' RED A CTED ' WHERE [B loodProduc tGuid]='4a f44482-ce0 a-49d0-9d4 4-0b92e740 c3cf' | |
| 7566 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC Froz None OPN LUKOPR 3C' , [LastUpd ateDate]=' 2016-07-27 11:17:06. 000', [Las tUpdateUse r]=' RED A CTED ' WHERE [B loodProduc tGuid]='89 93118f-e6c f-495a-809 0-0b9f2e70 4020' | |
| 7567 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC AFR Deg None O PN LUKOPR 1C', [Last UpdateDate ]='2016-07 -27 11:17: 06.000', [ LastUpdate User]=' RED A CTED ' WHERE [B loodProduc tGuid]='9d 66a32c-a5c e-4b16-b67 4-0ba7e3ca aca1' | |
| 7568 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC AFR CP2D OPN 2 C', [LastU pdateDate] ='2016-07- 27 11:17:0 6.000', [L astUpdateU ser]=' RED A CTED ' WHERE [B loodProduc tGuid]='35 5d2f0b-0d5 7-4292-bbb 7-0ba931f0 aafa' | |
| 7569 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLT AFR ACD-A IRD 1CNA', [La stUpdateDa te]='2016- 07-27 11:1 7:06.000', [LastUpda teUser]=' RED A CTED ' WHERE [B loodProduc tGuid]='c4 134bf9-d78 2-4ef0-8b7 2-0bb51507 bff5' | |
| 7570 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLT AFR ACD-A LUKO PR 1C Ribo ', [LastUp dateDate]= '2016-07-2 7 11:17:06 .000', [La stUpdateUs er]=' RED A CTED ' WHERE [B loodProduc tGuid]='9d 781d99-94d a-4a66-88a c-0bbe4998 2739' | |
| 7571 | UPDATE [db o].[BloodP roduct] SE T [Product Name]='Fro zen Rejuve nated Aphe resis RED BLOOD CELL S|None/XX/ <=-65C|Ope n|Irradiat ed', [Last UpdateDate ]='2016-07 -27 11:17: 06.000', [ LastUpdate User]=' RED A CTED ' WHERE [B loodProduc tGuid]='4e 9605b3-f46 f-444b-96a 4-0be1219c 373d' | |
| 7572 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLT AFR NaCit OPN LUKOPR PLS Red 1C', [LastUpdat eDate]='20 16-07-27 1 1:17:06.00 0', [LastU pdateUser] =' RED A CTED ' WHERE [B loodProduc tGuid]='76 28b75b-a39 8-41b6-be6 b-0be35589 a1af' | |
| 7573 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC AFR CP2D>AS3 I RD LUKOPR 2C', [Last UpdateDate ]='2016-07 -27 11:17: 06.000', [ LastUpdate User]=' RED A CTED ' WHERE [B loodProduc tGuid]='91 8e7cf5-4c1 a-4c6c-b51 b-0bf14da8 33b2' | |
| 7574 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='FFP AFR NaCit IRD 4C', [Last UpdateDate ]='2016-07 -27 11:17: 06.000', [ LastUpdate User]=' RED A CTED ' WHERE [B loodProduc tGuid]='84 4129e6-319 6-4615-b50 9-0bff7d31 1265' | |
| 7575 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='FFP AFR Thaw NaCit IRD 1C', [LastUpdat eDate]='20 16-07-27 1 1:17:06.00 0', [LastU pdateUser] =' RED A CTED ' WHERE [B loodProduc tGuid]='c2 dc29c2-1da 3-444f-abd d-0c09b8a3 1e3b' | |
| 7576 | UPDATE [db o].[BloodP roduct] SE T [Product Name]='FRE SH FROZEN PLASMA|NS/ XX/<=-30C| For mnf:no ninjectabl e|ResLeu:< 1E6|Frozen <=72h', [ LastUpdate Date]='201 6-07-27 11 :17:06.000 ', [LastUp dateUser]= ' RED A CTED ' WHERE [B loodProduc tGuid]='b9 e72d48-495 7-48dd-867 d-0c0b323d 19d5' | |
| 7577 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC Deg None OPN I RD LUKOPR 2C', [Last UpdateDate ]='2016-07 -27 11:17: 06.000', [ LastUpdate User]=' RED A CTED ' WHERE [B loodProduc tGuid]='15 c30eec-c01 3-4c19-8ed c-0c17d2c5 4d81' | |
| 7578 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLT AFR ACD-A NMT OPN 3C', [ LastUpdate Date]='201 6-07-27 11 :17:06.000 ', [LastUp dateUser]= ' RED A CTED ' WHERE [B loodProduc tGuid]='09 0a749c-b7e 4-4973-86a 9-0c25578b 338e' | |
| 7579 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLT AFR ACD-B OPN LUKOPR PLS Red 2C', [LastUpdat eDate]='20 16-07-27 1 1:17:06.00 0', [LastU pdateUser] =' RED A CTED ' WHERE [B loodProduc tGuid]='b7 212469-423 3-4783-9e6 8-0c49897f 5592' | |
| 7580 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC CPDA -1 LUKOPR 5C', [Reti reDate]='2 015-04-07 00:00:00.0 00', [Last UpdateDate ]='2016-07 -27 11:17: 06.000', [ LastUpdate User]=' RED A CTED ' WHERE [B loodProduc tGuid]='65 4e0bdf-922 2-4eac-a85 1-0c5ad4f6 4782' | |
| 7581 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC CPDA -1 1C', [L astUpdateD ate]='2016 -07-27 11: 17:06.000' , [LastUpd ateUser]=' RED A CTED ' WHERE [B loodProduc tGuid]='f1 da18c9-b2b 3-43d4-aef 0-0c5e6d1e 2ab9' | |
| 7582 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLT AFR Wash NS LU KOPR 2C', [LastUpdat eDate]='20 16-07-27 1 1:17:06.00 0', [LastU pdateUser] =' RED A CTED ' WHERE [B loodProduc tGuid]='b6 83d6fb-24b 9-447c-880 9-0c6489aa 1380' | |
| 7583 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLT AFR ACD-A NMT OPN 4C', [ LastUpdate Date]='201 6-07-27 11 :17:06.000 ', [LastUp dateUser]= ' RED A CTED ' WHERE [B loodProduc tGuid]='80 b5b39a-bbf 7-4fc3-b72 2-0c6a381d 995c' | |
| 7584 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLT AFR NaCit OPN LUKOPR PLS Red 4C', [LastUpdat eDate]='20 16-07-27 1 1:17:06.00 0', [LastU pdateUser] =' RED A CTED ' WHERE [B loodProduc tGuid]='aa 1ef2a4-360 5-490c-aae a-0c73c257 6071' | |
| 7585 | UPDATE [db o].[BloodP roduct] SE T [Product Name]='FRE SH FROZEN PLASMA|CPD A-1/XX/<=- 65C|Not fo r tx or mn f', [LastU pdateDate] ='2016-07- 27 11:17:0 6.000', [L astUpdateU ser]=' RED A CTED ' WHERE [B loodProduc tGuid]='87 787968-0c7 d-4c91-b99 b-0c8435df 6c5a' | |
| 7586 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC Deg None IRD 6 C', [LastU pdateDate] ='2016-07- 27 11:17:0 6.000', [L astUpdateU ser]=' RED A CTED ' WHERE [B loodProduc tGuid]='66 2938e0-681 6-4a85-b2c 4-0c982da2 70ca' | |
| 7587 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLT AFR ACD-A OPN IRD LUKOPR PLS Red 2 C', [LastU pdateDate] ='2016-07- 27 11:17:0 6.000', [L astUpdateU ser]=' RED A CTED ' WHERE [B loodProduc tGuid]='d0 c28239-af4 d-4df9-9aa 1-0ca8641e efd2' | |
| 7588 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC Deg None 7C', [LastUpdat eDate]='20 16-07-27 1 1:17:06.00 0', [LastU pdateUser] =' RED A CTED ' WHERE [B loodProduc tGuid]='bb b0b45f-9fe 2-4faf-ace 8-0cae62e4 fede' | |
| 7589 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC AFR CP2D>AS3 I RD 2C', [L astUpdateD ate]='2016 -07-27 11: 17:06.000' , [LastUpd ateUser]=' RED A CTED ' WHERE [B loodProduc tGuid]='a6 aa90bb-ba8 7-4083-939 4-0cb04490 d2c4' | |
| 7590 | UPDATE [db o].[BloodP roduct] SE T [Product Name]='FRE SH FROZEN PLASMA|CPD A-1/XX/<=- 25C|Irradi ated', [La stUpdateDa te]='2016- 07-27 11:1 7:06.000', [LastUpda teUser]=' RED A CTED ' WHERE [B loodProduc tGuid]='c9 79c251-088 5-4408-8cb a-0cc087dc 3fc8' | |
| 7591 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='WB CP2D IRD 8C', [ LastUpdate Date]='201 6-07-27 11 :17:06.000 ', [LastUp dateUser]= ' RED A CTED ' WHERE [B loodProduc tGuid]='bf cd7a98-38c d-4d4c-812 6-0cce57d2 c2b4' | |
| 7592 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC AFR CPDA-1 7C' , [LastUpd ateDate]=' 2016-07-27 11:17:06. 000', [Las tUpdateUse r]=' RED A CTED ' WHERE [B loodProduc tGuid]='14 e25e74-907 2-4de2-bec 8-0ce48d2a 112d' | |
| 7593 | UPDATE [db o].[BloodP roduct] SE T [Product Name]='Fro zen Rejuve nated Aphe resis RED BLOOD CELL S|None/XX/ <=-65C|Ope n|Irradiat ed|ResLeu: <5E6|2nd c ontainer', [ProductS hortName]= 'RBC AFR F roz Rej No ne OPN IRD LUKOPR 2C ', [LastUp dateDate]= '2016-07-2 7 11:17:06 .000', [La stUpdateUs er]=' RED A CTED ' WHERE [B loodProduc tGuid]='2f 1e4026-3e1 f-497d-9ed 4-0cf38cd7 1860' | |
| 7594 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC CPDA -1 IRD 5C' , [RetireD ate]='2015 -04-07 00: 00:00.000' , [LastUpd ateDate]=' 2016-07-27 11:17:06. 000', [Las tUpdateUse r]=' RED A CTED ' WHERE [B loodProduc tGuid]='07 8f43ad-fef b-42c1-90c 9-0d093fa6 a051' | |
| 7595 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLT AFR Wash None OPN IRD LU KOPR 1CNA' , [LastUpd ateDate]=' 2016-07-27 11:17:06. 000', [Las tUpdateUse r]=' RED A CTED ' WHERE [B loodProduc tGuid]='36 fbe125-bc6 6-4185-a36 8-0d0e430b 2f78' | |
| 7596 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLT AFR Thaw DMSO OPN IRD LU KOPR 4C', [LastUpdat eDate]='20 16-07-27 1 1:17:06.00 0', [LastU pdateUser] =' RED A CTED ' WHERE [B loodProduc tGuid]='56 144b6a-5bc 1-4ff0-8f8 0-0d213fd5 aa0e' | |
| 7597 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC AFR CP2D>AS3 I RD 7C', [L astUpdateD ate]='2016 -07-27 11: 17:06.000' , [LastUpd ateUser]=' RED A CTED ' WHERE [B loodProduc tGuid]='17 5b6950-ee0 5-47a8-b1a 6-0d26630f ff6e' | |
| 7598 | UPDATE [db o].[BloodP roduct] SE T [Product Name]='Fro zen RED BL OOD CELLS| None/500mL /<=-65C|Op en|Irradia ted|ResLeu :<5E6', [L astUpdateD ate]='2016 -07-27 11: 17:06.000' , [LastUpd ateUser]=' RED A CTED ' WHERE [B loodProduc tGuid]='24 13656d-b14 7-466c-b83 f-0d2fae82 b217' | |
| 7599 | UPDATE [db o].[BloodP roduct] SE T [Product Name]='FRE SH FROZEN PLASMA|CPD A-1/450mL/ <=-25C|For mnf:nonin jectable|F rozen <=24 h', [LastU pdateDate] ='2016-07- 27 11:17:0 6.000', [L astUpdateU ser]=' RED A CTED ' WHERE [B loodProduc tGuid]='90 0ede66-650 c-40a4-928 2-0d2fe3d0 5284' | |
| 7600 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLT AFR ACD-B MNFN I OPN 3C', [LastUpda teDate]='2 016-07-27 11:17:06.0 00', [Last UpdateUser ]=' RED A CTED ' WHERE [B loodProduc tGuid]='68 41ffde-de9 9-4cad-a3f d-0d3a325e 75f7' | |
| 7601 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLT AFR ACD-A OPN IRD 1CNA', [LastUpda teDate]='2 016-07-27 11:17:06.0 00', [Last UpdateUser ]=' RED A CTED ' WHERE [B loodProduc tGuid]='d2 3203fd-b67 1-4cba-946 2-0d4af537 8749' | |
| 7602 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLT AFR ACD-A OPN IRD LUKOPR 2C', [Las tUpdateDat e]='2016-0 7-27 11:17 :06.000', [LastUpdat eUser]=' RED A CTED ' WHERE [B loodProduc tGuid]='11 53c645-e13 e-4129-835 4-0d4bb934 36d3' | |
| 7603 | UPDATE [db o].[BloodP roduct] SE T [Product Name]='FRE SH FROZEN PLASMA|CPD /450mL/<=- 30C', [Las tUpdateDat e]='2016-0 7-27 11:17 :06.000', [LastUpdat eUser]=' RED A CTED ' WHERE [B loodProduc tGuid]='34 10397e-0b9 9-4954-8ab 4-0d9b7d8a 5101' | |
| 7604 | UPDATE [db o].[BloodP roduct] SE T [Product Name]='PLA SMA|CPD/45 0mL/<=-30C |Frozen >2 4h', [Last UpdateDate ]='2016-07 -27 11:17: 06.000', [ LastUpdate User]=' RED A CTED ' WHERE [B loodProduc tGuid]='24 e139ac-868 3-4265-837 e-0db77b72 4f83' | |
| 7605 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLT AFR ACD-A LUKO PR 3C BacM tr', [Last UpdateDate ]='2016-07 -27 11:17: 06.000', [ LastUpdate User]=' RED A CTED ' WHERE [B loodProduc tGuid]='91 9231bd-803 a-43c8-854 f-0dbc0491 a537' | |
| 7606 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='FFP AFR Thaw None IRD LUKOPR 6C', [Las tUpdateDat e]='2016-0 7-27 11:17 :06.000', [LastUpdat eUser]=' RED A CTED ' WHERE [B loodProduc tGuid]='72 7b275d-d30 f-462a-a5d 5-0dbee8a5 2b14' | |
| 7607 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLT AFR Froz None MNFNI LUKO PR 2C', [L astUpdateD ate]='2016 -07-27 11: 17:06.000' , [LastUpd ateUser]=' RED A CTED ' WHERE [B loodProduc tGuid]='e9 790fbd-0a1 2-4744-a09 e-0dc3888e 9393' | |
| 7608 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLT AFR ACD-A 6C', [LastUpda teDate]='2 016-07-27 11:17:06.0 00', [Last UpdateUser ]=' RED A CTED ' WHERE [B loodProduc tGuid]='a4 d06c13-b68 9-4847-b05 c-0dc52cee 60dd' | |
| 7609 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLASMA A FR None IR D 3C', [La stUpdateDa te]='2016- 07-27 11:1 7:06.000', [LastUpda teUser]=' RED A CTED ' WHERE [B loodProduc tGuid]='cc 939073-82a c-4bb8-a2f c-0dc74562 c5c2' | |
| 7610 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLT AFR NaCit OPN IRD PLS Re d 1CNA', [ LastUpdate Date]='201 6-07-27 11 :17:06.000 ', [LastUp dateUser]= ' RED A CTED ' WHERE [B loodProduc tGuid]='f8 59fe95-929 5-443d-880 4-0dd21b6c 91b0' | |
| 7611 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC AFR ACD-A OPN IRD LUKOPR 2C', [Las tUpdateDat e]='2016-0 7-27 11:17 :06.000', [LastUpdat eUser]=' RED A CTED ' WHERE [B loodProduc tGuid]='98 3840cc-e13 5-4d86-96d f-0df6cd79 283b' | |
| 7612 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLT AFR NS LUKOPR 2C BacMtr' , [LastUpd ateDate]=' 2016-07-27 11:17:06. 000', [Las tUpdateUse r]=' RED A CTED ' WHERE [B loodProduc tGuid]='50 414cb3-564 a-4b2f-bb9 5-0df9f009 3926' | |
| 7613 | UPDATE [db o].[BloodP roduct] SE T [Product Name]='Aph eresis FRE SH FROZEN PLASMA|CPD -50/XX/<=- 65C|ResLeu :<1E6|Froz en <=6h|1s t containe r', [Produ ctShortNam e]='FFP AF R CPD-50 L UKOPR 1C', [LastUpda teDate]='2 016-07-27 11:17:06.0 00', [Last UpdateUser ]=' RED A CTED ' WHERE [B loodProduc tGuid]='02 de27c1-616 8-4494-8bf a-0dfa600b da5f' | |
| 7614 | UPDATE [db o].[BloodP roduct] SE T [Product Name]='Aph eresis FRE SH FROZEN PLASMA|ACD -A/XX/<=-3 0C|ResLeu: <1E6|>=200 mL<400mL|F rozen <=6h |2nd conta iner', [Pr oductShort Name]='FFP AFR ACD-A LUKOPR 2C ', [LastUp dateDate]= '2016-07-2 7 11:17:06 .000', [La stUpdateUs er]=' RED A CTED ' WHERE [B loodProduc tGuid]='16 0e9c48-ea4 5-4c3d-bc3 c-0e10aaa2 2b90' | |
| 7615 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLT AFR ACD-A LUKO PR 3C', [L astUpdateD ate]='2016 -07-27 11: 17:06.000' , [LastUpd ateUser]=' RED A CTED ' WHERE [B loodProduc tGuid]='24 3d5cd4-ec8 b-4ab7-880 7-0e117f67 cf86' | |
| 7616 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLT AFR Thaw DMSO OPN IRD LU KOPR PA 2C NA', [Last UpdateDate ]='2016-07 -27 11:17: 06.000', [ LastUpdate User]=' RED A CTED ' WHERE [B loodProduc tGuid]='71 21853e-5f0 0-491e-895 0-0e4907cc 318a' | |
| 7617 | UPDATE [db o].[BloodP roduct] SE T [Product Name]='Fro zen Aphere sis PLATEL ETS|DMSO/X X/<=-80C|O pen|ResLeu :<1E6|Ribo flavin-tre ated', [La stUpdateDa te]='2016- 07-27 11:1 7:06.000', [LastUpda teUser]=' RED A CTED ' WHERE [B loodProduc tGuid]='89 826014-130 e-465e-a4f e-0e619d2d 9759' | |
| 7618 | UPDATE [db o].[BloodP roduct] SE T [Product Name]='Aph eresis FRE SH FROZEN PLASMA|ACD -B/XX/<=-3 0C|<200 mL |Quar:>=6m /retested' , [LastUpd ateDate]=' 2016-07-27 11:17:06. 000', [Las tUpdateUse r]=' RED A CTED ' WHERE [B loodProduc tGuid]='ad e47b22-f42 7-4e16-800 c-0e9203b5 e91b' | |
| 7619 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC CPD> AS1 LUKOPR 2C', [Las tUpdateDat e]='2016-0 7-27 11:17 :06.000', [LastUpdat eUser]=' RED A CTED ' WHERE [B loodProduc tGuid]='46 7efe86-445 9-4457-8c6 4-0e9ab9be 7bec' | |
| 7620 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLASMA A FR Thaw No ne 8C', [L astUpdateD ate]='2016 -07-27 11: 17:06.000' , [LastUpd ateUser]=' RED A CTED ' WHERE [B loodProduc tGuid]='a7 582789-5b7 e-40ac-8bf 8-0e9b8224 6927' | |
| 7621 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='FFP AFR Thaw ACD-A LUKOPR 6C ', [LastUp dateDate]= '2016-07-2 7 11:17:06 .000', [La stUpdateUs er]=' RED A CTED ' WHERE [B loodProduc tGuid]='1e 057ad3-10e 8-4702-96e e-0ea4acc1 5075' | |
| 7622 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLT AFR ACD-B OPN 4C', [Last UpdateDate ]='2016-07 -27 11:17: 06.000', [ LastUpdate User]=' RED A CTED ' WHERE [B loodProduc tGuid]='da 3e076e-55c c-4fce-8df 6-0ea4b1fd 78dc' | |
| 7623 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLT AFR ACD-A MNFN I IRD LUKO PR 2C', [L astUpdateD ate]='2016 -07-27 11: 17:06.000' , [LastUpd ateUser]=' RED A CTED ' WHERE [B loodProduc tGuid]='b2 d83bed-039 0-467a-9fa a-0eab816d adfa' | |
| 7624 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC AFR CPDA-1 8C' , [LastUpd ateDate]=' 2016-07-27 11:17:06. 000', [Las tUpdateUse r]=' RED A CTED ' WHERE [B loodProduc tGuid]='8e 79ed73-284 8-4b5f-8fd d-0eaccd49 8fc1' | |
| 7625 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='FFP AFR None 6C', [LastUpdat eDate]='20 16-07-27 1 1:17:06.00 0', [LastU pdateUser] =' RED A CTED ' WHERE [B loodProduc tGuid]='7b d7bb5c-2e3 e-472f-8f1 e-0eadc476 6775' | |
| 7626 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLT AFR ACD-A IRD LUKOPR 1C' , [LastUpd ateDate]=' 2016-07-27 11:17:06. 000', [Las tUpdateUse r]=' RED A CTED ' WHERE [B loodProduc tGuid]='7f e7a209-fb5 7-4a0a-a5f 8-0eb70630 8cad' | |
| 7627 | UPDATE [db o].[BloodP roduct] SE T [Product Name]='Aph eresis FRE SH FROZEN PLASMA|ACD -A/XX/<=-3 0C', [Last UpdateDate ]='2016-07 -27 11:17: 06.000', [ LastUpdate User]=' RED A CTED ' WHERE [B loodProduc tGuid]='c1 5de35c-095 8-4058-931 a-0ec014c1 faab' | |
| 7628 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC Deg Rej None O PN IRD 6C' , [LastUpd ateDate]=' 2016-07-27 11:17:06. 000', [Las tUpdateUse r]=' RED A CTED ' WHERE [B loodProduc tGuid]='e1 71612c-3cd c-43fb-b4d b-0ee3eb78 1063' | |
| 7629 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLT AFR ACD-A IRD LUKOPR 1C Ribo', [La stUpdateDa te]='2016- 07-27 11:1 7:06.000', [LastUpda teUser]=' RED A CTED ' WHERE [B loodProduc tGuid]='e5 fbbaf9-782 f-4f2b-899 2-0ef4baef aa7d' | |
| 7630 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC AFR ACD-A>AS3 IRD LUKOPR 8C', [Las tUpdateDat e]='2016-0 7-27 11:17 :06.000', [LastUpdat eUser]=' RED A CTED ' WHERE [B loodProduc tGuid]='46 e96e03-9e4 b-4f7c-a73 3-0f034230 c6a4' | |
| 7631 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLT AFR Wash NS IR D LUKOPR 1 C', [LastU pdateDate] ='2016-07- 27 11:17:0 6.000', [L astUpdateU ser]=' RED A CTED ' WHERE [B loodProduc tGuid]='4a 15ae10-9aa 6-4e4d-bef b-0f25b346 0f64' | |
| 7632 | UPDATE [db o].[BloodP roduct] SE T [Product Name]='FRE SH FROZEN PLASMA|CPD A-1/XX/<=- 30C|Not fo r tx or mn f', [LastU pdateDate] ='2016-07- 27 11:17:0 6.000', [L astUpdateU ser]=' RED A CTED ' WHERE [B loodProduc tGuid]='d0 0f3522-bc8 6-497a-8dd 5-0f2f41e2 840f' | |
| 7633 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC AFR CP2D>AS3 O PN LUKOPR 2C', [Last UpdateDate ]='2016-07 -27 11:17: 06.000', [ LastUpdate User]=' RED A CTED ' WHERE [B loodProduc tGuid]='d2 171462-e5d 0-4ae0-b6b 0-0f33cd7a 8e59' | |
| 7634 | UPDATE [db o].[BloodP roduct] SE T [Product Name]='Aph eresis FRE SH FROZEN PLASMA|ACD -B/XX/<=-6 5C|>=200mL <400mL', [ LastUpdate Date]='201 6-07-27 11 :17:06.000 ', [LastUp dateUser]= ' RED A CTED ' WHERE [B loodProduc tGuid]='26 5475c0-7e1 1-4f85-a1e d-0f34a02e 7d3b' | |
| 7635 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC AFR Deg None O PN LUKOPR 1C', [Last UpdateDate ]='2016-07 -27 11:17: 06.000', [ LastUpdate User]=' RED A CTED ' WHERE [B loodProduc tGuid]='95 45838b-ba6 b-472d-8e2 3-0f3f8dde c00a' | |
| 7636 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='FFP Thaw CPD 3C', [LastUpdat eDate]='20 16-07-27 1 1:17:06.00 0', [LastU pdateUser] =' RED A CTED ' WHERE [B loodProduc tGuid]='13 4a8fb0-b99 6-48f5-900 8-0f40ec94 0944' | |
| 7637 | UPDATE [db o].[BloodP roduct] SE T [Product Name]='Aph eresis FRE SH FROZEN PLASMA|ACD -A/XX/<=-3 0C|ResLeu: <1E6|>=600 mL', [Last UpdateDate ]='2016-07 -27 11:17: 06.000', [ LastUpdate User]=' RED A CTED ' WHERE [B loodProduc tGuid]='ca e6f0f3-bd3 6-41ec-8a0 f-0f49d7ce 5a65' | |
| 7638 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLT AFR ACD-B OPN IRD PLS Re d 1CNA', [ LastUpdate Date]='201 6-07-27 11 :17:06.000 ', [LastUp dateUser]= ' RED A CTED ' WHERE [B loodProduc tGuid]='49 f09a05-e59 7-43da-ac2 b-0f5b818e 37d0' | |
| 7639 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLT AFR ACD-A LUKO PR 7C BacM tr', [Last UpdateDate ]='2016-07 -27 11:17: 06.000', [ LastUpdate User]=' RED A CTED ' WHERE [B loodProduc tGuid]='74 4acf3f-8f9 3-4e20-b48 e-0f5fbc95 6e10' | |
| 7640 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLT AFR ACD-A NMT 4C', [Last UpdateDate ]='2016-07 -27 11:17: 06.000', [ LastUpdate User]=' RED A CTED ' WHERE [B loodProduc tGuid]='81 bb3040-4e3 b-41fc-850 d-0f66bd9e f799' | |
| 7641 | UPDATE [db o].[BloodP roduct] SE T [Product Name]='Aph eresis FRE SH FROZEN PLASMA|ACD -B/XX/<=-6 5C|Irradia ted|<200 m L', [LastU pdateDate] ='2016-07- 27 11:17:0 6.000', [L astUpdateU ser]=' RED A CTED ' WHERE [B loodProduc tGuid]='01 d253d6-b88 4-4f30-be6 4-0f71044b df9c' | |
| 7642 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLT AFR Thaw DMSO OPN IRD LU KOPR SR/PA 2C', [Las tUpdateDat e]='2016-0 7-27 11:17 :06.000', [LastUpdat eUser]=' RED A CTED ' WHERE [B loodProduc tGuid]='fc bbc5ce-e36 6-4216-b04 a-0f74a99a f100' | |
| 7643 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='FFP AFR Thaw ACD-A 5C QUAR', [LastUpda teDate]='2 016-07-27 11:17:06.0 00', [Last UpdateUser ]=' RED A CTED ' WHERE [B loodProduc tGuid]='35 d2b26c-cb1 3-4984-84f b-0f7828af edf0' | |
| 7644 | UPDATE [db o].[BloodP roduct] SE T [Product Name]='Fro zen SERUM| None/450mL /<=-25C', [ProductSh ortName]=' SERUM Froz None', [M aximumStor ageTime]=8 760, [Orig inalProduc tTypeCode] ='E076', [ LastUpdate Date]='201 6-07-27 11 :17:06.000 ', [LastUp dateUser]= ' RED A CTED ' WHERE [B loodProduc tGuid]='c9 7fa2bb-f16 2-4a04-ab4 b-0fafff17 438d' | |
| 7645 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC CPDA -1 IRD LUK OPR 2C', [ RetireDate ]='2015-04 -07 00:00: 00.000', [ LastUpdate Date]='201 6-07-27 11 :17:06.000 ', [LastUp dateUser]= ' RED A CTED ' WHERE [B loodProduc tGuid]='d3 1c7872-9c2 7-406c-bb9 1-0fd1db86 1255' | |
| 7646 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLASMA A FR Thaw AC D-A OPN 3C ', [LastUp dateDate]= '2016-07-2 7 11:17:06 .000', [La stUpdateUs er]=' RED A CTED ' WHERE [B loodProduc tGuid]='29 6af449-0b0 0-4d10-b53 d-0fd4161e 4e43' | |
| 7647 | UPDATE [db o].[BloodP roduct] SE T [Product Name]='CRY OPRECIPITA TE|CPD/450 mL/<=-30C| ResLeu:<1E 6|Quar:>=6 2d/reteste d', [LastU pdateDate] ='2016-07- 27 11:17:0 6.000', [L astUpdateU ser]=' RED A CTED ' WHERE [B loodProduc tGuid]='2e c1eb58-d0f 3-409e-ac1 0-0fda3af5 10ac' | |
| 7648 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLT AFR NaCit OPN IRD PLS Re d 3C', [La stUpdateDa te]='2016- 07-27 11:1 7:06.000', [LastUpda teUser]=' RED A CTED ' WHERE [B loodProduc tGuid]='0f d91893-41d b-4c5b-9f8 d-0fe49ca2 6810' | |
| 7649 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC AFR ACD-A>AS1 IRD 1C', [ LastUpdate Date]='201 6-07-27 11 :17:06.000 ', [LastUp dateUser]= ' RED A CTED ' WHERE [B loodProduc tGuid]='c5 419a9c-555 9-4959-986 4-0ff92120 202c' | |
| 7650 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLT AFR Wash None MNFNI 3C', [LastUpda teDate]='2 016-07-27 11:17:06.0 00', [Last UpdateUser ]=' RED A CTED ' WHERE [B loodProduc tGuid]='c8 b54df7-301 8-40e4-bbd 4-10318c4a 977d' | |
| 7651 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC CP2D IRD LUKOP R1C', [Las tUpdateDat e]='2016-0 7-27 11:17 :06.000', [LastUpdat eUser]=' RED A CTED ' WHERE [B loodProduc tGuid]='95 8d423e-3d3 0-4738-9ed 8-103a68bf 0869' | |
| 7652 | UPDATE [db o].[BloodP roduct] SE T [Product Name]='Aph eresis FRE SH FROZEN PLASMA|NS/ XX/<=-30C| For mnf:no ninjectabl e|Frozen < =2h', [Las tUpdateDat e]='2016-0 7-27 11:17 :06.000', [LastUpdat eUser]=' RED A CTED ' WHERE [B loodProduc tGuid]='99 a97941-682 7-486d-ad7 f-103d9ab4 9c82' | |
| 7653 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC AFR CPDA-1 LUK OPR 3C', [ LastUpdate Date]='201 6-07-27 11 :17:06.000 ', [LastUp dateUser]= ' RED A CTED ' WHERE [B loodProduc tGuid]='63 be6f32-d13 4-427c-997 7-10422e40 b185' | |
| 7654 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC CPD> AS1 6C', [ LastUpdate Date]='201 6-07-27 11 :17:06.000 ', [LastUp dateUser]= ' RED A CTED ' WHERE [B loodProduc tGuid]='4d f77b98-88a a-4ddf-87d 1-105af6b9 e0e9' | |
| 7655 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLT AFR ACD-A>PAS- C NMT LUKO PR 3C', [L astUpdateD ate]='2016 -07-27 11: 17:06.000' , [LastUpd ateUser]=' RED A CTED ' WHERE [B loodProduc tGuid]='13 559085-1b6 6-4b73-8c8 5-106184ba bced' | |
| 7656 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC CP2D LUKOPR 1C ', [LastUp dateDate]= '2016-07-2 7 11:17:06 .000', [La stUpdateUs er]=' RED A CTED ' WHERE [B loodProduc tGuid]='a3 2863cf-561 d-4cf5-80e f-10649570 5deb' | |
| 7657 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLT AFR ACD-A OPN LUKOPR PLS Red 2C', [LastUpdat eDate]='20 16-07-27 1 1:17:06.00 0', [LastU pdateUser] =' RED A CTED ' WHERE [B loodProduc tGuid]='9c d1e806-70d 5-470b-84e 8-10716e46 eb69' | |
| 7658 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC AFR ACD-A>AS1 OPN IRD LU KOPR 2C', [LastUpdat eDate]='20 16-07-27 1 1:17:06.00 0', [LastU pdateUser] =' RED A CTED ' WHERE [B loodProduc tGuid]='07 ec1b1e-396 e-4bbf-80a e-1077dc9d 0db9' | |
| 7659 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC AFR ACD-A>AS3 OPN LUKOPR 2C', [Las tUpdateDat e]='2016-0 7-27 11:17 :06.000', [LastUpdat eUser]=' RED A CTED ' WHERE [B loodProduc tGuid]='c9 116d3b-470 f-43fb-a98 9-10840c7b 3e7e' | |
| 7660 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC AFR CPDA-1 3C' , [LastUpd ateDate]=' 2016-07-27 11:17:06. 000', [Las tUpdateUse r]=' RED A CTED ' WHERE [B loodProduc tGuid]='20 db9d84-5c8 d-406f-bf6 7-10891e99 7b1e' | |
| 7661 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC AFR CP2D>AS3 M NFI 1C', [ LastUpdate Date]='201 6-07-27 11 :17:06.000 ', [LastUp dateUser]= ' RED A CTED ' WHERE [B loodProduc tGuid]='ce 07f066-b5a d-4d26-b85 8-10a19d3b 1a42' | |
| 7662 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC AFR Deg Rej No ne OPN IRD 4C', [Las tUpdateDat e]='2016-0 7-27 11:17 :06.000', [LastUpdat eUser]=' RED A CTED ' WHERE [B loodProduc tGuid]='74 c9e0ea-014 6-4924-a94 e-10a330e6 2d95' | |
| 7663 | UPDATE [db o].[BloodP roduct] SE T [Product Name]='FRE SH FROZEN PLASMA|CPD /XX/<=-65C |1st conta iner', [Pr oductShort Name]='FFP CPD 1C', [LastUpdat eDate]='20 16-07-27 1 1:17:06.00 0', [LastU pdateUser] =' RED A CTED ' WHERE [B loodProduc tGuid]='a9 ceab73-bee 6-4356-9bb a-10b1aa0e 370e' | |
| 7664 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLT AFR ACD-A NMT OPN 2C', [ LastUpdate Date]='201 6-07-27 11 :17:06.000 ', [LastUp dateUser]= ' RED A CTED ' WHERE [B loodProduc tGuid]='7e 7c83bc-036 0-41c3-942 7-10b986b6 4274' | |
| 7665 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC Froz None OPN IRD 3C', [ LastUpdate Date]='201 6-07-27 11 :17:06.000 ', [LastUp dateUser]= ' RED A CTED ' WHERE [B loodProduc tGuid]='7c bfe74b-eb6 a-49cf-951 c-10c1dc1a d1fd' | |
| 7666 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLT AFR NaCit NMT OPN 2CNA', [LastUpda teDate]='2 016-07-27 11:17:06.0 00', [Last UpdateUser ]=' RED A CTED ' WHERE [B loodProduc tGuid]='2d 863a8d-8ac e-44d9-b82 f-10d3d883 2504' | |
| 7667 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC AFR CP2D>AS3 I RD LUKOPR 5C', [Last UpdateDate ]='2016-07 -27 11:17: 06.000', [ LastUpdate User]=' RED A CTED ' WHERE [B loodProduc tGuid]='90 6c24c9-4f2 5-4ca3-bab 0-10d8f173 01f8' | |
| 7668 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC AFR CP2D>AS3 M NFNI 2C', [LastUpdat eDate]='20 16-07-27 1 1:17:06.00 0', [LastU pdateUser] =' RED A CTED ' WHERE [B loodProduc tGuid]='63 c24d42-e33 c-4b34-8e0 d-10e7bc4a 35ac' | |
| 7669 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLT AFR ACD-A IRD LUKOPR PLS Red 3C', [LastUpdat eDate]='20 16-07-27 1 1:17:06.00 0', [LastU pdateUser] =' RED A CTED ' WHERE [B loodProduc tGuid]='55 3ca92c-6bb a-4085-b68 2-10f4b47c 5172' | |
| 7670 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='FFP AFR None IRD 1 C', [LastU pdateDate] ='2016-07- 27 11:17:0 6.000', [L astUpdateU ser]=' RED A CTED ' WHERE [B loodProduc tGuid]='a3 49ce5d-fe7 5-45c1-b0f 5-114900ed c81f' | |
| 7671 | UPDATE [db o].[BloodP roduct] SE T [Product Name]='Aph eresis FRE SH FROZEN PLASMA|ACD -B/XX/<=-3 0C|>=600mL ', [LastUp dateDate]= '2016-07-2 7 11:17:06 .000', [La stUpdateUs er]=' RED A CTED ' WHERE [B loodProduc tGuid]='b6 e250d4-6c9 c-4763-98e 4-1161c2fd 929c' | |
| 7672 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='FFP Thaw None 8C', [LastUpda teDate]='2 016-07-27 11:17:06.0 00', [Last UpdateUser ]=' RED A CTED ' WHERE [B loodProduc tGuid]='9f 46008b-48b 7-4678-8ba 6-1164f860 0041' | |
| 7673 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC AFR ACD-A NMT 2C', [Last UpdateDate ]='2016-07 -27 11:17: 06.000', [ LastUpdate User]=' RED A CTED ' WHERE [B loodProduc tGuid]='cd dd7598-ca5 8-43f3-8c2 5-11ab0c69 1624' | |
| 7674 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='FFP AFR None IRD 1 C', [LastU pdateDate] ='2016-07- 27 11:17:0 6.000', [L astUpdateU ser]=' RED A CTED ' WHERE [B loodProduc tGuid]='bd 38cf4c-605 4-4b14-a74 b-11b595c0 8cbd' | |
| 7675 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC CPD> AS1 IRD 2C ', [LastUp dateDate]= '2016-07-2 7 11:17:06 .000', [La stUpdateUs er]=' RED A CTED ' WHERE [B loodProduc tGuid]='6c bae4a3-733 f-478c-85a d-11d7eaed f021' | |
| 7676 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLT AFR Wash None OPN LUKOPR 3C', [Las tUpdateDat e]='2016-0 7-27 11:17 :06.000', [LastUpdat eUser]=' RED A CTED ' WHERE [B loodProduc tGuid]='99 572fab-35f d-4881-a86 8-11e0b0d3 224c' | |
| 7677 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLT AFR ACD-B OPN 3C', [Last UpdateDate ]='2016-07 -27 11:17: 06.000', [ LastUpdate User]=' RED A CTED ' WHERE [B loodProduc tGuid]='f0 154ee1-c19 8-4a98-86e a-1253d4d7 5c3f' | |
| 7678 | UPDATE [db o].[BloodP roduct] SE T [Product Name]='Aph eresis FRE SH FROZEN PLASMA|ACD -B/XX/<=-3 0C|Irradia ted|<200 m L|Quar:>=6 m/retested ', [LastUp dateDate]= '2016-07-2 7 11:17:06 .000', [La stUpdateUs er]=' RED A CTED ' WHERE [B loodProduc tGuid]='46 980d02-02f 3-48e7-89c f-12594850 ba51' | |
| 7679 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLT AFR Wash None OPN LUKOPR 3C', [Las tUpdateDat e]='2016-0 7-27 11:17 :06.000', [LastUpdat eUser]=' RED A CTED ' WHERE [B loodProduc tGuid]='cb 0bde4f-bd4 8-4e0a-b50 2-125e932e 4daf' | |
| 7680 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLT AFR ACD-B NMT OPN 3C', [ LastUpdate Date]='201 6-07-27 11 :17:06.000 ', [LastUp dateUser]= ' RED A CTED ' WHERE [B loodProduc tGuid]='7d 9ec611-846 9-4579-869 5-127554f1 85c3' | |
| 7681 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLT AFR Wash PAS-E LUKOPR 3C ', [LastUp dateDate]= '2016-07-2 7 11:17:06 .000', [La stUpdateUs er]=' RED A CTED ' WHERE [B loodProduc tGuid]='1c a44259-a08 8-4be1-95e 1-12794214 065a' | |
| 7682 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='FFP AFR None IRD 4 C', [LastU pdateDate] ='2016-07- 27 11:17:0 6.000', [L astUpdateU ser]=' RED A CTED ' WHERE [B loodProduc tGuid]='fe 127ab0-da6 9-443a-9b5 6-127d0580 c12a' | |
| 7683 | UPDATE [db o].[BloodP roduct] SE T [Product Name]='POO LED CRYOPR ECIPITATE| None/XX/<= -30C|Open| Irradiated ', [LastUp dateDate]= '2016-07-2 7 11:17:06 .000', [La stUpdateUs er]=' RED A CTED ' WHERE [B loodProduc tGuid]='09 07f9d1-941 8-405e-973 9-12a0f278 9864' | |
| 7684 | UPDATE [db o].[BloodP roduct] SE T [Product Name]='Aph eresis FRE SH FROZEN PLASMA|ACD -A/XX/<=-2 5C|For mnf :injectabl e|Frozen < =24h|Quar: >=112d/ret ested', [L astUpdateD ate]='2016 -07-27 11: 17:06.000' , [LastUpd ateUser]=' RED A CTED ' WHERE [B loodProduc tGuid]='4a cf0b28-efd 6-4a3c-821 e-12ac42fa 9495' | |
| 7685 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC AFR NS MNFNI 2 C', [LastU pdateDate] ='2016-07- 27 11:17:0 6.000', [L astUpdateU ser]=' RED A CTED ' WHERE [B loodProduc tGuid]='40 3c9ec1-f0d 1-4c52-b3f 7-12ba1565 b8dd' | |
| 7686 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC AFR CPDA-1 4C' , [LastUpd ateDate]=' 2016-07-27 11:17:06. 000', [Las tUpdateUse r]=' RED A CTED ' WHERE [B loodProduc tGuid]='ee 5f8029-2d2 b-44fe-9b0 d-12babfaa e559' | |
| 7687 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLT AFR ACD-A IRD LUKOPR PLS Red 1C', [LastUpdat eDate]='20 16-07-27 1 1:17:06.00 0', [LastU pdateUser] =' RED A CTED ' WHERE [B loodProduc tGuid]='d3 f4ce6f-070 2-4cdf-880 1-12bbe37a 00c3' | |
| 7688 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='FFP AFR Thaw None 4C', [Last UpdateDate ]='2016-07 -27 11:17: 06.000', [ LastUpdate User]=' RED A CTED ' WHERE [B loodProduc tGuid]='c2 320e10-18e a-4d95-b95 4-12bcd5d1 c93f' | |
| 7689 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC AFR Wash None OPN 4C', [ LastUpdate Date]='201 6-07-27 11 :17:06.000 ', [LastUp dateUser]= ' RED A CTED ' WHERE [B loodProduc tGuid]='7b 949d8c-653 5-4e07-a73 e-12be5c86 a008' | |
| 7690 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLT AFR ACD-A OPN IRD 1C', [ LastUpdate Date]='201 6-07-27 11 :17:06.000 ', [LastUp dateUser]= ' RED A CTED ' WHERE [B loodProduc tGuid]='4f 160414-b60 3-419b-866 b-12c24aa8 8262' | |
| 7691 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLT AFR ACD-A IRD LUKOPR 6C BacMtr', [ LastUpdate Date]='201 6-07-27 11 :17:06.000 ', [LastUp dateUser]= ' RED A CTED ' WHERE [B loodProduc tGuid]='5f 057950-359 0-4bfe-a93 2-12c72cb5 556e' | |
| 7692 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLT AFR PAS-D IRD LUKOPR 4C' , [LastUpd ateDate]=' 2016-07-27 11:17:06. 000', [Las tUpdateUse r]=' RED A CTED ' WHERE [B loodProduc tGuid]='54 c8c9ce-c67 e-420b-b3e b-12ce8674 bb4c' | |
| 7693 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLT AFR ACD-A IRD LUKOPR 3C BacMtr', [ LastUpdate Date]='201 6-07-27 11 :17:06.000 ', [LastUp dateUser]= ' RED A CTED ' WHERE [B loodProduc tGuid]='19 608e36-b44 0-4576-92b 1-12dae407 6643' | |
| 7694 | UPDATE [db o].[BloodP roduct] SE T [Product Name]='POO LED GRANUL OCYTES|CPD /450mL/rt| Irradiated |Plasma Re duced|6 un its', [Pro ductShortN ame]='GRAN Pool CPD IRD PLS Re d 6U', [La stUpdateDa te]='2016- 07-27 11:1 7:06.000', [LastUpda teUser]=' RED A CTED ' WHERE [B loodProduc tGuid]='d7 5ff5c5-0fa b-48c2-b00 7-13344092 34b3' | |
| 7695 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC CPD> AS1 IRD LU KOPR 7C', [LastUpdat eDate]='20 16-07-27 1 1:17:06.00 0', [LastU pdateUser] =' RED A CTED ' WHERE [B loodProduc tGuid]='d8 7b7f7b-979 e-4c39-a07 0-1334a94a ea59' | |
| 7696 | UPDATE [db o].[BloodP roduct] SE T [Product Name]='Aph eresis FRE SH FROZEN PLASMA|ACD -B/XX/<=-2 5C', [Last UpdateDate ]='2016-07 -27 11:17: 06.000', [ LastUpdate User]=' RED A CTED ' WHERE [B loodProduc tGuid]='ea 74e646-aa1 e-442a-b5e 1-134433c7 35fd' | |
| 7697 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC Froz None OPN LUKOPR 1C' , [LastUpd ateDate]=' 2016-07-27 11:17:06. 000', [Las tUpdateUse r]=' RED A CTED ' WHERE [B loodProduc tGuid]='01 445b93-f2d d-40f4-ba1 b-136328b1 47bd' | |
| 7698 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLT AFR Wash NS OP N IRD LUKO PR 3C', [L astUpdateD ate]='2016 -07-27 11: 17:06.000' , [LastUpd ateUser]=' RED A CTED ' WHERE [B loodProduc tGuid]='24 7531c8-144 c-4af6-aa5 4-1364cb49 9307' | |
| 7699 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC CPD> AS5 IRD LU KOPR 5C', [LastUpdat eDate]='20 16-07-27 1 1:17:06.00 0', [LastU pdateUser] =' RED A CTED ' WHERE [B loodProduc tGuid]='dc 783f74-dab 1-4045-bd1 6-13857119 78b7' | |
| 7700 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLT AFR ACD-B OPN IRD 2CNA', [LastUpda teDate]='2 016-07-27 11:17:06.0 00', [Last UpdateUser ]=' RED A CTED ' WHERE [B loodProduc tGuid]='f6 cd083e-050 0-4708-9aa f-138fd75e ffe2' | |
| 7701 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC AFR CP2D>AS3 I RD 5C', [L astUpdateD ate]='2016 -07-27 11: 17:06.000' , [LastUpd ateUser]=' RED A CTED ' WHERE [B loodProduc tGuid]='4e 96ad9a-56d 4-428f-b99 a-13af5085 0ad6' | |
| 7702 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC AFR ACD-A SR/P A 2C', [La stUpdateDa te]='2016- 07-27 11:1 7:06.000', [LastUpda teUser]=' RED A CTED ' WHERE [B loodProduc tGuid]='0e 4685df-df3 b-42d4-a5c 4-13b4013e 09f2' | |
| 7703 | UPDATE [db o].[BloodP roduct] SE T [Product Name]='Fro zen Aphere sis PLATEL ETS|DMSO/X X/<=-65C|O pen|Irradi ated|ResLe u:<5E6|2nd container ', [Produc tShortName ]='PLT AFR Froz DMSO OPN IRD L UKOPR 2C', [LastUpda teDate]='2 016-07-27 11:17:06.0 00', [Last UpdateUser ]=' RED A CTED ' WHERE [B loodProduc tGuid]='a9 32b1ef-14e e-4abf-9cd 2-13b57eae d945' | |
| 7704 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC Wash None OPN 1C', [Last UpdateDate ]='2016-07 -27 11:17: 06.000', [ LastUpdate User]=' RED A CTED ' WHERE [B loodProduc tGuid]='e1 04364e-587 d-4f17-bde 0-13c566c6 f633' | |
| 7705 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC AFR CPDA-1 LUK OPR 3C', [ LastUpdate Date]='201 6-07-27 11 :17:06.000 ', [LastUp dateUser]= ' RED A CTED ' WHERE [B loodProduc tGuid]='71 4eb1ac-af4 7-485b-997 4-13c7bea5 1689' | |
| 7706 | UPDATE [db o].[BloodP roduct] SE T [Product Name]='Fro zen Rejuve nated RED BLOOD CELL S|None/450 mL/<=-65C| Not for tx or mnf|Op en', [Last UpdateDate ]='2016-07 -27 11:17: 06.000', [ LastUpdate User]=' RED A CTED ' WHERE [B loodProduc tGuid]='e8 ffc0bc-0aa c-4b4b-bf0 0-13d3bd51 c207' | |
| 7707 | UPDATE [db o].[BloodP roduct] SE T [Product Name]='Aph eresis FRE SH FROZEN PLASMA|ACD -B/XX/<=-3 0C|Irradia ted|Aphr n ot automat ed', [Last UpdateDate ]='2016-07 -27 11:17: 06.000', [ LastUpdate User]=' RED A CTED ' WHERE [B loodProduc tGuid]='81 922c8e-fc8 2-4f2a-863 9-13d4c27f 8b59' | |
| 7708 | UPDATE [db o].[BloodP roduct] SE T [Product Name]='Aph eresis FRE SH FROZEN PLASMA|ACD -A/XX/<=-2 5C|ResLeu: <1E6|2nd c ontainer', [ProductS hortName]= 'FFP AFR A CD-A LUKOP R 2C', [La stUpdateDa te]='2016- 07-27 11:1 7:06.000', [LastUpda teUser]=' RED A CTED ' WHERE [B loodProduc tGuid]='73 dd99bd-701 1-4671-86e 2-13ddb0aa 4ecd' | |
| 7709 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC AFR ACD-A>AS1 IRD 8C', [ LastUpdate Date]='201 6-07-27 11 :17:06.000 ', [LastUp dateUser]= ' RED A CTED ' WHERE [B loodProduc tGuid]='a5 13bf8d-380 e-431c-89e 0-13dfdf4d 0371' | |
| 7710 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLT AFR ACD-B IRD LUKOPR PLS Red 4C', [LastUpdat eDate]='20 16-07-27 1 1:17:06.00 0', [LastU pdateUser] =' RED A CTED ' WHERE [B loodProduc tGuid]='1a 299e7e-3a8 a-48fe-ac1 4-13e0f0bf 2fc4' | |
| 7711 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC AFR ACD-A>AS1 LUKOPR 2C' , [LastUpd ateDate]=' 2016-07-27 11:17:06. 000', [Las tUpdateUse r]=' RED A CTED ' WHERE [B loodProduc tGuid]='77 f9efe2-e04 b-477e-b7f 6-13e5dceb b5cb' | |
| 7712 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLT AFR NaCit OPN IRD 3C', [ LastUpdate Date]='201 6-07-27 11 :17:06.000 ', [LastUp dateUser]= ' RED A CTED ' WHERE [B loodProduc tGuid]='36 02859a-41c 1-4728-a61 6-13eef65f f24f' | |
| 7713 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLT AFR ACD-A LUKO PR 2C Pedi ', [LastUp dateDate]= '2016-07-2 7 11:17:06 .000', [La stUpdateUs er]=' RED A CTED ' WHERE [B loodProduc tGuid]='90 f586c3-063 9-4b83-8e9 6-13f95240 db42' | |
| 7714 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLT AFR NS OPN PLS Red 2C', [LastUpdat eDate]='20 16-07-27 1 1:17:06.00 0', [LastU pdateUser] =' RED A CTED ' WHERE [B loodProduc tGuid]='2e 02da9e-5e8 f-4aa2-9dd 8-13fab7ba 9194' | |
| 7715 | UPDATE [db o].[BloodP roduct] SE T [Product Name]='FRE SH FROZEN PLASMA|CPD /450mL/<=- 65C|ResLeu :<1E6', [L astUpdateD ate]='2016 -07-27 11: 17:06.000' , [LastUpd ateUser]=' RED A CTED ' WHERE [B loodProduc tGuid]='2b b53ad5-31f 2-4000-9a1 f-13fb7147 46c5' | |
| 7716 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLT AFR PAS-B IRD LUKOPR 4C BacTest', [LastUpdat eDate]='20 16-07-27 1 1:17:06.00 0', [LastU pdateUser] =' RED A CTED ' WHERE [B loodProduc tGuid]='2f 3015eb-3e1 d-48bb-a79 8-140409b3 8367' | |
| 7717 | UPDATE [db o].[BloodP roduct] SE T [Product Name]='Fro zen POOLED PLATELETS |DMSO/XX/< =-80C|Open |4 units', [LastUpda teDate]='2 016-07-27 11:17:06.0 00', [Last UpdateUser ]=' RED A CTED ' WHERE [B loodProduc tGuid]='b2 c67266-2d7 8-4789-9f3 e-14079ad7 6e19' | |
| 7718 | UPDATE [db o].[BloodP roduct] SE T [Product Name]='FRE SH FROZEN PLASMA|CPD A-1/450mL/ <=-25C|Fro zen <=6h', [LastUpda teDate]='2 016-07-27 11:17:06.0 00', [Last UpdateUser ]=' RED A CTED ' WHERE [B loodProduc tGuid]='6b cd3738-619 e-4dc4-8f4 6-140ef23c 90fe' | |
| 7719 | UPDATE [db o].[BloodP roduct] SE T [Product Name]='Aph eresis FRE SH FROZEN PLASMA|ACD -B/XX/<=-6 5C|Fin Con :NS', [Las tUpdateDat e]='2016-0 7-27 11:17 :06.000', [LastUpdat eUser]=' RED A CTED ' WHERE [B loodProduc tGuid]='72 d62690-094 3-4eb8-9eb c-14349ced 4d6e' | |
| 7720 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLT AFR PAS-C IRD LUKOPR 3C' , [LastUpd ateDate]=' 2016-07-27 11:17:06. 000', [Las tUpdateUse r]=' RED A CTED ' WHERE [B loodProduc tGuid]='11 7368e9-e12 e-49d9-9a3 6-143b10c6 70c5' | |
| 7721 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC AFR Deg Rej No ne OPN LUK OPR 2C', [ LastUpdate Date]='201 6-07-27 11 :17:06.000 ', [LastUp dateUser]= ' RED A CTED ' WHERE [B loodProduc tGuid]='23 add771-b15 0-42de-a09 a-143f8052 2daa' | |
| 7722 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLT AFR ACD-A IRD LUKOPR 1C' , [LastUpd ateDate]=' 2016-07-27 11:17:06. 000', [Las tUpdateUse r]=' RED A CTED ' WHERE [B loodProduc tGuid]='54 9dfe8e-419 5-4448-9f0 3-145e10e6 7384' | |
| 7723 | UPDATE [db o].[BloodP roduct] SE T [Product Name]='Aph eresis FRE SH FROZEN PLASMA|NaC itrate/XX/ <=-65C|5th container ', [Produc tShortName ]='FFP AFR NaCit 5C' , [LastUpd ateDate]=' 2016-07-27 11:17:06. 000', [Las tUpdateUse r]=' RED A CTED ' WHERE [B loodProduc tGuid]='a8 e07af5-e94 5-4172-97c 9-14af3a4d a37b' | |
| 7724 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC AFR ACD-A>AS3 OPN IRD LU KOPR 2C', [LastUpdat eDate]='20 16-07-27 1 1:17:06.00 0', [LastU pdateUser] =' RED A CTED ' WHERE [B loodProduc tGuid]='e1 d2cf92-f47 4-4d26-a3b c-14b91b41 c738' | |
| 7725 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC AFR ACD-A IRD SR 1C', [L astUpdateD ate]='2016 -07-27 11: 17:06.000' , [LastUpd ateUser]=' RED A CTED ' WHERE [B loodProduc tGuid]='af 6a72f5-6e7 c-4223-843 2-14c24996 6cda' | |
| 7726 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLT AFR ACD-A 4C', [LastUpda teDate]='2 016-07-27 11:17:06.0 00', [Last UpdateUser ]=' RED A CTED ' WHERE [B loodProduc tGuid]='97 a75c0b-e5c 4-4490-83f 6-14c49c23 5b8d' | |
| 7727 | UPDATE [db o].[BloodP roduct] SE T [Product Name]='Aph eresis FRE SH FROZEN PLASMA|ACD -B/XX/<=-6 5C|Irradia ted|Fin Co n:NS|Quar: >=6m/retes ted', [Las tUpdateDat e]='2016-0 7-27 11:17 :06.000', [LastUpdat eUser]=' RED A CTED ' WHERE [B loodProduc tGuid]='5a 9f38db-7f0 7-4fe9-b42 1-14ce3935 d2fc' | |
| 7728 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC AFR Deg None O PN IRD LUK OPR 5C', [ LastUpdate Date]='201 6-07-27 11 :17:06.000 ', [LastUp dateUser]= ' RED A CTED ' WHERE [B loodProduc tGuid]='11 da7f96-b78 6-4ffb-b36 3-14e85ab0 83ee' | |
| 7729 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLT AFR ACD-A>PAS- C LUKOPR 2 C', [LastU pdateDate] ='2016-07- 27 11:17:0 6.000', [L astUpdateU ser]=' RED A CTED ' WHERE [B loodProduc tGuid]='8b c4eda9-879 f-42a9-9ca a-1519b13a 7031' | |
| 7730 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLT AFR ACD-A>PAS- F OPN IRD LUKOPR 3C' , [LastUpd ateDate]=' 2016-07-27 11:17:06. 000', [Las tUpdateUse r]=' RED A CTED ' WHERE [B loodProduc tGuid]='09 3273b4-a7f b-4397-896 1-1540f066 cd39' | |
| 7731 | UPDATE [db o].[BloodP roduct] SE T [Product Name]='Fro zen POOLED PLATELETS |DMSO/XX/< =-80C|Open |ResLeu:<1 E6|5 units ', [LastUp dateDate]= '2016-07-2 7 11:17:06 .000', [La stUpdateUs er]=' RED A CTED ' WHERE [B loodProduc tGuid]='52 04f5bd-7ea f-43e9-a78 c-154b46cb 2af7' | |
| 7732 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='FFP AFR None QUAR 6C', [Last UpdateDate ]='2016-07 -27 11:17: 06.000', [ LastUpdate User]=' RED A CTED ' WHERE [B loodProduc tGuid]='50 4f9c4d-ae3 8-4030-916 e-156016ab 5a93' | |
| 7733 | UPDATE [db o].[BloodP roduct] SE T [Product Name]='Fro zen Aphere sis RED BL OOD CELLS| Gly35%/450 mL/<=-65C| ResLeu:<1E 6|2nd cont ainer', [P roductShor tName]='RB C AFR Froz Gly35% LU KOPR 2C', [LastUpdat eDate]='20 16-07-27 1 1:17:06.00 0', [LastU pdateUser] =' RED A CTED ' WHERE [B loodProduc tGuid]='40 19e9f6-0cf e-4cb3-8a6 0-156ab092 a89f' | |
| 7734 | UPDATE [db o].[BloodP roduct] SE T [Product Name]='Aph eresis FRE SH FROZEN PLASMA|NS/ XX/<=-30C| For mnf:no ninjectabl e|ResLeu:< 1E6|Frozen <=15h', [ LastUpdate Date]='201 6-07-27 11 :17:06.000 ', [LastUp dateUser]= ' RED A CTED ' WHERE [B loodProduc tGuid]='ba 0b299a-e83 8-4cfd-b63 c-159607b4 a0b7' | |
| 7735 | UPDATE [db o].[BloodP roduct] SE T [Product Name]='Aph eresis FRE SH FROZEN PLASMA|NS/ XX/<=-30C| For mnf:in jectable', [LastUpda teDate]='2 016-07-27 11:17:06.0 00', [Last UpdateUser ]=' RED A CTED ' WHERE [B loodProduc tGuid]='1f 4ffa2b-e28 8-4148-925 d-159bbbe3 b358' | |
| 7736 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLT AFR PAS-B LUKO PR 2C BacM tr', [Last UpdateDate ]='2016-07 -27 11:17: 06.000', [ LastUpdate User]=' RED A CTED ' WHERE [B loodProduc tGuid]='59 df50b5-bed 8-448a-807 d-15a7445d 7dc9' | |
| 7737 | UPDATE [db o].[BloodP roduct] SE T [Product Name]='Aph eresis CRY OPRECIPITA TE|ACD-A/X X/<=-25C|Q uar:>=112d /retested' , [LastUpd ateDate]=' 2016-07-27 11:17:06. 000', [Las tUpdateUse r]=' RED A CTED ' WHERE [B loodProduc tGuid]='f1 ad5191-75b f-4efb-a5d d-15bf8f91 c06c' | |
| 7738 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC AFR ACD-A OPN IRD LUKOPR SR/PA 2C' , [LastUpd ateDate]=' 2016-07-27 11:17:06. 000', [Las tUpdateUse r]=' RED A CTED ' WHERE [B loodProduc tGuid]='0e d2711d-5ff 8-4c9f-98d 6-15c00a86 ac67' | |
| 7739 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='FFP AFR CP2D 3C', [LastUpdat eDate]='20 16-07-27 1 1:17:06.00 0', [LastU pdateUser] =' RED A CTED ' WHERE [B loodProduc tGuid]='fc 5df842-2a9 9-48b1-b77 b-15cba247 71da' | |
| 7740 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC CPDA -1 LUKOPR 2C', [Last UpdateDate ]='2016-07 -27 11:17: 06.000', [ LastUpdate User]=' RED A CTED ' WHERE [B loodProduc tGuid]='d6 c35aec-85c 7-4aac-be3 0-15fb4a69 06e5' | |
| 7741 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLT AFR NaCit PLS Red 1C', [ LastUpdate Date]='201 6-07-27 11 :17:06.000 ', [LastUp dateUser]= ' RED A CTED ' WHERE [B loodProduc tGuid]='a3 16ec7a-d81 3-4c46-adb a-16041a3b 31c6' | |
| 7742 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC CPD> AS1 LUKOPR 1C', [Las tUpdateDat e]='2016-0 7-27 11:17 :06.000', [LastUpdat eUser]=' RED A CTED ' WHERE [B loodProduc tGuid]='25 17575a-4e5 3-4a1f-ba2 0-164aed36 7318' | |
| 7743 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC Wash None OPN IRD LUKOPR 3C', [Las tUpdateDat e]='2016-0 7-27 11:17 :06.000', [LastUpdat eUser]=' RED A CTED ' WHERE [B loodProduc tGuid]='16 c49236-f50 8-4758-a17 a-164d7c7c e3a4' | |
| 7744 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='FFP AFR NaCit IRD 2C QUAR', [LastUpdat eDate]='20 16-07-27 1 1:17:06.00 0', [LastU pdateUser] =' RED A CTED ' WHERE [B loodProduc tGuid]='59 de2b1b-b96 e-4075-87f 5-164dbe04 10d3' | |
| 7745 | UPDATE [db o].[BloodP roduct] SE T [Product Name]='Fro zen Rejuve nated RED BLOOD CELL S|None/450 mL/<=-120C |Open|Irra diated', [ LastUpdate Date]='201 6-07-27 11 :17:06.000 ', [LastUp dateUser]= ' RED A CTED ' WHERE [B loodProduc tGuid]='37 277309-d31 9-42ba-a63 d-167d0681 78ba' | |
| 7746 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='FFP Thaw CPDA-1 2C ', [LastUp dateDate]= '2016-07-2 7 11:17:06 .000', [La stUpdateUs er]=' RED A CTED ' WHERE [B loodProduc tGuid]='34 2329bd-07c 8-4c1d-944 f-169fd0de 6ce1' | |
| 7747 | UPDATE [db o].[BloodP roduct] SE T [Product Name]='Fro zen Aphere sis PLATEL ETS|DMSO/X X/<=-65C|N ot for tx or mnf|Ope n|2nd cont ainer', [P roductShor tName]='PL T AFR Froz DMSO NMT OPN 2C', [ LastUpdate Date]='201 6-07-27 11 :17:06.000 ', [LastUp dateUser]= ' RED A CTED ' WHERE [B loodProduc tGuid]='db 844b86-69f 0-4e7b-a02 4-16bea98a 62d5' | |
| 7748 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLASMA T haw None 3 C', [LastU pdateDate] ='2016-07- 27 11:17:0 6.000', [L astUpdateU ser]=' RED A CTED ' WHERE [B loodProduc tGuid]='f9 da739d-903 d-46e5-b12 8-16c3b5e9 220a' | |
| 7749 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLASMA A FR ACD-A I RD 2C', [L astUpdateD ate]='2016 -07-27 11: 17:06.000' , [LastUpd ateUser]=' RED A CTED ' WHERE [B loodProduc tGuid]='69 3ead87-b62 a-4a6e-857 a-16cdd4bf de3c' | |
| 7750 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC CPD> AS5 IRD LU KOPR 3C', [LastUpdat eDate]='20 16-07-27 1 1:17:06.00 0', [LastU pdateUser] =' RED A CTED ' WHERE [B loodProduc tGuid]='28 052ce2-c3c 6-47bd-af6 6-16d66c9f ee9a' | |
| 7751 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC AFR ACD-A>AS1 LUKOPR 4C' , [LastUpd ateDate]=' 2016-07-27 11:17:06. 000', [Las tUpdateUse r]=' RED A CTED ' WHERE [B loodProduc tGuid]='be 4ac940-910 2-46d9-939 b-16e39666 26a8' | |
| 7752 | UPDATE [db o].[BloodP roduct] SE T [Product Name]='FRE SH FROZEN PLASMA|CPD /450mL/<=- 30C|For mn f:noninjec table|Froz en <=6h', [LastUpdat eDate]='20 16-07-27 1 1:17:06.00 0', [LastU pdateUser] =' RED A CTED ' WHERE [B loodProduc tGuid]='ee 6ba36b-703 6-4fc5-b47 4-16f58ded c14e' | |
| 7753 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC AFR Deg None I RD LUKOPR 2C', [Last UpdateDate ]='2016-07 -27 11:17: 06.000', [ LastUpdate User]=' RED A CTED ' WHERE [B loodProduc tGuid]='ae 662f9f-729 8-4ee6-894 d-170458e2 65b5' | |
| 7754 | UPDATE [db o].[BloodP roduct] SE T [Product Name]='Tha wed PLASMA |CPD/450mL /<=-25C|Fr ozen <=6h' , [LastUpd ateDate]=' 2016-07-27 11:17:06. 000', [Las tUpdateUse r]=' RED A CTED ' WHERE [B loodProduc tGuid]='b6 42c96d-e65 2-46b7-a2a 5-17183593 9b99' | |
| 7755 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC Deg Rej None O PN IRD LUK OPR SR 2C' , [LastUpd ateDate]=' 2016-07-27 11:17:06. 000', [Las tUpdateUse r]=' RED A CTED ' WHERE [B loodProduc tGuid]='6b 3ad796-2b2 2-4e6d-99c 9-171e0552 19bc' | |
| 7756 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLT AFR ACD-A OPN PLS Red 3C ', [LastUp dateDate]= '2016-07-2 7 11:17:06 .000', [La stUpdateUs er]=' RED A CTED ' WHERE [B loodProduc tGuid]='6e 81e305-5af b-4807-8d1 7-1720fb22 e6d8' | |
| 7757 | UPDATE [db o].[BloodP roduct] SE T [Product Name]='FRE SH FROZEN PLASMA|CPD /XX/<=-65C |3rd conta iner', [Pr oductShort Name]='FFP CPD 3C', [LastUpdat eDate]='20 16-07-27 1 1:17:06.00 0', [LastU pdateUser] =' RED A CTED ' WHERE [B loodProduc tGuid]='41 2651c4-0a6 8-488f-a16 d-173bdb00 2040' | |
| 7758 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='FFP AFR Thaw NaCit 1C', [Las tUpdateDat e]='2016-0 7-27 11:17 :06.000', [LastUpdat eUser]=' RED A CTED ' WHERE [B loodProduc tGuid]='a3 d8e580-f20 d-4ac9-961 2-1742b75c b68a' | |
| 7759 | UPDATE [db o].[BloodP roduct] SE T [Product Name]='FRE SH FROZEN PLASMA|CPD /XX/<=-30C |ResLeu:<5 E6|Methyle ne blue-tr eated', [L astUpdateD ate]='2016 -07-27 11: 17:06.000' , [LastUpd ateUser]=' RED A CTED ' WHERE [B loodProduc tGuid]='3d 055067-951 3-4831-9d6 7-1749ae88 4f1c' | |
| 7760 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLT AFR ACD-A OPN 4C', [Last UpdateDate ]='2016-07 -27 11:17: 06.000', [ LastUpdate User]=' RED A CTED ' WHERE [B loodProduc tGuid]='45 77c73a-a25 3-4e02-8e1 2-177f9f25 fd84' | |
| 7761 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC AFR CPDA-1 IRD 2C', [Las tUpdateDat e]='2016-0 7-27 11:17 :06.000', [LastUpdat eUser]=' RED A CTED ' WHERE [B loodProduc tGuid]='78 81656a-ddf a-4d87-ab4 b-177ffda4 adb1' | |
| 7762 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC CPD IRD 2C', [ RetireDate ]='2015-04 -07 00:00: 00.000', [ LastUpdate Date]='201 6-07-27 11 :17:06.000 ', [LastUp dateUser]= ' RED A CTED ' WHERE [B loodProduc tGuid]='cb b2b9e6-0ed 8-45e5-9aa 3-178f42d2 5f36' | |
| 7763 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLT AFR ACD-A OPN LUKOPR PLS Red 1C', [LastUpdat eDate]='20 16-07-27 1 1:17:06.00 0', [LastU pdateUser] =' RED A CTED ' WHERE [B loodProduc tGuid]='5a 40515b-aee 0-4371-a62 4-179009ef 6941' | |
| 7764 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLT AFR PAS-E LUKO PR 4C BacM tr', [Last UpdateDate ]='2016-07 -27 11:17: 06.000', [ LastUpdate User]=' RED A CTED ' WHERE [B loodProduc tGuid]='10 0b1f53-1bb 4-4ac5-92f 7-17a1d08f d7a8' | |
| 7765 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='FFP AFR Thaw NaCit 2C QUAR', [LastUpda teDate]='2 016-07-27 11:17:06.0 00', [Last UpdateUser ]=' RED A CTED ' WHERE [B loodProduc tGuid]='5a dc555b-8aa 8-4aa9-bc7 7-17ab178b 07dd' | |
| 7766 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC AFR Wash None OPN LUKOPR 1C', [Las tUpdateDat e]='2016-0 7-27 11:17 :06.000', [LastUpdat eUser]=' RED A CTED ' WHERE [B loodProduc tGuid]='ec 7fd935-bfd 4-4211-984 1-17cbab89 153c' | |
| 7767 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC AFR ACD-A>AS1 IRD LUKOPR 5C', [Las tUpdateDat e]='2016-0 7-27 11:17 :06.000', [LastUpdat eUser]=' RED A CTED ' WHERE [B loodProduc tGuid]='ed 1a789d-1e6 c-4b9f-a73 2-17d5a217 c1f4' | |
| 7768 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='CRYO AFR ACD-A LUK OPR 2C', [ LastUpdate Date]='201 6-07-27 11 :17:06.000 ', [LastUp dateUser]= ' RED A CTED ' WHERE [B loodProduc tGuid]='5a 0aa6eb-7c4 9-42e2-bd3 a-17e0e84d 74e2' | |
| 7769 | UPDATE [db o].[BloodP roduct] SE T [Product Name]='Aph eresis FRE SH FROZEN PLASMA|ACD -B/XX/<=-6 5C|Irradia ted|>=200m L<400mL', [LastUpdat eDate]='20 16-07-27 1 1:17:06.00 0', [LastU pdateUser] =' RED A CTED ' WHERE [B loodProduc tGuid]='3d 8f9df8-dd8 a-43b6-bd2 1-181cbc53 90c1' | |
| 7770 | UPDATE [db o].[BloodP roduct] SE T [Product Name]='Aph eresis FRE SH FROZEN PLASMA|ACD -A/XX/<=-6 5C|Irradia ted|Quar:> =6m/retest ed', [Last UpdateDate ]='2016-07 -27 11:17: 06.000', [ LastUpdate User]=' RED A CTED ' WHERE [B loodProduc tGuid]='cc dbc5e4-bc4 c-423f-9be 3-182591d7 bfe7' | |
| 7771 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLT AFR ACD-B OPN IRD 4C', [ LastUpdate Date]='201 6-07-27 11 :17:06.000 ', [LastUp dateUser]= ' RED A CTED ' WHERE [B loodProduc tGuid]='46 a19a31-3c5 2-4be5-aa1 b-1827ae81 15af' | |
| 7772 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC AFR ACD-A>AS3 IRD LUKOPR 1C', [Las tUpdateDat e]='2016-0 7-27 11:17 :06.000', [LastUpdat eUser]=' RED A CTED ' WHERE [B loodProduc tGuid]='74 0b79dc-281 4-4556-933 2-18309adc aeb8' | |
| 7773 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC AFR ACD-A>AS3 LUKOPR 6C' , [LastUpd ateDate]=' 2016-07-27 11:17:06. 000', [Las tUpdateUse r]=' RED A CTED ' WHERE [B loodProduc tGuid]='9f 5eea0e-604 c-485f-9a1 5-1832c93c 516e' | |
| 7774 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLT AFR ACD-A>PAS- C OPN IRD LUKOPR SUP Red 1C', [ LastUpdate Date]='201 6-07-27 11 :17:06.000 ', [LastUp dateUser]= ' RED A CTED ' WHERE [B loodProduc tGuid]='ad f22dce-426 b-4ee8-b8e 7-1836d64d 35a1' | |
| 7775 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLT AFR NaCit 3C', [LastUpda teDate]='2 016-07-27 11:17:06.0 00', [Last UpdateUser ]=' RED A CTED ' WHERE [B loodProduc tGuid]='f8 ecd1a3-fa6 e-450c-b24 3-1857c0de ba74' | |
| 7776 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='FFP Thaw None 4C', [LastUpda teDate]='2 016-07-27 11:17:06.0 00', [Last UpdateUser ]=' RED A CTED ' WHERE [B loodProduc tGuid]='6c d73a0f-2d3 d-49d7-9b2 4-186c6951 9462' | |
| 7777 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLT AFR NaCit OPN IRD LUKOPR 2C', [Las tUpdateDat e]='2016-0 7-27 11:17 :06.000', [LastUpdat eUser]=' RED A CTED ' WHERE [B loodProduc tGuid]='68 170a26-c17 4-48d5-b0f 4-18824b58 7a66' | |
| 7778 | UPDATE [db o].[BloodP roduct] SE T [Product Name]='FRE SH FROZEN PLASMA|CPD A-1/XX/<=- 30C|Irradi ated|Quar: >=6m/retes ted', [Las tUpdateDat e]='2016-0 7-27 11:17 :06.000', [LastUpdat eUser]=' RED A CTED ' WHERE [B loodProduc tGuid]='30 7f66d4-acd b-4397-9e3 4-1890e3ac f3de' | |
| 7779 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC CPDA -1 3C', [L astUpdateD ate]='2016 -07-27 11: 17:06.000' , [LastUpd ateUser]=' RED A CTED ' WHERE [B loodProduc tGuid]='5b 2604de-c40 9-469b-a3d 2-18ae5786 6dd4' | |
| 7780 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLASMA A FR ACD-A 4 C', [LastU pdateDate] ='2016-07- 27 11:17:0 6.000', [L astUpdateU ser]=' RED A CTED ' WHERE [B loodProduc tGuid]='24 a49454-e37 f-4508-8f0 a-18c95e85 968f' | |
| 7781 | UPDATE [db o].[BloodP roduct] SE T [Product Name]='Aph eresis CRY OPRECIPITA TE|NaCitra te/XX/<=-2 5C|Quar:>= 112d/retes ted', [Las tUpdateDat e]='2016-0 7-27 11:17 :06.000', [LastUpdat eUser]=' RED A CTED ' WHERE [B loodProduc tGuid]='73 fc306b-7d9 5-4a3b-a2c 2-18cf4e5c e6a3' | |
| 7782 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLASMA A FR Thaw AC D-A 1C', [ LastUpdate Date]='201 6-07-27 11 :17:06.000 ', [LastUp dateUser]= ' RED A CTED ' WHERE [B loodProduc tGuid]='bf b1b6d4-486 7-420a-8ea 6-18e8efdc 60c4' | |
| 7783 | UPDATE [db o].[BloodP roduct] SE T [Product Name]='Aph eresis FRE SH FROZEN PLASMA|NaC itrate/XX/ <=-65C|>=2 00mL<400mL ', [LastUp dateDate]= '2016-07-2 7 11:17:06 .000', [La stUpdateUs er]=' RED A CTED ' WHERE [B loodProduc tGuid]='74 3cc1e8-452 5-4288-ae9 c-18e99127 a73e' | |
| 7784 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC AFR Wash None OPN LUKOPR PA 2C', [ LastUpdate Date]='201 6-07-27 11 :17:06.000 ', [LastUp dateUser]= ' RED A CTED ' WHERE [B loodProduc tGuid]='a5 99a5f7-1ba 9-4b4f-a9a c-18ffe3f9 91a5' | |
| 7785 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLT AFR ACD-A IRD LUKOPR 2C' , [LastUpd ateDate]=' 2016-07-27 11:17:06. 000', [Las tUpdateUse r]=' RED A CTED ' WHERE [B loodProduc tGuid]='e0 361b4f-e16 8-45f7-9ec e-190dbad8 2da3' | |
| 7786 | UPDATE [db o].[BloodP roduct] SE T [Product Name]='PLA SMA|CP2D/X X/<=-25C|F or mnf:inj ectable|Fr ozen <=15h ', [LastUp dateDate]= '2016-07-2 7 11:17:06 .000', [La stUpdateUs er]=' RED A CTED ' WHERE [B loodProduc tGuid]='08 00c1ec-b22 8-4dcf-9bf 6-1917be92 175f' | |
| 7787 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC AFR ACD-A>AS1 3C', [Last UpdateDate ]='2016-07 -27 11:17: 06.000', [ LastUpdate User]=' RED A CTED ' WHERE [B loodProduc tGuid]='dd 4810d5-600 8-4da9-849 6-191f4a2f 7a65' | |
| 7788 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLT AFR ACD-A OPN LUKOPR 2C' , [LastUpd ateDate]=' 2016-07-27 11:17:06. 000', [Las tUpdateUse r]=' RED A CTED ' WHERE [B loodProduc tGuid]='73 4937db-827 e-488b-82e 4-19271fc7 5456' | |
| 7789 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLT AFR Wash None OPN IRD LU KOPR 3C', [LastUpdat eDate]='20 16-07-27 1 1:17:06.00 0', [LastU pdateUser] =' RED A CTED ' WHERE [B loodProduc tGuid]='bc 0386e5-737 0-42ff-868 9-192ba45e 1537' | |
| 7790 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC Wash None OPN IRD 3C', [ LastUpdate Date]='201 6-07-27 11 :17:06.000 ', [LastUp dateUser]= ' RED A CTED ' WHERE [B loodProduc tGuid]='a0 57d45f-c71 0-4f27-823 9-19557f2a 60ba' | |
| 7791 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC AFR CP2D OPN L UKOPR 1C', [LastUpda teDate]='2 016-07-27 11:17:06.0 00', [Last UpdateUser ]=' RED A CTED ' WHERE [B loodProduc tGuid]='ee 3cfd43-ed3 3-4614-b90 c-197780fe 9527' | |
| 7792 | UPDATE [db o].[BloodP roduct] SE T [Product Name]='Aph eresis FRE SH FROZEN PLASMA|NaC itrate/XX/ <=-65C|1st container |Quar:>=11 2d/reteste d', [Produ ctShortNam e]='FFP AF R NaCit 1C QUAR', [L astUpdateD ate]='2016 -07-27 11: 17:06.000' , [LastUpd ateUser]=' RED A CTED ' WHERE [B loodProduc tGuid]='db ea63ce-b55 0-4a7d-977 e-19b26132 2aaa' | |
| 7793 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC AFR Froz None OPN 2C', [ LastUpdate Date]='201 6-07-27 11 :17:06.000 ', [LastUp dateUser]= ' RED A CTED ' WHERE [B loodProduc tGuid]='23 962b47-683 7-41f6-96a 3-19b4c181 585c' | |
| 7794 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLASMA A FR Thaw No ne 4C', [L astUpdateD ate]='2016 -07-27 11: 17:06.000' , [LastUpd ateUser]=' RED A CTED ' WHERE [B loodProduc tGuid]='03 958448-a66 4-4a2a-b30 d-19b8b7c1 d2fe' | |
| 7795 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLT AFR None IRD L UKOPR 2C', [LastUpda teDate]='2 016-07-27 11:17:06.0 00', [Last UpdateUser ]=' RED A CTED ' WHERE [B loodProduc tGuid]='64 07559c-fbd 1-4d10-893 0-19d5e7ca bda6' | |
| 7796 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='FFP AFR Thaw None LUKOPR 6C' , [LastUpd ateDate]=' 2016-07-27 11:17:06. 000', [Las tUpdateUse r]=' RED A CTED ' WHERE [B loodProduc tGuid]='a5 94a1f4-553 9-402b-88a 9-1a04c7f3 e0a9' | |
| 7797 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLT AFR ACD-A IRD LUKOPR 2C Ribo', [La stUpdateDa te]='2016- 07-27 11:1 7:06.000', [LastUpda teUser]=' RED A CTED ' WHERE [B loodProduc tGuid]='af e86f25-a1f 1-49ae-b31 f-1a0cc5a0 4d1c' | |
| 7798 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLT AFR Thaw DMSO OPN LUKOPR 2C', [Las tUpdateDat e]='2016-0 7-27 11:17 :06.000', [LastUpdat eUser]=' RED A CTED ' WHERE [B loodProduc tGuid]='73 0e9f3b-def 3-48aa-b2d 9-1a0e7d89 5fac' | |
| 7799 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC CPDA -1 IRD 1C' , [LastUpd ateDate]=' 2016-07-27 11:17:06. 000', [Las tUpdateUse r]=' RED A CTED ' WHERE [B loodProduc tGuid]='e2 9f780b-809 b-455e-802 5-1a118817 0997' | |
| 7800 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC CP2D >AS3 IRD 2 C', [LastU pdateDate] ='2016-07- 27 11:17:0 6.000', [L astUpdateU ser]=' RED A CTED ' WHERE [B loodProduc tGuid]='e9 1c53e0-425 f-4381-8ec b-1a45ed3c fafc' | |
| 7801 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC AFR ACD-A>AS1 LUKOPR 3C' , [LastUpd ateDate]=' 2016-07-27 11:17:06. 000', [Las tUpdateUse r]=' RED A CTED ' WHERE [B loodProduc tGuid]='df 0dc164-c0b 6-49ad-a37 4-1a47b5ea 034d' | |
| 7802 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLT AFR ACD-A OPN PLS Red 1C ', [LastUp dateDate]= '2016-07-2 7 11:17:06 .000', [La stUpdateUs er]=' RED A CTED ' WHERE [B loodProduc tGuid]='0f d3d984-ca8 f-419d-afc b-1a6d995f ad84' | |
| 7803 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC Deg Rej None O PN 7C', [L astUpdateD ate]='2016 -07-27 11: 17:06.000' , [LastUpd ateUser]=' RED A CTED ' WHERE [B loodProduc tGuid]='c0 e89202-a1c 0-41f8-825 2-1a74c3dc 48b1' | |
| 7804 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='FFP None IRD QUAR 3C', [Last UpdateDate ]='2016-07 -27 11:17: 06.000', [ LastUpdate User]=' RED A CTED ' WHERE [B loodProduc tGuid]='62 f824c7-9f1 0-453b-95b 9-1a76c237 8c7c' | |
| 7805 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLT AFR Wash NS LU KOPR 2C', [LastUpdat eDate]='20 16-07-27 1 1:17:06.00 0', [LastU pdateUser] =' RED A CTED ' WHERE [B loodProduc tGuid]='68 ad78a5-659 6-4110-9b0 a-1a8b0af9 8aa5' | |
| 7806 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC AFR CPDA-1 LUK OPR 2C', [ LastUpdate Date]='201 6-07-27 11 :17:06.000 ', [LastUp dateUser]= ' RED A CTED ' WHERE [B loodProduc tGuid]='7c 43f6b9-e33 6-4a09-98e c-1a8ce6db 7b5f' | |
| 7807 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='FFP AFR None IRD 3 C', [LastU pdateDate] ='2016-07- 27 11:17:0 6.000', [L astUpdateU ser]=' RED A CTED ' WHERE [B loodProduc tGuid]='e6 9af77e-63c 7-486a-958 d-1a8e5582 4a7b' | |
| 7808 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLT AFR Wash PAS-D IRD LUKOP R 2C', [La stUpdateDa te]='2016- 07-27 11:1 7:06.000', [LastUpda teUser]=' RED A CTED ' WHERE [B loodProduc tGuid]='80 ffff2e-cba 0-4835-8c7 3-1ae80bfa 6efb' | |
| 7809 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='FFP AFR None 4C', [LastUpdat eDate]='20 16-07-27 1 1:17:06.00 0', [LastU pdateUser] =' RED A CTED ' WHERE [B loodProduc tGuid]='82 da58b0-fac b-49a8-886 0-1af591f2 83df' | |
| 7810 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC AFR CP2D>AS3 O PN IRD LUK OPR 2C', [ LastUpdate Date]='201 6-07-27 11 :17:06.000 ', [LastUp dateUser]= ' RED A CTED ' WHERE [B loodProduc tGuid]='8a 051bf3-7f7 3-4a2e-bfc d-1b1928b7 717d' | |
| 7811 | UPDATE [db o].[BloodP roduct] SE T [Product Name]='Fro zen RED BL OOD CELLS| None/XX/<= -65C|Open' , [LastUpd ateDate]=' 2016-07-27 11:17:06. 000', [Las tUpdateUse r]=' RED A CTED ' WHERE [B loodProduc tGuid]='ee 63f9a8-62b 5-425c-bb6 6-1b295252 4344' | |
| 7812 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC AFR ACD-A>AS3 OPN 2C', [ LastUpdate Date]='201 6-07-27 11 :17:06.000 ', [LastUp dateUser]= ' RED A CTED ' WHERE [B loodProduc tGuid]='81 a6a2f0-bec e-4d0d-84c 7-1b2a1da0 59f9' | |
| 7813 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLT AFR Froz ACD-A MNFI IRD LUKOPR 3C' , [LastUpd ateDate]=' 2016-07-27 11:17:06. 000', [Las tUpdateUse r]=' RED A CTED ' WHERE [B loodProduc tGuid]='52 d625ab-057 3-4826-8f6 b-1b4bbd71 97f2' | |
| 7814 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLT AFR ACD-A IRD LUKOPR 3C BacMtr', [ LastUpdate Date]='201 6-07-27 11 :17:06.000 ', [LastUp dateUser]= ' RED A CTED ' WHERE [B loodProduc tGuid]='e2 5bfbdd-f4c e-4d38-863 0-1b5544eb fe62' | |
| 7815 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLASMA A FR Thaw CP 2D 1C', [L astUpdateD ate]='2016 -07-27 11: 17:06.000' , [LastUpd ateUser]=' RED A CTED ' WHERE [B loodProduc tGuid]='89 5a64db-677 7-4c3a-b68 4-1b5c75dc f32a' | |
| 7816 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC AFR Froz Gly40 % OPN 1C', [LastUpda teDate]='2 016-07-27 11:17:06.0 00', [Last UpdateUser ]=' RED A CTED ' WHERE [B loodProduc tGuid]='f1 c718ec-a05 0-477d-b44 1-1b716e86 531d' | |
| 7817 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLT AFR ACD-A MNFN I OPN 2C', [LastUpda teDate]='2 016-07-27 11:17:06.0 00', [Last UpdateUser ]=' RED A CTED ' WHERE [B loodProduc tGuid]='45 ea865e-a8f 0-4f37-908 8-1b81ad47 739e' | |
| 7818 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC AFR CP2D>AS3 O PN IRD SR 2C', [Last UpdateDate ]='2016-07 -27 11:17: 06.000', [ LastUpdate User]=' RED A CTED ' WHERE [B loodProduc tGuid]='da 4bfa20-9f9 b-4595-ad3 7-1ba6a95a 8dd4' | |
| 7819 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='FFP None IRD 3C', [LastUpdat eDate]='20 16-07-27 1 1:17:06.00 0', [LastU pdateUser] =' RED A CTED ' WHERE [B loodProduc tGuid]='8f 4f11a7-3b2 8-4e44-8bc 1-1bafac98 f45f' | |
| 7820 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLT AFR NaCit MNFN I OPN 2CNA ', [LastUp dateDate]= '2016-07-2 7 11:17:06 .000', [La stUpdateUs er]=' RED A CTED ' WHERE [B loodProduc tGuid]='c4 6d112a-02f d-4636-849 9-1bea42e9 9f0b' | |
| 7821 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC AFR CP2D OPN I RD SR 2C', [LastUpda teDate]='2 016-07-27 11:17:06.0 00', [Last UpdateUser ]=' RED A CTED ' WHERE [B loodProduc tGuid]='53 1bbfc9-4c3 4-481e-863 9-1bebf09d 2815' | |
| 7822 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='FFP None QUAR 6C', [LastUpda teDate]='2 016-07-27 11:17:06.0 00', [Last UpdateUser ]=' RED A CTED ' WHERE [B loodProduc tGuid]='22 0f9b56-21f b-41de-b21 1-1bee298f 0473' | |
| 7823 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC AFR ACD-A>AS1 OPN LUKOPR SUPRed 2C ', [LastUp dateDate]= '2016-07-2 7 11:17:06 .000', [La stUpdateUs er]=' RED A CTED ' WHERE [B loodProduc tGuid]='a9 428318-aa5 6-4423-8f0 6-1bf7df4f c85c' | |
| 7824 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLT AFR ACD-B OPN LUKOPR PLS Red 1CNA' , [LastUpd ateDate]=' 2016-07-27 11:17:06. 000', [Las tUpdateUse r]=' RED A CTED ' WHERE [B loodProduc tGuid]='b3 14262b-abe f-47d3-9e5 d-1bfa103f a02b' | |
| 7825 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLT AFR ACD-B IRD 1C', [Last UpdateDate ]='2016-07 -27 11:17: 06.000', [ LastUpdate User]=' RED A CTED ' WHERE [B loodProduc tGuid]='7a a910f2-34e 8-42a4-956 6-1bfe0d63 6fe5' | |
| 7826 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLT AFR NaCit OPN IRD LUKOPR PLS Red 4 C', [LastU pdateDate] ='2016-07- 27 11:17:0 6.000', [L astUpdateU ser]=' RED A CTED ' WHERE [B loodProduc tGuid]='e4 3aae52-c1b a-4445-a68 8-1c0818f6 0791' | |
| 7827 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLT AFR NaCit IRD 2C', [Last UpdateDate ]='2016-07 -27 11:17: 06.000', [ LastUpdate User]=' RED A CTED ' WHERE [B loodProduc tGuid]='a6 0235fc-d7d 2-4d2c-a4c 9-1c29a3b7 55a4' | |
| 7828 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLT AFR Wash None OPN IRD LU KOPR 2C', [LastUpdat eDate]='20 16-07-27 1 1:17:06.00 0', [LastU pdateUser] =' RED A CTED ' WHERE [B loodProduc tGuid]='2f 5d55a3-da5 7-4127-b28 9-1c2a5952 1b2e' | |
| 7829 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC AFR CP2D>AS3 O PN IRD LUK OPR 2C', [ LastUpdate Date]='201 6-07-27 11 :17:06.000 ', [LastUp dateUser]= ' RED A CTED ' WHERE [B loodProduc tGuid]='12 d1c37f-2fc a-46c5-bbe 2-1c2fa30d 066c' | |
| 7830 | UPDATE [db o].[BloodP roduct] SE T [Product Name]='Aph eresis FRE SH FROZEN PLASMA|CPD -50/XX/<=- 25C|For mn f:injectab le', [Last UpdateDate ]='2016-07 -27 11:17: 06.000', [ LastUpdate User]=' RED A CTED ' WHERE [B loodProduc tGuid]='e5 3060ec-51d 1-4366-bf8 a-1c333a9d 7564' | |
| 7831 | UPDATE [db o].[BloodP roduct] SE T [Product Name]='Aph eresis FRE SH FROZEN PLASMA|NaC itrate/XX/ <=-65C|Irr adiated|>= 400mL<600m L|Quar:>=6 m/retested ', [LastUp dateDate]= '2016-07-2 7 11:17:06 .000', [La stUpdateUs er]=' RED A CTED ' WHERE [B loodProduc tGuid]='56 5cd2d1-a2a c-4d31-916 a-1c401557 3b2c' | |
| 7832 | UPDATE [db o].[BloodP roduct] SE T [Product Name]='Fro zen Aphere sis PLATEL ETS|DMSO/X X/<=-65C|O pen|ResLeu :<1E6|2nd container' , [Product ShortName] ='PLT AFR Froz DMSO OPN LUKOPR 2C', [Las tUpdateDat e]='2016-0 7-27 11:17 :06.000', [LastUpdat eUser]=' RED A CTED ' WHERE [B loodProduc tGuid]='20 426e41-7d6 d-4314-8aa b-1c555827 f69d' | |
| 7833 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='WB CPDA- 1 IRD LUKO PR 2C', [L astUpdateD ate]='2016 -07-27 11: 17:06.000' , [LastUpd ateUser]=' RED A CTED ' WHERE [B loodProduc tGuid]='ca 7b2d2a-eef e-44a4-8fd b-1c66312b 4557' | |
| 7834 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC AFR CPDA-1 LUK OPR 6C', [ LastUpdate Date]='201 6-07-27 11 :17:06.000 ', [LastUp dateUser]= ' RED A CTED ' WHERE [B loodProduc tGuid]='10 1f72bd-766 1-4d65-b2c e-1c6a5686 1f1a' | |
| 7835 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC CPD LUKOPR 6C' , [RetireD ate]='2015 -04-07 00: 00:00.000' , [LastUpd ateDate]=' 2016-07-27 11:17:06. 000', [Las tUpdateUse r]=' RED A CTED ' WHERE [B loodProduc tGuid]='34 c68c63-2e1 e-4dc7-9f8 1-1c77ca00 4adf' | |
| 7836 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLT AFR Wash ACD-A >PAS-D LUK OPR 1C', [ LastUpdate Date]='201 6-07-27 11 :17:06.000 ', [LastUp dateUser]= ' RED A CTED ' WHERE [B loodProduc tGuid]='88 508bcb-149 e-42bd-9a7 6-1c9b2a3c 51c3' | |
| 7837 | UPDATE [db o].[BloodP roduct] SE T [Product Name]='Aph eresis FRE SH FROZEN PLASMA|NaC itrate/XX/ <=-65C|Irr adiated', [LastUpdat eDate]='20 16-07-27 1 1:17:06.00 0', [LastU pdateUser] =' RED A CTED ' WHERE [B loodProduc tGuid]='71 86758c-304 3-4689-b9c 3-1ccfedb7 acdf' | |
| 7838 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC AFR CP2D>AS3 O PN LUKOPR SR/PA 1C', [LastUpda teDate]='2 016-07-27 11:17:06.0 00', [Last UpdateUser ]=' RED A CTED ' WHERE [B loodProduc tGuid]='db feefef-b29 6-4045-b49 8-1cf598be 0c1a' | |
| 7839 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLT AFR ACD-A IRD LUKOPR 1C' , [LastUpd ateDate]=' 2016-07-27 11:17:06. 000', [Las tUpdateUse r]=' RED A CTED ' WHERE [B loodProduc tGuid]='dc 10c284-3eb f-4a7d-adf 8-1d0cec5c c9f1' | |
| 7840 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='FFP AFR NaCit 6C Q UAR', [Las tUpdateDat e]='2016-0 7-27 11:17 :06.000', [LastUpdat eUser]=' RED A CTED ' WHERE [B loodProduc tGuid]='ac 48c4da-bf0 5-40b5-86c f-1d2780b7 2cf2' | |
| 7841 | UPDATE [db o].[BloodP roduct] SE T [Product Name]='Aph eresis FRE SH FROZEN PLASMA|ACD -A/XX/<=-3 0C|Irradia ted|ResLeu :<1E6|Froz en <=6h', [LastUpdat eDate]='20 16-07-27 1 1:17:06.00 0', [LastU pdateUser] =' RED A CTED ' WHERE [B loodProduc tGuid]='d3 665e80-be7 4-4f97-ab7 1-1d4dc169 abe3' | |
| 7842 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC AFR CP2D IRD L UKOPR 2C', [LastUpda teDate]='2 016-07-27 11:17:06.0 00', [Last UpdateUser ]=' RED A CTED ' WHERE [B loodProduc tGuid]='a6 4875d3-65b a-4a3f-a89 b-1d564d76 ce23' | |
| 7843 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLT AFR Wash PAS-D IRD LUKOP R 4C', [La stUpdateDa te]='2016- 07-27 11:1 7:06.000', [LastUpda teUser]=' RED A CTED ' WHERE [B loodProduc tGuid]='9b 1af311-7ac 2-4444-919 c-1d782c0a 619a' | |
| 7844 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLT AFR NaCit OPN IRD PLS Re d 2C', [La stUpdateDa te]='2016- 07-27 11:1 7:06.000', [LastUpda teUser]=' RED A CTED ' WHERE [B loodProduc tGuid]='17 150488-1e0 f-4635-b55 b-1d87a39f 5df3' | |
| 7845 | UPDATE [db o].[BloodP roduct] SE T [Product Name]='Fro zen POOLED PLATELETS |DMSO/XX/< =-80C|Open |ResLeu:<1 E6|Buffy c oat plts p rep|5 unit s', [LastU pdateDate] ='2016-07- 27 11:17:0 6.000', [L astUpdateU ser]=' RED A CTED ' WHERE [B loodProduc tGuid]='01 543a95-ca4 c-46b6-a3f 0-1d8a25e9 abed' | |
| 7846 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC AFR CP2D>AS3 S R 1C', [La stUpdateDa te]='2016- 07-27 11:1 7:06.000', [LastUpda teUser]=' RED A CTED ' WHERE [B loodProduc tGuid]='70 730f4d-557 9-4192-94a 8-1d908ab4 8ed3' | |
| 7847 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLT AFR ACD-B NMT OPN 1CNA', [LastUpda teDate]='2 016-07-27 11:17:06.0 00', [Last UpdateUser ]=' RED A CTED ' WHERE [B loodProduc tGuid]='75 87415f-1e7 5-4ffd-838 b-1db1b15c 0116' | |
| 7848 | UPDATE [db o].[BloodP roduct] SE T [Product Name]='Aph eresis FRE SH FROZEN PLASMA|ACD -B/XX/<=-2 5C|Irradia ted|Fin Co n:NS|Aphr not automa ted', [Las tUpdateDat e]='2016-0 7-27 11:17 :06.000', [LastUpdat eUser]=' RED A CTED ' WHERE [B loodProduc tGuid]='06 6ad462-89e 8-475a-9c5 7-1dbd7f47 2956' | |
| 7849 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC AFR ACD-A>AS1 IRD 3C', [ LastUpdate Date]='201 6-07-27 11 :17:06.000 ', [LastUp dateUser]= ' RED A CTED ' WHERE [B loodProduc tGuid]='e2 fd8f38-52f b-4f18-9ad 6-1dc37430 7d90' | |
| 7850 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='WB CPDA- 1 IRD 6C', [LastUpda teDate]='2 016-07-27 11:17:06.0 00', [Last UpdateUser ]=' RED A CTED ' WHERE [B loodProduc tGuid]='13 e24cfa-03d 3-4a7a-a3b b-1dfcc44b ca51' | |
| 7851 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLT AFR NaCit IRD LUKOPR PLS Red 3C', [LastUpdat eDate]='20 16-07-27 1 1:17:06.00 0', [LastU pdateUser] =' RED A CTED ' WHERE [B loodProduc tGuid]='12 33b1ff-69b a-4893-b83 7-1e015a8a 39f1' | |
| 7852 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='FFP AFR ACD-A LUKO PR 2C', [L astUpdateD ate]='2016 -07-27 11: 17:06.000' , [LastUpd ateUser]=' RED A CTED ' WHERE [B loodProduc tGuid]='64 ae2340-f61 b-4912-98b f-1e0d9512 8c6a' | |
| 7853 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLT AFR ACD-A OPN IRD LUKOPR 3C', [Las tUpdateDat e]='2016-0 7-27 11:17 :06.000', [LastUpdat eUser]=' RED A CTED ' WHERE [B loodProduc tGuid]='36 7ddedb-c03 b-4cd4-9df b-1e1bae35 a77f' | |
| 7854 | UPDATE [db o].[BloodP roduct] SE T [Product Name]='Fro zen Aphere sis PLATEL ETS|DMSO/X X/<=-65C|I rradiated| ResLeu:<5E 6|1st cont ainer', [P roductShor tName]='PL T AFR Froz DMSO IRD LUKOPR 1C' , [LastUpd ateDate]=' 2016-07-27 11:17:06. 000', [Las tUpdateUse r]=' RED A CTED ' WHERE [B loodProduc tGuid]='a5 b60242-6bb 0-43bd-953 2-1e28f7f3 6667' | |
| 7855 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='WB CPDA- 1 LUKOPR 6 C', [LastU pdateDate] ='2016-07- 27 11:17:0 6.000', [L astUpdateU ser]=' RED A CTED ' WHERE [B loodProduc tGuid]='d7 7c07a1-2e9 8-4030-b5d 7-1e3604a7 e810' | |
| 7856 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC AFR CP2D>AS3 L UKOPR SR 1 C', [LastU pdateDate] ='2016-07- 27 11:17:0 6.000', [L astUpdateU ser]=' RED A CTED ' WHERE [B loodProduc tGuid]='9d fbac83-38f 4-48c0-935 0-1e463713 ae6a' | |
| 7857 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLT AFR ACD-A IRD LUKOPR 1C BacMtr', [ LastUpdate Date]='201 6-07-27 11 :17:06.000 ', [LastUp dateUser]= ' RED A CTED ' WHERE [B loodProduc tGuid]='3b 73ea4f-cae a-411a-bf1 f-1e4b3061 8dd5' | |
| 7858 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC AFR CP2D>AS3 I RD SR 2C', [LastUpda teDate]='2 016-07-27 11:17:06.0 00', [Last UpdateUser ]=' RED A CTED ' WHERE [B loodProduc tGuid]='28 b316fe-f20 4-4fd1-9c7 d-1e4e48a6 9cb6' | |
| 7859 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLT AFR NS IRD 3C' , [LastUpd ateDate]=' 2016-07-27 11:17:06. 000', [Las tUpdateUse r]=' RED A CTED ' WHERE [B loodProduc tGuid]='1c b55c2e-02d c-41c1-aee 1-1e620f5b 1ca9' | |
| 7860 | UPDATE [db o].[BloodP roduct] SE T [Product Name]='Fro zen POOLED PLATELETS |DMSO/XX/< =-80C|Open |ResLeu:<1 E6|Buffy c oat plts p rep|4 unit s|Riboflav in-treated ', [LastUp dateDate]= '2016-07-2 7 11:17:06 .000', [La stUpdateUs er]=' RED A CTED ' WHERE [B loodProduc tGuid]='d6 671e37-632 3-4c79-97d 0-1e64ba8e bbec' | |
| 7861 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='FFP AFR Thaw None IRD 4C', [ LastUpdate Date]='201 6-07-27 11 :17:06.000 ', [LastUp dateUser]= ' RED A CTED ' WHERE [B loodProduc tGuid]='48 1dd0a3-743 0-40f9-a2a 7-1e7426ac 5481' | |
| 7862 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLT AFR PAS-C LUKO PR 1C Psor aln', [Las tUpdateDat e]='2016-0 7-27 11:17 :06.000', [LastUpdat eUser]=' RED A CTED ' WHERE [B loodProduc tGuid]='89 02fdb5-4d3 9-4d25-817 0-1ea261dc 4545' | |
| 7863 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLT AFR PAS-D IRD LUKOPR 4C BacMtr', [ LastUpdate Date]='201 6-07-27 11 :17:06.000 ', [LastUp dateUser]= ' RED A CTED ' WHERE [B loodProduc tGuid]='79 3813f4-3b8 a-495f-b9f 4-1ea8e299 ec20' | |
| 7864 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC AFR ACD-A>AS1 MNFNI 1C', [LastUpda teDate]='2 016-07-27 11:17:06.0 00', [Last UpdateUser ]=' RED A CTED ' WHERE [B loodProduc tGuid]='9f f87b82-349 e-407c-832 9-1eba0ca3 d98b' | |
| 7865 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLT AFR ACD-A MNFN I OPN 1C', [LastUpda teDate]='2 016-07-27 11:17:06.0 00', [Last UpdateUser ]=' RED A CTED ' WHERE [B loodProduc tGuid]='43 55242b-8df a-4487-be5 9-1ebb317d b05a' | |
| 7866 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='FFP AFR None IRD L UKOPR 7C', [LastUpda teDate]='2 016-07-27 11:17:06.0 00', [Last UpdateUser ]=' RED A CTED ' WHERE [B loodProduc tGuid]='73 a832d5-8f9 6-4323-a37 4-1ebd73f7 e3a3' | |
| 7867 | UPDATE [db o].[BloodP roduct] SE T [Product Name]='Aph eresis FRE SH FROZEN PLASMA|ACD -A/XX/<=-6 5C|4th con tainer', [ ProductSho rtName]='F FP AFR ACD -A 4C', [L astUpdateD ate]='2016 -07-27 11: 17:06.000' , [LastUpd ateUser]=' RED A CTED ' WHERE [B loodProduc tGuid]='f1 87265e-6a8 6-4887-8a1 7-1ec96893 c38e' | |
| 7868 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLT AFR ACD-A 8C', [LastUpda teDate]='2 016-07-27 11:17:06.0 00', [Last UpdateUser ]=' RED A CTED ' WHERE [B loodProduc tGuid]='04 c24c36-797 1-4af1-a08 e-1ed60c8b e227' | |
| 7869 | UPDATE [db o].[BloodP roduct] SE T [Product Name]='Aph eresis FRE SH FROZEN PLASMA|ACD -A/XX/<=-3 0C|ResLeu: <1E6|>=200 mL<400mL|F rozen <=18 h|3rd cont ainer|Meth ylene blue -treated', [ProductS hortName]= 'FFP AFR A CD-A LUKOP R 3C Methy l Blue', [ LastUpdate Date]='201 6-07-27 11 :17:06.000 ', [LastUp dateUser]= ' RED A CTED ' WHERE [B loodProduc tGuid]='e4 827252-dec c-4d08-a47 a-1eeb0717 6fcd' | |
| 7870 | UPDATE [db o].[BloodP roduct] SE T [Product Name]='Aph eresis FRE SH FROZEN PLASMA|NaC itrate/XX/ <=-65C|Irr adiated|3r d containe r|Quar:>=1 12d/retest ed', [Prod uctShortNa me]='FFP A FR NaCit I RD 3C QUAR ', [LastUp dateDate]= '2016-07-2 7 11:17:06 .000', [La stUpdateUs er]=' RED A CTED ' WHERE [B loodProduc tGuid]='7f 4cd791-a78 0-4c41-b01 1-1f2e63fb 5048' | |
| 7871 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLT AFR Thaw DMSO IRD 3C', [ LastUpdate Date]='201 6-07-27 11 :17:06.000 ', [LastUp dateUser]= ' RED A CTED ' WHERE [B loodProduc tGuid]='1c 2c226b-da1 b-4155-ab7 3-1f4c5f26 bf51' | |
| 7872 | UPDATE [db o].[BloodP roduct] SE T [Product Name]='Fro zen Aphere sis PLATEL ETS|DMSO/X X/<=-80C|O pen|ResLeu :<1E6', [L astUpdateD ate]='2016 -07-27 11: 17:06.000' , [LastUpd ateUser]=' RED A CTED ' WHERE [B loodProduc tGuid]='54 56899c-462 c-4e74-932 b-1f5479cc a572' | |
| 7873 | UPDATE [db o].[BloodP roduct] SE T [Product Name]='FRE SH FROZEN PLASMA|CPD /450mL/<=- 25C|For mn f:noninjec table|Froz en <=8h', [LastUpdat eDate]='20 16-07-27 1 1:17:06.00 0', [LastU pdateUser] =' RED A CTED ' WHERE [B loodProduc tGuid]='b2 809fa2-39f 2-4349-b23 5-1f5cac11 04b0' | |
| 7874 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLT AFR NaCit LUKO PR 2CNA', [LastUpdat eDate]='20 16-07-27 1 1:17:06.00 0', [LastU pdateUser] =' RED A CTED ' WHERE [B loodProduc tGuid]='cb ccb67e-8ed 0-4c13-bfd b-1f5dd839 5134' | |
| 7875 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLASMA A FR Thaw AC D-A 1C', [ LastUpdate Date]='201 6-07-27 11 :17:06.000 ', [LastUp dateUser]= ' RED A CTED ' WHERE [B loodProduc tGuid]='0f 20e6d5-a09 6-4c3c-bbf b-1f66bb01 4c13' | |
| 7876 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC CPD IRD 7C', [ LastUpdate Date]='201 6-07-27 11 :17:06.000 ', [LastUp dateUser]= ' RED A CTED ' WHERE [B loodProduc tGuid]='2c 0ef873-3a3 1-4ba3-b96 d-1f74b757 66ca' | |
| 7877 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC AFR SAGM IRD 1 C', [LastU pdateDate] ='2016-07- 27 11:17:0 6.000', [L astUpdateU ser]=' RED A CTED ' WHERE [B loodProduc tGuid]='53 567118-970 1-4adb-8f4 f-1f7e9eb1 924d' | |
| 7878 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC CPD> SAGM OPN L UKOPR', [L astUpdateD ate]='2016 -07-27 11: 17:06.000' , [LastUpd ateUser]=' RED A CTED ' WHERE [B loodProduc tGuid]='a0 0f801d-6f6 c-434f-ba5 1-1fc0b3c7 e9a5' | |
| 7879 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='FFP AFR Thaw NaCit IRD 3C QU AR', [Last UpdateDate ]='2016-07 -27 11:17: 06.000', [ LastUpdate User]=' RED A CTED ' WHERE [B loodProduc tGuid]='0f 3c7a33-0ec 4-4b61-8c2 9-1fd16fe6 7d61' | |
| 7880 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='FFP AFR Thaw ACD-A 5C', [Las tUpdateDat e]='2016-0 7-27 11:17 :06.000', [LastUpdat eUser]=' RED A CTED ' WHERE [B loodProduc tGuid]='a9 c363a7-b81 4-4cd6-b41 b-1fd70860 c7ed' | |
| 7881 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC CPDA -1 IRD LUK OPR 4C', [ RetireDate ]='2015-04 -07 00:00: 00.000', [ LastUpdate Date]='201 6-07-27 11 :17:06.000 ', [LastUp dateUser]= ' RED A CTED ' WHERE [B loodProduc tGuid]='ea 9ae6bf-dbc 9-4aad-aea 2-1fd92e03 3cbe' | |
| 7882 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='FFP Thaw None 2C', [LastUpda teDate]='2 016-07-27 11:17:06.0 00', [Last UpdateUser ]=' RED A CTED ' WHERE [B loodProduc tGuid]='cf 4b84cd-d0a 8-40cc-9a9 c-1feefeeb c8ab' | |
| 7883 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC AFR ACD-A>AS1 3C', [Last UpdateDate ]='2016-07 -27 11:17: 06.000', [ LastUpdate User]=' RED A CTED ' WHERE [B loodProduc tGuid]='14 c8405c-289 e-4aba-9b8 4-201ba368 63b1' | |
| 7884 | UPDATE [db o].[BloodP roduct] SE T [Product Name]='Fro zen Aphere sis RED BL OOD CELLS| Gly35%/450 mL/<=-65C| ResLeu:<1E 6|1st cont ainer', [P roductShor tName]='RB C AFR Froz Gly35% LU KOPR 1C', [LastUpdat eDate]='20 16-07-27 1 1:17:06.00 0', [LastU pdateUser] =' RED A CTED ' WHERE [B loodProduc tGuid]='0b b3e4f9-af4 3-43ef-ac0 8-203a324f 8865' | |
| 7885 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC CP2D >AS3 2C', [LastUpdat eDate]='20 16-07-27 1 1:17:06.00 0', [LastU pdateUser] =' RED A CTED ' WHERE [B loodProduc tGuid]='64 de95e0-d22 8-4c01-8ec e-2054c0fb 2d23' | |
| 7886 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLT AFR ACD-A OPN IRD LUKOPR PLS Red 3 C', [LastU pdateDate] ='2016-07- 27 11:17:0 6.000', [L astUpdateU ser]=' RED A CTED ' WHERE [B loodProduc tGuid]='f0 279f3d-819 a-4285-8d5 d-20590d45 d19c' | |
| 7887 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC AFR CP2D>AS3 I RD LUKOPR SUPRed 2C' , [LastUpd ateDate]=' 2016-07-27 11:17:06. 000', [Las tUpdateUse r]=' RED A CTED ' WHERE [B loodProduc tGuid]='46 b7d6ab-8d1 9-4b27-8fd 3-2072255f 38aa' | |
| 7888 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC Deg Rej None O PN LUKOPR 3C', [Last UpdateDate ]='2016-07 -27 11:17: 06.000', [ LastUpdate User]=' RED A CTED ' WHERE [B loodProduc tGuid]='94 95e71d-785 6-454b-853 b-20741aeb 9031' | |
| 7889 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC AFR Deg Rej No ne OPN IRD LUKOPR 4C ', [LastUp dateDate]= '2016-07-2 7 11:17:06 .000', [La stUpdateUs er]=' RED A CTED ' WHERE [B loodProduc tGuid]='f9 cb0f9c-7c5 3-4407-a95 3-2077dba6 b5a9' | |
| 7890 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLT AFR NS LUKOPR 1C', [Last UpdateDate ]='2016-07 -27 11:17: 06.000', [ LastUpdate User]=' RED A CTED ' WHERE [B loodProduc tGuid]='3f cf92e4-bd1 6-4313-bd9 3-2086b365 36d1' | |
| 7891 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLASMA A FR Thaw Na Cit 2C', [ LastUpdate Date]='201 6-07-27 11 :17:06.000 ', [LastUp dateUser]= ' RED A CTED ' WHERE [B loodProduc tGuid]='50 530d6a-6ef 7-4e96-9f0 4-208ae2a6 ab84' | |
| 7892 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='WB CPDA- 1 LUKOPR 4 C', [LastU pdateDate] ='2016-07- 27 11:17:0 6.000', [L astUpdateU ser]=' RED A CTED ' WHERE [B loodProduc tGuid]='1e 70f3be-84b 6-44b3-81f 8-20bd7c36 170c' | |
| 7893 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLT AFR NS IRD LUK OPR 2C', [ LastUpdate Date]='201 6-07-27 11 :17:06.000 ', [LastUp dateUser]= ' RED A CTED ' WHERE [B loodProduc tGuid]='0d a9364a-74a c-4905-b10 e-20be3db3 3bc8' | |
| 7894 | UPDATE [db o].[BloodP roduct] SE T [Product Name]='Fro zen Aphere sis RED BL OOD CELLS| Gly40%/XX/ <=-65C|Ope n|Irradiat ed', [Last UpdateDate ]='2016-07 -27 11:17: 06.000', [ LastUpdate User]=' RED A CTED ' WHERE [B loodProduc tGuid]='a5 6d4808-38e f-4d03-b78 c-20cb54a5 6bb1' | |
| 7895 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLASMA A FR Thaw AC D-A OPN IR D 4C', [La stUpdateDa te]='2016- 07-27 11:1 7:06.000', [LastUpda teUser]=' RED A CTED ' WHERE [B loodProduc tGuid]='0d e9aeba-ed5 a-4f48-a8c 1-20d5da20 8352' | |
| 7896 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLT AFR ACD-A OPN IRD LUKOPR PLS Red 2 C', [LastU pdateDate] ='2016-07- 27 11:17:0 6.000', [L astUpdateU ser]=' RED A CTED ' WHERE [B loodProduc tGuid]='dd bbe0fc-ddf 0-46df-9f3 7-20e1aa98 48a2' | |
| 7897 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLT AFR PAS-E LUKO PR 3C BacT est', [Las tUpdateDat e]='2016-0 7-27 11:17 :06.000', [LastUpdat eUser]=' RED A CTED ' WHERE [B loodProduc tGuid]='dc 49ef02-b63 8-43b1-889 f-20ee5890 0620' | |
| 7898 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC AFR CP2D>AS3 3 C', [LastU pdateDate] ='2016-07- 27 11:17:0 6.000', [L astUpdateU ser]=' RED A CTED ' WHERE [B loodProduc tGuid]='e5 2882da-5f8 7-471c-aeb d-21048565 4cf1' | |
| 7899 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC Froz None OPN IRD LUKOPR 5C', [Las tUpdateDat e]='2016-0 7-27 11:17 :06.000', [LastUpdat eUser]=' RED A CTED ' WHERE [B loodProduc tGuid]='80 afb254-419 9-4e7f-ae3 7-2105ef91 2cf0' | |
| 7900 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='FFP Thaw CPD IRD 2 C', [LastU pdateDate] ='2016-07- 27 11:17:0 6.000', [L astUpdateU ser]=' RED A CTED ' WHERE [B loodProduc tGuid]='71 550e11-a75 a-4e59-b74 2-2108892d b8e2' | |
| 7901 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLT AFR ACD-B OPN LUKOPR PLS Red 1C', [LastUpdat eDate]='20 16-07-27 1 1:17:06.00 0', [LastU pdateUser] =' RED A CTED ' WHERE [B loodProduc tGuid]='7e dda184-8bf 9-4ff2-917 4-2115cdb1 eaa9' | |
| 7902 | UPDATE [db o].[BloodP roduct] SE T [Product Name]='FRE SH FROZEN PLASMA|0.5 CPD/XX/<= -30C|Irrad iated|Quar :>=6m/rete sted', [La stUpdateDa te]='2016- 07-27 11:1 7:06.000', [LastUpda teUser]=' RED A CTED ' WHERE [B loodProduc tGuid]='e3 1361e5-182 a-4ac6-b54 e-21207da8 120b' | |
| 7903 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLT AFR ACD-A OPN IRD PLS Re d 4C', [La stUpdateDa te]='2016- 07-27 11:1 7:06.000', [LastUpda teUser]=' RED A CTED ' WHERE [B loodProduc tGuid]='9d 4b6e46-0d6 a-47b8-b0d b-212976cd da80' | |
| 7904 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC AFR CP2D>AS3 L UKOPR 4C', [LastUpda teDate]='2 016-07-27 11:17:06.0 00', [Last UpdateUser ]=' RED A CTED ' WHERE [B loodProduc tGuid]='75 23a296-ffc 2-44c3-848 f-2149be43 2a6a' | |
| 7905 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='FFP CPDA -1 2C QUAR ', [LastUp dateDate]= '2016-07-2 7 11:17:06 .000', [La stUpdateUs er]=' RED A CTED ' WHERE [B loodProduc tGuid]='6c 5c63d1-839 1-4849-ae3 e-21502d0b 2a62' | |
| 7906 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC CPD 7C', [Last UpdateDate ]='2016-07 -27 11:17: 06.000', [ LastUpdate User]=' RED A CTED ' WHERE [B loodProduc tGuid]='92 5cf063-f89 0-4b38-911 3-215b216f d063' | |
| 7907 | UPDATE [db o].[BloodP roduct] SE T [Product Name]='Aph eresis FRE SH FROZEN PLASMA|ACD -A/XX/<=-3 0C|For mnf :noninject able|Froze n <=6h', [ LastUpdate Date]='201 6-07-27 11 :17:06.000 ', [LastUp dateUser]= ' RED A CTED ' WHERE [B loodProduc tGuid]='ee 464842-8ac 1-4554-a6c 7-21807001 8fe7' | |
| 7908 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC AFR Froz None OPN LUKOPR 8C', [Las tUpdateDat e]='2016-0 7-27 11:17 :06.000', [LastUpdat eUser]=' RED A CTED ' WHERE [B loodProduc tGuid]='05 6d6a5f-0a3 a-41f1-be6 f-21960506 ffd6' | |
| 7909 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLT AFR ACD-B OPN LUKOPR 1C' , [LastUpd ateDate]=' 2016-07-27 11:17:06. 000', [Las tUpdateUse r]=' RED A CTED ' WHERE [B loodProduc tGuid]='4e 5f7cf7-a4b c-4e1f-b91 a-219780ea ad32' | |
| 7910 | UPDATE [db o].[BloodP roduct] SE T [Product Name]='Aph eresis FRE SH FROZEN PLASMA|ACD -B/XX/<=-6 5C|Fin Con :NS|Aphr n ot automat ed', [Last UpdateDate ]='2016-07 -27 11:17: 06.000', [ LastUpdate User]=' RED A CTED ' WHERE [B loodProduc tGuid]='87 ec0c25-fd2 9-44d4-a66 d-219a79c3 5f90' | |
| 7911 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLASMA A FR None 3C ', [LastUp dateDate]= '2016-07-2 7 11:17:06 .000', [La stUpdateUs er]=' RED A CTED ' WHERE [B loodProduc tGuid]='bd e2fe6a-c43 2-41da-851 f-21a400ee c015' | |
| 7912 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC AFR CP2D OPN S R/PA 2C', [LastUpdat eDate]='20 16-07-27 1 1:17:06.00 0', [LastU pdateUser] =' RED A CTED ' WHERE [B loodProduc tGuid]='09 afa9be-b31 f-4ede-976 c-21a5cc5e 3ef0' | |
| 7913 | UPDATE [db o].[BloodP roduct] SE T [Product Name]='FRE SH FROZEN PLASMA|CPD /450mL/<=- 25C|Frozen <=6h', [L astUpdateD ate]='2016 -07-27 11: 17:06.000' , [LastUpd ateUser]=' RED A CTED ' WHERE [B loodProduc tGuid]='7a fb1d01-315 7-471e-9dd 2-21a72724 12e7' | |
| 7914 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='FFP AFR Thaw None 3C', [Last UpdateDate ]='2016-07 -27 11:17: 06.000', [ LastUpdate User]=' RED A CTED ' WHERE [B loodProduc tGuid]='93 3240b8-98d e-48ac-996 c-21b4b78c b264' | |
| 7915 | UPDATE [db o].[BloodP roduct] SE T [Product Name]='Aph eresis FRE SH FROZEN PLASMA|NS/ XX/<=-30C| For mnf:no ninjectabl e|Frozen < =8h', [Las tUpdateDat e]='2016-0 7-27 11:17 :06.000', [LastUpdat eUser]=' RED A CTED ' WHERE [B loodProduc tGuid]='67 bc2e6b-9fb a-4308-8d9 5-21b6921a 2f02' | |
| 7916 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC Deg Rej None O PN IRD 1C' , [LastUpd ateDate]=' 2016-07-27 11:17:06. 000', [Las tUpdateUse r]=' RED A CTED ' WHERE [B loodProduc tGuid]='e6 bf7192-e32 1-443b-a16 3-21c58196 a287' | |
| 7917 | UPDATE [db o].[BloodP roduct] SE T [Product Name]='Fro zen Rejuve nated RED BLOOD CELL S|None/500 mL/<=-65C| Open', [La stUpdateDa te]='2016- 07-27 11:1 7:06.000', [LastUpda teUser]=' RED A CTED ' WHERE [B loodProduc tGuid]='e8 acdb23-af7 a-43ef-81d d-21d6f31b 5744' | |
| 7918 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC AFR CP2D>AS3 I RD LUKOPR 3C', [Last UpdateDate ]='2016-07 -27 11:17: 06.000', [ LastUpdate User]=' RED A CTED ' WHERE [B loodProduc tGuid]='04 0e8ad3-230 6-4a4c-843 4-21f42642 3e60' | |
| 7919 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLT AFR ACD-A PLS Red/PA 3C' , [LastUpd ateDate]=' 2016-07-27 11:17:06. 000', [Las tUpdateUse r]=' RED A CTED ' WHERE [B loodProduc tGuid]='64 4f82ce-a5a d-40f6-aea a-21fc4563 3d7c' | |
| 7920 | UPDATE [db o].[BloodP roduct] SE T [Product Name]='Aph eresis FRE SH FROZEN PLASMA|ACD -B/XX/<=-2 5C|Irradia ted|Fin Co n:NS', [La stUpdateDa te]='2016- 07-27 11:1 7:06.000', [LastUpda teUser]=' RED A CTED ' WHERE [B loodProduc tGuid]='ae 8c98c0-425 2-42f4-9e7 f-22191947 3fac' | |
| 7921 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLASMA N one 3C', [ LastUpdate Date]='201 6-07-27 11 :17:06.000 ', [LastUp dateUser]= ' RED A CTED ' WHERE [B loodProduc tGuid]='d2 c54586-21d 2-496e-bc4 8-22198b5c eb79' | |
| 7922 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLT AFR Wash NS IR D LUKOPR 1 C', [LastU pdateDate] ='2016-07- 27 11:17:0 6.000', [L astUpdateU ser]=' RED A CTED ' WHERE [B loodProduc tGuid]='d0 0056d3-342 8-43f3-a5c 4-22295712 42f9' | |
| 7923 | UPDATE [db o].[BloodP roduct] SE T [Product Name]='Aph eresis FRE SH FROZEN PLASMA|NaC itrate/XX/ <=-65C|6th container ', [Produc tShortName ]='FFP AFR NaCit 6C' , [LastUpd ateDate]=' 2016-07-27 11:17:06. 000', [Las tUpdateUse r]=' RED A CTED ' WHERE [B loodProduc tGuid]='25 74d576-265 e-41e9-85a a-22552186 a374' | |
| 7924 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLT AFR ACD-A MNFI 4C', [Las tUpdateDat e]='2016-0 7-27 11:17 :06.000', [LastUpdat eUser]=' RED A CTED ' WHERE [B loodProduc tGuid]='3e d3f4c1-1a0 4-4ba5-b10 6-226925a0 10ac' | |
| 7925 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC AFR CP2D>AS3 8 C', [LastU pdateDate] ='2016-07- 27 11:17:0 6.000', [L astUpdateU ser]=' RED A CTED ' WHERE [B loodProduc tGuid]='b5 46c144-e3e d-410f-9ec 0-228db513 2adc' | |
| 7926 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='FFP AFR None 6C', [LastUpdat eDate]='20 16-07-27 1 1:17:06.00 0', [LastU pdateUser] =' RED A CTED ' WHERE [B loodProduc tGuid]='62 c86293-cf5 a-482a-a01 b-2291e814 8335' | |
| 7927 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLT AFR ACD-A IRD LUKOPR PLS Red 2C', [LastUpdat eDate]='20 16-07-27 1 1:17:06.00 0', [LastU pdateUser] =' RED A CTED ' WHERE [B loodProduc tGuid]='e6 9fa0c2-84b 5-4922-9d0 7-229f3978 8164' | |
| 7928 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC CPDA -1 IRD LUK OPR 7C', [ RetireDate ]='2015-04 -07 00:00: 00.000', [ LastUpdate Date]='201 6-07-27 11 :17:06.000 ', [LastUp dateUser]= ' RED A CTED ' WHERE [B loodProduc tGuid]='da b3fb43-721 c-4a36-8f7 8-22ae7237 9529' | |
| 7929 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLT AFR ACD-A IRD 3C', [Last UpdateDate ]='2016-07 -27 11:17: 06.000', [ LastUpdate User]=' RED A CTED ' WHERE [B loodProduc tGuid]='8f 408279-c5a 3-4e2e-9db d-22b5ba30 0143' | |
| 7930 | UPDATE [db o].[BloodP roduct] SE T [Product Name]='Fro zen Aphere sis PLATEL ETS|DMSO/X X/<=-65C|F or mnf:non injectable |Open', [L astUpdateD ate]='2016 -07-27 11: 17:06.000' , [LastUpd ateUser]=' RED A CTED ' WHERE [B loodProduc tGuid]='81 4f029b-4ca 9-41ef-b73 5-22b5e45c a6a1' | |
| 7931 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC AFR Rej None O PN IRD LUK OPR 2C', [ LastUpdate Date]='201 6-07-27 11 :17:06.000 ', [LastUp dateUser]= ' RED A CTED ' WHERE [B loodProduc tGuid]='3e 1dc247-eaf d-48cd-8c8 c-22bb6593 9373' | |
| 7932 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC AFR ACD-A 2C', [LastUpda teDate]='2 016-07-27 11:17:06.0 00', [Last UpdateUser ]=' RED A CTED ' WHERE [B loodProduc tGuid]='60 e06132-ae5 6-47de-b5c 9-22d318a8 5410' | |
| 7933 | UPDATE [db o].[BloodP roduct] SE T [Product Name]='Aph eresis FRE SH FROZEN PLASMA|ACD -B/XX/<=-3 0C|Irradia ted|Fin Co n:NS|Aphr not automa ted|Quar:> =6m/retest ed', [Last UpdateDate ]='2016-07 -27 11:17: 06.000', [ LastUpdate User]=' RED A CTED ' WHERE [B loodProduc tGuid]='51 6eb5de-e88 5-44ae-92e 4-22d9b7ca 4b84' | |
| 7934 | UPDATE [db o].[BloodP roduct] SE T [Product Name]='FRE SH FROZEN PLASMA|CPD /450mL/<=- 30C|Frozen <=6h', [L astUpdateD ate]='2016 -07-27 11: 17:06.000' , [LastUpd ateUser]=' RED A CTED ' WHERE [B loodProduc tGuid]='f5 708dc3-ab7 c-413e-8e2 6-22f029d7 32f4' | |
| 7935 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC AFR CP2D>AS3 L UKOPR 8C', [LastUpda teDate]='2 016-07-27 11:17:06.0 00', [Last UpdateUser ]=' RED A CTED ' WHERE [B loodProduc tGuid]='0b 1f1601-e29 6-41bf-aea 5-22fcc70d 72ae' | |
| 7936 | UPDATE [db o].[BloodP roduct] SE T [Product Name]='Aph eresis FRE SH FROZEN PLASMA|NaC itrate/XX/ <=-65C|>=4 00mL<600mL |Quar:>=6m /retested' , [LastUpd ateDate]=' 2016-07-27 11:17:06. 000', [Las tUpdateUse r]=' RED A CTED ' WHERE [B loodProduc tGuid]='61 aa55c6-d13 7-4d4e-922 c-2302a76f e66a' | |
| 7937 | UPDATE [db o].[BloodP roduct] SE T [Product Name]='Aph eresis FRE SH FROZEN PLASMA|NS/ XX/<=-30C| Not for tx or mnf|Re sLeu:<1E6' , [LastUpd ateDate]=' 2016-07-27 11:17:06. 000', [Las tUpdateUse r]=' RED A CTED ' WHERE [B loodProduc tGuid]='bb 7b28b2-7c1 d-43bb-a7f 8-23144e29 1ddf' | |
| 7938 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLT AFR ACD-B OPN LUKOPR 2CN A', [LastU pdateDate] ='2016-07- 27 11:17:0 6.000', [L astUpdateU ser]=' RED A CTED ' WHERE [B loodProduc tGuid]='63 e458ee-58b 1-48fb-a36 a-23312923 3d12' | |
| 7939 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLASMA A FR Thaw CP 2D IRD 3C' , [LastUpd ateDate]=' 2016-07-27 11:17:06. 000', [Las tUpdateUse r]=' RED A CTED ' WHERE [B loodProduc tGuid]='32 fca804-500 9-4a78-878 d-234679b9 9d3e' | |
| 7940 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLT AFR ACD-A>PAS- F LUKOPR 2 C', [LastU pdateDate] ='2016-07- 27 11:17:0 6.000', [L astUpdateU ser]=' RED A CTED ' WHERE [B loodProduc tGuid]='be 9403d5-66e b-49ed-a1d 0-234a2eb1 2210' | |
| 7941 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC AFR ACD-A>AS1 OPN LUKOPR 1C', [Las tUpdateDat e]='2016-0 7-27 11:17 :06.000', [LastUpdat eUser]=' RED A CTED ' WHERE [B loodProduc tGuid]='c2 0dff55-c85 6-4eba-8b9 1-235afe70 0b51' | |
| 7942 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC AFR Deg None O PN LUKOPR 2C', [Last UpdateDate ]='2016-07 -27 11:17: 06.000', [ LastUpdate User]=' RED A CTED ' WHERE [B loodProduc tGuid]='e9 6dc13a-d14 0-407f-a17 c-23666253 c323' | |
| 7943 | UPDATE [db o].[BloodP roduct] SE T [Product Name]='Fro zen Aphere sis RED BL OOD CELLS| Gly40%/XX/ <=-65C|Ope n', [LastU pdateDate] ='2016-07- 27 11:17:0 6.000', [L astUpdateU ser]=' RED A CTED ' WHERE [B loodProduc tGuid]='e7 e6f174-48b a-4cac-8fb a-23800ba5 cac1' | |
| 7944 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC AFR Deg Rej No ne OPN IRD LUKOPR 2C ', [LastUp dateDate]= '2016-07-2 7 11:17:06 .000', [La stUpdateUs er]=' RED A CTED ' WHERE [B loodProduc tGuid]='f8 53f113-660 d-4efa-93d 3-2382cbe9 827f' | |
| 7945 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC CPDA -1 IRD 4C' , [LastUpd ateDate]=' 2016-07-27 11:17:06. 000', [Las tUpdateUse r]=' RED A CTED ' WHERE [B loodProduc tGuid]='a9 aec0f1-d12 8-4b0a-9b9 7-23873e08 d8f2' | |
| 7946 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLT AFR NaCit OPN IRD LUKOPR PLS Red 1 C', [LastU pdateDate] ='2016-07- 27 11:17:0 6.000', [L astUpdateU ser]=' RED A CTED ' WHERE [B loodProduc tGuid]='55 f65d87-c66 b-41a0-a09 9-238da7ab d52f' | |
| 7947 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC AFR ACD-A>AS3 2C', [Last UpdateDate ]='2016-07 -27 11:17: 06.000', [ LastUpdate User]=' RED A CTED ' WHERE [B loodProduc tGuid]='76 8b5a39-9af a-4835-940 b-23aa5360 a558' | |
| 7948 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='FFP AFR ACD-A 3C', [LastUpda teDate]='2 016-07-27 11:17:06.0 00', [Last UpdateUser ]=' RED A CTED ' WHERE [B loodProduc tGuid]='f0 bd0f62-80d e-4012-b45 f-23c48cc2 0334' | |
| 7949 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLT AFR NaCit IRD LUKOPR 2CN A', [LastU pdateDate] ='2016-07- 27 11:17:0 6.000', [L astUpdateU ser]=' RED A CTED ' WHERE [B loodProduc tGuid]='a6 0f91ba-94b f-44ea-bb1 e-23df55d8 4d42' | |
| 7950 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLT AFR NaCit OPN IRD LUKOPR 4C', [Las tUpdateDat e]='2016-0 7-27 11:17 :06.000', [LastUpdat eUser]=' RED A CTED ' WHERE [B loodProduc tGuid]='09 0bc9f4-940 7-4efb-8ba 1-23ec39fb 650a' | |
| 7951 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='FFP AFR Thaw NaCit IRD LUKOP R 1C QUAR' , [LastUpd ateDate]=' 2016-07-27 11:17:06. 000', [Las tUpdateUse r]=' RED A CTED ' WHERE [B loodProduc tGuid]='2f eabcd6-8e2 c-4bb4-975 4-23ef1243 514b' | |
| 7952 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLT AFR PAS-B IRD LUKOPR 2C' , [LastUpd ateDate]=' 2016-07-27 11:17:06. 000', [Las tUpdateUse r]=' RED A CTED ' WHERE [B loodProduc tGuid]='66 966ff7-f51 2-497d-b4b 4-23fefdaf 67e2' | |
| 7953 | UPDATE [db o].[BloodP roduct] SE T [Product Name]='Aph eresis FRE SH FROZEN PLASMA|ACD -A/XX/<=-3 0C|ResLeu: <1E6|>=400 mL<600mL|Q uar:>=90d/ retested', [LastUpda teDate]='2 016-07-27 11:17:06.0 00', [Last UpdateUser ]=' RED A CTED ' WHERE [B loodProduc tGuid]='fb 28a957-18f a-4939-992 e-240b17a6 dbf3' | |
| 7954 | UPDATE [db o].[BloodP roduct] SE T [Product Name]='Fro zen POOLED PLATELETS |DMSO/XX/< =-80C|Open |6 units', [LastUpda teDate]='2 016-07-27 11:17:06.0 00', [Last UpdateUser ]=' RED A CTED ' WHERE [B loodProduc tGuid]='96 38907a-f79 6-4782-98f 5-242193ac 295c' | |
| 7955 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLT AFR NS OPN IRD LUKOPR PL S Red 2C', [LastUpda teDate]='2 016-07-27 11:17:06.0 00', [Last UpdateUser ]=' RED A CTED ' WHERE [B loodProduc tGuid]='09 d1e57f-027 c-4527-b57 c-2424464d 743b' | |
| 7956 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLT AFR ACD-A IRD LUKOPR 6C' , [LastUpd ateDate]=' 2016-07-27 11:17:06. 000', [Las tUpdateUse r]=' RED A CTED ' WHERE [B loodProduc tGuid]='f1 16a022-956 b-4c4b-bbb 0-247b124f 43ed' | |
| 7957 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC AFR Deg Rej No ne OPN IRD 4C', [Las tUpdateDat e]='2016-0 7-27 11:17 :06.000', [LastUpdat eUser]=' RED A CTED ' WHERE [B loodProduc tGuid]='e0 3c088e-d7f b-4111-acf a-2492efe1 2adf' | |
| 7958 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLT AFR ACD-A IRD LUKOPR 8C BacMtr', [ LastUpdate Date]='201 6-07-27 11 :17:06.000 ', [LastUp dateUser]= ' RED A CTED ' WHERE [B loodProduc tGuid]='77 f05932-a6d e-4808-a68 e-2494b61f 9bc3' | |
| 7959 | UPDATE [db o].[BloodP roduct] SE T [Product Name]='POO LED FRESH FROZEN PLA SMA|CPD/XX /<=-30C|No t for tx o r mnf|ResL eu:<1E6|>= 600mL|3 un its', [Pro ductShortN ame]='FFP Pool CPD N MT LUKOPR LrgVol 3U' , [LastUpd ateDate]=' 2016-07-27 11:17:06. 000', [Las tUpdateUse r]=' RED A CTED ' WHERE [B loodProduc tGuid]='04 9dfb33-7f6 7-4cf5-9f9 b-24b3f370 551c' | |
| 7960 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='FFP AFR None IRD L UKOPR 3C', [LastUpda teDate]='2 016-07-27 11:17:06.0 00', [Last UpdateUser ]=' RED A CTED ' WHERE [B loodProduc tGuid]='db fbf38e-564 1-47d8-b46 7-24b74cef 7d7d' | |
| 7961 | UPDATE [db o].[BloodP roduct] SE T [Product Name]='POO LED PLASMA |CPD/450mL /<=-25C|Fo r mnf:inje ctable|Fro zen <=24h' , [LastUpd ateDate]=' 2016-07-27 11:17:06. 000', [Las tUpdateUse r]=' RED A CTED ' WHERE [B loodProduc tGuid]='bb 737d04-583 1-41f8-a72 9-24bc695c e9d4' | |
| 7962 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC CPD> AS1 IRD 4C ', [LastUp dateDate]= '2016-07-2 7 11:17:06 .000', [La stUpdateUs er]=' RED A CTED ' WHERE [B loodProduc tGuid]='0e 01f324-398 1-4407-80e 1-24d0b748 05c4' | |
| 7963 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLT AFR ACD-A>PAS- F IRD LUKO PR 3C', [L astUpdateD ate]='2016 -07-27 11: 17:06.000' , [LastUpd ateUser]=' RED A CTED ' WHERE [B loodProduc tGuid]='ee 35d2d0-944 9-46fb-9a9 b-24d37701 4d8d' | |
| 7964 | UPDATE [db o].[BloodP roduct] SE T [Product Name]='Fro zen SERUM| None/XX/<= -18C', [Pr oductShort Name]='SER UM Froz No ne', [Maxi mumStorage Time]=8760 , [Origina lProductTy peCode]='E 076', [Las tUpdateDat e]='2016-0 7-27 11:17 :06.000', [LastUpdat eUser]=' RED A CTED ' WHERE [B loodProduc tGuid]='c2 60ef12-536 e-489d-92e 2-24d95117 e78d' | |
| 7965 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC Deg None LUKOP R 3C', [La stUpdateDa te]='2016- 07-27 11:1 7:06.000', [LastUpda teUser]=' RED A CTED ' WHERE [B loodProduc tGuid]='e0 4a61a2-05e c-4cbf-bab f-24eed003 463a' | |
| 7966 | UPDATE [db o].[BloodP roduct] SE T [Product Name]='Fro zen Aphere sis PLATEL ETS|DMSO/X X/<=-65C|N ot for tx or mnf|Ope n|1st cont ainer:not auto', [Pr oductShort Name]='PLT AFR Froz DMSO NMT O PN 1CNA', [LastUpdat eDate]='20 16-07-27 1 1:17:06.00 0', [LastU pdateUser] =' RED A CTED ' WHERE [B loodProduc tGuid]='0b 3e5388-521 0-441c-912 8-24faa24e bb4b' | |
| 7967 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLT AFR ACD-A MNFI 1CNA', [L astUpdateD ate]='2016 -07-27 11: 17:06.000' , [LastUpd ateUser]=' RED A CTED ' WHERE [B loodProduc tGuid]='10 21acb8-e9a 6-48a7-a88 6-25030b29 eb9b' | |
| 7968 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC AFR ACD-A>AS3 IRD 4C', [ LastUpdate Date]='201 6-07-27 11 :17:06.000 ', [LastUp dateUser]= ' RED A CTED ' WHERE [B loodProduc tGuid]='8a d4cb01-971 1-4049-b8a 4-2538fa29 4c9f' | |
| 7969 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLASMA A FR None 1C ', [LastUp dateDate]= '2016-07-2 7 11:17:06 .000', [La stUpdateUs er]=' RED A CTED ' WHERE [B loodProduc tGuid]='1f 315270-dc7 e-42e5-904 8-254872fe 8a6c' | |
| 7970 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC AFR Deg Rej No ne OPN 1C' , [LastUpd ateDate]=' 2016-07-27 11:17:06. 000', [Las tUpdateUse r]=' RED A CTED ' WHERE [B loodProduc tGuid]='6e 0f564b-8a1 2-425d-aaa 8-25563881 59cc' | |
| 7971 | UPDATE [db o].[BloodP roduct] SE T [Product Name]='Aph eresis FRE SH FROZEN PLASMA|ACD -B/XX/<=-6 5C|Irradia ted|Aphr n ot automat ed', [Last UpdateDate ]='2016-07 -27 11:17: 06.000', [ LastUpdate User]=' RED A CTED ' WHERE [B loodProduc tGuid]='71 f55004-913 9-4ab6-81f 5-25574a6e 7372' | |
| 7972 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLT AFR Wash PAS-D IRD LUKOP R 3C', [La stUpdateDa te]='2016- 07-27 11:1 7:06.000', [LastUpda teUser]=' RED A CTED ' WHERE [B loodProduc tGuid]='da d4f466-483 5-4838-b85 1-2560504a 7548' | |
| 7973 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC CPD> AS5 LUKOPR 6C', [Las tUpdateDat e]='2016-0 7-27 11:17 :06.000', [LastUpdat eUser]=' RED A CTED ' WHERE [B loodProduc tGuid]='8a b18371-0ac c-4671-a77 e-2568ab3e ca53' | |
| 7974 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLT AFR ACD-A>PAS- F LUKOPR 3 C', [LastU pdateDate] ='2016-07- 27 11:17:0 6.000', [L astUpdateU ser]=' RED A CTED ' WHERE [B loodProduc tGuid]='ac 70b97c-e63 c-42f9-899 4-25759d93 ff57' | |
| 7975 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC AFR ACD-A>AS1 IRD LUKOPR 5C', [Las tUpdateDat e]='2016-0 7-27 11:17 :06.000', [LastUpdat eUser]=' RED A CTED ' WHERE [B loodProduc tGuid]='a7 512ce3-63a a-4b9f-a38 c-258048f4 6d1a' | |
| 7976 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLT AFR ACD-A IRD LUKOPR 5C BacMtr', [ LastUpdate Date]='201 6-07-27 11 :17:06.000 ', [LastUp dateUser]= ' RED A CTED ' WHERE [B loodProduc tGuid]='d9 bd96dd-99b b-4c70-b61 6-258e1109 d0fa' | |
| 7977 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC CPDA -1 LUKOPR 2C', [Last UpdateDate ]='2016-07 -27 11:17: 06.000', [ LastUpdate User]=' RED A CTED ' WHERE [B loodProduc tGuid]='46 a146f3-98a e-4462-af3 d-25a4921b 85ab' | |
| 7978 | UPDATE [db o].[BloodP roduct] SE T [Product Name]='Aph eresis FRE SH FROZEN PLASMA|NaC itrate/XX/ <=-65C|Fin Con:NS|Qu ar:>=6m/re tested', [ LastUpdate Date]='201 6-07-27 11 :17:06.000 ', [LastUp dateUser]= ' RED A CTED ' WHERE [B loodProduc tGuid]='9b 7980f2-db9 f-4519-b92 8-25a5d00f 810e' | |
| 7979 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLT AFR ACD-A OPN PLS Red 2C ', [LastUp dateDate]= '2016-07-2 7 11:17:06 .000', [La stUpdateUs er]=' RED A CTED ' WHERE [B loodProduc tGuid]='a2 9c959b-202 8-4478-a19 8-25cf1996 168d' | |
| 7980 | UPDATE [db o].[BloodP roduct] SE T [Product Name]='Aph eresis FRE SH FROZEN PLASMA|CPD -50/XX/<=- 30C|Not fo r tx or mn f', [LastU pdateDate] ='2016-07- 27 11:17:0 6.000', [L astUpdateU ser]=' RED A CTED ' WHERE [B loodProduc tGuid]='da 961b4b-e2e 1-40d7-8c8 4-25e43946 0d81' | |
| 7981 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='FFP AFR None QUAR 4C', [Last UpdateDate ]='2016-07 -27 11:17: 06.000', [ LastUpdate User]=' RED A CTED ' WHERE [B loodProduc tGuid]='9f f79d07-ef3 d-411f-a2f 4-2601f7e0 9cae' | |
| 7982 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC AFR Froz None OPN LUKOPR 2C', [Las tUpdateDat e]='2016-0 7-27 11:17 :06.000', [LastUpdat eUser]=' RED A CTED ' WHERE [B loodProduc tGuid]='43 2f6de5-c4e a-4f39-81a 8-26259afe 5257' | |
| 7983 | UPDATE [db o].[BloodP roduct] SE T [Product Name]='FRE SH FROZEN PLASMA|CPD /450mL/<=- 25C', [Las tUpdateDat e]='2016-0 7-27 11:17 :06.000', [LastUpdat eUser]=' RED A CTED ' WHERE [B loodProduc tGuid]='bf bb7b50-8a3 1-45ab-9e5 b-26281390 123f' | |
| 7984 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='FFP AFR ACD-A IRD 5C QUAR', [LastUpdat eDate]='20 16-07-27 1 1:17:06.00 0', [LastU pdateUser] =' RED A CTED ' WHERE [B loodProduc tGuid]='91 5e71fd-048 b-444c-b99 6-26448e2d 7f04' | |
| 7985 | UPDATE [db o].[BloodP roduct] SE T [Product Name]='Aph eresis FRE SH FROZEN PLASMA|ACD -B/XX/<=-3 0C|Aphr no t automate d', [LastU pdateDate] ='2016-07- 27 11:17:0 6.000', [L astUpdateU ser]=' RED A CTED ' WHERE [B loodProduc tGuid]='82 8acee1-56f 8-4b88-b93 1-266078d7 77b1' | |
| 7986 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC AFR Wash None OPN IRD 3C ', [LastUp dateDate]= '2016-07-2 7 11:17:06 .000', [La stUpdateUs er]=' RED A CTED ' WHERE [B loodProduc tGuid]='f0 b9a999-49e 4-4b3e-80b c-266b6057 ac85' | |
| 7987 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='FFP AFR Thaw None 1C', [Last UpdateDate ]='2016-07 -27 11:17: 06.000', [ LastUpdate User]=' RED A CTED ' WHERE [B loodProduc tGuid]='52 9170f0-93c a-4545-a7a f-2670226a e260' | |
| 7988 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='FFP AFR ACD-A IRD 4C QUAR', [LastUpdat eDate]='20 16-07-27 1 1:17:06.00 0', [LastU pdateUser] =' RED A CTED ' WHERE [B loodProduc tGuid]='aa 0be3e6-71c 7-4069-aa6 d-2674a517 af89' | |
| 7989 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='FFP AFR Thaw ACD-A LUKOPR 8C ', [LastUp dateDate]= '2016-07-2 7 11:17:06 .000', [La stUpdateUs er]=' RED A CTED ' WHERE [B loodProduc tGuid]='17 dba687-dec 0-45d5-af2 8-2676c5b1 b293' | |
| 7990 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC AFR Deg None O PN 2C', [L astUpdateD ate]='2016 -07-27 11: 17:06.000' , [LastUpd ateUser]=' RED A CTED ' WHERE [B loodProduc tGuid]='2a 88f8e3-079 a-4c53-975 6-2683233a 7fc9' | |
| 7991 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC AFR CP2D OPN L UKOPR SR/P A 1C', [La stUpdateDa te]='2016- 07-27 11:1 7:06.000', [LastUpda teUser]=' RED A CTED ' WHERE [B loodProduc tGuid]='d1 9dee85-b8b 5-44cc-879 e-268ad74f 3433' | |
| 7992 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLT AFR ACD-A IRD LUKOPR 7C BacMtr', [ LastUpdate Date]='201 6-07-27 11 :17:06.000 ', [LastUp dateUser]= ' RED A CTED ' WHERE [B loodProduc tGuid]='eb dd5824-8eb 6-4001-959 7-269faec0 c6c0' | |
| 7993 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLT AFR ACD-A LUKO PR 4C', [L astUpdateD ate]='2016 -07-27 11: 17:06.000' , [LastUpd ateUser]=' RED A CTED ' WHERE [B loodProduc tGuid]='d1 a5f3ad-29a 1-4479-bec 1-26a06e9b ad23' | |
| 7994 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='FFP AFR Thaw NaCit 2C', [Las tUpdateDat e]='2016-0 7-27 11:17 :06.000', [LastUpdat eUser]=' RED A CTED ' WHERE [B loodProduc tGuid]='c2 ebf0e6-1fe c-4e27-96d 3-26a1ca72 7efc' | |
| 7995 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLT AFR Wash None LUKOPR 2C Psoraln', [LastUpdat eDate]='20 16-07-27 1 1:17:06.00 0', [LastU pdateUser] =' RED A CTED ' WHERE [B loodProduc tGuid]='8b 89fa6c-451 6-4c29-b84 4-26aa8cd6 c5cb' | |
| 7996 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLT AFR ACD-B MNFI 1C', [Las tUpdateDat e]='2016-0 7-27 11:17 :06.000', [LastUpdat eUser]=' RED A CTED ' WHERE [B loodProduc tGuid]='5d 21e6ba-39e b-44e6-9c1 e-26bd508e a176' | |
| 7997 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLT AFR ACD-B OPN LUKOPR 1CN A', [LastU pdateDate] ='2016-07- 27 11:17:0 6.000', [L astUpdateU ser]=' RED A CTED ' WHERE [B loodProduc tGuid]='6c b34228-458 7-49f7-a51 e-26be4938 02f0' | |
| 7998 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC AFR ACD-A>AS3 IRD LUKOPR SUPRed 1C ', [LastUp dateDate]= '2016-07-2 7 11:17:06 .000', [La stUpdateUs er]=' RED A CTED ' WHERE [B loodProduc tGuid]='0e 9c65cc-30d 3-468f-84d 9-26c3501c 24ab' | |
| 7999 | UPDATE [db o].[BloodP roduct] SE T [Product Name]='FRE SH FROZEN PLASMA|CPD A-1/XX/<=- 30C', [Las tUpdateDat e]='2016-0 7-27 11:17 :06.000', [LastUpdat eUser]=' RED A CTED ' WHERE [B loodProduc tGuid]='d1 1f2b63-2eb d-4b96-8bc e-26cdbccf d924' | |
| 8000 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLT AFR ACD-B NMT 2C', [Last UpdateDate ]='2016-07 -27 11:17: 06.000', [ LastUpdate User]=' RED A CTED ' WHERE [B loodProduc tGuid]='6f fee490-e6f 6-43d3-b06 9-26e01ac7 bc09' | |
| 8001 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='FFP AFR Thaw None IRD 1C', [ LastUpdate Date]='201 6-07-27 11 :17:06.000 ', [LastUp dateUser]= ' RED A CTED ' WHERE [B loodProduc tGuid]='1a f2564c-9c6 f-48f9-a68 b-26f5d18d ec62' | |
| 8002 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLT AFR ACD-A PLS Red 1C', [ LastUpdate Date]='201 6-07-27 11 :17:06.000 ', [LastUp dateUser]= ' RED A CTED ' WHERE [B loodProduc tGuid]='b0 e3bbfc-e1d 3-4aa3-bdc 2-26fb6690 0e1b' | |
| 8003 | UPDATE [db o].[BloodP roduct] SE T [Product Name]='Aph eresis FRE SH FROZEN PLASMA|ACD -B/XX/<=-3 0C|Not for tx or mnf |Fin Con:N S|Quar:>=6 m/retested ', [LastUp dateDate]= '2016-07-2 7 11:17:06 .000', [La stUpdateUs er]=' RED A CTED ' WHERE [B loodProduc tGuid]='3a 655f1a-15b 2-4a30-88a 7-26fe7638 60bf' | |
| 8004 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC AFR ACD-A>AS1 LUKOPR 1C' , [LastUpd ateDate]=' 2016-07-27 11:17:06. 000', [Las tUpdateUse r]=' RED A CTED ' WHERE [B loodProduc tGuid]='dd 040f00-938 0-465b-95b 3-27052654 c720' | |
| 8005 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='FFP AFR None IRD L UKOPR 6C', [LastUpda teDate]='2 016-07-27 11:17:06.0 00', [Last UpdateUser ]=' RED A CTED ' WHERE [B loodProduc tGuid]='55 fbdb82-88e e-4855-bf4 4-270d06ca 8766' | |
| 8006 | UPDATE [db o].[BloodP roduct] SE T [Product Name]='Aph eresis FRE SH FROZEN PLASMA|NaC itrate/XX/ <=-65C|4th container ', [Produc tShortName ]='FFP AFR NaCit 4C' , [LastUpd ateDate]=' 2016-07-27 11:17:06. 000', [Las tUpdateUse r]=' RED A CTED ' WHERE [B loodProduc tGuid]='60 f1d127-509 7-4ab5-8bb b-272138bb 66e7' | |
| 8007 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC AFR ACD-A>AS3 LUKOPR 1C' , [LastUpd ateDate]=' 2016-07-27 11:17:06. 000', [Las tUpdateUse r]=' RED A CTED ' WHERE [B loodProduc tGuid]='b5 c18e00-0ff a-4469-abe 0-273a274a 60b1' | |
| 8008 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='FFP AFR None QUAR 1C', [Last UpdateDate ]='2016-07 -27 11:17: 06.000', [ LastUpdate User]=' RED A CTED ' WHERE [B loodProduc tGuid]='58 067761-ad6 4-4d2b-966 b-277224bb 019d' | |
| 8009 | UPDATE [db o].[BloodP roduct] SE T [Product Name]='Aph eresis FRE SH FROZEN PLASMA|ACD -A/XX/<=-3 0C|>=600mL |Frozen <= 6h|3rd con tainer|Qua r:>=4m/ret ested', [P roductShor tName]='FF P AFR ACD- A LrgVol Q UAR 3C', [ LastUpdate Date]='201 6-07-27 11 :17:06.000 ', [LastUp dateUser]= ' RED A CTED ' WHERE [B loodProduc tGuid]='b6 dd8e34-3f9 f-4e3b-b9b 5-2782bb2f 03aa' | |
| 8010 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC AFR ACD-A OPN IRD SR 1C' , [LastUpd ateDate]=' 2016-07-27 11:17:06. 000', [Las tUpdateUse r]=' RED A CTED ' WHERE [B loodProduc tGuid]='e8 66252d-d1b d-435a-9ec b-27843b58 812b' | |
| 8011 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLASMA A FR Liq 0.5 CPD LUKOP R 2C', [La stUpdateDa te]='2016- 07-27 11:1 7:06.000', [LastUpda teUser]=' RED A CTED ' WHERE [B loodProduc tGuid]='a2 2de3e0-d33 a-4ff6-86d 9-279c09de 004c' | |
| 8012 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLT AFR ACD-A OPN LUKOPR PLS Red 2C', [LastUpdat eDate]='20 16-07-27 1 1:17:06.00 0', [LastU pdateUser] =' RED A CTED ' WHERE [B loodProduc tGuid]='fe e86696-0bc 4-48f3-b71 9-27b2ce16 37df' | |
| 8013 | UPDATE [db o].[BloodP roduct] SE T [Product Name]='FRE SH FROZEN PLASMA|CPD A-1/XX/<=- 30C|Quar:> =6m/retest ed', [Last UpdateDate ]='2016-07 -27 11:17: 06.000', [ LastUpdate User]=' RED A CTED ' WHERE [B loodProduc tGuid]='3d e6debf-2a5 1-49b0-9a7 1-27b32284 0d97' | |
| 8014 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLT AFR ACD-B OPN IRD LUKOPR 2C', [Las tUpdateDat e]='2016-0 7-27 11:17 :06.000', [LastUpdat eUser]=' RED A CTED ' WHERE [B loodProduc tGuid]='15 27529a-c81 7-47c1-b07 8-27bb32cd 64d8' | |
| 8015 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLT AFR ACD-A IRD LUKOPR 3C Pedi', [La stUpdateDa te]='2016- 07-27 11:1 7:06.000', [LastUpda teUser]=' RED A CTED ' WHERE [B loodProduc tGuid]='69 27123f-08b 2-468b-a28 4-27c0e00c b9c7' | |
| 8016 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLT AFR NS LUKOPR PLS Red 2C ', [LastUp dateDate]= '2016-07-2 7 11:17:06 .000', [La stUpdateUs er]=' RED A CTED ' WHERE [B loodProduc tGuid]='17 78ab67-ade 9-431a-9ef e-27c3463e 085d' | |
| 8017 | UPDATE [db o].[BloodP roduct] SE T [Product Name]='Aph eresis FRE SH FROZEN PLASMA|NaC itrate/XX/ <=-65C|1st container ', [Produc tShortName ]='FFP AFR NaCit 1C' , [LastUpd ateDate]=' 2016-07-27 11:17:06. 000', [Las tUpdateUse r]=' RED A CTED ' WHERE [B loodProduc tGuid]='ec a0caa4-b5c a-4173-a9a e-27f112cd 0a6f' | |
| 8018 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC AFR ACD-A>AS1 6C', [Last UpdateDate ]='2016-07 -27 11:17: 06.000', [ LastUpdate User]=' RED A CTED ' WHERE [B loodProduc tGuid]='74 cb4145-3f4 7-43f0-885 e-2807d5c2 6aeb' | |
| 8019 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLT AFR ACD-A 6C', [LastUpda teDate]='2 016-07-27 11:17:06.0 00', [Last UpdateUser ]=' RED A CTED ' WHERE [B loodProduc tGuid]='1b 0c6bbc-2bc 0-4208-b30 1-280b70bd afa5' | |
| 8020 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC Deg None LUKOP R 7C', [La stUpdateDa te]='2016- 07-27 11:1 7:06.000', [LastUpda teUser]=' RED A CTED ' WHERE [B loodProduc tGuid]='62 320d5e-859 c-4311-afd 9-28167750 7638' | |
| 8021 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC AFR ACD-A>SAGM IRD LUKOP R 1C', [La stUpdateDa te]='2016- 07-27 11:1 7:06.000', [LastUpda teUser]=' RED A CTED ' WHERE [B loodProduc tGuid]='cf cec1bc-706 6-481a-9a5 5-2839ce53 e043' | |
| 8022 | UPDATE [db o].[BloodP roduct] SE T [Product Name]='Fro zen Aphere sis RED BL OOD CELLS| None/XX/<= -65C|Open| 2nd contai ner', [Pro ductShortN ame]='RBC AFR Froz N one OPN 2C ', [LastUp dateDate]= '2016-07-2 7 11:17:06 .000', [La stUpdateUs er]=' RED A CTED ' WHERE [B loodProduc tGuid]='e7 819e51-499 1-4bb5-8cd 3-285369b7 0820' | |
| 8023 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC AFR Wash None IRD LUKOPR SR/SD-PA 2C', [Last UpdateDate ]='2016-07 -27 11:17: 06.000', [ LastUpdate User]=' RED A CTED ' WHERE [B loodProduc tGuid]='a7 d1bf0c-8ea 1-4229-8dc c-28582b07 a58f' | |
| 8024 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLASMA A FR ACD-A L UKOPR CRYO Red 1C', [ LastUpdate Date]='201 6-07-27 11 :17:06.000 ', [LastUp dateUser]= ' RED A CTED ' WHERE [B loodProduc tGuid]='a8 4c395e-32c 9-4592-804 e-2859fbae 35fc' | |
| 8025 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='FFP AFR None 6C', [LastUpdat eDate]='20 16-07-27 1 1:17:06.00 0', [LastU pdateUser] =' RED A CTED ' WHERE [B loodProduc tGuid]='fa d319c7-764 d-4a60-b22 6-2861614b e8d5' | |
| 8026 | UPDATE [db o].[BloodP roduct] SE T [Product Name]='Fro zen RED BL OOD CELLS| None/XX/<= -65C|For m nf:noninje ctable|Ope n|Irradiat ed|ResLeu: <1E6', [La stUpdateDa te]='2016- 07-27 11:1 7:06.000', [LastUpda teUser]=' RED A CTED ' WHERE [B loodProduc tGuid]='ba 71d261-a2e 9-40b1-af6 f-28620bb2 530c' | |
| 8027 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='WB CPDA- 1 IRD LUKO PR 8C', [L astUpdateD ate]='2016 -07-27 11: 17:06.000' , [LastUpd ateUser]=' RED A CTED ' WHERE [B loodProduc tGuid]='9d 485335-b2e 0-4e4a-b9b 6-28770fe8 e8c3' | |
| 8028 | UPDATE [db o].[BloodP roduct] SE T [Product Name]='Aph eresis FRE SH FROZEN PLASMA|ACD -A/XX/<=-2 5C|Ribofla vin-treate d', [LastU pdateDate] ='2016-07- 27 11:17:0 6.000', [L astUpdateU ser]=' RED A CTED ' WHERE [B loodProduc tGuid]='82 b617f4-a37 3-4215-b13 0-2885961c 6a3f' | |
| 8029 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='FFP AFR Thaw None IRD 7C', [ LastUpdate Date]='201 6-07-27 11 :17:06.000 ', [LastUp dateUser]= ' RED A CTED ' WHERE [B loodProduc tGuid]='ad 76fe7a-dc1 a-4f6c-ae1 9-288dce3d 8415' | |
| 8030 | UPDATE [db o].[BloodP roduct] SE T [Product Name]='Fro zen POOLED PLATELETS |DMSO/XX/< =-65C|4 un its', [Las tUpdateDat e]='2016-0 7-27 11:17 :06.000', [LastUpdat eUser]=' RED A CTED ' WHERE [B loodProduc tGuid]='ee 1d712f-098 c-4b16-b55 3-28a60ee0 c590' | |
| 8031 | UPDATE [db o].[BloodP roduct] SE T [Product Name]='Aph eresis FRE SH FROZEN PLASMA|NaC itrate/XX/ <=-65C|Irr adiated|Qu ar:>=6m/re tested', [ LastUpdate Date]='201 6-07-27 11 :17:06.000 ', [LastUp dateUser]= ' RED A CTED ' WHERE [B loodProduc tGuid]='98 9850f1-1e8 0-4dda-962 d-28bf1099 1765' | |
| 8032 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC CPD IRD 5C', [ RetireDate ]='2015-04 -07 00:00: 00.000', [ LastUpdate Date]='201 6-07-27 11 :17:06.000 ', [LastUp dateUser]= ' RED A CTED ' WHERE [B loodProduc tGuid]='85 43802e-caa e-4a41-9b8 d-28d96faf d43d' | |
| 8033 | UPDATE [db o].[BloodP roduct] SE T [Product Name]='PLA SMA|CPD/45 0mL/<=-25C |Cryo redu ced|Quar:> =112d/rete sted', [La stUpdateDa te]='2016- 07-27 11:1 7:06.000', [LastUpda teUser]=' RED A CTED ' WHERE [B loodProduc tGuid]='a9 f0f123-974 6-4965-8eb 2-28e31371 98eb' | |
| 8034 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLT AFR NaCit OPN IRD 2CNA', [LastUpda teDate]='2 016-07-27 11:17:06.0 00', [Last UpdateUser ]=' RED A CTED ' WHERE [B loodProduc tGuid]='f5 a7b299-7f6 7-4b36-a8d f-28e4c45b 4d18' | |
| 8035 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC AFR ACD-A>AS3 LUKOPR SUP Red 2C', [ LastUpdate Date]='201 6-07-27 11 :17:06.000 ', [LastUp dateUser]= ' RED A CTED ' WHERE [B loodProduc tGuid]='de 598dca-0ed d-49a6-a16 3-28ee8fcf 683a' | |
| 8036 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC Froz Gly40% OP N IRD LUKO PR 1C', [L astUpdateD ate]='2016 -07-27 11: 17:06.000' , [LastUpd ateUser]=' RED A CTED ' WHERE [B loodProduc tGuid]='4c b4b85a-ca5 6-480a-a3b f-28f3f566 f167' | |
| 8037 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='FFP Thaw CPD 2C QU AR', [Last UpdateDate ]='2016-07 -27 11:17: 06.000', [ LastUpdate User]=' RED A CTED ' WHERE [B loodProduc tGuid]='09 0ed9d4-e66 3-4638-979 1-29050853 7bcc' | |
| 8038 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLT AFR ACD-A 1C R ibo', [Las tUpdateDat e]='2016-0 7-27 11:17 :06.000', [LastUpdat eUser]=' RED A CTED ' WHERE [B loodProduc tGuid]='89 25ada6-c7c 6-4c7d-925 9-291b7013 a305' | |
| 8039 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC AFR Deg Rej No ne OPN 2C' , [LastUpd ateDate]=' 2016-07-27 11:17:06. 000', [Las tUpdateUse r]=' RED A CTED ' WHERE [B loodProduc tGuid]='b0 b03ee0-c1e 3-4904-865 0-29263236 cfb3' | |
| 8040 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC AFR ACD-A>AS3 OPN 1C', [ LastUpdate Date]='201 6-07-27 11 :17:06.000 ', [LastUp dateUser]= ' RED A CTED ' WHERE [B loodProduc tGuid]='9a 1ad8e8-3c4 c-44e8-90e c-2931db83 eda5' | |
| 8041 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC AFR ACD-A>AS1 IRD LUKOPR 8C', [Las tUpdateDat e]='2016-0 7-27 11:17 :06.000', [LastUpdat eUser]=' RED A CTED ' WHERE [B loodProduc tGuid]='fa 6453a8-2f8 8-48d4-9ef d-2933ca14 6dc4' | |
| 8042 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='FFP CPD 2C QUAR', [LastUpdat eDate]='20 16-07-27 1 1:17:06.00 0', [LastU pdateUser] =' RED A CTED ' WHERE [B loodProduc tGuid]='79 76eff8-5a9 8-46bc-914 e-2966bcf7 7146' | |
| 8043 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC Wash None OPN 2C', [Last UpdateDate ]='2016-07 -27 11:17: 06.000', [ LastUpdate User]=' RED A CTED ' WHERE [B loodProduc tGuid]='5d 1a18e9-93c 0-4082-8ce f-296babfa 78d3' | |
| 8044 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC Froz None OPN 7C', [Last UpdateDate ]='2016-07 -27 11:17: 06.000', [ LastUpdate User]=' RED A CTED ' WHERE [B loodProduc tGuid]='de 6d13d9-99a 5-4060-880 2-2994d3d1 a57d' | |
| 8045 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLT AFR ACD-A LUKO PR 6C', [L astUpdateD ate]='2016 -07-27 11: 17:06.000' , [LastUpd ateUser]=' RED A CTED ' WHERE [B loodProduc tGuid]='73 ea7f01-64a b-4354-864 c-2994f5af 7bac' | |
| 8046 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC AFR ACD-A>AS3 OPN LUKOPR SUPRed 1C ', [LastUp dateDate]= '2016-07-2 7 11:17:06 .000', [La stUpdateUs er]=' RED A CTED ' WHERE [B loodProduc tGuid]='7f 5088ed-759 5-483a-a27 f-29b0ccfc cf2f' | |
| 8047 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLT AFR Wash NS IR D LUKOPR S UPRed 3C', [LastUpda teDate]='2 016-07-27 11:17:06.0 00', [Last UpdateUser ]=' RED A CTED ' WHERE [B loodProduc tGuid]='4a daccd2-0af d-4327-8f7 2-29c0a8af 068b' | |
| 8048 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC CPDA -1 LUKOPR 4C', [Last UpdateDate ]='2016-07 -27 11:17: 06.000', [ LastUpdate User]=' RED A CTED ' WHERE [B loodProduc tGuid]='7c de7143-e43 e-4fac-bee 5-29c31dbc 6fb9' | |
| 8049 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLT AFR ACD-A LUKO PR 1C', [L astUpdateD ate]='2016 -07-27 11: 17:06.000' , [LastUpd ateUser]=' RED A CTED ' WHERE [B loodProduc tGuid]='87 ec523a-36e 6-45b2-89a a-29d55fbe c94c' | |
| 8050 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC AFR CPDA-1 IRD 4C', [Las tUpdateDat e]='2016-0 7-27 11:17 :06.000', [LastUpdat eUser]=' RED A CTED ' WHERE [B loodProduc tGuid]='5d bbbf65-129 f-41ea-94a f-29dc8071 c1cc' | |
| 8051 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC AFR Deg None O PN IRD LUK OPR 4C', [ LastUpdate Date]='201 6-07-27 11 :17:06.000 ', [LastUp dateUser]= ' RED A CTED ' WHERE [B loodProduc tGuid]='6a 2a885b-e4b f-4526-b0a 1-29ec9750 aeb0' | |
| 8052 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC AFR CP2D OPN L UKOPR SR 1 C', [LastU pdateDate] ='2016-07- 27 11:17:0 6.000', [L astUpdateU ser]=' RED A CTED ' WHERE [B loodProduc tGuid]='bc 1f997f-2d8 4-48f5-ab8 9-29fa11de 1d14' | |
| 8053 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC AFR CP2D>AS3 N MT OPN 1C' , [LastUpd ateDate]=' 2016-07-27 11:17:06. 000', [Las tUpdateUse r]=' RED A CTED ' WHERE [B loodProduc tGuid]='a4 392141-10e 6-4b7f-8c3 8-2a039d57 f2dd' | |
| 8054 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLT AFR ACD-A IRD 5C', [Last UpdateDate ]='2016-07 -27 11:17: 06.000', [ LastUpdate User]=' RED A CTED ' WHERE [B loodProduc tGuid]='31 45c516-417 9-49cc-ab7 5-2a1997df 2d98' | |
| 8055 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLT AFR PAS-C LUKO PR 3C', [L astUpdateD ate]='2016 -07-27 11: 17:06.000' , [LastUpd ateUser]=' RED A CTED ' WHERE [B loodProduc tGuid]='66 8b3674-ca6 a-4b18-842 8-2a3a4135 2bd7' | |
| 8056 | UPDATE [db o].[BloodP roduct] SE T [Product Name]='PLA SMA|CPD/45 0mL/<=-30C |For mnf:i njectable| ResLeu:<1E 6|Frozen > 24h', [Las tUpdateDat e]='2016-0 7-27 11:17 :06.000', [LastUpdat eUser]=' RED A CTED ' WHERE [B loodProduc tGuid]='d5 cf0f0f-a8d 5-42d1-947 9-2a55e816 0d42' | |
| 8057 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLT AFR NS IRD LUK OPR 2C', [ LastUpdate Date]='201 6-07-27 11 :17:06.000 ', [LastUp dateUser]= ' RED A CTED ' WHERE [B loodProduc tGuid]='1d 9124aa-356 d-4b15-99d 2-2a6358f8 fbb9' | |
| 8058 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC Froz Rej Gly40 % OPN IRD 2C', [Last UpdateDate ]='2016-07 -27 11:17: 06.000', [ LastUpdate User]=' RED A CTED ' WHERE [B loodProduc tGuid]='27 686e22-4c8 f-44e3-aa5 a-2a6e53cd 2c6c' | |
| 8059 | UPDATE [db o].[BloodP roduct] SE T [Product Name]='Aph eresis FRE SH FROZEN PLASMA|CPD -50/XX/<=- 25C|Frozen <=24h', [ LastUpdate Date]='201 6-07-27 11 :17:06.000 ', [LastUp dateUser]= ' RED A CTED ' WHERE [B loodProduc tGuid]='a0 d1f5f4-2f1 9-4446-9b8 3-2a8430a6 7452' | |
| 8060 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC AFR CP2D>AS3 L UKOPR 8C', [LastUpda teDate]='2 016-07-27 11:17:06.0 00', [Last UpdateUser ]=' RED A CTED ' WHERE [B loodProduc tGuid]='ce a4f3b9-362 5-4ffb-9fb 9-2a9ff2d0 273e' | |
| 8061 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLT AFR ACD-A IRD LUKOPR 1C' , [LastUpd ateDate]=' 2016-07-27 11:17:06. 000', [Las tUpdateUse r]=' RED A CTED ' WHERE [B loodProduc tGuid]='4c c35711-60f 7-47d3-916 3-2aa93617 4414' | |
| 8062 | UPDATE [db o].[BloodP roduct] SE T [Product Name]='Aph eresis FRE SH FROZEN PLASMA|ACD -A/XX/<=-2 5C|Frozen <=8h', [La stUpdateDa te]='2016- 07-27 11:1 7:06.000', [LastUpda teUser]=' RED A CTED ' WHERE [B loodProduc tGuid]='e8 e3740b-484 4-4523-85a 8-2aaa226e 9cc4' | |
| 8063 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC Deg None LUKOP R 2C', [La stUpdateDa te]='2016- 07-27 11:1 7:06.000', [LastUpda teUser]=' RED A CTED ' WHERE [B loodProduc tGuid]='c9 6fc002-1e6 5-4473-bc6 6-2aac5b5a 6b31' | |
| 8064 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC AFR Deg None O PN IRD LUK OPR 8C', [ LastUpdate Date]='201 6-07-27 11 :17:06.000 ', [LastUp dateUser]= ' RED A CTED ' WHERE [B loodProduc tGuid]='0a 4beb15-cbf 2-4765-a04 1-2aba89a4 edcc' | |
| 8065 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLT AFR NaCit IRD 2CNA', [La stUpdateDa te]='2016- 07-27 11:1 7:06.000', [LastUpda teUser]=' RED A CTED ' WHERE [B loodProduc tGuid]='0a 391ff2-26e 2-4dd4-8a8 1-2aeb7964 8c1e' | |
| 8066 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLT AFR ACD-A OPN LUKOPR 3C' , [LastUpd ateDate]=' 2016-07-27 11:17:06. 000', [Las tUpdateUse r]=' RED A CTED ' WHERE [B loodProduc tGuid]='40 0c3f4e-21c b-47ab-bdd f-2affc207 7ff5' | |
| 8067 | UPDATE [db o].[BloodP roduct] SE T [Product Name]='Aph eresis FRE SH FROZEN PLASMA|ACD -A/XX/<=-3 0C|For mnf :injectabl e|ResLeu:< 1E6|>=200m L<400mL', [LastUpdat eDate]='20 16-07-27 1 1:17:06.00 0', [LastU pdateUser] =' RED A CTED ' WHERE [B loodProduc tGuid]='95 b159a0-9d4 9-427f-8a1 7-2b117457 3d8f' | |
| 8068 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC AFR ACD-A>AS1 LUKOPR 2C' , [LastUpd ateDate]=' 2016-07-27 11:17:06. 000', [Las tUpdateUse r]=' RED A CTED ' WHERE [B loodProduc tGuid]='1a 00309c-10a e-40ab-806 e-2b2fab7a 2ddd' | |
| 8069 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC AFR NS MNFNI 2 C', [LastU pdateDate] ='2016-07- 27 11:17:0 6.000', [L astUpdateU ser]=' RED A CTED ' WHERE [B loodProduc tGuid]='81 5f3cd1-15d e-4bb2-b06 a-2b3073df b590' | |
| 8070 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLT AFR ACD-A OPN IRD PLS Re d 2CNA', [ LastUpdate Date]='201 6-07-27 11 :17:06.000 ', [LastUp dateUser]= ' RED A CTED ' WHERE [B loodProduc tGuid]='84 fc85ef-d90 6-4be8-915 7-2b43f3b8 44d5' | |
| 8071 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC AFR CP2D MNFI 1C', [Last UpdateDate ]='2016-07 -27 11:17: 06.000', [ LastUpdate User]=' RED A CTED ' WHERE [B loodProduc tGuid]='78 4a6ea8-670 c-440a-965 a-2b47f820 94d4' | |
| 8072 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='FFP AFR None 3C', [LastUpdat eDate]='20 16-07-27 1 1:17:06.00 0', [LastU pdateUser] =' RED A CTED ' WHERE [B loodProduc tGuid]='8a 1983a1-c2d 9-48b2-869 2-2b485f97 95fc' | |
| 8073 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC Deg Rej None O PN IRD LUK OPR 1C', [ LastUpdate Date]='201 6-07-27 11 :17:06.000 ', [LastUp dateUser]= ' RED A CTED ' WHERE [B loodProduc tGuid]='a8 7f75a1-136 6-4d15-915 e-2b4fc2bb 0540' | |
| 8074 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC CP2D >AS3 LUKOP R 5C', [La stUpdateDa te]='2016- 07-27 11:1 7:06.000', [LastUpda teUser]=' RED A CTED ' WHERE [B loodProduc tGuid]='bf 84ecb2-79b a-44e6-b89 5-2b6f7c2e 05eb' | |
| 8075 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLT AFR Wash None LUKOPR 1C' , [LastUpd ateDate]=' 2016-07-27 11:17:06. 000', [Las tUpdateUse r]=' RED A CTED ' WHERE [B loodProduc tGuid]='e2 cf9c50-ef2 b-4308-864 a-2b7558ba e135' | |
| 8076 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC AFR SAGM LUKOP R SR/PA 2C ', [LastUp dateDate]= '2016-07-2 7 11:17:06 .000', [La stUpdateUs er]=' RED A CTED ' WHERE [B loodProduc tGuid]='cb f1046e-759 d-4a67-80d 8-2b8cc51f 72f2' | |
| 8077 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC CPD 4C', [Reti reDate]='2 015-04-07 00:00:00.0 00', [Last UpdateDate ]='2016-07 -27 11:17: 06.000', [ LastUpdate User]=' RED A CTED ' WHERE [B loodProduc tGuid]='4c 6e7bdc-b9c d-4825-99e a-2b8ef671 ee54' | |
| 8078 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='FFP AFR Thaw None IRD LUKOPR 7C', [Las tUpdateDat e]='2016-0 7-27 11:17 :06.000', [LastUpdat eUser]=' RED A CTED ' WHERE [B loodProduc tGuid]='40 2e54d6-d11 0-408a-b84 c-2b9834e1 1012' | |
| 8079 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='FFP AFR Thaw None IRD LUKOPR 6C', [Las tUpdateDat e]='2016-0 7-27 11:17 :06.000', [LastUpdat eUser]=' RED A CTED ' WHERE [B loodProduc tGuid]='4f 7f276b-65a 6-4614-ac1 3-2bac4c8e a5f5' | |
| 8080 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC CPDA -1 IRD 1C' , [RetireD ate]='2015 -04-07 00: 00:00.000' , [LastUpd ateDate]=' 2016-07-27 11:17:06. 000', [Las tUpdateUse r]=' RED A CTED ' WHERE [B loodProduc tGuid]='83 9bc668-fd1 1-4215-889 a-2bbf1888 0c30' | |
| 8081 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='WB CP2D IRD 1C', [ LastUpdate Date]='201 6-07-27 11 :17:06.000 ', [LastUp dateUser]= ' RED A CTED ' WHERE [B loodProduc tGuid]='9c 1bc5d7-47f 6-49fa-ba2 6-2bea941b 99bf' | |
| 8082 | UPDATE [db o].[BloodP roduct] SE T [Product Name]='Aph eresis FRE SH FROZEN PLASMA|ACD -A/XX/<=-3 0C|ResLeu: <1E6|>=200 mL<400mL|M ethylene b lue-treate d', [LastU pdateDate] ='2016-07- 27 11:17:0 6.000', [L astUpdateU ser]=' RED A CTED ' WHERE [B loodProduc tGuid]='0b 869f4c-d6c d-41db-b5b 9-2bf17c51 3931' | |
| 8083 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLT AFR Wash None OPN IRD 2C ', [LastUp dateDate]= '2016-07-2 7 11:17:06 .000', [La stUpdateUs er]=' RED A CTED ' WHERE [B loodProduc tGuid]='b4 d51ddd-5b5 9-4ac2-867 a-2bf3062b e7d7' | |
| 8084 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC AFR CP2D>AS3 I RD LUKOPR SR/PA 1C', [LastUpda teDate]='2 016-07-27 11:17:06.0 00', [Last UpdateUser ]=' RED A CTED ' WHERE [B loodProduc tGuid]='d0 cf4f28-970 6-4873-82a 6-2bfea625 b179' | |
| 8085 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='WB CPDA- 1 IRD LUKO PR 6C', [L astUpdateD ate]='2016 -07-27 11: 17:06.000' , [LastUpd ateUser]=' RED A CTED ' WHERE [B loodProduc tGuid]='ef d46370-003 b-4714-b5d 6-2c12c3f9 5e41' | |
| 8086 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC AFR Deg None O PN IRD 5C' , [LastUpd ateDate]=' 2016-07-27 11:17:06. 000', [Las tUpdateUse r]=' RED A CTED ' WHERE [B loodProduc tGuid]='ba 5b51e4-83e d-4969-98b 4-2c458a28 ccdf' | |
| 8087 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLT AFR ACD-A IRD LUKOPR PLS Red 2C', [LastUpdat eDate]='20 16-07-27 1 1:17:06.00 0', [LastU pdateUser] =' RED A CTED ' WHERE [B loodProduc tGuid]='a1 53a819-42d 8-4259-95b 8-2c4c5cc8 25a3' | |
| 8088 | UPDATE [db o].[BloodP roduct] SE T [Product Name]='Aph eresis FRE SH FROZEN PLASMA|ACD -B/XX/<=-2 5C|Fin Con :NS|Aphr n ot automat ed', [Last UpdateDate ]='2016-07 -27 11:17: 06.000', [ LastUpdate User]=' RED A CTED ' WHERE [B loodProduc tGuid]='23 2c85cc-e8d 2-4e1c-a46 d-2c675c1b de29' | |
| 8089 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLT AFR PAS-E LUKO PR 3C', [L astUpdateD ate]='2016 -07-27 11: 17:06.000' , [LastUpd ateUser]=' RED A CTED ' WHERE [B loodProduc tGuid]='ff 788458-2c0 5-4835-a3b d-2c8c86c8 4c9b' | |
| 8090 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC AFR CPDA-1 7C' , [LastUpd ateDate]=' 2016-07-27 11:17:06. 000', [Las tUpdateUse r]=' RED A CTED ' WHERE [B loodProduc tGuid]='b4 0ee16d-153 4-4123-868 5-2c9cd56a 2029' | |
| 8091 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='FFP AFR Thaw ACD-A 6C', [Las tUpdateDat e]='2016-0 7-27 11:17 :06.000', [LastUpdat eUser]=' RED A CTED ' WHERE [B loodProduc tGuid]='72 069650-b54 f-40b8-9e1 3-2cb8ffc0 ec37' | |
| 8092 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLT AFR NS IRD LUK OPR 2C', [ LastUpdate Date]='201 6-07-27 11 :17:06.000 ', [LastUp dateUser]= ' RED A CTED ' WHERE [B loodProduc tGuid]='05 3ab39f-bac b-4f9c-8f5 4-2cc3cf28 d249' | |
| 8093 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='WB CPD 8 C', [LastU pdateDate] ='2016-07- 27 11:17:0 6.000', [L astUpdateU ser]=' RED A CTED ' WHERE [B loodProduc tGuid]='c8 97d35b-37d 1-40b0-b24 f-2cc5a561 e007' | |
| 8094 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC AFR ACD-A>AS3 LUKOPR 8C' , [LastUpd ateDate]=' 2016-07-27 11:17:06. 000', [Las tUpdateUse r]=' RED A CTED ' WHERE [B loodProduc tGuid]='5b b2c461-6b3 a-4d41-974 4-2cd81963 c9cc' | |
| 8095 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='WB CPDA- 1 IRD 3C', [LastUpda teDate]='2 016-07-27 11:17:06.0 00', [Last UpdateUser ]=' RED A CTED ' WHERE [B loodProduc tGuid]='a9 2c41b4-362 2-42fd-95a 0-2ce010d9 9dc9' | |
| 8096 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='FFP AFR Thaw ACD-A LUKOPR 5C ', [LastUp dateDate]= '2016-07-2 7 11:17:06 .000', [La stUpdateUs er]=' RED A CTED ' WHERE [B loodProduc tGuid]='98 c5b914-6c2 3-4c51-b6b d-2ce47a98 66bf' | |
| 8097 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='FFP AFR NaCit IRD 1C QUAR', [LastUpdat eDate]='20 16-07-27 1 1:17:06.00 0', [LastU pdateUser] =' RED A CTED ' WHERE [B loodProduc tGuid]='35 e749ef-c16 6-4764-936 a-2cefaaba fc0e' | |
| 8098 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC AFR CP2D IRD L UKOPR 1C', [LastUpda teDate]='2 016-07-27 11:17:06.0 00', [Last UpdateUser ]=' RED A CTED ' WHERE [B loodProduc tGuid]='02 e1b106-c5c 3-4fbc-8e5 6-2d1db5fb 052b' | |
| 8099 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC AFR SAGM IRD L UKOPR 1C', [LastUpda teDate]='2 016-07-27 11:17:06.0 00', [Last UpdateUser ]=' RED A CTED ' WHERE [B loodProduc tGuid]='74 929a18-0ab 9-48c6-906 1-2d33d592 c887' | |
| 8100 | UPDATE [db o].[BloodP roduct] SE T [Product Name]='FRE SH FROZEN PLASMA|0.5 CPD/XX/<= -25C', [La stUpdateDa te]='2016- 07-27 11:1 7:06.000', [LastUpda teUser]=' RED A CTED ' WHERE [B loodProduc tGuid]='ef b1851a-b21 7-4218-91b 7-2d410206 79f2' | |
| 8101 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLASMA A FR Liq CPD -50 MNFI L UKOPR 2C', [LastUpda teDate]='2 016-07-27 11:17:06.0 00', [Last UpdateUser ]=' RED A CTED ' WHERE [B loodProduc tGuid]='f2 f5f965-db8 6-4d3c-886 e-2d5511e7 f230' | |
| 8102 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLT AFR PAS-D LUKO PR 2C BacT est', [Las tUpdateDat e]='2016-0 7-27 11:17 :06.000', [LastUpdat eUser]=' RED A CTED ' WHERE [B loodProduc tGuid]='2f 1e330d-45e 2-4a0c-b26 d-2d68a5ea 9cde' | |
| 8103 | UPDATE [db o].[BloodP roduct] SE T [Product Name]='Aph eresis FRE SH FROZEN PLASMA|ACD -B/XX/<=-2 5C|Irradia ted|>=200m L<400mL', [LastUpdat eDate]='20 16-07-27 1 1:17:06.00 0', [LastU pdateUser] =' RED A CTED ' WHERE [B loodProduc tGuid]='00 025457-b77 4-4406-991 b-2d6d4175 abff' | |
| 8104 | UPDATE [db o].[BloodP roduct] SE T [Product Name]='Aph eresis FRE SH FROZEN PLASMA|ACD -B/XX/<=-2 5C|Irradia ted|Fin Co n:NS|Quar: >=6m/retes ted', [Las tUpdateDat e]='2016-0 7-27 11:17 :06.000', [LastUpdat eUser]=' RED A CTED ' WHERE [B loodProduc tGuid]='94 d0f304-ef2 6-409b-a54 d-2d8eb001 f112' | |
| 8105 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLT AFR ACD-A LUKO PR 2CNA', [LastUpdat eDate]='20 16-07-27 1 1:17:06.00 0', [LastU pdateUser] =' RED A CTED ' WHERE [B loodProduc tGuid]='fd 2a2048-1ce d-4f0c-b73 9-2d94db9e 33af' | |
| 8106 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC AFR CP2D>AS3 I RD 8C', [L astUpdateD ate]='2016 -07-27 11: 17:06.000' , [LastUpd ateUser]=' RED A CTED ' WHERE [B loodProduc tGuid]='0b 3038be-b72 e-4878-961 0-2d995722 53c0' | |
| 8107 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC CPD IRD LUKOPR 6C', [Las tUpdateDat e]='2016-0 7-27 11:17 :06.000', [LastUpdat eUser]=' RED A CTED ' WHERE [B loodProduc tGuid]='65 700213-b47 f-498e-ba7 c-2dcc89a9 a87a' | |
| 8108 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='FFP AFR None QUAR 3C', [Last UpdateDate ]='2016-07 -27 11:17: 06.000', [ LastUpdate User]=' RED A CTED ' WHERE [B loodProduc tGuid]='09 9208a6-e35 4-40c1-a33 e-2ddeaacc 8bf0' | |
| 8109 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLT AFR NaCit NMT 3C', [Last UpdateDate ]='2016-07 -27 11:17: 06.000', [ LastUpdate User]=' RED A CTED ' WHERE [B loodProduc tGuid]='b3 823c25-de1 6-4bb6-900 a-2de48074 fe3c' | |
| 8110 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC AFR Wash None LUKOPR SR/ Q-PA 1C', [LastUpdat eDate]='20 16-07-27 1 1:17:06.00 0', [LastU pdateUser] =' RED A CTED ' WHERE [B loodProduc tGuid]='44 c77176-204 0-4e54-8e1 3-2dfc65f6 8a6b' | |
| 8111 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='FFP None 2C', [Las tUpdateDat e]='2016-0 7-27 11:17 :06.000', [LastUpdat eUser]=' RED A CTED ' WHERE [B loodProduc tGuid]='fc e16035-52f 7-48cd-a5d 9-2e0d787c 2b2f' | |
| 8112 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLT AFR ACD-A LUKO PR 2C BacM tr', [Last UpdateDate ]='2016-07 -27 11:17: 06.000', [ LastUpdate User]=' RED A CTED ' WHERE [B loodProduc tGuid]='31 d9aac7-988 6-4997-b2e 9-2e1c2182 0181' | |
| 8113 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC CPD LUKOPR 5C' , [RetireD ate]='2015 -04-07 00: 00:00.000' , [LastUpd ateDate]=' 2016-07-27 11:17:06. 000', [Las tUpdateUse r]=' RED A CTED ' WHERE [B loodProduc tGuid]='27 cebb76-530 6-4d31-878 e-2e2e62dc dddd' | |
| 8114 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLT AFR Thaw DMSO OPN 1CNA', [LastUpda teDate]='2 016-07-27 11:17:06.0 00', [Last UpdateUser ]=' RED A CTED ' WHERE [B loodProduc tGuid]='f9 1d8091-ac7 8-4fe6-8df b-2e3098f1 96a8' | |
| 8115 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC AFR CP2D>AS3 M NFI OPN 2C ', [LastUp dateDate]= '2016-07-2 7 11:17:06 .000', [La stUpdateUs er]=' RED A CTED ' WHERE [B loodProduc tGuid]='9e cb87a2-81b f-4027-a12 6-2e333389 8f2c' | |
| 8116 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLT AFR ACD-A LUKO PR PLS Red /PA 1C', [ LastUpdate Date]='201 6-07-27 11 :17:06.000 ', [LastUp dateUser]= ' RED A CTED ' WHERE [B loodProduc tGuid]='63 3ff56f-989 6-46aa-ab6 0-2e4382d5 d29a' | |
| 8117 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC AFR CPDA-1 MNF NI 2C', [L astUpdateD ate]='2016 -07-27 11: 17:06.000' , [LastUpd ateUser]=' RED A CTED ' WHERE [B loodProduc tGuid]='64 3363f1-b80 7-4ebd-84f 1-2e44d360 1c78' | |
| 8118 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='FFP AFR Thaw CPD-5 0 LUKOPR 1 C', [LastU pdateDate] ='2016-07- 27 11:17:0 6.000', [L astUpdateU ser]=' RED A CTED ' WHERE [B loodProduc tGuid]='8e 1e7d56-cf8 6-4aca-bab 0-2e517655 30ae' | |
| 8119 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLT AFR ACD-A IRD LUKOPR 3C BacTest', [LastUpdat eDate]='20 16-07-27 1 1:17:06.00 0', [LastU pdateUser] =' RED A CTED ' WHERE [B loodProduc tGuid]='c1 9c84c0-ab1 c-4a5e-a8a d-2e549935 46a5' | |
| 8120 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLT AFR ACD-B MNFN I OPN 4C', [LastUpda teDate]='2 016-07-27 11:17:06.0 00', [Last UpdateUser ]=' RED A CTED ' WHERE [B loodProduc tGuid]='e5 cfc332-71a 5-4694-93c 4-2e59a876 4859' | |
| 8121 | UPDATE [db o].[BloodP roduct] SE T [Product Name]='Aph eresis FRE SH FROZEN PLASMA|ACD -A/XX/<=-3 0C|ResLeu: <1E6|<200 mL|Frozen <=18h|Meth ylene blue -treated', [LastUpda teDate]='2 016-07-27 11:17:06.0 00', [Last UpdateUser ]=' RED A CTED ' WHERE [B loodProduc tGuid]='80 2abcde-a77 1-498b-979 e-2e627ea4 e412' | |
| 8122 | UPDATE [db o].[BloodP roduct] SE T [Product Name]='PLA SMA|CPD/35 0mL/<=-30C |Cryo redu ced', [Las tUpdateDat e]='2016-0 7-27 11:17 :06.000', [LastUpdat eUser]=' RED A CTED ' WHERE [B loodProduc tGuid]='aa 526de5-c6c 8-4ed2-930 2-2e65f5dd 6a35' | |
| 8123 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC AFR Wash None IRD LUKOPR 2C', [Las tUpdateDat e]='2016-0 7-27 11:17 :06.000', [LastUpdat eUser]=' RED A CTED ' WHERE [B loodProduc tGuid]='0f 2b6684-060 c-4ab3-b36 e-2e6e9b0b e71f' | |
| 8124 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLT AFR ACD-A IRD 5C', [Last UpdateDate ]='2016-07 -27 11:17: 06.000', [ LastUpdate User]=' RED A CTED ' WHERE [B loodProduc tGuid]='9c 26a686-b0a d-4050-8aa 5-2e78a442 ab84' | |
| 8125 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLT AFR Wash None OPN IRD 1C NA', [Last UpdateDate ]='2016-07 -27 11:17: 06.000', [ LastUpdate User]=' RED A CTED ' WHERE [B loodProduc tGuid]='cd 6df627-a8b 8-40b1-83b 1-2e8bc9f6 bf52' | |
| 8126 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLT AFR ACD-A LUKO PR 2C BacM tr', [Last UpdateDate ]='2016-07 -27 11:17: 06.000', [ LastUpdate User]=' RED A CTED ' WHERE [B loodProduc tGuid]='b1 dbff09-24c 2-416b-9c6 c-2e990516 e295' | |
| 8127 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC AFR CP2D>AS3 L UKOPR SR 2 C', [LastU pdateDate] ='2016-07- 27 11:17:0 6.000', [L astUpdateU ser]=' RED A CTED ' WHERE [B loodProduc tGuid]='c9 eb54dd-878 2-4f55-9d6 c-2e9c92e6 184d' | |
| 8128 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLT AFR PAS-C LUKO PR SUPRed 2C Psoraln ', [LastUp dateDate]= '2016-07-2 7 11:17:06 .000', [La stUpdateUs er]=' RED A CTED ' WHERE [B loodProduc tGuid]='c1 cefe64-295 7-46c7-acf 4-2eaf1bf9 a37c' | |
| 8129 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='FFP AFR ACD-A 2C Q UAR', [Las tUpdateDat e]='2016-0 7-27 11:17 :06.000', [LastUpdat eUser]=' RED A CTED ' WHERE [B loodProduc tGuid]='1c 153172-9fe 6-4942-b1f b-2eb0a3b9 b11b' | |
| 8130 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLT AFR Thaw DMSO OPN LUKOPR 4C', [Las tUpdateDat e]='2016-0 7-27 11:17 :06.000', [LastUpdat eUser]=' RED A CTED ' WHERE [B loodProduc tGuid]='b4 40f923-924 9-4643-964 5-2eb30f7b b1e6' | |
| 8131 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLT AFR PAS-E IRD LUKOPR 1C BacTest', [LastUpdat eDate]='20 16-07-27 1 1:17:06.00 0', [LastU pdateUser] =' RED A CTED ' WHERE [B loodProduc tGuid]='dd d5e534-b7f c-473a-ba7 e-2ee0a98a 7ed4' | |
| 8132 | UPDATE [db o].[BloodP roduct] SE T [Product Name]='PLA SMA|CP2D/X X/<=-25C|F or mnf:inj ectable|Fr ozen <=24h ', [LastUp dateDate]= '2016-07-2 7 11:17:06 .000', [La stUpdateUs er]=' RED A CTED ' WHERE [B loodProduc tGuid]='4c c075d7-144 b-42c7-9bc 1-2ee17cd3 e0f2' | |
| 8133 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='FFP None QUAR 1C', [LastUpda teDate]='2 016-07-27 11:17:06.0 00', [Last UpdateUser ]=' RED A CTED ' WHERE [B loodProduc tGuid]='e4 041e48-6cb a-4f60-a3e d-2ee3d24b bb5e' | |
| 8134 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLT AFR NaCit 2C', [LastUpda teDate]='2 016-07-27 11:17:06.0 00', [Last UpdateUser ]=' RED A CTED ' WHERE [B loodProduc tGuid]='e8 5b44a4-613 8-4b51-a54 d-2eea0846 c26b' | |
| 8135 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC Wash None OPN IRD LUKOPR 1C', [Las tUpdateDat e]='2016-0 7-27 11:17 :06.000', [LastUpdat eUser]=' RED A CTED ' WHERE [B loodProduc tGuid]='cb 976418-708 6-48e2-8bd 3-2eeded6d a71e' | |
| 8136 | UPDATE [db o].[BloodP roduct] SE T [Product Name]='Aph eresis PLA SMA|ACD-A/ XX/<=-30C| For mnf:in jectable|> =600mL|Fro zen >24h', [LastUpda teDate]='2 016-07-27 11:17:06.0 00', [Last UpdateUser ]=' RED A CTED ' WHERE [B loodProduc tGuid]='33 514860-939 1-4cbe-88d 9-2efc51da dadd' | |
| 8137 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLT AFR ACD-A IRD 1C', [Last UpdateDate ]='2016-07 -27 11:17: 06.000', [ LastUpdate User]=' RED A CTED ' WHERE [B loodProduc tGuid]='f7 59a180-196 f-42e3-97d e-2f12120d 67d7' | |
| 8138 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC AFR Rej None O PN IRD LUK OPR 1C', [ LastUpdate Date]='201 6-07-27 11 :17:06.000 ', [LastUp dateUser]= ' RED A CTED ' WHERE [B loodProduc tGuid]='de d26ad1-ce9 3-4214-bf3 c-2f673117 84c9' | |
| 8139 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC CPD IRD LUKOPR 8C', [Ret ireDate]=' 2015-04-07 00:00:00. 000', [Las tUpdateDat e]='2016-0 7-27 11:17 :06.000', [LastUpdat eUser]=' RED A CTED ' WHERE [B loodProduc tGuid]='b9 4fce78-441 2-47f7-8e1 d-2f73d22f 1bd7' | |
| 8140 | UPDATE [db o].[BloodP roduct] SE T [Product Name]='Aph eresis FRE SH FROZEN PLASMA|ACD -A/XX/<=-3 0C|ResLeu: <1E6|Froze n <=6h', [ LastUpdate Date]='201 6-07-27 11 :17:06.000 ', [LastUp dateUser]= ' RED A CTED ' WHERE [B loodProduc tGuid]='9c ddd0b8-64a 4-450e-9ee 0-2f77e293 61e2' | |
| 8141 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC Froz Rej None OPN 7C', [ LastUpdate Date]='201 6-07-27 11 :17:06.000 ', [LastUp dateUser]= ' RED A CTED ' WHERE [B loodProduc tGuid]='4b 62d36f-c1c 1-4513-b54 3-2f8488bb 38dd' | |
| 8142 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLT AFR PAS-D IRD LUKOPR 1C' , [LastUpd ateDate]=' 2016-07-27 11:17:06. 000', [Las tUpdateUse r]=' RED A CTED ' WHERE [B loodProduc tGuid]='18 155b78-191 5-40af-9e4 4-2f854e3f e8c4' | |
| 8143 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='WB CPD I RD LUKOPR 2C', [Last UpdateDate ]='2016-07 -27 11:17: 06.000', [ LastUpdate User]=' RED A CTED ' WHERE [B loodProduc tGuid]='9a 254b3c-12e d-4fdb-b7c 9-2f96711c 71ab' | |
| 8144 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLT AFR ACD-B 2CNA ', [LastUp dateDate]= '2016-07-2 7 11:17:06 .000', [La stUpdateUs er]=' RED A CTED ' WHERE [B loodProduc tGuid]='4b 7812da-5a3 3-4eca-bc3 f-2fa5b48c 77f9' | |
| 8145 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC AFR CP2D>AS3 I RD 2C', [L astUpdateD ate]='2016 -07-27 11: 17:06.000' , [LastUpd ateUser]=' RED A CTED ' WHERE [B loodProduc tGuid]='ec 8222b3-8a7 e-49f4-9ef a-2fd934fa df58' | |
| 8146 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC AFR ACD-A>AS1 LUKOPR 1C' , [LastUpd ateDate]=' 2016-07-27 11:17:06. 000', [Las tUpdateUse r]=' RED A CTED ' WHERE [B loodProduc tGuid]='05 a2e856-49c 3-4a7e-b60 8-3018192f 5637' | |
| 8147 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLT AFR ACD-A LUKO PR 2C BacT est', [Las tUpdateDat e]='2016-0 7-27 11:17 :06.000', [LastUpdat eUser]=' RED A CTED ' WHERE [B loodProduc tGuid]='f4 cd1aac-413 c-4642-81d e-3041ef6d 6fd5' | |
| 8148 | UPDATE [db o].[BloodP roduct] SE T [Product Name]='FRE SH FROZEN PLASMA|CPD /450mL/<=- 30C|ResLeu :<1E6', [L astUpdateD ate]='2016 -07-27 11: 17:06.000' , [LastUpd ateUser]=' RED A CTED ' WHERE [B loodProduc tGuid]='6f 6aab91-a4b 4-468d-970 7-305102d2 b938' | |
| 8149 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLT AFR Thaw DMSO OPN PA 3C' , [LastUpd ateDate]=' 2016-07-27 11:17:06. 000', [Las tUpdateUse r]=' RED A CTED ' WHERE [B loodProduc tGuid]='ad 8206d2-155 7-47fc-a11 7-305456a8 2453' | |
| 8150 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC AFR SAGM 2C', [LastUpdat eDate]='20 16-07-27 1 1:17:06.00 0', [LastU pdateUser] =' RED A CTED ' WHERE [B loodProduc tGuid]='35 13e8ee-e3a 4-4da7-973 1-30563b5c 2b49' | |
| 8151 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='FFP AFR ACD-A 5C', [LastUpda teDate]='2 016-07-27 11:17:06.0 00', [Last UpdateUser ]=' RED A CTED ' WHERE [B loodProduc tGuid]='12 113fe1-c24 e-4898-97d 7-305d146f 3bf9' | |
| 8152 | UPDATE [db o].[BloodP roduct] SE T [RetireD ate]='2015 -03-06 00: 00:00.000' , [LastUpd ateDate]=' 2016-07-27 11:17:06. 000', [Las tUpdateUse r]=' RED A CTED ' WHERE [B loodProduc tGuid]='b1 daaca7-949 c-42b0-bd2 1-306358a1 4c83' | |
| 8153 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC Deg Rej None O PN IRD LUK OPR 1C', [ LastUpdate Date]='201 6-07-27 11 :17:06.000 ', [LastUp dateUser]= ' RED A CTED ' WHERE [B loodProduc tGuid]='38 53f39f-e85 3-4a3f-8ad f-307b3e28 c15b' | |
| 8154 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC AFR Wash None OPN 2C', [ LastUpdate Date]='201 6-07-27 11 :17:06.000 ', [LastUp dateUser]= ' RED A CTED ' WHERE [B loodProduc tGuid]='e9 8084a0-94e 6-4e02-bf3 c-308290ac dd06' | |
| 8155 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLT AFR NaCit OPN LUKOPR 2CN A', [LastU pdateDate] ='2016-07- 27 11:17:0 6.000', [L astUpdateU ser]=' RED A CTED ' WHERE [B loodProduc tGuid]='8d d7c506-30e 9-435f-a36 c-3096691e 3234' | |
| 8156 | UPDATE [db o].[BloodP roduct] SE T [Product Name]='Aph eresis PLA SMA|NaCitr ate/XX/<=- 25C|For mn f:noninjec table|Froz en <=24h', [LastUpda teDate]='2 016-07-27 11:17:06.0 00', [Last UpdateUser ]=' RED A CTED ' WHERE [B loodProduc tGuid]='23 9ab05f-4cb 5-4d47-ae2 0-30a30fe8 e40e' | |
| 8157 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLT AFR ACD-A>PAS- C IRD LUKO PR SUPRed 3C', [Last UpdateDate ]='2016-07 -27 11:17: 06.000', [ LastUpdate User]=' RED A CTED ' WHERE [B loodProduc tGuid]='f1 9f5741-3a2 5-46a6-a2b f-30b807c7 e68b' | |
| 8158 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='WB CPDA- 1 1C', [La stUpdateDa te]='2016- 07-27 11:1 7:06.000', [LastUpda teUser]=' RED A CTED ' WHERE [B loodProduc tGuid]='05 699460-f53 2-4365-a4c e-30d24a9c 2a33' | |
| 8159 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='WB CP2D LUKOPR 6C' , [LastUpd ateDate]=' 2016-07-27 11:17:06. 000', [Las tUpdateUse r]=' RED A CTED ' WHERE [B loodProduc tGuid]='81 d0365d-311 e-4c89-888 4-30d29649 68f7' | |
| 8160 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLASMA A FR Thaw CP 2D IRD 1C' , [LastUpd ateDate]=' 2016-07-27 11:17:06. 000', [Las tUpdateUse r]=' RED A CTED ' WHERE [B loodProduc tGuid]='d8 699587-ce4 7-46e0-a10 5-30df290c 54ef' | |
| 8161 | UPDATE [db o].[BloodP roduct] SE T [Product Name]='Aph eresis FRE SH FROZEN PLASMA|NaC itrate/XX/ <=-30C|Res Leu:<1E6|> =600mL|Fro zen <=6h', [LastUpda teDate]='2 016-07-27 11:17:06.0 00', [Last UpdateUser ]=' RED A CTED ' WHERE [B loodProduc tGuid]='1a d51a8c-3f7 a-4736-913 7-30f7f0a7 13c2' | |
| 8162 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLT AFR ACD-A MNFN I IRD LUKO PR 3C', [L astUpdateD ate]='2016 -07-27 11: 17:06.000' , [LastUpd ateUser]=' RED A CTED ' WHERE [B loodProduc tGuid]='07 4a6f21-d20 0-441b-944 7-30fe4c34 a6d0' | |
| 8163 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC AFR CP2D IRD S R 2C', [La stUpdateDa te]='2016- 07-27 11:1 7:06.000', [LastUpda teUser]=' RED A CTED ' WHERE [B loodProduc tGuid]='7a 919a9a-757 e-41fa-b80 c-3111bafc 9bae' | |
| 8164 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='FFP None 1C', [Las tUpdateDat e]='2016-0 7-27 11:17 :06.000', [LastUpdat eUser]=' RED A CTED ' WHERE [B loodProduc tGuid]='46 88ff8b-1b2 f-4082-821 0-311d2a57 7e42' | |
| 8165 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='FFP None IRD QUAR 8C', [Last UpdateDate ]='2016-07 -27 11:17: 06.000', [ LastUpdate User]=' RED A CTED ' WHERE [B loodProduc tGuid]='3b bb03fd-462 1-4bbf-ba1 c-312836d7 4025' | |
| 8166 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLT AFR NaCit MNFN I OPN 3C', [LastUpda teDate]='2 016-07-27 11:17:06.0 00', [Last UpdateUser ]=' RED A CTED ' WHERE [B loodProduc tGuid]='76 d53eb9-2f0 8-434e-8b7 9-31363dc7 e63a' | |
| 8167 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC AFR Wash None OPN 1C', [ LastUpdate Date]='201 6-07-27 11 :17:06.000 ', [LastUp dateUser]= ' RED A CTED ' WHERE [B loodProduc tGuid]='7a 3b28ad-e14 c-4c2b-804 b-31457638 0035' | |
| 8168 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLT AFR ACD-B LUKO PR 2C', [L astUpdateD ate]='2016 -07-27 11: 17:06.000' , [LastUpd ateUser]=' RED A CTED ' WHERE [B loodProduc tGuid]='18 8042c1-614 d-4778-9e3 4-314b0048 73f8' | |
| 8169 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC AFR CP2D>AS3 O PN LUKOPR 1C', [Last UpdateDate ]='2016-07 -27 11:17: 06.000', [ LastUpdate User]=' RED A CTED ' WHERE [B loodProduc tGuid]='55 ab314b-bf6 0-4ed8-98d 0-3160ff0a 08c2' | |
| 8170 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC AFR Deg None O PN LUKOPR 7C', [Last UpdateDate ]='2016-07 -27 11:17: 06.000', [ LastUpdate User]=' RED A CTED ' WHERE [B loodProduc tGuid]='f1 d03c5a-e82 2-4310-8a7 f-317e193a a893' | |
| 8171 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='FFP AFR Thaw None LUKOPR 2C' , [LastUpd ateDate]=' 2016-07-27 11:17:06. 000', [Las tUpdateUse r]=' RED A CTED ' WHERE [B loodProduc tGuid]='30 06fd1e-bc9 1-40a8-b04 3-31a5fe4a fb25' | |
| 8172 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC Froz None OPN 6C', [Last UpdateDate ]='2016-07 -27 11:17: 06.000', [ LastUpdate User]=' RED A CTED ' WHERE [B loodProduc tGuid]='1c 02b117-d6a 5-4853-850 b-31b9328d 5578' | |
| 8173 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLASMA A FR Thaw AC D-A 4C', [ LastUpdate Date]='201 6-07-27 11 :17:06.000 ', [LastUp dateUser]= ' RED A CTED ' WHERE [B loodProduc tGuid]='24 68908f-c72 2-4b75-b85 a-31bd6eaf fb21' | |
| 8174 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC CPD LUKOPR 8C' , [LastUpd ateDate]=' 2016-07-27 11:17:06. 000', [Las tUpdateUse r]=' RED A CTED ' WHERE [B loodProduc tGuid]='a7 8c6048-311 3-4d75-af2 a-31bd7a4f 2235' | |
| 8175 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='FFP CPDA -1 IRD 2C QUAR', [La stUpdateDa te]='2016- 07-27 11:1 7:06.000', [LastUpda teUser]=' RED A CTED ' WHERE [B loodProduc tGuid]='a4 929c9d-7d3 4-47fa-91a 3-31cd692b d497' | |
| 8176 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLASMA A FR Thaw CP 2D IRD 1C' , [LastUpd ateDate]=' 2016-07-27 11:17:06. 000', [Las tUpdateUse r]=' RED A CTED ' WHERE [B loodProduc tGuid]='fd 729a45-180 b-4a61-b88 5-31e2ed25 e837' | |
| 8177 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='FFP AFR None QUAR 4C', [Last UpdateDate ]='2016-07 -27 11:17: 06.000', [ LastUpdate User]=' RED A CTED ' WHERE [B loodProduc tGuid]='2c ec4c9c-40f 4-4857-a4f 7-31e35181 9424' | |
| 8178 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC AFR Wash None OPN LUKOPR 3C', [Las tUpdateDat e]='2016-0 7-27 11:17 :06.000', [LastUpdat eUser]=' RED A CTED ' WHERE [B loodProduc tGuid]='47 1c351d-e99 e-42e1-8e4 2-31e9f195 4020' | |
| 8179 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC AFR Wash None OPN IRD 1C ', [LastUp dateDate]= '2016-07-2 7 11:17:06 .000', [La stUpdateUs er]=' RED A CTED ' WHERE [B loodProduc tGuid]='fc 4325e5-4eb 7-444a-a9d 2-31f059d6 45d4' | |
| 8180 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='FFP AFR Thaw NaCit 4C', [Las tUpdateDat e]='2016-0 7-27 11:17 :06.000', [LastUpdat eUser]=' RED A CTED ' WHERE [B loodProduc tGuid]='58 327b27-c61 7-4c39-abd c-321ef4e7 c192' | |
| 8181 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='WB CPD I RD LUKOPR 3C', [Last UpdateDate ]='2016-07 -27 11:17: 06.000', [ LastUpdate User]=' RED A CTED ' WHERE [B loodProduc tGuid]='58 f27cdf-79f 2-4b46-8af 9-323a93f7 e1db' | |
| 8182 | UPDATE [db o].[BloodP roduct] SE T [Product Name]='FRE SH FROZEN PLASMA|CPD /450mL/<=- 25C|Quar:> =90d/retes ted', [Las tUpdateDat e]='2016-0 7-27 11:17 :06.000', [LastUpdat eUser]=' RED A CTED ' WHERE [B loodProduc tGuid]='a3 200832-ebf 1-40a5-af7 4-323d2389 1a47' | |
| 8183 | UPDATE [db o].[BloodP roduct] SE T [Product Name]='Aph eresis FRE SH FROZEN PLASMA|ACD -B/XX/<=-2 5C|Fin Con :NS|Quar:> =6m/retest ed', [Last UpdateDate ]='2016-07 -27 11:17: 06.000', [ LastUpdate User]=' RED A CTED ' WHERE [B loodProduc tGuid]='ed 37cba0-413 a-42ab-820 7-324d68ea 0ff0' | |
| 8184 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLT AFR ACD-A IRD 3C Ribo', [LastUpdat eDate]='20 16-07-27 1 1:17:06.00 0', [LastU pdateUser] =' RED A CTED ' WHERE [B loodProduc tGuid]='e3 9e3689-4b4 5-486c-b2b c-3250417f 8df9' | |
| 8185 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC CPD> AS5 IRD 8C ', [LastUp dateDate]= '2016-07-2 7 11:17:06 .000', [La stUpdateUs er]=' RED A CTED ' WHERE [B loodProduc tGuid]='64 309538-9c9 8-4076-a75 0-325ccb81 9d8f' | |
| 8186 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLT AFR ACD-A MNFN I 1C', [La stUpdateDa te]='2016- 07-27 11:1 7:06.000', [LastUpda teUser]=' RED A CTED ' WHERE [B loodProduc tGuid]='38 93896f-3b6 5-4898-bb2 0-325d9e47 c705' | |
| 8187 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLT AFR Wash NS IR D LUKOPR 2 C', [LastU pdateDate] ='2016-07- 27 11:17:0 6.000', [L astUpdateU ser]=' RED A CTED ' WHERE [B loodProduc tGuid]='d9 897056-f30 4-4187-b8f 3-327d3bac aaf5' | |
| 8188 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC AFR ACD-A>AS1 IRD 2C', [ LastUpdate Date]='201 6-07-27 11 :17:06.000 ', [LastUp dateUser]= ' RED A CTED ' WHERE [B loodProduc tGuid]='53 2b6051-520 9-491f-b14 8-3287802e eb27' | |
| 8189 | UPDATE [db o].[BloodP roduct] SE T [Product Name]='FRE SH FROZEN PLASMA|CPD /450mL/<=- 30C|For mn f:injectab le|Frozen <=6h', [La stUpdateDa te]='2016- 07-27 11:1 7:06.000', [LastUpda teUser]=' RED A CTED ' WHERE [B loodProduc tGuid]='65 ad374e-35b 6-4084-b22 0-328dec1e 3855' | |
| 8190 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLASMA A FR Thaw AC D-A IRD 2C ', [LastUp dateDate]= '2016-07-2 7 11:17:06 .000', [La stUpdateUs er]=' RED A CTED ' WHERE [B loodProduc tGuid]='85 e78989-7af f-434b-a57 0-32ad1af5 b507' | |
| 8191 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC AFR CP2D>AS3 O PN LUKOPR SR 2C', [L astUpdateD ate]='2016 -07-27 11: 17:06.000' , [LastUpd ateUser]=' RED A CTED ' WHERE [B loodProduc tGuid]='d6 c76dec-db8 c-49e0-baa 6-32b8af50 2d0b' | |
| 8192 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC CPD 3C', [Last UpdateDate ]='2016-07 -27 11:17: 06.000', [ LastUpdate User]=' RED A CTED ' WHERE [B loodProduc tGuid]='32 607a74-080 2-4baa-a52 1-32da9172 3a17' | |
| 8193 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC CPD> AS5 LUKOPR 7C', [Las tUpdateDat e]='2016-0 7-27 11:17 :06.000', [LastUpdat eUser]=' RED A CTED ' WHERE [B loodProduc tGuid]='9d 902379-4d7 3-43a4-8f8 f-32e1467b 73e4' | |
| 8194 | UPDATE [db o].[BloodP roduct] SE T [Product Name]='FRE SH FROZEN PLASMA|CPD A-1/XX/<=- 65C|Irradi ated|1st c ontainer', [ProductS hortName]= 'FFP CPDA- 1 IRD 1C', [LastUpda teDate]='2 016-07-27 11:17:06.0 00', [Last UpdateUser ]=' RED A CTED ' WHERE [B loodProduc tGuid]='f6 2d001c-b10 4-4c12-9f9 7-32f0b7af 7305' | |
| 8195 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLT AFR PAS-B MNFI LUKOPR 4C ', [LastUp dateDate]= '2016-07-2 7 11:17:06 .000', [La stUpdateUs er]=' RED A CTED ' WHERE [B loodProduc tGuid]='1b 15c401-5fa 1-4656-a39 2-32f1e524 1dc0' | |
| 8196 | UPDATE [db o].[BloodP roduct] SE T [Product Name]='Aph eresis FRE SH FROZEN PLASMA|ACD -B/XX/<=-6 5C|Not for tx or mnf |Fin Con:N S|Aphr not automated ', [LastUp dateDate]= '2016-07-2 7 11:17:06 .000', [La stUpdateUs er]=' RED A CTED ' WHERE [B loodProduc tGuid]='e2 a31a85-bab 0-4c09-819 e-32fd44ed 829f' | |
| 8197 | UPDATE [db o].[BloodP roduct] SE T [Product Name]='Aph eresis FRE SH FROZEN PLASMA|CPD -50/XX/<=- 25C|Irradi ated|1st c ontainer', [ProductS hortName]= 'FFP AFR C PD-50 IRD 1C', [Last UpdateDate ]='2016-07 -27 11:17: 06.000', [ LastUpdate User]=' RED A CTED ' WHERE [B loodProduc tGuid]='da 6c6863-7ec 3-4ff2-948 8-3308bfc1 aa28' | |
| 8198 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC Rej None OPN L UKOPR 2C', [LastUpda teDate]='2 016-07-27 11:17:06.0 00', [Last UpdateUser ]=' RED A CTED ' WHERE [B loodProduc tGuid]='0f fc7b22-a88 d-47c8-bda c-331bada0 66a5' | |
| 8199 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLT AFR NaCit MNFI 2CNA', [L astUpdateD ate]='2016 -07-27 11: 17:06.000' , [LastUpd ateUser]=' RED A CTED ' WHERE [B loodProduc tGuid]='df 95e759-e30 9-4098-94a 6-33200a1b 5ce1' | |
| 8200 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC Deg None IRD L UKOPR 1C', [LastUpda teDate]='2 016-07-27 11:17:06.0 00', [Last UpdateUser ]=' RED A CTED ' WHERE [B loodProduc tGuid]='73 4ac4ad-d4e 9-4ae2-b44 c-332c4471 5504' | |
| 8201 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLT AFR PAS-E LUKO PR SUPRed 2C', [Last UpdateDate ]='2016-07 -27 11:17: 06.000', [ LastUpdate User]=' RED A CTED ' WHERE [B loodProduc tGuid]='f9 ee0693-a6e 9-4438-a0a 0-333295b0 d4e3' | |
| 8202 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='FFP Thaw CPDA-1 IR D 3C', [La stUpdateDa te]='2016- 07-27 11:1 7:06.000', [LastUpda teUser]=' RED A CTED ' WHERE [B loodProduc tGuid]='c7 94893f-0af 6-47e1-914 a-33335a18 cc38' | |
| 8203 | UPDATE [db o].[BloodP roduct] SE T [Product Name]='Aph eresis FRE SH FROZEN PLASMA|ACD -A/XX/<=-2 5C|For mnf :noninject able', [La stUpdateDa te]='2016- 07-27 11:1 7:06.000', [LastUpda teUser]=' RED A CTED ' WHERE [B loodProduc tGuid]='fd 5ac2f2-5a9 f-446e-a29 3-33782559 20f5' | |
| 8204 | UPDATE [db o].[BloodP roduct] SE T [Product Name]='Fro zen RED BL OOD CELLS| Gly40%/XX/ <=-65C|Res Leu:<1E6', [LastUpda teDate]='2 016-07-27 11:17:06.0 00', [Last UpdateUser ]=' RED A CTED ' WHERE [B loodProduc tGuid]='b2 b8fb83-062 1-4b5b-b91 c-338ff12e f620' | |
| 8205 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC CPD> SAGM OPN I RD LUKOPR' , [LastUpd ateDate]=' 2016-07-27 11:17:06. 000', [Las tUpdateUse r]=' RED A CTED ' WHERE [B loodProduc tGuid]='7a 01ded1-5e3 a-4352-96e b-3397e7c0 140e' | |
| 8206 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC AFR ACD-A>AS3 MNFI LUKOP R 1C', [La stUpdateDa te]='2016- 07-27 11:1 7:06.000', [LastUpda teUser]=' RED A CTED ' WHERE [B loodProduc tGuid]='f9 3db734-8d0 c-4a49-a30 b-339a3f60 e507' | |
| 8207 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='FFP AFR None IRD Q UAR 7C', [ LastUpdate Date]='201 6-07-27 11 :17:06.000 ', [LastUp dateUser]= ' RED A CTED ' WHERE [B loodProduc tGuid]='94 180fbf-6a1 c-4d54-9bb b-33a04a1e 3c1d' | |
| 8208 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='FFP None QUAR 4C', [LastUpda teDate]='2 016-07-27 11:17:06.0 00', [Last UpdateUser ]=' RED A CTED ' WHERE [B loodProduc tGuid]='b7 bf6b1f-269 5-4566-850 7-33aadfed 34c6' | |
| 8209 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='FFP AFR Thaw ACD-A IRD 2C QU AR', [Last UpdateDate ]='2016-07 -27 11:17: 06.000', [ LastUpdate User]=' RED A CTED ' WHERE [B loodProduc tGuid]='14 182210-e04 0-4817-b53 4-33bdef54 044b' | |
| 8210 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='FFP AFR None IRD Q UAR 4C', [ LastUpdate Date]='201 6-07-27 11 :17:06.000 ', [LastUp dateUser]= ' RED A CTED ' WHERE [B loodProduc tGuid]='71 bd90a3-b31 5-4adf-b40 4-33ea58a6 1e58' | |
| 8211 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC AFR ACD-A MNFI 1C', [Las tUpdateDat e]='2016-0 7-27 11:17 :06.000', [LastUpdat eUser]=' RED A CTED ' WHERE [B loodProduc tGuid]='7a 81cd35-0cf 4-49cb-956 d-33f9ff57 dafc' | |
| 8212 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLT AFR NaCit OPN LUKOPR PLS Red 2C', [LastUpdat eDate]='20 16-07-27 1 1:17:06.00 0', [LastU pdateUser] =' RED A CTED ' WHERE [B loodProduc tGuid]='b2 91dbf6-17c c-4ebf-867 9-346171be 1a00' | |
| 8213 | UPDATE [db o].[BloodP roduct] SE T [Product Name]='Aph eresis FRE SH FROZEN PLASMA|NaC itrate/XX/ <=-30C|Res Leu:<5E6|5 0mL|Methyl ene blue-t reated', [ LastUpdate Date]='201 6-07-27 11 :17:06.000 ', [LastUp dateUser]= ' RED A CTED ' WHERE [B loodProduc tGuid]='a5 467b61-30d f-41e6-a1c d-346c476b 506c' | |
| 8214 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC Froz None OPN IRD LUKOPR 4C', [Las tUpdateDat e]='2016-0 7-27 11:17 :06.000', [LastUpdat eUser]=' RED A CTED ' WHERE [B loodProduc tGuid]='22 1992b7-b64 3-4610-bb6 9-34791b15 955f' | |
| 8215 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC AFR CPD>AS1 OP N SR 2C', [LastUpdat eDate]='20 16-07-27 1 1:17:06.00 0', [LastU pdateUser] =' RED A CTED ' WHERE [B loodProduc tGuid]='ab ed5ddb-54b 7-46d7-95b 9-347bc027 49f6' | |
| 8216 | UPDATE [db o].[BloodP roduct] SE T [Product Name]='Aph eresis FRE SH FROZEN PLASMA|NaC itrate/XX/ <=-65C|Not for tx or mnf', [La stUpdateDa te]='2016- 07-27 11:1 7:06.000', [LastUpda teUser]=' RED A CTED ' WHERE [B loodProduc tGuid]='1e ffcfb4-672 a-4472-b7a 4-34963d06 82f4' | |
| 8217 | UPDATE [db o].[BloodP roduct] SE T [Product TypeCode]= 'E011', [L astUpdateD ate]='2016 -07-27 11: 17:06.000' , [LastUpd ateUser]=' RED A CTED ' WHERE [B loodProduc tGuid]='e5 a6a85e-8ee a-43ce-aca d-34abfd07 5bc4' | |
| 8218 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC Deg None IRD 8 C', [LastU pdateDate] ='2016-07- 27 11:17:0 6.000', [L astUpdateU ser]=' RED A CTED ' WHERE [B loodProduc tGuid]='92 c66188-232 1-4fea-b1f d-34b56ef1 d11c' | |
| 8219 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC AFR Deg Rej No ne OPN LUK OPR 3C', [ LastUpdate Date]='201 6-07-27 11 :17:06.000 ', [LastUp dateUser]= ' RED A CTED ' WHERE [B loodProduc tGuid]='81 2191ce-5a4 7-45c9-8f1 3-34d9a560 e668' | |
| 8220 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLT AFR ACD-A IRD LUKOPR 8C BacMtr', [ LastUpdate Date]='201 6-07-27 11 :17:06.000 ', [LastUp dateUser]= ' RED A CTED ' WHERE [B loodProduc tGuid]='a1 27d38f-0cf 7-4af6-af6 0-34e612b8 a9c5' | |
| 8221 | UPDATE [db o].[BloodP roduct] SE T [Product Name]='FRE SH FROZEN PLASMA|CPD /450mL/<=- 25C|ResLeu :<1E6|Froz en <=18h', [LastUpda teDate]='2 016-07-27 11:17:06.0 00', [Last UpdateUser ]=' RED A CTED ' WHERE [B loodProduc tGuid]='6c e99d06-01c 4-4a03-9f3 4-34fc1651 36f6' | |
| 8222 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLT AFR NaCit OPN 3C', [Last UpdateDate ]='2016-07 -27 11:17: 06.000', [ LastUpdate User]=' RED A CTED ' WHERE [B loodProduc tGuid]='68 a9e0d6-bba 9-4438-ba7 d-350e3c9c 3a74' | |
| 8223 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC CP2D >AS3 IRD 5 C', [LastU pdateDate] ='2016-07- 27 11:17:0 6.000', [L astUpdateU ser]=' RED A CTED ' WHERE [B loodProduc tGuid]='7d f7be99-192 f-432f-a7b 1-351507a3 6215' | |
| 8224 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLT AFR ACD-A LUKO PR 3C', [L astUpdateD ate]='2016 -07-27 11: 17:06.000' , [LastUpd ateUser]=' RED A CTED ' WHERE [B loodProduc tGuid]='f5 ac8e83-f8b a-4880-89c 4-3543186f 4245' | |
| 8225 | UPDATE [db o].[BloodP roduct] SE T [Product Name]='FRE SH FROZEN PLASMA|CPD /350mL/<=- 30C|Frozen <=6h', [L astUpdateD ate]='2016 -07-27 11: 17:06.000' , [LastUpd ateUser]=' RED A CTED ' WHERE [B loodProduc tGuid]='d3 06d78f-147 5-4e07-909 3-354ecbb6 d77b' | |
| 8226 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC Deg Rej None O PN 1C', [L astUpdateD ate]='2016 -07-27 11: 17:06.000' , [LastUpd ateUser]=' RED A CTED ' WHERE [B loodProduc tGuid]='27 cdfe6c-b17 e-416f-a23 e-354f0d2f 9cbc' | |
| 8227 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLASMA A FR Liq CPD -50 LUKOPR 1C', [Las tUpdateDat e]='2016-0 7-27 11:17 :06.000', [LastUpdat eUser]=' RED A CTED ' WHERE [B loodProduc tGuid]='87 6492fa-fb7 d-4359-b59 9-35503c96 f6f8' | |
| 8228 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLT AFR PAS-D IRD LUKOPR 3C BacTest', [LastUpdat eDate]='20 16-07-27 1 1:17:06.00 0', [LastU pdateUser] =' RED A CTED ' WHERE [B loodProduc tGuid]='98 e06cc5-c90 d-4a01-b47 a-355080fe c083' | |
| 8229 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC AFR CPDA-1 IRD LUKOPR 4C ', [LastUp dateDate]= '2016-07-2 7 11:17:06 .000', [La stUpdateUs er]=' RED A CTED ' WHERE [B loodProduc tGuid]='65 79be85-769 d-49a8-b1d 3-35621590 e49c' | |
| 8230 | UPDATE [db o].[BloodP roduct] SE T [Product Name]='Aph eresis FRE SH FROZEN PLASMA|ACD -B/XX/<=-2 5C|>=400mL <600mL', [ LastUpdate Date]='201 6-07-27 11 :17:06.000 ', [LastUp dateUser]= ' RED A CTED ' WHERE [B loodProduc tGuid]='60 ea3e4a-f02 5-40eb-b50 3-3562bdda a691' | |
| 8231 | UPDATE [db o].[BloodP roduct] SE T [Product Name]='Fro zen Aphere sis RED BL OOD CELLS| None/XX/<= -65C|Open| 1st contai ner', [Pro ductShortN ame]='RBC AFR Froz N one OPN 1C ', [LastUp dateDate]= '2016-07-2 7 11:17:06 .000', [La stUpdateUs er]=' RED A CTED ' WHERE [B loodProduc tGuid]='37 6fd520-d8b 4-48ab-b06 a-3568870b 3426' | |
| 8232 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLT AFR ACD-B IRD PLS Red 1C NA', [Last UpdateDate ]='2016-07 -27 11:17: 06.000', [ LastUpdate User]=' RED A CTED ' WHERE [B loodProduc tGuid]='c0 7f7db5-38c 0-4b9b-bb5 2-356eaa39 8dd5' | |
| 8233 | UPDATE [db o].[BloodP roduct] SE T [Product Name]='Fro zen RED BL OOD CELLS| Gly40%/450 mL/<=-65C| Open', [La stUpdateDa te]='2016- 07-27 11:1 7:06.000', [LastUpda teUser]=' RED A CTED ' WHERE [B loodProduc tGuid]='37 37b0f3-7eb 0-495d-b65 b-35a2578f 6e42' | |
| 8234 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLT AFR Wash None LUKOPR 4C' , [LastUpd ateDate]=' 2016-07-27 11:17:06. 000', [Las tUpdateUse r]=' RED A CTED ' WHERE [B loodProduc tGuid]='c0 ed1c55-4b0 1-4ae5-ab8 0-35d3b837 c224' | |
| 8235 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC CPDA -1 IRD 5C' , [LastUpd ateDate]=' 2016-07-27 11:17:06. 000', [Las tUpdateUse r]=' RED A CTED ' WHERE [B loodProduc tGuid]='90 1bf8a6-265 6-4967-8bc b-35d99d46 fec5' | |
| 8236 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='FFP AFR Thaw CP2D 3C', [Last UpdateDate ]='2016-07 -27 11:17: 06.000', [ LastUpdate User]=' RED A CTED ' WHERE [B loodProduc tGuid]='55 f83253-87e 0-4fb4-bcb 4-35f4b6b5 8b13' | |
| 8237 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC AFR ACD-A>AS3 OPN IRD LU KOPR SAL A dd 2C', [L astUpdateD ate]='2016 -07-27 11: 17:06.000' , [LastUpd ateUser]=' RED A CTED ' WHERE [B loodProduc tGuid]='da 7a90df-a3e 1-40b7-a7c 2-36077b50 a7ed' | |
| 8238 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLT AFR PAS-E LUKO PR 1C BacM tr', [Last UpdateDate ]='2016-07 -27 11:17: 06.000', [ LastUpdate User]=' RED A CTED ' WHERE [B loodProduc tGuid]='aa 68a4a9-5af 6-49bc-9dc 6-360daaec 3ec4' | |
| 8239 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC CP2D IRD 4C', [LastUpdat eDate]='20 16-07-27 1 1:17:06.00 0', [LastU pdateUser] =' RED A CTED ' WHERE [B loodProduc tGuid]='69 69a673-af0 a-4953-8ef 7-360eecf0 c452' | |
| 8240 | UPDATE [db o].[BloodP roduct] SE T [Product Name]='Aph eresis FRE SH FROZEN PLASMA|NaC itrate/XX/ <=-30C|Res Leu:<1E6|F rozen <=6h |3rd conta iner', [Pr oductShort Name]='FFP AFR Nacit LUKOPR 3C ', [LastUp dateDate]= '2016-07-2 7 11:17:06 .000', [La stUpdateUs er]=' RED A CTED ' WHERE [B loodProduc tGuid]='51 e7fda4-878 d-404b-83a f-3651edbf 82a1' | |
| 8241 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC AFR ACD-A>AS1 IRD LUKOPR 8C', [Las tUpdateDat e]='2016-0 7-27 11:17 :06.000', [LastUpdat eUser]=' RED A CTED ' WHERE [B loodProduc tGuid]='34 43021d-5e1 4-4a9a-8d2 b-365458b4 d0bc' | |
| 8242 | UPDATE [db o].[BloodP roduct] SE T [Product Name]='Fro zen RED BL OOD CELLS| None/450mL /<=-65C|Op en|Irradia ted', [Las tUpdateDat e]='2016-0 7-27 11:17 :06.000', [LastUpdat eUser]=' RED A CTED ' WHERE [B loodProduc tGuid]='e7 499836-3be c-4bb1-865 4-3654c381 375d' | |
| 8243 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLT AFR Thaw DMSO IRD LUKOPR 1C', [Las tUpdateDat e]='2016-0 7-27 11:17 :06.000', [LastUpdat eUser]=' RED A CTED ' WHERE [B loodProduc tGuid]='4e 0ddff0-1d6 3-4e26-bc4 6-367b70fb 2d54' | |
| 8244 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC AFR CPDA-1 LUK OPR 5C', [ LastUpdate Date]='201 6-07-27 11 :17:06.000 ', [LastUp dateUser]= ' RED A CTED ' WHERE [B loodProduc tGuid]='0c e4afcb-09b 6-457c-a32 f-368027f6 6553' | |
| 8245 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLT AFR ACD-A IRD PLS Red 2C NA', [Last UpdateDate ]='2016-07 -27 11:17: 06.000', [ LastUpdate User]=' RED A CTED ' WHERE [B loodProduc tGuid]='80 06be6a-116 b-4d63-bc6 5-369e6d84 7a12' | |
| 8246 | UPDATE [db o].[BloodP roduct] SE T [Product Name]='Fro zen POOLED PLATELETS |DMSO/XX/< =-65C|ResL eu:<1E6|3 units', [L astUpdateD ate]='2016 -07-27 11: 17:06.000' , [LastUpd ateUser]=' RED A CTED ' WHERE [B loodProduc tGuid]='5f 360cf6-1ed f-43be-9ce 9-36a8f155 8446' | |
| 8247 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLT AFR ACD-A MNFN I 1CNA', [ LastUpdate Date]='201 6-07-27 11 :17:06.000 ', [LastUp dateUser]= ' RED A CTED ' WHERE [B loodProduc tGuid]='70 2c1a56-50d 8-450b-a4f b-36bc0165 361a' | |
| 8248 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC AFR ACD-A MNFI OPN 1C', [LastUpdat eDate]='20 16-07-27 1 1:17:06.00 0', [LastU pdateUser] =' RED A CTED ' WHERE [B loodProduc tGuid]='f7 49f046-9d6 6-44c0-a5d 5-36db5e4b 9c2a' | |
| 8249 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='FFP AFR Thaw NaCit 1C QUAR', [LastUpda teDate]='2 016-07-27 11:17:06.0 00', [Last UpdateUser ]=' RED A CTED ' WHERE [B loodProduc tGuid]='02 b43809-342 a-430c-b20 5-36e82f58 94fc' | |
| 8250 | UPDATE [db o].[BloodP roduct] SE T [Product Name]='Aph eresis FRE SH FROZEN PLASMA|ACD -A/XX/<=-2 5C|For mnf :noninject able|Froze n <=24h', [LastUpdat eDate]='20 16-07-27 1 1:17:06.00 0', [LastU pdateUser] =' RED A CTED ' WHERE [B loodProduc tGuid]='06 19624b-494 9-4543-84c 3-36ef9c39 f442' | |
| 8251 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC CPDA -1 LUKOPR 8C', [Reti reDate]='2 015-04-07 00:00:00.0 00', [Last UpdateDate ]='2016-07 -27 11:17: 06.000', [ LastUpdate User]=' RED A CTED ' WHERE [B loodProduc tGuid]='a4 046c32-19f b-4281-8a4 6-36f3c1a8 d877' | |
| 8252 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC AFR Wash None OPN 3C', [ LastUpdate Date]='201 6-07-27 11 :17:06.000 ', [LastUp dateUser]= ' RED A CTED ' WHERE [B loodProduc tGuid]='1b edcb65-35f 2-478a-962 4-36f55334 d30d' | |
| 8253 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLASMA A FR Thaw No ne 7C', [L astUpdateD ate]='2016 -07-27 11: 17:06.000' , [LastUpd ateUser]=' RED A CTED ' WHERE [B loodProduc tGuid]='2f 960b81-bbd a-4c96-9eb 4-3701a0e3 68d8' | |
| 8254 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='WB CPDA- 1 2C', [La stUpdateDa te]='2016- 07-27 11:1 7:06.000', [LastUpda teUser]=' RED A CTED ' WHERE [B loodProduc tGuid]='80 097c83-a6f 0-4570-94e 0-370f1eeb f4a1' | |
| 8255 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='FFP AFR Thaw None 2C', [Last UpdateDate ]='2016-07 -27 11:17: 06.000', [ LastUpdate User]=' RED A CTED ' WHERE [B loodProduc tGuid]='ea 00554d-5ab e-4fad-86a 0-37405c6e 9fa0' | |
| 8256 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC AFR Deg None O PN IRD 1C' , [LastUpd ateDate]=' 2016-07-27 11:17:06. 000', [Las tUpdateUse r]=' RED A CTED ' WHERE [B loodProduc tGuid]='37 abf122-48f 3-4255-996 b-375d840b a76e' | |
| 8257 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC AFR Deg AS3 LU KOPR 2C', [LastUpdat eDate]='20 16-07-27 1 1:17:06.00 0', [LastU pdateUser] =' RED A CTED ' WHERE [B loodProduc tGuid]='8f 408f1e-12b 1-4671-b72 3-376d109b 8e3e' | |
| 8258 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLT AFR NaCit OPN LUKOPR 1C' , [LastUpd ateDate]=' 2016-07-27 11:17:06. 000', [Las tUpdateUse r]=' RED A CTED ' WHERE [B loodProduc tGuid]='a0 9c53f4-893 1-4aae-9bc 0-378644e5 6612' | |
| 8259 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC AFR ACD-A>AS3 LUKOPR 3C' , [LastUpd ateDate]=' 2016-07-27 11:17:06. 000', [Las tUpdateUse r]=' RED A CTED ' WHERE [B loodProduc tGuid]='24 c27fb1-ca9 d-45a7-99c 4-37992930 659c' | |
| 8260 | UPDATE [db o].[BloodP roduct] SE T [Product Name]='Fro zen Rejuve nated Aphe resis RED BLOOD CELL S|None/XX/ <=-65C|Ope n|Irradiat ed|ResLeu: <5E6|1st c ontainer', [ProductS hortName]= 'RBC AFR F roz Rej No ne OPN IRD LUKOPR 1C ', [LastUp dateDate]= '2016-07-2 7 11:17:06 .000', [La stUpdateUs er]=' RED A CTED ' WHERE [B loodProduc tGuid]='d6 8c9b28-54a 1-459d-b99 1-37b87a10 7b80' | |
| 8261 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC Wash None OPN IRD 1C', [ LastUpdate Date]='201 6-07-27 11 :17:06.000 ', [LastUp dateUser]= ' RED A CTED ' WHERE [B loodProduc tGuid]='bc 36b1ee-eb0 e-4e45-a38 f-37dbef45 6c8c' | |
| 8262 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLT AFR NS LUKOPR 2C', [Last UpdateDate ]='2016-07 -27 11:17: 06.000', [ LastUpdate User]=' RED A CTED ' WHERE [B loodProduc tGuid]='22 f3f0de-c36 b-4370-824 6-37eca931 7204' | |
| 8263 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC AFR CP2D>AS3 O PN IRD LUK OPR SUPRed 1C', [Las tUpdateDat e]='2016-0 7-27 11:17 :06.000', [LastUpdat eUser]=' RED A CTED ' WHERE [B loodProduc tGuid]='f8 5f4bcd-810 1-488d-83f 7-37f4c38b 8728' | |
| 8264 | UPDATE [db o].[BloodP roduct] SE T [Product Name]='FRE SH FROZEN PLASMA|CPD /XX/<=-30C ', [LastUp dateDate]= '2016-07-2 7 11:17:06 .000', [La stUpdateUs er]=' RED A CTED ' WHERE [B loodProduc tGuid]='80 209022-7db 1-40b0-b97 8-38068e2f 1cc3' | |
| 8265 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLT AFR ACD-A LUKO PR 7C', [L astUpdateD ate]='2016 -07-27 11: 17:06.000' , [LastUpd ateUser]=' RED A CTED ' WHERE [B loodProduc tGuid]='e8 4504f9-7bf f-4ecc-844 a-381fc65d 8ef2' | |
| 8266 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLT AFR NaCit NMT OPN 1C', [ LastUpdate Date]='201 6-07-27 11 :17:06.000 ', [LastUp dateUser]= ' RED A CTED ' WHERE [B loodProduc tGuid]='aa 6a1056-c43 c-4a29-9cc 1-383df4ac 2943' | |
| 8267 | UPDATE [db o].[BloodP roduct] SE T [Product Name]='Aph eresis FRE SH FROZEN PLASMA|NaC itrate/XX/ <=-65C|3rd container |Quar:>=11 2d/reteste d', [Produ ctShortNam e]='FFP AF R NaCit 3C QUAR', [L astUpdateD ate]='2016 -07-27 11: 17:06.000' , [LastUpd ateUser]=' RED A CTED ' WHERE [B loodProduc tGuid]='87 bcc3ae-c6d b-45df-86c 8-383f4bbc 6f43' | |
| 8268 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLT AFR NaCit IRD LUKOPR 1C' , [LastUpd ateDate]=' 2016-07-27 11:17:06. 000', [Las tUpdateUse r]=' RED A CTED ' WHERE [B loodProduc tGuid]='39 b83afd-d25 e-4423-81b 5-38447dc7 56e0' | |
| 8269 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC AFR ACD-A>AS3 IRD LUKOPR 7C', [Las tUpdateDat e]='2016-0 7-27 11:17 :06.000', [LastUpdat eUser]=' RED A CTED ' WHERE [B loodProduc tGuid]='3e 79b399-4a7 8-45b5-8a2 a-384486e1 bad6' | |
| 8270 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC CPD> AS5 IRD LU KOPR 2C', [LastUpdat eDate]='20 16-07-27 1 1:17:06.00 0', [LastU pdateUser] =' RED A CTED ' WHERE [B loodProduc tGuid]='53 e0b737-f03 d-4b9c-964 d-38467057 b569' | |
| 8271 | UPDATE [db o].[BloodP roduct] SE T [Product Name]='Fro zen Rejuve nated Aphe resis RED BLOOD CELL S|None/XX/ <=-65C|Ope n|2nd cont ainer', [P roductShor tName]='RB C AFR Froz Rej None OPN 2C', [ LastUpdate Date]='201 6-07-27 11 :17:06.000 ', [LastUp dateUser]= ' RED A CTED ' WHERE [B loodProduc tGuid]='a1 58c129-3bc 9-487e-a9d b-3851ad79 d026' | |
| 8272 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='FFP AFR NaCit IRD 3C', [Last UpdateDate ]='2016-07 -27 11:17: 06.000', [ LastUpdate User]=' RED A CTED ' WHERE [B loodProduc tGuid]='2a d79c06-33f 8-4e32-bfe 4-385c5206 c3c5' | |
| 8273 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC AFR CP2D>AS3 O PN IRD LUK OPR SR 2C' , [LastUpd ateDate]=' 2016-07-27 11:17:06. 000', [Las tUpdateUse r]=' RED A CTED ' WHERE [B loodProduc tGuid]='35 584f92-98e b-43ad-90f e-38606673 b08a' | |
| 8274 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLT AFR ACD-A OPN LUKOPR 1C' , [LastUpd ateDate]=' 2016-07-27 11:17:06. 000', [Las tUpdateUse r]=' RED A CTED ' WHERE [B loodProduc tGuid]='20 39ca59-7d5 3-4990-a1f a-38610701 7f19' | |
| 8275 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC CPD> AS1 IRD 1C ', [LastUp dateDate]= '2016-07-2 7 11:17:06 .000', [La stUpdateUs er]=' RED A CTED ' WHERE [B loodProduc tGuid]='8f b04e98-71f f-41bd-80a a-387781fd 97cf' | |
| 8276 | UPDATE [db o].[BloodP roduct] SE T [Product Name]='FRE SH FROZEN PLASMA|CPD /450mL/<=- 25C|For mn f:injectab le|Frozen <=18h', [L astUpdateD ate]='2016 -07-27 11: 17:06.000' , [LastUpd ateUser]=' RED A CTED ' WHERE [B loodProduc tGuid]='8f 0c0700-66e 4-4298-9d9 0-38787f03 6cba' | |
| 8277 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC AFR Rej None O PN IRD 2C' , [LastUpd ateDate]=' 2016-07-27 11:17:06. 000', [Las tUpdateUse r]=' RED A CTED ' WHERE [B loodProduc tGuid]='f4 2decf2-938 3-4d8a-a0a b-388026f1 bfdd' | |
| 8278 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC AFR CP2D>AS3 O PN IRD 1C' , [LastUpd ateDate]=' 2016-07-27 11:17:06. 000', [Las tUpdateUse r]=' RED A CTED ' WHERE [B loodProduc tGuid]='eb 6e3375-280 3-4434-bcc b-388e6240 e7ce' | |
| 8279 | UPDATE [db o].[BloodP roduct] SE T [Product Name]='FRE SH FROZEN PLASMA|CPD /XX/<=-30C |LowVol:an ticoag adj ', [LastUp dateDate]= '2016-07-2 7 11:17:06 .000', [La stUpdateUs er]=' RED A CTED ' WHERE [B loodProduc tGuid]='63 44c15b-bec 6-4e9e-8dd b-38928f05 1779' | |
| 8280 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLT AFR Wash NS LU KOPR 3C', [LastUpdat eDate]='20 16-07-27 1 1:17:06.00 0', [LastU pdateUser] =' RED A CTED ' WHERE [B loodProduc tGuid]='a4 9125d6-89a f-4a05-a37 a-3896bc37 ab6d' | |
| 8281 | UPDATE [db o].[BloodP roduct] SE T [Product Name]='Aph eresis FRE SH FROZEN PLASMA|ACD -A/XX/<=-6 5C|Not for tx or mnf |Fin Con:N S|Aphr not automated |Quar:>=6m /retested' , [LastUpd ateDate]=' 2016-07-27 11:17:06. 000', [Las tUpdateUse r]=' RED A CTED ' WHERE [B loodProduc tGuid]='0e a94c73-f4a d-48a6-978 8-38975c63 3f8e' | |
| 8282 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLT AFR ACD-B IRD LUKOPR PLS Red 1C', [LastUpdat eDate]='20 16-07-27 1 1:17:06.00 0', [LastU pdateUser] =' RED A CTED ' WHERE [B loodProduc tGuid]='8b 4511ac-c49 4-491d-868 8-38a1ed9b ec42' | |
| 8283 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC CPD> AS5 IRD 2C ', [LastUp dateDate]= '2016-07-2 7 11:17:06 .000', [La stUpdateUs er]=' RED A CTED ' WHERE [B loodProduc tGuid]='c0 cfc91a-2fc f-4e9c-a57 f-38a42079 4efd' | |
| 8284 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLASMA A FR ACD-A I RD 2C', [L astUpdateD ate]='2016 -07-27 11: 17:06.000' , [LastUpd ateUser]=' RED A CTED ' WHERE [B loodProduc tGuid]='40 be83d5-64c d-40ed-a57 7-38a60709 85ba' | |
| 8285 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC AFR Froz None OPN LUKOPR 3C', [Las tUpdateDat e]='2016-0 7-27 11:17 :06.000', [LastUpdat eUser]=' RED A CTED ' WHERE [B loodProduc tGuid]='94 f01caf-e72 d-4055-81a 8-38a6cdba 2db5' | |
| 8286 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='WB CPD I RD 1C', [L astUpdateD ate]='2016 -07-27 11: 17:06.000' , [LastUpd ateUser]=' RED A CTED ' WHERE [B loodProduc tGuid]='2a 928198-280 b-42c4-9bb 5-38a7ca4d ca54' | |
| 8287 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLT AFR Wash None IRD LUKOPR 4C', [Las tUpdateDat e]='2016-0 7-27 11:17 :06.000', [LastUpdat eUser]=' RED A CTED ' WHERE [B loodProduc tGuid]='9f b4519a-11e 9-4909-a13 8-38c275ab 658d' | |
| 8288 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC AFR CPD>AS1 IR D SR 2C', [LastUpdat eDate]='20 16-07-27 1 1:17:06.00 0', [LastU pdateUser] =' RED A CTED ' WHERE [B loodProduc tGuid]='eb 0cec9b-4e6 c-4699-a9c a-3900f5a7 385a' | |
| 8289 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLASMA T haw None 8 C', [LastU pdateDate] ='2016-07- 27 11:17:0 6.000', [L astUpdateU ser]=' RED A CTED ' WHERE [B loodProduc tGuid]='85 d5b31e-3a9 6-4cd1-87d 9-3903532e 31d3' | |
| 8290 | UPDATE [db o].[BloodP roduct] SE T [Product TypeCode]= 'E011', [L astUpdateD ate]='2016 -07-27 11: 17:06.000' , [LastUpd ateUser]=' RED A CTED ' WHERE [B loodProduc tGuid]='4f dd1d70-8b2 5-40ec-b3f 9-39067b0d 738b' | |
| 8291 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLT AFR Thaw DMSO OPN IRD LU KOPR PA 2C ', [LastUp dateDate]= '2016-07-2 7 11:17:06 .000', [La stUpdateUs er]=' RED A CTED ' WHERE [B loodProduc tGuid]='b1 309465-9c5 2-41d8-863 3-392f8cd7 bfd1' | |
| 8292 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLT AFR Wash PAS-E LUKOPR 3C Psoraln', [LastUpda teDate]='2 016-07-27 11:17:06.0 00', [Last UpdateUser ]=' RED A CTED ' WHERE [B loodProduc tGuid]='d4 4320d8-b56 a-410f-9bf 8-3942ddb4 e0f3' | |
| 8293 | UPDATE [db o].[BloodP roduct] SE T [Product Name]='Aph eresis FRE SH FROZEN PLASMA|ACD -B/XX/<=-3 0C|Fin Con :NS|Aphr n ot automat ed', [Last UpdateDate ]='2016-07 -27 11:17: 06.000', [ LastUpdate User]=' RED A CTED ' WHERE [B loodProduc tGuid]='44 516a3c-6f0 b-449a-be0 b-394eca59 f154' | |
| 8294 | UPDATE [db o].[BloodP roduct] SE T [Product Name]='Aph eresis FRE SH FROZEN PLASMA|CPD -50/XX/<=- 25C|Not fo r tx or mn f', [LastU pdateDate] ='2016-07- 27 11:17:0 6.000', [L astUpdateU ser]=' RED A CTED ' WHERE [B loodProduc tGuid]='65 cf916c-773 6-4de3-996 3-3952c914 5d21' | |
| 8295 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC CP2D >AS3 LUKOP R 8C', [La stUpdateDa te]='2016- 07-27 11:1 7:06.000', [LastUpda teUser]=' RED A CTED ' WHERE [B loodProduc tGuid]='e4 c5b75c-b5a c-4829-b4e f-3961197f bd73' | |
| 8296 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLT AFR Wash None OPN LUKOPR 2C', [Las tUpdateDat e]='2016-0 7-27 11:17 :06.000', [LastUpdat eUser]=' RED A CTED ' WHERE [B loodProduc tGuid]='47 97b761-093 f-4967-a26 1-39945fbb 5e99' | |
| 8297 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLT AFR Thaw DMSO OPN PA 1C' , [LastUpd ateDate]=' 2016-07-27 11:17:06. 000', [Las tUpdateUse r]=' RED A CTED ' WHERE [B loodProduc tGuid]='79 ec1ad3-fcf a-47c6-bb4 1-39bdc4b8 ba36' | |
| 8298 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='FFP AFR Thaw None IRD 7C', [ LastUpdate Date]='201 6-07-27 11 :17:06.000 ', [LastUp dateUser]= ' RED A CTED ' WHERE [B loodProduc tGuid]='36 50dda4-729 9-4119-836 a-3a01ba3b b1bc' | |
| 8299 | UPDATE [db o].[BloodP roduct] SE T [Product Name]='Aph eresis FRE SH FROZEN PLASMA|CPD -50/XX/<=- 30C|For mn f:injectab le|ResLeu: <1E6|1st c ontainer', [ProductS hortName]= 'FFP AFR C PD-50 MNFI LUKOPR 1C ', [LastUp dateDate]= '2016-07-2 7 11:17:06 .000', [La stUpdateUs er]=' RED A CTED ' WHERE [B loodProduc tGuid]='a0 582378-960 9-4fce-91d 9-3a11ce36 c047' | |
| 8300 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC AFR CP2D>AS3 I RD LUKOPR 8C', [Last UpdateDate ]='2016-07 -27 11:17: 06.000', [ LastUpdate User]=' RED A CTED ' WHERE [B loodProduc tGuid]='59 f1dc78-70f 4-4c00-a21 7-3a169f92 89c1' | |
| 8301 | UPDATE [db o].[BloodP roduct] SE T [Product Name]='FRE SH FROZEN PLASMA|CP2 D/XX/<=-65 C|Quar:>=6 m/retested ', [LastUp dateDate]= '2016-07-2 7 11:17:06 .000', [La stUpdateUs er]=' RED A CTED ' WHERE [B loodProduc tGuid]='4d 564687-07b a-4d03-bdb 4-3a38a280 0f4f' | |
| 8302 | UPDATE [db o].[BloodP roduct] SE T [Product Name]='Aph eresis FRE SH FROZEN PLASMA|ACD -A/XX/<=-3 0C|ResLeu: <1E6|>=200 mL<400mL|F rozen <=18 h|3rd cont ainer', [P roductShor tName]='FF P AFR ACD- A LUKOPR 3 C', [LastU pdateDate] ='2016-07- 27 11:17:0 6.000', [L astUpdateU ser]=' RED A CTED ' WHERE [B loodProduc tGuid]='7f f85969-fcb 5-4c49-b14 0-3a550b6e a878' | |
| 8303 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC Wash None OPN 3C', [Last UpdateDate ]='2016-07 -27 11:17: 06.000', [ LastUpdate User]=' RED A CTED ' WHERE [B loodProduc tGuid]='7c 8b5196-44d d-48e0-9c6 f-3a617623 ad11' | |
| 8304 | UPDATE [db o].[BloodP roduct] SE T [Product Name]='Aph eresis FRE SH FROZEN PLASMA|ACD -A/XX/<=-3 0C|ResLeu: <1E6|>=200 mL<400mL', [LastUpda teDate]='2 016-07-27 11:17:06.0 00', [Last UpdateUser ]=' RED A CTED ' WHERE [B loodProduc tGuid]='11 80fc0b-de1 4-4995-bea 7-3a6287c2 a673' | |
| 8305 | UPDATE [db o].[BloodP roduct] SE T [Product Name]='Aph eresis FRE SH FROZEN PLASMA|ACD -A/XX/<=-6 5C|Irradia ted|>=400m L<600mL|Qu ar:>=6m/re tested', [ LastUpdate Date]='201 6-07-27 11 :17:06.000 ', [LastUp dateUser]= ' RED A CTED ' WHERE [B loodProduc tGuid]='6f 9757f6-71e 2-479c-9bc 2-3a815f50 de46' | |
| 8306 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC Deg Rej None O PN 2C', [L astUpdateD ate]='2016 -07-27 11: 17:06.000' , [LastUpd ateUser]=' RED A CTED ' WHERE [B loodProduc tGuid]='80 f172e7-b70 1-4488-abe 6-3a820444 fd21' | |
| 8307 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLT AFR Wash None OPN LUKOPR 4C', [Las tUpdateDat e]='2016-0 7-27 11:17 :06.000', [LastUpdat eUser]=' RED A CTED ' WHERE [B loodProduc tGuid]='6b 7c04c3-330 0-43f6-a05 8-3a864002 a483' | |
| 8308 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC AFR ACD-A>AS3 OPN LUKOPR SAL Add 1 C', [LastU pdateDate] ='2016-07- 27 11:17:0 6.000', [L astUpdateU ser]=' RED A CTED ' WHERE [B loodProduc tGuid]='ce e8fe79-8f4 5-48c5-8e4 6-3a9911cf 0154' | |
| 8309 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLT AFR ACD-B MNFI 1CNA', [L astUpdateD ate]='2016 -07-27 11: 17:06.000' , [LastUpd ateUser]=' RED A CTED ' WHERE [B loodProduc tGuid]='2c b4ec8b-55b b-47e4-9c3 e-3ab122f4 8da1' | |
| 8310 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC AFR Wash AS3 L UKOPR 1C', [LastUpda teDate]='2 016-07-27 11:17:06.0 00', [Last UpdateUser ]=' RED A CTED ' WHERE [B loodProduc tGuid]='58 b18945-ca3 8-4735-b77 9-3ab75069 a9f0' | |
| 8311 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC AFR CPDA-1 IRD 7C', [Las tUpdateDat e]='2016-0 7-27 11:17 :06.000', [LastUpdat eUser]=' RED A CTED ' WHERE [B loodProduc tGuid]='3e 9efd52-315 a-47ab-af6 4-3abd9143 6f0a' | |
| 8312 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC CP2D >AS3 IRD L UKOPR 1C', [LastUpda teDate]='2 016-07-27 11:17:06.0 00', [Last UpdateUser ]=' RED A CTED ' WHERE [B loodProduc tGuid]='73 277db4-f25 d-46c4-be5 9-3acbc4d1 3114' | |
| 8313 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC CPD 1C', [Last UpdateDate ]='2016-07 -27 11:17: 06.000', [ LastUpdate User]=' RED A CTED ' WHERE [B loodProduc tGuid]='f9 947ba4-2f9 4-4ddb-a1d 9-3acd0442 912a' | |
| 8314 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC CPD> AS5 IRD LU KOPR 6C', [LastUpdat eDate]='20 16-07-27 1 1:17:06.00 0', [LastU pdateUser] =' RED A CTED ' WHERE [B loodProduc tGuid]='51 e4d226-b61 a-4208-9c9 b-3ad6eb89 6e31' | |
| 8315 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLT AFR ACD-B OPN PLS Red 2C ', [LastUp dateDate]= '2016-07-2 7 11:17:06 .000', [La stUpdateUs er]=' RED A CTED ' WHERE [B loodProduc tGuid]='36 24fb9d-38c a-4c94-a88 7-3adcf6bb 6fc7' | |
| 8316 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLT AFR ACD-A OPN PLS Red 2C NA', [Last UpdateDate ]='2016-07 -27 11:17: 06.000', [ LastUpdate User]=' RED A CTED ' WHERE [B loodProduc tGuid]='2d 1e5405-455 a-4110-93b 1-3af4d994 2e00' | |
| 8317 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC AFR Deg None O PN 4C', [L astUpdateD ate]='2016 -07-27 11: 17:06.000' , [LastUpd ateUser]=' RED A CTED ' WHERE [B loodProduc tGuid]='6e f0c858-3f3 2-4559-ac6 5-3af924ce fcba' | |
| 8318 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLT AFR Wash None OPN IRD 2C ', [LastUp dateDate]= '2016-07-2 7 11:17:06 .000', [La stUpdateUs er]=' RED A CTED ' WHERE [B loodProduc tGuid]='65 f2df5a-4b4 a-454a-928 8-3b03cbf7 5120' | |
| 8319 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='FFP None IRD 1C', [LastUpdat eDate]='20 16-07-27 1 1:17:06.00 0', [LastU pdateUser] =' RED A CTED ' WHERE [B loodProduc tGuid]='11 9e6af5-79c a-477f-b5d 3-3b03f6e2 40c9' | |
| 8320 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLASMA A FR Thaw No ne 2C', [L astUpdateD ate]='2016 -07-27 11: 17:06.000' , [LastUpd ateUser]=' RED A CTED ' WHERE [B loodProduc tGuid]='fe 813de3-92e 6-4788-8ed e-3b06f34b d665' | |
| 8321 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLASMA A FR Thaw AC D-A IRD 3C ', [LastUp dateDate]= '2016-07-2 7 11:17:06 .000', [La stUpdateUs er]=' RED A CTED ' WHERE [B loodProduc tGuid]='9d cb6239-56e d-4991-b30 5-3b25394e f3e4' | |
| 8322 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC AFR CP2D LUKOP R SR/PA 2C ', [LastUp dateDate]= '2016-07-2 7 11:17:06 .000', [La stUpdateUs er]=' RED A CTED ' WHERE [B loodProduc tGuid]='b3 e99835-079 4-4883-b6a 4-3b398f95 0a38' | |
| 8323 | UPDATE [db o].[BloodP roduct] SE T [Product Name]='Fro zen POOLED PLATELETS |DMSO/XX/< =-80C|Open |7 units', [LastUpda teDate]='2 016-07-27 11:17:06.0 00', [Last UpdateUser ]=' RED A CTED ' WHERE [B loodProduc tGuid]='62 7eaf10-005 1-45df-9d9 2-3b45efd4 d424' | |
| 8324 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLT AFR ACD-B MNFI 4C', [Las tUpdateDat e]='2016-0 7-27 11:17 :06.000', [LastUpdat eUser]=' RED A CTED ' WHERE [B loodProduc tGuid]='5e 042425-e6d d-4a29-970 1-3b48d8e0 0d9c' | |
| 8325 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC AFR Deg None O PN IRD 2C' , [LastUpd ateDate]=' 2016-07-27 11:17:06. 000', [Las tUpdateUse r]=' RED A CTED ' WHERE [B loodProduc tGuid]='99 481d45-b32 2-4243-b37 c-3b4dd4a1 f415' | |
| 8326 | UPDATE [db o].[BloodP roduct] SE T [Product Name]='Fro zen Rejuve nated Aphe resis RED BLOOD CELL S|None/XX/ <=-65C|Ope n|1st cont ainer', [P roductShor tName]='RB C AFR Froz Rej None OPN 1C', [ LastUpdate Date]='201 6-07-27 11 :17:06.000 ', [LastUp dateUser]= ' RED A CTED ' WHERE [B loodProduc tGuid]='bc fee2a8-d6f c-4af8-aae 7-3b6aebb7 d138' | |
| 8327 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLT AFR NaCit MNFN I OPN 1CNA ', [LastUp dateDate]= '2016-07-2 7 11:17:06 .000', [La stUpdateUs er]=' RED A CTED ' WHERE [B loodProduc tGuid]='67 6bd975-8da f-4270-ab8 b-3b727e52 83d4' | |
| 8328 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='FFP Thaw None IRD 8C', [Last UpdateDate ]='2016-07 -27 11:17: 06.000', [ LastUpdate User]=' RED A CTED ' WHERE [B loodProduc tGuid]='80 eacf91-09c f-4d34-b9a c-3b79b0e3 3db3' | |
| 8329 | UPDATE [db o].[BloodP roduct] SE T [Product Name]='FRE SH FROZEN PLASMA|CPD A-1/XX/<=- 65C|Not fo r tx or mn f|Quar:>=6 m/retested ', [LastUp dateDate]= '2016-07-2 7 11:17:06 .000', [La stUpdateUs er]=' RED A CTED ' WHERE [B loodProduc tGuid]='c8 a5fea1-01c c-4d26-bad c-3b7e1eb1 c930' | |
| 8330 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='FFP AFR Thaw NaCit IRD 2C', [LastUpdat eDate]='20 16-07-27 1 1:17:06.00 0', [LastU pdateUser] =' RED A CTED ' WHERE [B loodProduc tGuid]='d1 f83bd9-914 e-4845-a6a f-3b80aecc 7c68' | |
| 8331 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLT AFR ACD-A LUKO PR 2C BacM tr', [Last UpdateDate ]='2016-07 -27 11:17: 06.000', [ LastUpdate User]=' RED A CTED ' WHERE [B loodProduc tGuid]='d3 ba843a-6d7 6-4735-85a a-3bae8b2f 2907' | |
| 8332 | UPDATE [db o].[BloodP roduct] SE T [Product Name]='CRY OPRECIPITA TE|NS/450m L/<=-30C|M ethylene b lue-treate d', [LastU pdateDate] ='2016-07- 27 11:17:0 6.000', [L astUpdateU ser]=' RED A CTED ' WHERE [B loodProduc tGuid]='6e 638202-246 5-425c-9c2 0-3bfd02c4 8e18' | |
| 8333 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC AFR Wash None MNFNI 2C', [LastUpda teDate]='2 016-07-27 11:17:06.0 00', [Last UpdateUser ]=' RED A CTED ' WHERE [B loodProduc tGuid]='90 828614-489 4-46d3-947 e-3c144de5 5cfb' | |
| 8334 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLT AFR ACD-A OPN IRD PLS Re d 1CNA', [ LastUpdate Date]='201 6-07-27 11 :17:06.000 ', [LastUp dateUser]= ' RED A CTED ' WHERE [B loodProduc tGuid]='67 62bdbe-32f e-4abe-962 5-3c15492c 0bd3' | |
| 8335 | UPDATE [db o].[BloodP roduct] SE T [Product Name]='Aph eresis FRE SH FROZEN PLASMA|ACD -B/XX/<=-6 5C|Irradia ted|Aphr n ot automat ed|Quar:>= 6m/reteste d', [LastU pdateDate] ='2016-07- 27 11:17:0 6.000', [L astUpdateU ser]=' RED A CTED ' WHERE [B loodProduc tGuid]='0a 6cf86a-cfb 4-439b-809 0-3c215f38 160e' | |
| 8336 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLT AFR NaCit OPN IRD LUKOPR PLS Red 2 C', [LastU pdateDate] ='2016-07- 27 11:17:0 6.000', [L astUpdateU ser]=' RED A CTED ' WHERE [B loodProduc tGuid]='a6 adc422-571 7-4268-a2d e-3c2783af 9ec6' | |
| 8337 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC AFR Deg Rej No ne OPN 3C' , [LastUpd ateDate]=' 2016-07-27 11:17:06. 000', [Las tUpdateUse r]=' RED A CTED ' WHERE [B loodProduc tGuid]='30 f00efa-f6e 1-49af-83c d-3c35c27c 0a21' | |
| 8338 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC AFR ACD-A>AS3 IRD 2C', [ LastUpdate Date]='201 6-07-27 11 :17:06.000 ', [LastUp dateUser]= ' RED A CTED ' WHERE [B loodProduc tGuid]='ff cdfbbe-fba 4-4d8a-bfd a-3c396e3c 51f1' | |
| 8339 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLT AFR ACD-A LUKO PR 3C BacM tr', [Last UpdateDate ]='2016-07 -27 11:17: 06.000', [ LastUpdate User]=' RED A CTED ' WHERE [B loodProduc tGuid]='15 a4574d-3bc f-496c-973 c-3c493463 3429' | |
| 8340 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLT AFR ACD-A OPN LUKOPR 1C' , [LastUpd ateDate]=' 2016-07-27 11:17:06. 000', [Las tUpdateUse r]=' RED A CTED ' WHERE [B loodProduc tGuid]='d3 e77f6c-a2f b-4514-96a c-3c540bf1 87b5' | |
| 8341 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLT AFR ACD-A OPN IRD LUKOPR PLS Red 3 C', [LastU pdateDate] ='2016-07- 27 11:17:0 6.000', [L astUpdateU ser]=' RED A CTED ' WHERE [B loodProduc tGuid]='21 ead686-517 5-4ec5-847 1-3c6152e7 4359' | |
| 8342 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC AFR Deg None L UKOPR 1C', [LastUpda teDate]='2 016-07-27 11:17:06.0 00', [Last UpdateUser ]=' RED A CTED ' WHERE [B loodProduc tGuid]='53 5ea2b7-a84 b-40c6-8c0 3-3c62a1cc b8e1' | |
| 8343 | UPDATE [db o].[BloodP roduct] SE T [Product Name]='FRE SH FROZEN PLASMA|CPD A-1/XX/<=- 65C|Irradi ated', [La stUpdateDa te]='2016- 07-27 11:1 7:06.000', [LastUpda teUser]=' RED A CTED ' WHERE [B loodProduc tGuid]='30 8c362f-5a7 d-413c-882 4-3c6516b2 1a09' | |
| 8344 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC AFR CP2D>AS3 I RD LUKOPR 2C', [Last UpdateDate ]='2016-07 -27 11:17: 06.000', [ LastUpdate User]=' RED A CTED ' WHERE [B loodProduc tGuid]='6e 217514-a12 2-4791-b05 6-3c8561fd 53ba' | |
| 8345 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='WB CP2D IRD 3C', [ LastUpdate Date]='201 6-07-27 11 :17:06.000 ', [LastUp dateUser]= ' RED A CTED ' WHERE [B loodProduc tGuid]='8b 10355e-bdd b-46f4-aa9 4-3c872cc4 eb9d' | |
| 8346 | UPDATE [db o].[BloodP roduct] SE T [Product Name]='Fro zen Aphere sis RED BL OOD CELLS| None/XX/<= -65C', [La stUpdateDa te]='2016- 07-27 11:1 7:06.000', [LastUpda teUser]=' RED A CTED ' WHERE [B loodProduc tGuid]='b7 558344-c2b 5-408b-8da b-3cc5f6df 1bd9' | |
| 8347 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLT AFR ACD-A LUKO PR 4C', [L astUpdateD ate]='2016 -07-27 11: 17:06.000' , [LastUpd ateUser]=' RED A CTED ' WHERE [B loodProduc tGuid]='77 01ee6d-9f5 7-4d7a-aef 9-3ce10e3f f3a4' | |
| 8348 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLT AFR ACD-A>PAS- D LUKOPR 3 C BacMtr', [LastUpda teDate]='2 016-07-27 11:17:06.0 00', [Last UpdateUser ]=' RED A CTED ' WHERE [B loodProduc tGuid]='01 275c47-d35 f-4869-9b6 a-3d00f2c5 336c' | |
| 8349 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC AFR ACD-A MNFN I 1C', [La stUpdateDa te]='2016- 07-27 11:1 7:06.000', [LastUpda teUser]=' RED A CTED ' WHERE [B loodProduc tGuid]='16 d5ca2e-560 d-4599-9e1 2-3d47cc9f 020b' | |
| 8350 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLT AFR Thaw DMSO OPN PA 4C' , [LastUpd ateDate]=' 2016-07-27 11:17:06. 000', [Las tUpdateUse r]=' RED A CTED ' WHERE [B loodProduc tGuid]='ae b5a5ae-d3b 4-4d17-99d 7-3d5da63a f007' | |
| 8351 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC CPDA -1 IRD 2C' , [LastUpd ateDate]=' 2016-07-27 11:17:06. 000', [Las tUpdateUse r]=' RED A CTED ' WHERE [B loodProduc tGuid]='14 ef23eb-7dc 7-40b7-b69 4-3d5e3988 bb6a' | |
| 8352 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='FFP AFR Thaw ACD-A LUKOPR 4C ', [LastUp dateDate]= '2016-07-2 7 11:17:06 .000', [La stUpdateUs er]=' RED A CTED ' WHERE [B loodProduc tGuid]='f4 47f73e-0e1 2-44b9-9ca 8-3d649917 45d1' | |
| 8353 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLT AFR ACD-A 7C', [LastUpda teDate]='2 016-07-27 11:17:06.0 00', [Last UpdateUser ]=' RED A CTED ' WHERE [B loodProduc tGuid]='41 357784-4be 4-4f79-b4d 7-3d8528f2 3c0b' | |
| 8354 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLT AFR ACD-B IRD PLS Red 1C ', [LastUp dateDate]= '2016-07-2 7 11:17:06 .000', [La stUpdateUs er]=' RED A CTED ' WHERE [B loodProduc tGuid]='ad 67c83c-2da f-4a7c-b46 2-3daee3e8 0b81' | |
| 8355 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC AFR CPDA-1 IRD LUKOPR 7C ', [LastUp dateDate]= '2016-07-2 7 11:17:06 .000', [La stUpdateUs er]=' RED A CTED ' WHERE [B loodProduc tGuid]='39 fe817f-877 1-4b90-b95 f-3db5af0d e720' | |
| 8356 | UPDATE [db o].[BloodP roduct] SE T [Product Name]='Fro zen Aphere sis RED BL OOD CELLS| None/XX/<= -65C|Open' , [LastUpd ateDate]=' 2016-07-27 11:17:06. 000', [Las tUpdateUse r]=' RED A CTED ' WHERE [B loodProduc tGuid]='a2 b44050-249 8-4923-aed 2-3dd47608 a82c' | |
| 8357 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLT AFR ACD-B OPN IRD LUKOPR PLS Red 3 C', [LastU pdateDate] ='2016-07- 27 11:17:0 6.000', [L astUpdateU ser]=' RED A CTED ' WHERE [B loodProduc tGuid]='f5 c589eb-998 6-4809-b60 e-3dd4a3dd 7a62' | |
| 8358 | UPDATE [db o].[BloodP roduct] SE T [Product Name]='Aph eresis FRE SH FROZEN PLASMA|ACD -A/XX/<=-6 5C|Aphr no t automate d|Quar:>=6 m/retested ', [LastUp dateDate]= '2016-07-2 7 11:17:06 .000', [La stUpdateUs er]=' RED A CTED ' WHERE [B loodProduc tGuid]='29 b31f36-86f d-4e6c-94d 9-3ddd376c 3925' | |
| 8359 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC AFR CP2D>AS3 7 C', [LastU pdateDate] ='2016-07- 27 11:17:0 6.000', [L astUpdateU ser]=' RED A CTED ' WHERE [B loodProduc tGuid]='ca 893d44-283 e-430d-b32 9-3de7421e f43e' | |
| 8360 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='WB CPDA- 1 IRD LUKO PR 3C', [L astUpdateD ate]='2016 -07-27 11: 17:06.000' , [LastUpd ateUser]=' RED A CTED ' WHERE [B loodProduc tGuid]='a9 89cf90-d5c 9-4ef8-9ef c-3dea602c 25f6' | |
| 8361 | UPDATE [db o].[BloodP roduct] SE T [Product Name]='Fro zen Rejuve nated RED BLOOD CELL S|None/500 mL/<=-65C| Not for tx or mnf|Op en', [Last UpdateDate ]='2016-07 -27 11:17: 06.000', [ LastUpdate User]=' RED A CTED ' WHERE [B loodProduc tGuid]='47 dd012f-bc3 3-48d5-a39 f-3e17c40e e4ba' | |
| 8362 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='FFP AFR Thaw None IRD LUKOPR 2C', [Las tUpdateDat e]='2016-0 7-27 11:17 :06.000', [LastUpdat eUser]=' RED A CTED ' WHERE [B loodProduc tGuid]='47 5694f1-c0a 6-475d-980 1-3e2e4473 b362' | |
| 8363 | UPDATE [db o].[BloodP roduct] SE T [Product Name]='FRE SH FROZEN PLASMA|CPD /450mL/<=- 25C|Irradi ated|Froze n <=6h', [ LastUpdate Date]='201 6-07-27 11 :17:06.000 ', [LastUp dateUser]= ' RED A CTED ' WHERE [B loodProduc tGuid]='45 4a2c12-0ea 7-48a9-baf 2-3e3987d7 215c' | |
| 8364 | UPDATE [db o].[BloodP roduct] SE T [Product Name]='PLA SMA|CPDA-1 /450mL/<=- 25C|Cryo r educed|Qua r:>=112d/r etested', [LastUpdat eDate]='20 16-07-27 1 1:17:06.00 0', [LastU pdateUser] =' RED A CTED ' WHERE [B loodProduc tGuid]='6a 554650-689 7-44eb-bf4 0-3e490bb4 2e1f' | |
| 8365 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLT AFR ACD-B OPN IRD PLS Re d 2C', [La stUpdateDa te]='2016- 07-27 11:1 7:06.000', [LastUpda teUser]=' RED A CTED ' WHERE [B loodProduc tGuid]='05 66d76f-c15 d-4124-947 8-3e54fac9 6505' | |
| 8366 | UPDATE [db o].[BloodP roduct] SE T [Product Name]='Aph eresis FRE SH FROZEN PLASMA|NS/ XX/<=-30C| >=200mL<40 0mL', [Las tUpdateDat e]='2016-0 7-27 11:17 :06.000', [LastUpdat eUser]=' RED A CTED ' WHERE [B loodProduc tGuid]='dd 337ae6-2e1 9-4bc4-adf 7-3e5a696d 6fa2' | |
| 8367 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC CPDA -1 IRD 3C' , [RetireD ate]='2015 -04-07 00: 00:00.000' , [LastUpd ateDate]=' 2016-07-27 11:17:06. 000', [Las tUpdateUse r]=' RED A CTED ' WHERE [B loodProduc tGuid]='b2 00a0b5-ecf 9-429e-bee 4-3e683556 a2c5' | |
| 8368 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLT AFR ACD-A LUKO PR PLS Red 2CNA', [L astUpdateD ate]='2016 -07-27 11: 17:06.000' , [LastUpd ateUser]=' RED A CTED ' WHERE [B loodProduc tGuid]='af 240236-b88 2-4f74-85e b-3e822551 2d42' | |
| 8369 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='FFP Thaw None 1C', [LastUpda teDate]='2 016-07-27 11:17:06.0 00', [Last UpdateUser ]=' RED A CTED ' WHERE [B loodProduc tGuid]='09 9c4c6d-3ea 2-45d8-858 5-3e8b6f27 c8dd' | |
| 8370 | UPDATE [db o].[BloodP roduct] SE T [Product Name]='Fro zen Rejuve nated RED BLOOD CELL S|None/250 mL/<=-65C| Open', [La stUpdateDa te]='2016- 07-27 11:1 7:06.000', [LastUpda teUser]=' RED A CTED ' WHERE [B loodProduc tGuid]='41 14f3af-b7d 9-400e-ac8 8-3e976e2d 223b' | |
| 8371 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC CP2D >AS3 1C', [LastUpdat eDate]='20 16-07-27 1 1:17:06.00 0', [LastU pdateUser] =' RED A CTED ' WHERE [B loodProduc tGuid]='d3 71af48-b02 4-4ab8-b70 7-3e983e44 100e' | |
| 8372 | UPDATE [db o].[BloodP roduct] SE T [Product Name]='Aph eresis FRE SH FROZEN PLASMA|NaC itrate/XX/ <=-30C|Irr adiated|Re sLeu:<1E6| >=200mL<40 0mL|Frozen <=6h|3rd container| Quar:>=4m/ retested', [ProductS hortName]= 'FFP AFR N aCit IRD L UKOPR 3C Q UAR', [Las tUpdateDat e]='2016-0 7-27 11:17 :06.000', [LastUpdat eUser]=' RED A CTED ' WHERE [B loodProduc tGuid]='04 94ec3f-f99 8-4af9-9d5 b-3e9f7196 a4fb' | |
| 8373 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC CPD IRD 8C', [ LastUpdate Date]='201 6-07-27 11 :17:06.000 ', [LastUp dateUser]= ' RED A CTED ' WHERE [B loodProduc tGuid]='ae c05ec1-3c0 2-40b8-8e7 f-3ea34e67 4e2a' | |
| 8374 | UPDATE [db o].[BloodP roduct] SE T [Product Name]='Aph eresis FRE SH FROZEN PLASMA|NaC itrate/XX/ <=-30C|Irr adiated|Re sLeu:<1E6| >=200mL<40 0mL|Frozen <=6h|2nd container| Quar:>=4m/ retested', [ProductS hortName]= 'FFP AFR N aCit IRD L UKOPR 2C Q UAR', [Las tUpdateDat e]='2016-0 7-27 11:17 :06.000', [LastUpdat eUser]=' RED A CTED ' WHERE [B loodProduc tGuid]='d4 edc3b4-b50 d-4b91-a75 1-3ea504b1 e1d5' | |
| 8375 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC AFR Wash None OPN LUKOPR PA 1C', [ LastUpdate Date]='201 6-07-27 11 :17:06.000 ', [LastUp dateUser]= ' RED A CTED ' WHERE [B loodProduc tGuid]='c7 23b4b8-4ce d-4bc2-a94 b-3ead9558 836c' | |
| 8376 | UPDATE [db o].[BloodP roduct] SE T [Product Name]='Fro zen Aphere sis PLATEL ETS|DMSO/X X/<=-80C|O pen|Irradi ated|ResLe u:<1E6', [ LastUpdate Date]='201 6-07-27 11 :17:06.000 ', [LastUp dateUser]= ' RED A CTED ' WHERE [B loodProduc tGuid]='b5 08c13f-f76 5-4dfb-ac2 3-3eba77c4 75b4' | |
| 8377 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC AFR CP2D>AS3 O PN SR/PA 1 C', [LastU pdateDate] ='2016-07- 27 11:17:0 6.000', [L astUpdateU ser]=' RED A CTED ' WHERE [B loodProduc tGuid]='a8 930e67-c62 4-443f-a3a 4-3ef96115 1433' | |
| 8378 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLT AFR ACD-A LUKO PR 5C BacM tr', [Last UpdateDate ]='2016-07 -27 11:17: 06.000', [ LastUpdate User]=' RED A CTED ' WHERE [B loodProduc tGuid]='5a 20452f-3f5 e-4706-853 a-3efa470b 0195' | |
| 8379 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC Wash None OPN IRD LUKOPR 4C', [Las tUpdateDat e]='2016-0 7-27 11:17 :06.000', [LastUpdat eUser]=' RED A CTED ' WHERE [B loodProduc tGuid]='3a 9965d2-d6e 4-4e3b-b99 8-3f0a2f3d 374c' | |
| 8380 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='WB CPDA- 1 LUKOPR 2 C', [LastU pdateDate] ='2016-07- 27 11:17:0 6.000', [L astUpdateU ser]=' RED A CTED ' WHERE [B loodProduc tGuid]='a0 92c50f-481 e-451e-ac5 2-3f1e0de9 c4d8' | |
| 8381 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLT AFR NS OPN LUK OPR PLS Re d 2C', [La stUpdateDa te]='2016- 07-27 11:1 7:06.000', [LastUpda teUser]=' RED A CTED ' WHERE [B loodProduc tGuid]='55 d25126-171 e-4706-903 d-3f239e16 8bae' | |
| 8382 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLT AFR ACD-A OPN LUKOPR 2CN A', [LastU pdateDate] ='2016-07- 27 11:17:0 6.000', [L astUpdateU ser]=' RED A CTED ' WHERE [B loodProduc tGuid]='26 f63576-894 8-455d-a66 9-3f32f2a9 75b0' | |
| 8383 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC AFR ACD-A>AS3 2C', [Last UpdateDate ]='2016-07 -27 11:17: 06.000', [ LastUpdate User]=' RED A CTED ' WHERE [B loodProduc tGuid]='90 cfed04-dc7 5-492d-8a0 6-3f39b03d 9897' | |
| 8384 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC AFR CPDA-1 OPN IRD LUKOP R 2C', [La stUpdateDa te]='2016- 07-27 11:1 7:06.000', [LastUpda teUser]=' RED A CTED ' WHERE [B loodProduc tGuid]='22 b660bc-562 1-4943-a2c 7-3f55f4a2 c1db' | |
| 8385 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='FFP None 1C', [Las tUpdateDat e]='2016-0 7-27 11:17 :06.000', [LastUpdat eUser]=' RED A CTED ' WHERE [B loodProduc tGuid]='6c 9e9858-fa7 e-432a-a1c 0-3f5e486e 4dd1' | |
| 8386 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='FFP Thaw CPD IRD 2 C QUAR', [ LastUpdate Date]='201 6-07-27 11 :17:06.000 ', [LastUp dateUser]= ' RED A CTED ' WHERE [B loodProduc tGuid]='89 089aa7-6ab 4-4ef9-bcd 0-3f73b1ca 5020' | |
| 8387 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC AFR Deg Rej No ne OPN IRD 1C', [Las tUpdateDat e]='2016-0 7-27 11:17 :06.000', [LastUpdat eUser]=' RED A CTED ' WHERE [B loodProduc tGuid]='bf 775131-5f4 5-4431-b15 d-3f78e133 f1d5' | |
| 8388 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLT AFR PAS-B LUKO PR 4C', [L astUpdateD ate]='2016 -07-27 11: 17:06.000' , [LastUpd ateUser]=' RED A CTED ' WHERE [B loodProduc tGuid]='0c 16019a-7df 4-444e-a44 6-3f8e7907 3c5e' | |
| 8389 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLT AFR ACD-A IRD 7C', [Last UpdateDate ]='2016-07 -27 11:17: 06.000', [ LastUpdate User]=' RED A CTED ' WHERE [B loodProduc tGuid]='13 f4bcca-278 5-47b7-bca 8-3f9997bb f369' | |
| 8390 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC Deg None 6C', [LastUpdat eDate]='20 16-07-27 1 1:17:06.00 0', [LastU pdateUser] =' RED A CTED ' WHERE [B loodProduc tGuid]='5c 18be1b-e16 3-4717-b0c 7-3f9b9f71 e200' | |
| 8391 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLT AFR ACD-A>PAS- C LUKOPR P soraln 1C' , [LastUpd ateDate]=' 2016-07-27 11:17:06. 000', [Las tUpdateUse r]=' RED A CTED ' WHERE [B loodProduc tGuid]='2f cdbffb-9ac 9-4511-9dc 4-3fa19de1 7280' | |
| 8392 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLASMA N one 6C', [ LastUpdate Date]='201 6-07-27 11 :17:06.000 ', [LastUp dateUser]= ' RED A CTED ' WHERE [B loodProduc tGuid]='f5 d505fd-bd6 e-4954-bd2 9-3fbbbd89 b9d5' | |
| 8393 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLT AFR ACD-A LUKO PR 2C', [L astUpdateD ate]='2016 -07-27 11: 17:06.000' , [LastUpd ateUser]=' RED A CTED ' WHERE [B loodProduc tGuid]='0b 82239e-5cf 1-434e-877 1-3fc73310 20e6' | |
| 8394 | UPDATE [db o].[BloodP roduct] SE T [Product Name]='Aph eresis FRE SH FROZEN PLASMA|CPD -50/XX/<=- 65C|ResLeu :<1E6|Froz en <=6h|2n d containe r', [Produ ctShortNam e]='FFP AF R CPD-50 L UKOPR 2C', [LastUpda teDate]='2 016-07-27 11:17:06.0 00', [Last UpdateUser ]=' RED A CTED ' WHERE [B loodProduc tGuid]='40 815711-985 7-4779-a88 c-3fd1742c e619' | |
| 8395 | UPDATE [db o].[BloodP roduct] SE T [Product Name]='FRE SH FROZEN PLASMA|NS/ XX/<=-30C| Methylene blue-treat ed', [Last UpdateDate ]='2016-07 -27 11:17: 06.000', [ LastUpdate User]=' RED A CTED ' WHERE [B loodProduc tGuid]='c8 61113a-4be a-4766-875 8-3fe0ffe3 7eea' | |
| 8396 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLT AFR ACD-A IRD LUKOPR 3C' , [LastUpd ateDate]=' 2016-07-27 11:17:06. 000', [Las tUpdateUse r]=' RED A CTED ' WHERE [B loodProduc tGuid]='a9 f4e53e-c8d b-42d9-a31 b-3fe18ed6 ef69' | |
| 8397 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLT AFR Thaw DMSO OPN LUKOPR 3C', [Las tUpdateDat e]='2016-0 7-27 11:17 :06.000', [LastUpdat eUser]=' RED A CTED ' WHERE [B loodProduc tGuid]='56 676e1b-86a f-4e6f-923 b-4007013e fea6' | |
| 8398 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLT AFR ACD-A IRD LUKOPR 2C' , [LastUpd ateDate]=' 2016-07-27 11:17:06. 000', [Las tUpdateUse r]=' RED A CTED ' WHERE [B loodProduc tGuid]='0d 44ba24-d0b 2-4625-be7 0-400b88b4 3ea0' | |
| 8399 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC AFR Wash None OPN PA 2C' , [LastUpd ateDate]=' 2016-07-27 11:17:06. 000', [Las tUpdateUse r]=' RED A CTED ' WHERE [B loodProduc tGuid]='8d a539de-986 1-44bd-82e 3-401441f2 1deb' | |
| 8400 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='FFP AFR NaCit IRD 2C', [Last UpdateDate ]='2016-07 -27 11:17: 06.000', [ LastUpdate User]=' RED A CTED ' WHERE [B loodProduc tGuid]='ee 5639af-c04 9-493f-bc2 2-401a4ce2 2f5d' | |
| 8401 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC AFR ACD-A>AS1 IRD 2C', [ LastUpdate Date]='201 6-07-27 11 :17:06.000 ', [LastUp dateUser]= ' RED A CTED ' WHERE [B loodProduc tGuid]='ff 9b0280-34a 2-4323-be2 5-402597c5 cbcf' | |
| 8402 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC AFR CPD>AS1 IR D LUKOPR S R 2C', [La stUpdateDa te]='2016- 07-27 11:1 7:06.000', [LastUpda teUser]=' RED A CTED ' WHERE [B loodProduc tGuid]='9a 1cd263-cbe 4-4e42-ab6 d-4070725f fc9d' | |
| 8403 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC AFR CPDA-1 OPN IRD 2C', [LastUpdat eDate]='20 16-07-27 1 1:17:06.00 0', [LastU pdateUser] =' RED A CTED ' WHERE [B loodProduc tGuid]='2d 064eaa-270 2-4638-9ee 1-4093d833 a963' | |
| 8404 | UPDATE [db o].[BloodP roduct] SE T [Product Name]='FRE SH FROZEN PLASMA|CPD A-1/XX/<=- 65C|Irradi ated|2nd c ontainer', [ProductS hortName]= 'FFP CPDA- 1 IRD 2C', [LastUpda teDate]='2 016-07-27 11:17:06.0 00', [Last UpdateUser ]=' RED A CTED ' WHERE [B loodProduc tGuid]='42 168024-9fa c-4109-84d e-40b78de2 aca6' | |
| 8405 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLT AFR ACD-A IRD LUKOPR 1CN A', [LastU pdateDate] ='2016-07- 27 11:17:0 6.000', [L astUpdateU ser]=' RED A CTED ' WHERE [B loodProduc tGuid]='4f 06ce08-cdc 1-4374-909 1-40d132cd 2d43' | |
| 8406 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='WB CPD I RD 2C', [L astUpdateD ate]='2016 -07-27 11: 17:06.000' , [LastUpd ateUser]=' RED A CTED ' WHERE [B loodProduc tGuid]='89 344d67-b2c c-4647-858 e-40d87aee 0c2c' | |
| 8407 | UPDATE [db o].[BloodP roduct] SE T [Product Name]='Fro zen POOLED PLATELETS |DMSO/XX/< =-80C|Open |ResLeu:<1 E6|Buffy c oat plts p rep|5 unit s|Riboflav in-treated ', [LastUp dateDate]= '2016-07-2 7 11:17:06 .000', [La stUpdateUs er]=' RED A CTED ' WHERE [B loodProduc tGuid]='58 564a7b-2ae d-4c6e-b07 b-40ee9a42 0e34' | |
| 8408 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='FFP AFR Thaw None LUKOPR 5C' , [LastUpd ateDate]=' 2016-07-27 11:17:06. 000', [Las tUpdateUse r]=' RED A CTED ' WHERE [B loodProduc tGuid]='1d 3ca635-902 7-4e86-835 4-40eeecb1 b01e' | |
| 8409 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLT AFR Thaw DMSO OPN PA 2C' , [LastUpd ateDate]=' 2016-07-27 11:17:06. 000', [Las tUpdateUse r]=' RED A CTED ' WHERE [B loodProduc tGuid]='73 d40617-28d d-48ab-82b d-40f836b2 6949' | |
| 8410 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC AFR CP2D MNFNI 1C', [Las tUpdateDat e]='2016-0 7-27 11:17 :06.000', [LastUpdat eUser]=' RED A CTED ' WHERE [B loodProduc tGuid]='12 ed4920-33f 5-436a-bce f-4103786f 2f93' | |
| 8411 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLT AFR NS PLS Red 3C', [Las tUpdateDat e]='2016-0 7-27 11:17 :06.000', [LastUpdat eUser]=' RED A CTED ' WHERE [B loodProduc tGuid]='5c dee97c-a8c d-49f3-956 d-41123189 48da' | |
| 8412 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLT AFR ACD-A LUKO PR 8C BacM tr', [Last UpdateDate ]='2016-07 -27 11:17: 06.000', [ LastUpdate User]=' RED A CTED ' WHERE [B loodProduc tGuid]='ab 57e1f3-71c 7-4b11-a08 5-41223576 f344' | |
| 8413 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLT AFR PAS-E IRD LUKOPR 3C' , [LastUpd ateDate]=' 2016-07-27 11:17:06. 000', [Las tUpdateUse r]=' RED A CTED ' WHERE [B loodProduc tGuid]='e4 368771-4ed 2-45c6-a70 a-412db169 15f9' | |
| 8414 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLT AFR ACD-A OPN LUKOPR 1C' , [LastUpd ateDate]=' 2016-07-27 11:17:06. 000', [Las tUpdateUse r]=' RED A CTED ' WHERE [B loodProduc tGuid]='e9 2873e9-065 3-4f66-ab6 5-413ccb9e b864' | |
| 8415 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLT AFR PAS-B IRD LUKOPR 4C BacMtr', [ LastUpdate Date]='201 6-07-27 11 :17:06.000 ', [LastUp dateUser]= ' RED A CTED ' WHERE [B loodProduc tGuid]='bf e834db-94d 8-41b3-bc3 2-413d1c2d fbf7' | |
| 8416 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLT AFR Wash None OPN IRD 4C ', [LastUp dateDate]= '2016-07-2 7 11:17:06 .000', [La stUpdateUs er]=' RED A CTED ' WHERE [B loodProduc tGuid]='4f bdaa0f-0a9 b-4c3a-931 0-414586e7 6ea2' | |
| 8417 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC AFR CPDA-1 IRD LUKOPR 1C ', [LastUp dateDate]= '2016-07-2 7 11:17:06 .000', [La stUpdateUs er]=' RED A CTED ' WHERE [B loodProduc tGuid]='68 7981c6-dd2 7-4b15-a39 2-414bcf71 47ca' | |
| 8418 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLT AFR NaCit LUKO PR 1CNA', [LastUpdat eDate]='20 16-07-27 1 1:17:06.00 0', [LastU pdateUser] =' RED A CTED ' WHERE [B loodProduc tGuid]='d8 e8b2dd-3f4 e-49db-bcf c-416152b9 9092' | |
| 8419 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLT AFR ACD-A OPN LUKOPR 4C' , [LastUpd ateDate]=' 2016-07-27 11:17:06. 000', [Las tUpdateUse r]=' RED A CTED ' WHERE [B loodProduc tGuid]='43 81a136-2e3 c-43bf-928 6-416643a2 669f' | |
| 8420 | UPDATE [db o].[BloodP roduct] SE T [Product Name]='Fro zen Aphere sis RED BL OOD CELLS| Gly40%/XX/ <=-65C|Ope n|2nd cont ainer', [P roductShor tName]='RB C AFR Froz Gly40% OP N 2C', [La stUpdateDa te]='2016- 07-27 11:1 7:06.000', [LastUpda teUser]=' RED A CTED ' WHERE [B loodProduc tGuid]='5a f0b66a-37b 5-4d49-854 f-41688e04 e9da' | |
| 8421 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLT AFR Thaw DMSO OPN LUKOPR PA 1CNA', [LastUpda teDate]='2 016-07-27 11:17:06.0 00', [Last UpdateUser ]=' RED A CTED ' WHERE [B loodProduc tGuid]='4c 6b62b9-74a a-41cf-805 0-417aacff 1f4a' | |
| 8422 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLT AFR ACD-A 3C R ibo', [Las tUpdateDat e]='2016-0 7-27 11:17 :06.000', [LastUpdat eUser]=' RED A CTED ' WHERE [B loodProduc tGuid]='86 d89593-cff a-48fe-b7e c-419685cd 92e4' | |
| 8423 | UPDATE [db o].[BloodP roduct] SE T [Product Name]='Aph eresis FRE SH FROZEN PLASMA|ACD -B/XX/<=-2 5C|Irradia ted|<200 m L', [LastU pdateDate] ='2016-07- 27 11:17:0 6.000', [L astUpdateU ser]=' RED A CTED ' WHERE [B loodProduc tGuid]='8e 4ccc9b-f6a 1-4499-834 6-41a491fb fda4' | |
| 8424 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='FFP AFR Thaw None LUKOPR 4C' , [LastUpd ateDate]=' 2016-07-27 11:17:06. 000', [Las tUpdateUse r]=' RED A CTED ' WHERE [B loodProduc tGuid]='52 c9e9b3-c7f f-4dae-880 6-41a9e72d 69d6' | |
| 8425 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC CPD> AS5 5C', [ LastUpdate Date]='201 6-07-27 11 :17:06.000 ', [LastUp dateUser]= ' RED A CTED ' WHERE [B loodProduc tGuid]='9d 0d3642-ae4 c-476d-a01 1-41ab9e8a a15e' | |
| 8426 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLT AFR ACD-B OPN LUKOPR 2C' , [LastUpd ateDate]=' 2016-07-27 11:17:06. 000', [Las tUpdateUse r]=' RED A CTED ' WHERE [B loodProduc tGuid]='29 fb9742-fad 6-4cfe-89f c-41b05fb2 9cc9' | |
| 8427 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC CP2D >AS3 LUKOP R 4C', [La stUpdateDa te]='2016- 07-27 11:1 7:06.000', [LastUpda teUser]=' RED A CTED ' WHERE [B loodProduc tGuid]='12 28deac-1d8 d-415a-807 1-41b475cf 85e0' | |
| 8428 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC AFR Froz None OPN 3C', [ LastUpdate Date]='201 6-07-27 11 :17:06.000 ', [LastUp dateUser]= ' RED A CTED ' WHERE [B loodProduc tGuid]='09 98ecbf-437 7-47b3-9d9 5-41f88c8c 9857' | |
| 8429 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC AFR CP2D MNFNI 2C', [Las tUpdateDat e]='2016-0 7-27 11:17 :06.000', [LastUpdat eUser]=' RED A CTED ' WHERE [B loodProduc tGuid]='a8 71981f-b8c e-493d-9ec 1-420519fe 76d6' | |
| 8430 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC CPD 2C', [Reti reDate]='2 015-04-07 00:00:00.0 00', [Last UpdateDate ]='2016-07 -27 11:17: 06.000', [ LastUpdate User]=' RED A CTED ' WHERE [B loodProduc tGuid]='33 887d84-87f 3-4544-b68 9-420c768b 3ac7' | |
| 8431 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='FFP Thaw CPD 2C', [LastUpdat eDate]='20 16-07-27 1 1:17:06.00 0', [LastU pdateUser] =' RED A CTED ' WHERE [B loodProduc tGuid]='a3 27fc59-3cc f-4d1e-b7e 4-42457b52 5c83' | |
| 8432 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC AFR Wash None OPN LUKOPR 4C', [Las tUpdateDat e]='2016-0 7-27 11:17 :06.000', [LastUpdat eUser]=' RED A CTED ' WHERE [B loodProduc tGuid]='29 f459f6-759 5-4a65-99d f-424ec368 c5bc' | |
| 8433 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLT AFR ACD-A 5C', [LastUpda teDate]='2 016-07-27 11:17:06.0 00', [Last UpdateUser ]=' RED A CTED ' WHERE [B loodProduc tGuid]='1b 0c76b0-1ec d-4028-891 b-4257f7d5 35ee' | |
| 8434 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='WB CP2D LUKOPR 2C' , [LastUpd ateDate]=' 2016-07-27 11:17:06. 000', [Las tUpdateUse r]=' RED A CTED ' WHERE [B loodProduc tGuid]='4f 07b2e7-a57 0-4a5b-a8a c-425e5686 cf0e' | |
| 8435 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC CP2D >AS3 IRD 3 C', [LastU pdateDate] ='2016-07- 27 11:17:0 6.000', [L astUpdateU ser]=' RED A CTED ' WHERE [B loodProduc tGuid]='56 001b6a-857 5-4f59-a04 6-42652668 db88' | |
| 8436 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='FFP None IRD QUAR 4C', [Last UpdateDate ]='2016-07 -27 11:17: 06.000', [ LastUpdate User]=' RED A CTED ' WHERE [B loodProduc tGuid]='98 b5f42b-f98 a-45d4-b18 3-427ea0b7 c12a' | |
| 8437 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC AFR ACD-A OPN SR/PA 2C', [LastUpda teDate]='2 016-07-27 11:17:06.0 00', [Last UpdateUser ]=' RED A CTED ' WHERE [B loodProduc tGuid]='76 8d2f2b-9ad a-466f-820 c-42b78c6d be9a' | |
| 8438 | UPDATE [db o].[BloodP roduct] SE T [Product Name]='Aph eresis FRE SH FROZEN PLASMA|ACD -A/XX/<=-3 0C|ResLeu: <1E6|>=200 mL<400mL|F rozen <=18 h|2nd cont ainer|Meth ylene blue -treated', [ProductS hortName]= 'FFP AFR A CD-A LUKOP R 2C Methy l Blue', [ LastUpdate Date]='201 6-07-27 11 :17:06.000 ', [LastUp dateUser]= ' RED A CTED ' WHERE [B loodProduc tGuid]='42 00bcd4-b42 3-407c-adc 2-42c10e00 ff73' | |
| 8439 | UPDATE [db o].[BloodP roduct] SE T [Product Name]='Aph eresis FRE SH FROZEN PLASMA|NS/ XX/<=-30C| >=400mL<60 0mL', [Las tUpdateDat e]='2016-0 7-27 11:17 :06.000', [LastUpdat eUser]=' RED A CTED ' WHERE [B loodProduc tGuid]='52 8f22f7-995 d-454e-ba6 0-42d84258 1278' | |
| 8440 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='FFP None QUAR 2C', [LastUpda teDate]='2 016-07-27 11:17:06.0 00', [Last UpdateUser ]=' RED A CTED ' WHERE [B loodProduc tGuid]='09 8f3ca1-ae7 c-44b6-bac d-430245cb 5a0d' | |
| 8441 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLT AFR ACD-A IRD LUKOPR 2C Pedi', [La stUpdateDa te]='2016- 07-27 11:1 7:06.000', [LastUpda teUser]=' RED A CTED ' WHERE [B loodProduc tGuid]='5b 3eb920-51f 7-452d-92b a-43242c9e b29d' | |
| 8442 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='FFP AFR None QUAR 8C', [Last UpdateDate ]='2016-07 -27 11:17: 06.000', [ LastUpdate User]=' RED A CTED ' WHERE [B loodProduc tGuid]='4e 588d2b-956 4-44a8-9ae a-4338600f 4040' | |
| 8443 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLT AFR ACD-B MNFI 2CNA', [L astUpdateD ate]='2016 -07-27 11: 17:06.000' , [LastUpd ateUser]=' RED A CTED ' WHERE [B loodProduc tGuid]='c8 c07f8b-f0b a-48ea-811 4-435f6cc8 198c' | |
| 8444 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLT AFR ACD-A LUKO PR 1C BacM tr', [Last UpdateDate ]='2016-07 -27 11:17: 06.000', [ LastUpdate User]=' RED A CTED ' WHERE [B loodProduc tGuid]='ef 2669d0-c75 0-41c2-b94 c-43752d01 5930' | |
| 8445 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLASMA A FR Thaw No ne 6C', [L astUpdateD ate]='2016 -07-27 11: 17:06.000' , [LastUpd ateUser]=' RED A CTED ' WHERE [B loodProduc tGuid]='50 b4a9d6-239 4-4a05-b4e f-438e6e81 88dc' | |
| 8446 | UPDATE [db o].[BloodP roduct] SE T [Product Name]='Fro zen RED BL OOD CELLS| None/450mL /<=-65C|Re sLeu:<5E6' , [LastUpd ateDate]=' 2016-07-27 11:17:06. 000', [Las tUpdateUse r]=' RED A CTED ' WHERE [B loodProduc tGuid]='6e 08530a-b0b 9-4a30-aed 0-438f19de a067' | |
| 8447 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLT AFR ACD-A LUKO PR 5C BacM tr', [Last UpdateDate ]='2016-07 -27 11:17: 06.000', [ LastUpdate User]=' RED A CTED ' WHERE [B loodProduc tGuid]='a5 595b64-424 b-486e-996 e-43959707 730e' | |
| 8448 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC AFR Deg None O PN IRD 6C' , [LastUpd ateDate]=' 2016-07-27 11:17:06. 000', [Las tUpdateUse r]=' RED A CTED ' WHERE [B loodProduc tGuid]='18 02bff1-fd0 c-4f86-897 d-4398ce12 2967' | |
| 8449 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC AFR CP2D>AS3 6 C', [LastU pdateDate] ='2016-07- 27 11:17:0 6.000', [L astUpdateU ser]=' RED A CTED ' WHERE [B loodProduc tGuid]='65 1b3d10-1c3 2-4e2a-80c 0-43b7b95a 4461' | |
| 8450 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='FFP AFR NaCit 4C Q UAR', [Las tUpdateDat e]='2016-0 7-27 11:17 :06.000', [LastUpdat eUser]=' RED A CTED ' WHERE [B loodProduc tGuid]='55 9657e3-155 e-4d50-91a a-43c4013a ea74' | |
| 8451 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLT AFR PAS-B IRD LUKOPR 3C BacTest', [LastUpdat eDate]='20 16-07-27 1 1:17:06.00 0', [LastU pdateUser] =' RED A CTED ' WHERE [B loodProduc tGuid]='91 305cd2-640 5-490a-a6a d-43c999a7 ad36' | |
| 8452 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLT AFR ACD-A IRD LUKOPR PLS Red 2CNA' , [LastUpd ateDate]=' 2016-07-27 11:17:06. 000', [Las tUpdateUse r]=' RED A CTED ' WHERE [B loodProduc tGuid]='af c5c91e-a2a c-4fb1-b22 e-43ccc9ba d9f2' | |
| 8453 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLT AFR NS LUKOPR 2C', [Last UpdateDate ]='2016-07 -27 11:17: 06.000', [ LastUpdate User]=' RED A CTED ' WHERE [B loodProduc tGuid]='00 d18738-e62 a-41e1-bc8 c-43ce6522 8d27' | |
| 8454 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC AFR CP2D>AS3 5 C', [LastU pdateDate] ='2016-07- 27 11:17:0 6.000', [L astUpdateU ser]=' RED A CTED ' WHERE [B loodProduc tGuid]='f4 24f0c2-91d 3-4824-a39 5-43f80e16 3ee0' | |
| 8455 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC Froz Rej Gly40 % OPN IRD 1C', [Last UpdateDate ]='2016-07 -27 11:17: 06.000', [ LastUpdate User]=' RED A CTED ' WHERE [B loodProduc tGuid]='7e 9e5810-bd1 8-4107-9ad 4-4407798c e144' | |
| 8456 | UPDATE [db o].[BloodP roduct] SE T [Product Name]='Aph eresis FRE SH FROZEN PLASMA|ACD -B/XX/<=-3 0C|Irradia ted', [Las tUpdateDat e]='2016-0 7-27 11:17 :06.000', [LastUpdat eUser]=' RED A CTED ' WHERE [B loodProduc tGuid]='dd 5ca20a-961 4-4627-9fc a-440f2111 701b' | |
| 8457 | UPDATE [db o].[BloodP roduct] SE T [Product Name]='Aph eresis FRE SH FROZEN PLASMA|ACD -A/XX/<=-2 5C|>=200mL <400mL|Qua r:>=90d/re tested', [ ProductSho rtName]='F FP AFR ACD -A QUAR', [LastUpdat eDate]='20 16-07-27 1 1:17:06.00 0', [LastU pdateUser] =' RED A CTED ' WHERE [B loodProduc tGuid]='03 3089c7-6c4 3-4c2f-832 8-440f8211 d553' | |
| 8458 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLT AFR ACD-A MNFN I 3C', [La stUpdateDa te]='2016- 07-27 11:1 7:06.000', [LastUpda teUser]=' RED A CTED ' WHERE [B loodProduc tGuid]='33 3db3e9-da5 c-4cf7-87d 9-4423cb02 5609' | |
| 8459 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC AFR ACD-A>AS1 LUKOPR 6C' , [LastUpd ateDate]=' 2016-07-27 11:17:06. 000', [Las tUpdateUse r]=' RED A CTED ' WHERE [B loodProduc tGuid]='19 dba38c-ca4 6-422e-831 e-4435d673 cef0' | |
| 8460 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC CP2D >AS3 IRD 6 C', [LastU pdateDate] ='2016-07- 27 11:17:0 6.000', [L astUpdateU ser]=' RED A CTED ' WHERE [B loodProduc tGuid]='8e 863898-826 1-458a-abb 0-446f2d0a 778e' | |
| 8461 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLT AFR NS IRD LUK OPR 2C', [ LastUpdate Date]='201 6-07-27 11 :17:06.000 ', [LastUp dateUser]= ' RED A CTED ' WHERE [B loodProduc tGuid]='0f 52a5c4-3f2 2-46c7-a69 1-44704de5 fe25' | |
| 8462 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLT AFR PAS-D LUKO PR 4C BacT est', [Las tUpdateDat e]='2016-0 7-27 11:17 :06.000', [LastUpdat eUser]=' RED A CTED ' WHERE [B loodProduc tGuid]='d3 8a0e08-3dc c-4754-85e 3-44a5b16e c011' | |
| 8463 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC AFR Deg None O PN LUKOPR 8C', [Last UpdateDate ]='2016-07 -27 11:17: 06.000', [ LastUpdate User]=' RED A CTED ' WHERE [B loodProduc tGuid]='4f d3ddea-423 c-4049-af9 2-44b68f43 7d1e' | |
| 8464 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLT AFR None OPN P LS Red/ALB Add 1C', [LastUpdat eDate]='20 16-07-27 1 1:17:06.00 0', [LastU pdateUser] =' RED A CTED ' WHERE [B loodProduc tGuid]='dc 455325-5e8 3-4a15-8a0 1-44be3650 2659' | |
| 8465 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC AFR Deg Rej No ne OPN 1C' , [LastUpd ateDate]=' 2016-07-27 11:17:06. 000', [Las tUpdateUse r]=' RED A CTED ' WHERE [B loodProduc tGuid]='cc 204cad-a8c e-452f-ae7 d-44be5a6b f308' | |
| 8466 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC Deg None OPN I RD LUKOPR 2C', [Last UpdateDate ]='2016-07 -27 11:17: 06.000', [ LastUpdate User]=' RED A CTED ' WHERE [B loodProduc tGuid]='8f 605215-6e5 3-4220-9be d-44ca12c8 786d' | |
| 8467 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='FFP AFR None LUKOP R 2C', [La stUpdateDa te]='2016- 07-27 11:1 7:06.000', [LastUpda teUser]=' RED A CTED ' WHERE [B loodProduc tGuid]='30 483d1d-ca1 4-4b1c-818 f-44e52cb6 8ca6' | |
| 8468 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC AFR CP2D>AS3 O PN IRD LUK OPR SR/PA 2C', [Last UpdateDate ]='2016-07 -27 11:17: 06.000', [ LastUpdate User]=' RED A CTED ' WHERE [B loodProduc tGuid]='8a 4b67ab-305 b-4c26-99f 3-44ebd545 4b7a' | |
| 8469 | UPDATE [db o].[BloodP roduct] SE T [Product Name]='Fro zen Aphere sis PLATEL ETS|DMSO/X X/<=-65C|O pen|2nd co ntainer:no t auto', [ ProductSho rtName]='P LT AFR Fro z DMSO OPN 2CNA', [L astUpdateD ate]='2016 -07-27 11: 17:06.000' , [LastUpd ateUser]=' RED A CTED ' WHERE [B loodProduc tGuid]='21 9dec6d-af3 a-4dee-900 5-44f83d8f 2c55' | |
| 8470 | UPDATE [db o].[BloodP roduct] SE T [Product Name]='Fro zen Rejuve nated RED BLOOD CELL S|None/250 mL/<=-65C| Not for tx or mnf|Op en', [Last UpdateDate ]='2016-07 -27 11:17: 06.000', [ LastUpdate User]=' RED A CTED ' WHERE [B loodProduc tGuid]='bd 7abfc5-b04 f-4ab8-bba d-4507291e fff0' | |
| 8471 | UPDATE [db o].[BloodP roduct] SE T [Product Name]='Fro zen RED BL OOD CELLS| None/450mL /<=-120C|O pen', [Las tUpdateDat e]='2016-0 7-27 11:17 :06.000', [LastUpdat eUser]=' RED A CTED ' WHERE [B loodProduc tGuid]='7c 7dbfe8-0bf 0-42de-80b 5-450a8011 9403' | |
| 8472 | UPDATE [db o].[BloodP roduct] SE T [Product Name]='Aph eresis FRE SH FROZEN PLASMA|ACD -B/XX/<=-6 5C|>=200mL <400mL|Qua r:>=6m/ret ested', [L astUpdateD ate]='2016 -07-27 11: 17:06.000' , [LastUpd ateUser]=' RED A CTED ' WHERE [B loodProduc tGuid]='0a ce6249-ffc 3-41d0-8d5 7-4516108a c63c' | |
| 8473 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLT AFR ACD-A>PAS- F OPN LUKO PR 1C', [L astUpdateD ate]='2016 -07-27 11: 17:06.000' , [LastUpd ateUser]=' RED A CTED ' WHERE [B loodProduc tGuid]='a3 b3ba02-f06 2-42f9-812 d-4533bb00 1b1d' | |
| 8474 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC Deg None IRD L UKOPR 5C', [LastUpda teDate]='2 016-07-27 11:17:06.0 00', [Last UpdateUser ]=' RED A CTED ' WHERE [B loodProduc tGuid]='ef 2c8a47-c2c 0-4afc-a72 7-4542219b ad7a' | |
| 8475 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLT AFR ACD-A OPN LUKOPR PLS Red 4C', [LastUpdat eDate]='20 16-07-27 1 1:17:06.00 0', [LastU pdateUser] =' RED A CTED ' WHERE [B loodProduc tGuid]='9e 8ba18f-2de 6-48c3-b40 f-4560b78e 18f8' | |
| 8476 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC CPD> AS5 LUKOPR 1C', [Las tUpdateDat e]='2016-0 7-27 11:17 :06.000', [LastUpdat eUser]=' RED A CTED ' WHERE [B loodProduc tGuid]='ea 82acca-d31 7-416f-963 0-4560dc2c 97b7' | |
| 8477 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC CPDA -1 IRD 4C' , [LastUpd ateDate]=' 2016-07-27 11:17:06. 000', [Las tUpdateUse r]=' RED A CTED ' WHERE [B loodProduc tGuid]='db ac4afa-4a2 c-4651-996 0-458be8fb d870' | |
| 8478 | UPDATE [db o].[BloodP roduct] SE T [Product Name]='Aph eresis FRE SH FROZEN PLASMA|ACD -B/XX/<=-3 0C|<200 mL ', [LastUp dateDate]= '2016-07-2 7 11:17:06 .000', [La stUpdateUs er]=' RED A CTED ' WHERE [B loodProduc tGuid]='22 577100-dd3 9-46b8-936 0-458eb3a5 a522' | |
| 8479 | UPDATE [db o].[BloodP roduct] SE T [Product Name]='FRE SH FROZEN PLASMA|CPD A-1/XX/<=- 65C|1st co ntainer', [ProductSh ortName]=' FFP CPDA-1 1C', [Las tUpdateDat e]='2016-0 7-27 11:17 :06.000', [LastUpdat eUser]=' RED A CTED ' WHERE [B loodProduc tGuid]='89 34fca7-d49 6-4a73-81a e-45a37bcf 4d0f' | |
| 8480 | UPDATE [db o].[BloodP roduct] SE T [Product Name]='FRE SH FROZEN PLASMA|CPD /450mL/<=- 25C|Open', [LastUpda teDate]='2 016-07-27 11:17:06.0 00', [Last UpdateUser ]=' RED A CTED ' WHERE [B loodProduc tGuid]='e8 6b5e27-60c 5-4510-aea 5-45a4e184 0374' | |
| 8481 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC AFR Froz None OPN LUKOPR 2C', [Las tUpdateDat e]='2016-0 7-27 11:17 :06.000', [LastUpdat eUser]=' RED A CTED ' WHERE [B loodProduc tGuid]='63 1fd0db-446 a-47bf-b79 8-45a5aa88 6861' | |
| 8482 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC AFR CP2D>AS3 I RD 3C', [L astUpdateD ate]='2016 -07-27 11: 17:06.000' , [LastUpd ateUser]=' RED A CTED ' WHERE [B loodProduc tGuid]='a9 b0df40-660 4-4a5d-b8b 1-45b6ac2f 13b2' | |
| 8483 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='FFP AFR Thaw ACD-A 2C QUAR', [LastUpda teDate]='2 016-07-27 11:17:06.0 00', [Last UpdateUser ]=' RED A CTED ' WHERE [B loodProduc tGuid]='22 a35c3b-8f9 c-4128-a62 a-45b9b1f0 f971' | |
| 8484 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC CP2D IRD LUKOP R 8C', [La stUpdateDa te]='2016- 07-27 11:1 7:06.000', [LastUpda teUser]=' RED A CTED ' WHERE [B loodProduc tGuid]='56 7aee49-b12 7-4e2e-a63 5-45c545c0 9daa' | |
| 8485 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC AFR Wash None OPN IRD LU KOPR 3C', [LastUpdat eDate]='20 16-07-27 1 1:17:06.00 0', [LastU pdateUser] =' RED A CTED ' WHERE [B loodProduc tGuid]='c6 b04034-83b b-441d-9f4 3-45d159ca d760' | |
| 8486 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC AFR CPDA-1 2C' , [LastUpd ateDate]=' 2016-07-27 11:17:06. 000', [Las tUpdateUse r]=' RED A CTED ' WHERE [B loodProduc tGuid]='1f 257943-f5e 8-414c-be7 e-45d68a4e f467' | |
| 8487 | UPDATE [db o].[BloodP roduct] SE T [Product Name]='Aph eresis FRE SH FROZEN PLASMA|CPD -50/XX/<=- 25C|Irradi ated|2nd c ontainer', [ProductS hortName]= 'FFP AFR C PD-50 IRD 2C', [Last UpdateDate ]='2016-07 -27 11:17: 06.000', [ LastUpdate User]=' RED A CTED ' WHERE [B loodProduc tGuid]='5a bdcbe8-6ed 9-4e3a-8e0 3-45da32b3 c209' | |
| 8488 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC AFR ACD-A IRD LUKOPR SR 2C', [Last UpdateDate ]='2016-07 -27 11:17: 06.000', [ LastUpdate User]=' RED A CTED ' WHERE [B loodProduc tGuid]='89 66b90b-896 c-4de5-904 8-45e318e0 f449' | |
| 8489 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLT AFR Thaw DMSO OPN LUKOPR 2CNA', [L astUpdateD ate]='2016 -07-27 11: 17:06.000' , [LastUpd ateUser]=' RED A CTED ' WHERE [B loodProduc tGuid]='5c 4300cd-4d9 5-4cff-9f9 2-45e8a8e1 8193' | |
| 8490 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLASMA A FR Thaw Na Cit IRD 6C ', [LastUp dateDate]= '2016-07-2 7 11:17:06 .000', [La stUpdateUs er]=' RED A CTED ' WHERE [B loodProduc tGuid]='d7 0a26dc-9ba b-4eaa-9ce 3-45e91874 f6e8' | |
| 8491 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC Deg Rej None O PN LUKOPR 1C', [Last UpdateDate ]='2016-07 -27 11:17: 06.000', [ LastUpdate User]=' RED A CTED ' WHERE [B loodProduc tGuid]='44 47bb8d-cd4 d-496e-951 7-45eafa05 7b81' | |
| 8492 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC AFR ACD-A>AS3 OPN IRD LU KOPR PA 1C ', [LastUp dateDate]= '2016-07-2 7 11:17:06 .000', [La stUpdateUs er]=' RED A CTED ' WHERE [B loodProduc tGuid]='e9 3dc7e6-889 3-4c0d-bcc e-45ebaa4a 39b8' | |
| 8493 | UPDATE [db o].[BloodP roduct] SE T [Product Name]='Aph eresis FRE SH FROZEN PLASMA|ACD -B/XX/<=-2 5C|Irradia ted', [Las tUpdateDat e]='2016-0 7-27 11:17 :06.000', [LastUpdat eUser]=' RED A CTED ' WHERE [B loodProduc tGuid]='ef 1faa87-bcb d-48ba-aef 9-460a7457 f577' | |
| 8494 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLT AFR ACD-A MNFN I 4C', [La stUpdateDa te]='2016- 07-27 11:1 7:06.000', [LastUpda teUser]=' RED A CTED ' WHERE [B loodProduc tGuid]='9a 0db2dd-7db 3-4e7c-a54 0-46159ebe e986' | |
| 8495 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLT AFR Wash None OPN IRD LU KOPR 3C', [LastUpdat eDate]='20 16-07-27 1 1:17:06.00 0', [LastU pdateUser] =' RED A CTED ' WHERE [B loodProduc tGuid]='59 5449af-1ed a-4a4e-baa c-46227589 5e57' | |
| 8496 | UPDATE [db o].[BloodP roduct] SE T [Product Name]='Aph eresis FRE SH FROZEN PLASMA|NaC itrate/XX/ <=-65C|Aph r not auto mated|Quar :>=6m/rete sted', [La stUpdateDa te]='2016- 07-27 11:1 7:06.000', [LastUpda teUser]=' RED A CTED ' WHERE [B loodProduc tGuid]='44 bdba38-7c5 f-4149-a74 d-462b6a17 ce2c' | |
| 8497 | UPDATE [db o].[BloodP roduct] SE T [Product Name]='Fro zen RED BL OOD CELLS| None/450mL /<=-65C', [LastUpdat eDate]='20 16-07-27 1 1:17:06.00 0', [LastU pdateUser] =' RED A CTED ' WHERE [B loodProduc tGuid]='aa cc0032-49e 7-4f2c-814 9-463ad13d b0ff' | |
| 8498 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLT AFR ACD-A LUKO PR 2C BacM tr', [Last UpdateDate ]='2016-07 -27 11:17: 06.000', [ LastUpdate User]=' RED A CTED ' WHERE [B loodProduc tGuid]='0a e25063-4df 1-4090-8c0 9-46a82e5c c3b8' | |
| 8499 | UPDATE [db o].[BloodP roduct] SE T [Product Name]='FRE SH FROZEN PLASMA|CPD A-1/XX/<=- 65C|2nd co ntainer', [ProductSh ortName]=' FFP CPDA-1 2C', [Las tUpdateDat e]='2016-0 7-27 11:17 :06.000', [LastUpdat eUser]=' RED A CTED ' WHERE [B loodProduc tGuid]='eb 8933a3-320 3-4f7c-927 f-46b0d615 5744' | |
| 8500 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='WB CP2D 8C', [Last UpdateDate ]='2016-07 -27 11:17: 06.000', [ LastUpdate User]=' RED A CTED ' WHERE [B loodProduc tGuid]='4a 497c6c-7b8 a-4870-9ae c-46c21c9d c8f5' | |
| 8501 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLT AFR ACD-A MNFI 3C', [Las tUpdateDat e]='2016-0 7-27 11:17 :06.000', [LastUpdat eUser]=' RED A CTED ' WHERE [B loodProduc tGuid]='a3 6672e0-c88 9-4bd8-bb5 5-46c83403 dfb7' | |
| 8502 | UPDATE [db o].[BloodP roduct] SE T [Product Name]='Aph eresis FRE SH FROZEN PLASMA|ACD -A/XX/<=-2 5C|For mnf :injectabl e|Frozen < =6h', [Las tUpdateDat e]='2016-0 7-27 11:17 :06.000', [LastUpdat eUser]=' RED A CTED ' WHERE [B loodProduc tGuid]='8d 3fdf65-dc0 5-40cd-b18 1-46d206ca 23b0' | |
| 8503 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLT AFR Wash None LUKOPR 2C' , [LastUpd ateDate]=' 2016-07-27 11:17:06. 000', [Las tUpdateUse r]=' RED A CTED ' WHERE [B loodProduc tGuid]='95 80c60d-07a 3-450b-9b7 2-46d8131a 8e01' | |
| 8504 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLT AFR ACD-B LUKO PR 1CNA', [LastUpdat eDate]='20 16-07-27 1 1:17:06.00 0', [LastU pdateUser] =' RED A CTED ' WHERE [B loodProduc tGuid]='4c cd9696-459 f-4da9-820 4-470c36f0 3baa' | |
| 8505 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLASMA A FR Thaw Na Cit 1C', [ LastUpdate Date]='201 6-07-27 11 :17:06.000 ', [LastUp dateUser]= ' RED A CTED ' WHERE [B loodProduc tGuid]='4b 4f840a-783 a-448f-ab7 d-47186893 3f69' | |
| 8506 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC AFR Deg None O PN IRD LUK OPR 8C', [ LastUpdate Date]='201 6-07-27 11 :17:06.000 ', [LastUp dateUser]= ' RED A CTED ' WHERE [B loodProduc tGuid]='01 bab951-a1a 7-4e24-bec 5-472f20c2 b658' | |
| 8507 | UPDATE [db o].[BloodP roduct] SE T [Product Name]='Aph eresis FRE SH FROZEN PLASMA|ACD -A/XX/<=-6 5C|Irradia ted|4th co ntainer', [ProductSh ortName]=' FFP AFR AC D-A IRD 4C ', [LastUp dateDate]= '2016-07-2 7 11:17:06 .000', [La stUpdateUs er]=' RED A CTED ' WHERE [B loodProduc tGuid]='01 3a3968-1f4 1-44fc-aeb f-4741620a 1800' | |
| 8508 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC AFR ACD-A>AS1 OPN LUKOPR SAL Add 1 C', [LastU pdateDate] ='2016-07- 27 11:17:0 6.000', [L astUpdateU ser]=' RED A CTED ' WHERE [B loodProduc tGuid]='73 169bcd-c23 4-45bc-887 6-474b016c ddc8' | |
| 8509 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='WB CPDA- 1 IRD LUKO PR 4C', [L astUpdateD ate]='2016 -07-27 11: 17:06.000' , [LastUpd ateUser]=' RED A CTED ' WHERE [B loodProduc tGuid]='cc 7f6ff7-850 3-4d15-974 8-474cc2ea 7917' | |
| 8510 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC AFR CPDA-1 LUK OPR 4C', [ LastUpdate Date]='201 6-07-27 11 :17:06.000 ', [LastUp dateUser]= ' RED A CTED ' WHERE [B loodProduc tGuid]='6b 0c9c2e-7e6 4-46d0-a92 6-4762a459 d9ac' | |
| 8511 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC Deg Rej None O PN IRD 4C' , [LastUpd ateDate]=' 2016-07-27 11:17:06. 000', [Las tUpdateUse r]=' RED A CTED ' WHERE [B loodProduc tGuid]='45 1f2e23-c5d 1-4d56-819 9-476c7d50 2442' | |
| 8512 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC AFR ACD-A>AS1 IRD LUKOPR 1C', [Las tUpdateDat e]='2016-0 7-27 11:17 :06.000', [LastUpdat eUser]=' RED A CTED ' WHERE [B loodProduc tGuid]='30 fec2ef-298 c-426c-b08 6-47a47d7f 9d74' | |
| 8513 | UPDATE [db o].[BloodP roduct] SE T [Product Name]='FRE SH FROZEN PLASMA|NS/ XX/<=-30C| For mnf:in jectable|R esLeu:<1E6 ', [LastUp dateDate]= '2016-07-2 7 11:17:06 .000', [La stUpdateUs er]=' RED A CTED ' WHERE [B loodProduc tGuid]='9e 06aa26-279 d-47df-9c8 8-47a596b3 e6ef' | |
| 8514 | UPDATE [db o].[BloodP roduct] SE T [Product Name]='FRE SH FROZEN PLASMA|CPD /450mL/<=- 30C|Frozen <=24h', [ LastUpdate Date]='201 6-07-27 11 :17:06.000 ', [LastUp dateUser]= ' RED A CTED ' WHERE [B loodProduc tGuid]='a5 a4772e-f58 5-4d15-96e 0-47b6dea5 9eee' | |
| 8515 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLT AFR ACD-A OPN IRD LUKOPR 2CNA', [L astUpdateD ate]='2016 -07-27 11: 17:06.000' , [LastUpd ateUser]=' RED A CTED ' WHERE [B loodProduc tGuid]='d4 dad94c-003 e-431d-940 8-47f6d8d5 52d7' | |
| 8516 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLT AFR ACD-A IRD 2C', [Last UpdateDate ]='2016-07 -27 11:17: 06.000', [ LastUpdate User]=' RED A CTED ' WHERE [B loodProduc tGuid]='56 c77213-da6 2-4beb-b14 9-47f985df 6978' | |
| 8517 | UPDATE [db o].[BloodP roduct] SE T [Product Name]='Aph eresis FRE SH FROZEN PLASMA|ACD -B/XX/<=-2 5C|<200 mL ', [LastUp dateDate]= '2016-07-2 7 11:17:06 .000', [La stUpdateUs er]=' RED A CTED ' WHERE [B loodProduc tGuid]='98 23b601-4b2 1-45d1-977 8-480252d6 4a6f' | |
| 8518 | UPDATE [db o].[BloodP roduct] SE T [Product Name]='FRE SH FROZEN PLASMA|CPD /450mL/<=- 25C|ResLeu :<1E6|Froz en <=6h', [LastUpdat eDate]='20 16-07-27 1 1:17:06.00 0', [LastU pdateUser] =' RED A CTED ' WHERE [B loodProduc tGuid]='71 b18a30-8dc c-4a39-801 2-48116c92 853a' | |
| 8519 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLT AFR ACD-A LUKO PR 7C BacM tr', [Last UpdateDate ]='2016-07 -27 11:17: 06.000', [ LastUpdate User]=' RED A CTED ' WHERE [B loodProduc tGuid]='01 23cfab-7ef 7-4729-a82 9-4849b3ee f536' | |
| 8520 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='FFP AFR NaCit IRD 3C QUAR', [LastUpdat eDate]='20 16-07-27 1 1:17:06.00 0', [LastU pdateUser] =' RED A CTED ' WHERE [B loodProduc tGuid]='34 33f54a-ed9 0-4839-b34 8-48738d52 3ddf' | |
| 8521 | UPDATE [db o].[BloodP roduct] SE T [Product Name]='Fro zen Rejuve nated RED BLOOD CELL S|None/450 mL/<=-65C| Open|Irrad iated', [L astUpdateD ate]='2016 -07-27 11: 17:06.000' , [LastUpd ateUser]=' RED A CTED ' WHERE [B loodProduc tGuid]='3e 1c6dd8-496 3-4a56-af4 8-488c9c19 634e' | |
| 8522 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLT AFR ACD-A IRD 6C', [Last UpdateDate ]='2016-07 -27 11:17: 06.000', [ LastUpdate User]=' RED A CTED ' WHERE [B loodProduc tGuid]='35 b1bfb0-cce 1-4bd4-9ea 0-48984d22 51d6' | |
| 8523 | UPDATE [db o].[BloodP roduct] SE T [Product Name]='FRE SH FROZEN PLASMA|CPD /450mL/<=- 30C|For mn f:injectab le|Frozen <=24h', [L astUpdateD ate]='2016 -07-27 11: 17:06.000' , [LastUpd ateUser]=' RED A CTED ' WHERE [B loodProduc tGuid]='3c 6cc9d2-6b1 1-4bd9-8da e-48a6a06c 309b' | |
| 8524 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLT AFR ACD-A 3C', [LastUpda teDate]='2 016-07-27 11:17:06.0 00', [Last UpdateUser ]=' RED A CTED ' WHERE [B loodProduc tGuid]='ec 0bba6b-ffb 2-4dcb-8bc 0-48c77b22 b9f0' | |
| 8525 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='FFP Thaw None 1C', [LastUpda teDate]='2 016-07-27 11:17:06.0 00', [Last UpdateUser ]=' RED A CTED ' WHERE [B loodProduc tGuid]='72 63993c-12c 0-4897-978 5-48cd370a 0afb' | |
| 8526 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLT AFR Wash None OPN IRD LU KOPR 3C', [LastUpdat eDate]='20 16-07-27 1 1:17:06.00 0', [LastU pdateUser] =' RED A CTED ' WHERE [B loodProduc tGuid]='3b bbb83e-c61 5-4d4f-aa7 f-48deffb1 7ea2' | |
| 8527 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='WB CPDA- 1 IRD LUKO PR 5C', [L astUpdateD ate]='2016 -07-27 11: 17:06.000' , [LastUpd ateUser]=' RED A CTED ' WHERE [B loodProduc tGuid]='38 b05d78-f31 4-4069-ac5 0-48e03de1 49eb' | |
| 8528 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='FFP Thaw CPD 1C', [LastUpdat eDate]='20 16-07-27 1 1:17:06.00 0', [LastU pdateUser] =' RED A CTED ' WHERE [B loodProduc tGuid]='b0 5793ce-513 0-43e2-a7d 0-48e8b106 0473' | |
| 8529 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLT AFR ACD-A IRD LUKOPR 3C' , [LastUpd ateDate]=' 2016-07-27 11:17:06. 000', [Las tUpdateUse r]=' RED A CTED ' WHERE [B loodProduc tGuid]='9f 8bf5f2-fab b-4763-afd f-48f4354e f79b' | |
| 8530 | UPDATE [db o].[BloodP roduct] SE T [Product Name]='Aph eresis FRE SH FROZEN PLASMA|NaC itrate/XX/ <=-65C|Irr adiated|>= 200mL<400m L', [LastU pdateDate] ='2016-07- 27 11:17:0 6.000', [L astUpdateU ser]=' RED A CTED ' WHERE [B loodProduc tGuid]='d4 2eeb5c-429 b-47af-bc4 a-49184db1 ec0c' | |
| 8531 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLT AFR ACD-A MNFI 1C', [Las tUpdateDat e]='2016-0 7-27 11:17 :06.000', [LastUpdat eUser]=' RED A CTED ' WHERE [B loodProduc tGuid]='50 a9b49c-696 b-42f0-a93 d-4934f3f3 d0a4' | |
| 8532 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC CPD LUKOPR 7C' , [RetireD ate]='2015 -04-07 00: 00:00.000' , [LastUpd ateDate]=' 2016-07-27 11:17:06. 000', [Las tUpdateUse r]=' RED A CTED ' WHERE [B loodProduc tGuid]='96 cd6307-170 d-4615-a73 d-493b72e6 40c8' | |
| 8533 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='FFP AFR NaCit 5C Q UAR', [Las tUpdateDat e]='2016-0 7-27 11:17 :06.000', [LastUpdat eUser]=' RED A CTED ' WHERE [B loodProduc tGuid]='75 f9e739-a71 6-4237-99f 2-4957c67e e3d2' | |
| 8534 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC AFR ACD-A>AS3 IRD LUKOPR 7C', [Las tUpdateDat e]='2016-0 7-27 11:17 :06.000', [LastUpdat eUser]=' RED A CTED ' WHERE [B loodProduc tGuid]='c6 469d4c-1bb 5-42b2-86e f-4959cb7b 3055' | |
| 8535 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC Deg Rej None O PN IRD 8C' , [LastUpd ateDate]=' 2016-07-27 11:17:06. 000', [Las tUpdateUse r]=' RED A CTED ' WHERE [B loodProduc tGuid]='bb d3c27a-a9d d-45a1-916 f-495d6459 04d8' | |
| 8536 | UPDATE [db o].[BloodP roduct] SE T [RetireD ate]='2015 -03-06 00: 00:00.000' , [LastUpd ateDate]=' 2016-07-27 11:17:06. 000', [Las tUpdateUse r]=' RED A CTED ' WHERE [B loodProduc tGuid]='3c 1e0a5f-67e 5-412f-8a8 b-49764212 76b4' | |
| 8537 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='WB CP2D LUKOPR 8C' , [LastUpd ateDate]=' 2016-07-27 11:17:06. 000', [Las tUpdateUse r]=' RED A CTED ' WHERE [B loodProduc tGuid]='60 0b8bca-e53 e-440d-94a c-497b90c9 80f6' | |
| 8538 | UPDATE [db o].[BloodP roduct] SE T [Product Name]='Aph eresis FRE SH FROZEN PLASMA|ACD -A/XX/<=-2 5C|Irradia ted|Frozen <=6h', [L astUpdateD ate]='2016 -07-27 11: 17:06.000' , [LastUpd ateUser]=' RED A CTED ' WHERE [B loodProduc tGuid]='3f b2121b-7d1 9-484e-952 1-49b50bf0 739a' | |
| 8539 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLT AFR Wash None OPN IRD LU KOPR 2C', [LastUpdat eDate]='20 16-07-27 1 1:17:06.00 0', [LastU pdateUser] =' RED A CTED ' WHERE [B loodProduc tGuid]='dc f58410-822 a-4be6-bd8 c-49b5dc1a d9bf' | |
| 8540 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLT AFR ACD-A LUKO PR 3C BacM tr', [Last UpdateDate ]='2016-07 -27 11:17: 06.000', [ LastUpdate User]=' RED A CTED ' WHERE [B loodProduc tGuid]='26 42c0eb-36e 4-41f8-955 b-49d28242 f718' | |
| 8541 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLASMA A FR Thaw CP 2D IRD 2C' , [LastUpd ateDate]=' 2016-07-27 11:17:06. 000', [Las tUpdateUse r]=' RED A CTED ' WHERE [B loodProduc tGuid]='0d 8981a9-089 3-4983-8c9 b-49dc91fb e3f9' | |
| 8542 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC AFR ACD-A LUKO PR SR 2C', [LastUpda teDate]='2 016-07-27 11:17:06.0 00', [Last UpdateUser ]=' RED A CTED ' WHERE [B loodProduc tGuid]='2c 709e7e-eef 8-4bc3-a5a 4-49e05243 494d' | |
| 8543 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC AFR Wash None LUKOPR SR/ SD-PA 2C', [LastUpda teDate]='2 016-07-27 11:17:06.0 00', [Last UpdateUser ]=' RED A CTED ' WHERE [B loodProduc tGuid]='69 92f23f-15a a-47ad-82a 2-49e5c550 644b' | |
| 8544 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC AFR Deg None O PN 2C', [L astUpdateD ate]='2016 -07-27 11: 17:06.000' , [LastUpd ateUser]=' RED A CTED ' WHERE [B loodProduc tGuid]='2a 2d3b25-c84 a-41a6-8cb 8-49fc3173 25a9' | |
| 8545 | UPDATE [db o].[BloodP roduct] SE T [Product Name]='FRE SH FROZEN PLASMA|CPD A-1/450mL/ <=-30C', [ LastUpdate Date]='201 6-07-27 11 :17:06.000 ', [LastUp dateUser]= ' RED A CTED ' WHERE [B loodProduc tGuid]='f5 cbf8d3-45a e-42c1-b0f 8-4a2e4b8e d7d3' | |
| 8546 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='WB CPD L UKOPR 4C', [LastUpda teDate]='2 016-07-27 11:17:06.0 00', [Last UpdateUser ]=' RED A CTED ' WHERE [B loodProduc tGuid]='07 c10503-31d a-4494-9e3 7-4a3c9e74 d0c1' | |
| 8547 | UPDATE [db o].[BloodP roduct] SE T [Product Name]='Aph eresis FRE SH FROZEN PLASMA|NaC itrate/XX/ <=-65C|Not for tx or mnf|Fin C on:NS|Aphr not autom ated', [La stUpdateDa te]='2016- 07-27 11:1 7:06.000', [LastUpda teUser]=' RED A CTED ' WHERE [B loodProduc tGuid]='0d 5155b0-16b 4-42c7-b5f 8-4a441caf 85a7' | |
| 8548 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC AFR CP2D>AS3 I RD 8C', [L astUpdateD ate]='2016 -07-27 11: 17:06.000' , [LastUpd ateUser]=' RED A CTED ' WHERE [B loodProduc tGuid]='4b b9cbe1-9ed 6-4663-839 e-4a48868b 11dd' | |
| 8549 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLT AFR ACD-A OPN IRD LUKOPR PLS Red 2 CNA', [Las tUpdateDat e]='2016-0 7-27 11:17 :06.000', [LastUpdat eUser]=' RED A CTED ' WHERE [B loodProduc tGuid]='04 40d659-505 7-450b-b71 0-4a8101dc 8744' | |
| 8550 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLT AFR ACD-A IRD 1C', [Last UpdateDate ]='2016-07 -27 11:17: 06.000', [ LastUpdate User]=' RED A CTED ' WHERE [B loodProduc tGuid]='48 00f16d-cdd 9-449b-991 b-4a814b2a b80a' | |
| 8551 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLT AFR Thaw DMSO IRD LUKOPR 2C', [Las tUpdateDat e]='2016-0 7-27 11:17 :06.000', [LastUpdat eUser]=' RED A CTED ' WHERE [B loodProduc tGuid]='a7 c7f030-1f7 0-4c2e-9f2 8-4a83e43d ce72' | |
| 8552 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLASMA A FR Thaw CP 2D 2C', [L astUpdateD ate]='2016 -07-27 11: 17:06.000' , [LastUpd ateUser]=' RED A CTED ' WHERE [B loodProduc tGuid]='1b 51d733-3dc c-40b4-9f9 5-4a9490d3 900d' | |
| 8553 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLT AFR ACD-A OPN 1C', [Last UpdateDate ]='2016-07 -27 11:17: 06.000', [ LastUpdate User]=' RED A CTED ' WHERE [B loodProduc tGuid]='e8 f620c8-d34 2-4ce1-99c 4-4a99521e 3c8e' | |
| 8554 | UPDATE [db o].[BloodP roduct] SE T [Product Name]='Aph eresis FRE SH FROZEN PLASMA|ACD -A/XX/<=-2 5C|Frozen <=6h', [La stUpdateDa te]='2016- 07-27 11:1 7:06.000', [LastUpda teUser]=' RED A CTED ' WHERE [B loodProduc tGuid]='a4 0de53f-aa7 1-4beb-ae4 c-4a9b8cf9 3e66' | |
| 8555 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLASMA A FR Thaw AC D-A 2C', [ LastUpdate Date]='201 6-07-27 11 :17:06.000 ', [LastUp dateUser]= ' RED A CTED ' WHERE [B loodProduc tGuid]='95 553ca8-199 b-4ec4-be5 5-4aa041c1 c37f' | |
| 8556 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC AFR ACD-A OPN SR/PA 1C', [LastUpda teDate]='2 016-07-27 11:17:06.0 00', [Last UpdateUser ]=' RED A CTED ' WHERE [B loodProduc tGuid]='dd 5e1fa1-fac 5-4758-8a8 a-4ac64be1 0b00' | |
| 8557 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLT AFR ACD-A OPN 1CNA', [La stUpdateDa te]='2016- 07-27 11:1 7:06.000', [LastUpda teUser]=' RED A CTED ' WHERE [B loodProduc tGuid]='27 6296ba-5ee 0-47b2-bb1 1-4acb49d7 886d' | |
| 8558 | UPDATE [db o].[BloodP roduct] SE T [Product Name]='Aph eresis FRE SH FROZEN PLASMA|ACD -B/XX/<=-3 0C|Irradia ted|Aphr n ot automat ed|Quar:>= 6m/reteste d', [LastU pdateDate] ='2016-07- 27 11:17:0 6.000', [L astUpdateU ser]=' RED A CTED ' WHERE [B loodProduc tGuid]='25 003ee1-c78 0-4ae7-aeb 7-4ae65f8a 90c0' | |
| 8559 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC AFR Wash None LUKOPR 2C' , [LastUpd ateDate]=' 2016-07-27 11:17:06. 000', [Las tUpdateUse r]=' RED A CTED ' WHERE [B loodProduc tGuid]='20 0ee710-5f9 f-4518-820 5-4af242bf 7942' | |
| 8560 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC AFR Wash None IRD LUKOPR SR/Q-PA 1 C', [LastU pdateDate] ='2016-07- 27 11:17:0 6.000', [L astUpdateU ser]=' RED A CTED ' WHERE [B loodProduc tGuid]='09 939d2d-a00 1-4a28-bd8 9-4b10fae6 9c5e' | |
| 8561 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='FFP AFR Thaw ACD-A IRD 5C QU AR', [Last UpdateDate ]='2016-07 -27 11:17: 06.000', [ LastUpdate User]=' RED A CTED ' WHERE [B loodProduc tGuid]='09 de9a0b-15c 9-4d07-938 2-4b1c111a 1899' | |
| 8562 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='WB CPDA- 1 IRD 7C', [LastUpda teDate]='2 016-07-27 11:17:06.0 00', [Last UpdateUser ]=' RED A CTED ' WHERE [B loodProduc tGuid]='29 ff6223-b9c e-4ab9-87a d-4b474330 49e7' | |
| 8563 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLT AFR Wash NS IR D LUKOPR S UPRed 1C', [LastUpda teDate]='2 016-07-27 11:17:06.0 00', [Last UpdateUser ]=' RED A CTED ' WHERE [B loodProduc tGuid]='ba c81905-64d 6-451a-9d6 7-4b4be852 ae16' | |
| 8564 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLT AFR ACD-A IRD LUKOPR 2C BacMtr', [ LastUpdate Date]='201 6-07-27 11 :17:06.000 ', [LastUp dateUser]= ' RED A CTED ' WHERE [B loodProduc tGuid]='90 3dab46-afb 5-451f-8b7 d-4b560f46 8964' | |
| 8565 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC AFR CPDA-1 OPN IRD LUKOP R 2C', [La stUpdateDa te]='2016- 07-27 11:1 7:06.000', [LastUpda teUser]=' RED A CTED ' WHERE [B loodProduc tGuid]='9a 0ecd80-44a 5-4963-897 2-4b58763f 0271' | |
| 8566 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC AFR Deg None O PN 3C', [L astUpdateD ate]='2016 -07-27 11: 17:06.000' , [LastUpd ateUser]=' RED A CTED ' WHERE [B loodProduc tGuid]='44 14a97e-9cd e-47b3-894 3-4b868fdb 66cb' | |
| 8567 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLT AFR ACD-A LUKO PR 1C Ribo ', [LastUp dateDate]= '2016-07-2 7 11:17:06 .000', [La stUpdateUs er]=' RED A CTED ' WHERE [B loodProduc tGuid]='8b 1b26dc-d9d a-4aaa-a1a b-4b8ab9d3 5045' | |
| 8568 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC CP2D >AS3 4C', [LastUpdat eDate]='20 16-07-27 1 1:17:06.00 0', [LastU pdateUser] =' RED A CTED ' WHERE [B loodProduc tGuid]='91 03e352-36d 2-4caa-b7f 1-4b929cbe c640' | |
| 8569 | UPDATE [db o].[BloodP roduct] SE T [Product Name]='Aph eresis FRE SH FROZEN PLASMA|NaC itrate/XX/ <=-65C|Irr adiated|Fi n Con:NS|A phr not au tomated|Qu ar:>=6m/re tested', [ LastUpdate Date]='201 6-07-27 11 :17:06.000 ', [LastUp dateUser]= ' RED A CTED ' WHERE [B loodProduc tGuid]='f0 6ffee9-63a d-49dd-822 7-4b947065 ac8a' | |
| 8570 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='FFP AFR Thaw 0.5 C PD LUKOPR 1C', [Last UpdateDate ]='2016-07 -27 11:17: 06.000', [ LastUpdate User]=' RED A CTED ' WHERE [B loodProduc tGuid]='71 71257f-73e 3-4ba0-be2 4-4ba8326f 743e' | |
| 8571 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLT AFR PAS-E IRD LUKOPR 2C BacMtr', [ LastUpdate Date]='201 6-07-27 11 :17:06.000 ', [LastUp dateUser]= ' RED A CTED ' WHERE [B loodProduc tGuid]='ce 2c9418-a1f b-4143-92d 3-4bab4e3d c053' | |
| 8572 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLT AFR ACD-B LUKO PR PLS Red 1CNA', [L astUpdateD ate]='2016 -07-27 11: 17:06.000' , [LastUpd ateUser]=' RED A CTED ' WHERE [B loodProduc tGuid]='d2 ab03e9-938 2-46e4-95e 2-4bc7fff6 de1c' | |
| 8573 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLT AFR PAS-C LUKO PR 4C Psor aln', [Las tUpdateDat e]='2016-0 7-27 11:17 :06.000', [LastUpdat eUser]=' RED A CTED ' WHERE [B loodProduc tGuid]='08 eec6e3-19d 2-4593-a5d 9-4bcc090c 7c23' | |
| 8574 | UPDATE [db o].[BloodP roduct] SE T [Product Name]='Fro zen Aphere sis PLATEL ETS|DMSO/X X/<=-65C|N ot for tx or mnf|Ope n|1st cont ainer', [P roductShor tName]='PL T AFR Froz DMSO NMT OPN 1C', [ LastUpdate Date]='201 6-07-27 11 :17:06.000 ', [LastUp dateUser]= ' RED A CTED ' WHERE [B loodProduc tGuid]='52 525e96-50b c-43c8-a85 9-4bd369f3 f539' | |
| 8575 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='FFP Thaw None IRD 2C', [Last UpdateDate ]='2016-07 -27 11:17: 06.000', [ LastUpdate User]=' RED A CTED ' WHERE [B loodProduc tGuid]='3b 4e319a-a42 5-4bae-aac 4-4be11b90 bfe5' | |
| 8576 | UPDATE [db o].[BloodP roduct] SE T [Product Name]='Fro zen RED BL OOD CELLS| Gly35%/450 mL/<=-65C| Open', [La stUpdateDa te]='2016- 07-27 11:1 7:06.000', [LastUpda teUser]=' RED A CTED ' WHERE [B loodProduc tGuid]='37 f4fc8c-e8e c-423c-afe d-4be1bf21 baa9' | |
| 8577 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC AFR Wash None OPN IRD LU KOPR 2C', [LastUpdat eDate]='20 16-07-27 1 1:17:06.00 0', [LastU pdateUser] =' RED A CTED ' WHERE [B loodProduc tGuid]='7f 654bdb-86a e-4095-a27 1-4be24a24 717e' | |
| 8578 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC Deg None LUKOP R 1C', [La stUpdateDa te]='2016- 07-27 11:1 7:06.000', [LastUpda teUser]=' RED A CTED ' WHERE [B loodProduc tGuid]='80 46f1b2-a63 f-498a-8d8 e-4be26614 88f1' | |
| 8579 | UPDATE [db o].[BloodP roduct] SE T [Product Name]='Aph eresis FRE SH FROZEN PLASMA|ACD -B/XX/<=-3 0C|Not for tx or mnf |Aphr not automated' , [LastUpd ateDate]=' 2016-07-27 11:17:06. 000', [Las tUpdateUse r]=' RED A CTED ' WHERE [B loodProduc tGuid]='c3 c495cf-39a d-46d7-a9d e-4bf33d8a c657' | |
| 8580 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLT AFR Wash None OPN LUKOPR 3C', [Las tUpdateDat e]='2016-0 7-27 11:17 :06.000', [LastUpdat eUser]=' RED A CTED ' WHERE [B loodProduc tGuid]='b9 d7f364-2b3 4-4af1-832 3-4bf9053d 9e17' | |
| 8581 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='FFP AFR None QUAR 5C', [Last UpdateDate ]='2016-07 -27 11:17: 06.000', [ LastUpdate User]=' RED A CTED ' WHERE [B loodProduc tGuid]='cd ac81da-cd7 7-4e13-8c4 7-4c03ab1a 12ad' | |
| 8582 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC AFR CPDA-1 LUK OPR 1C', [ LastUpdate Date]='201 6-07-27 11 :17:06.000 ', [LastUp dateUser]= ' RED A CTED ' WHERE [B loodProduc tGuid]='46 bc01c6-5c9 e-4cb2-b90 b-4c1ff5ed a4ed' | |
| 8583 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC AFR CP2D>AS3 M NFNI LUKOP R 2C', [La stUpdateDa te]='2016- 07-27 11:1 7:06.000', [LastUpda teUser]=' RED A CTED ' WHERE [B loodProduc tGuid]='5f cacfcb-a40 2-4f1e-965 4-4c2e58b1 b7c4' | |
| 8584 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='FFP AFR Thaw NaCit IRD 6C QU AR', [Last UpdateDate ]='2016-07 -27 11:17: 06.000', [ LastUpdate User]=' RED A CTED ' WHERE [B loodProduc tGuid]='0e 7f3d70-e68 e-4fa9-aa3 9-4c31917a d06c' | |
| 8585 | UPDATE [db o].[BloodP roduct] SE T [Product Name]='Aph eresis FRE SH FROZEN PLASMA|NaC itrate/XX/ <=-30C|Res Leu:<1E6|> =200mL<400 mL|Frozen <=18h|2nd container| Methylene blue-treat ed', [Prod uctShortNa me]='FFP A FR NaCit L UKOPR 2C M ethyl Blue ', [LastUp dateDate]= '2016-07-2 7 11:17:06 .000', [La stUpdateUs er]=' RED A CTED ' WHERE [B loodProduc tGuid]='7c 5c2323-790 2-4c0f-b75 4-4c56438f 952c' | |
| 8586 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLT AFR NaCit OPN IRD LUKOPR PLS Red 1 CNA', [Las tUpdateDat e]='2016-0 7-27 11:17 :06.000', [LastUpdat eUser]=' RED A CTED ' WHERE [B loodProduc tGuid]='72 1994bb-b45 c-453e-b1a 5-4c629e7c 522b' | |
| 8587 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC Froz None OPN IRD 4C', [ LastUpdate Date]='201 6-07-27 11 :17:06.000 ', [LastUp dateUser]= ' RED A CTED ' WHERE [B loodProduc tGuid]='d2 e24f66-984 3-4dc4-ac3 e-4c68490b e7ff' | |
| 8588 | UPDATE [db o].[BloodP roduct] SE T [Product Name]='Aph eresis FRE SH FROZEN PLASMA|ACD -A/XX/<=-6 5C|Not for tx or mnf |Quar:>=6m /retested' , [LastUpd ateDate]=' 2016-07-27 11:17:06. 000', [Las tUpdateUse r]=' RED A CTED ' WHERE [B loodProduc tGuid]='05 fc0037-d66 1-431b-bd2 1-4c72cc25 8e1b' | |
| 8589 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC AFR Froz None OPN IRD LU KOPR 2C', [LastUpdat eDate]='20 16-07-27 1 1:17:06.00 0', [LastU pdateUser] =' RED A CTED ' WHERE [B loodProduc tGuid]='65 69ef20-0f5 f-4307-adc 1-4c961f38 0f84' | |
| 8590 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC CPD> AS5 LUKOPR 3C', [Las tUpdateDat e]='2016-0 7-27 11:17 :06.000', [LastUpdat eUser]=' RED A CTED ' WHERE [B loodProduc tGuid]='88 2d7e24-953 e-4f94-92c 0-4c9e5f6b 92d7' | |
| 8591 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC AFR Deg None O PN 1C', [L astUpdateD ate]='2016 -07-27 11: 17:06.000' , [LastUpd ateUser]=' RED A CTED ' WHERE [B loodProduc tGuid]='cd 70712c-74c d-4861-baf 9-4ca24bae d26d' | |
| 8592 | UPDATE [db o].[BloodP roduct] SE T [Product Name]='FRE SH FROZEN PLASMA|CPD A-1/450mL/ <=-30C|Qua r:>=4m/ret ested', [L astUpdateD ate]='2016 -07-27 11: 17:06.000' , [LastUpd ateUser]=' RED A CTED ' WHERE [B loodProduc tGuid]='3b 3158d5-d86 e-4d27-be6 f-4cb114ec 56fe' | |
| 8593 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC AFR CP2D IRD L UKOPR SR/P A 2C', [La stUpdateDa te]='2016- 07-27 11:1 7:06.000', [LastUpda teUser]=' RED A CTED ' WHERE [B loodProduc tGuid]='e9 7ac05b-a29 a-4aad-82f 6-4cb483cc 43f5' | |
| 8594 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLT AFR PAS-C LUKO PR SUPRed 1C Psoraln ', [LastUp dateDate]= '2016-07-2 7 11:17:06 .000', [La stUpdateUs er]=' RED A CTED ' WHERE [B loodProduc tGuid]='56 b9cef5-396 9-4d5b-b39 d-4cb81e7a 8aab' | |
| 8595 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC Deg Rej None O PN IRD 2C' , [LastUpd ateDate]=' 2016-07-27 11:17:06. 000', [Las tUpdateUse r]=' RED A CTED ' WHERE [B loodProduc tGuid]='ee 99607e-e6a 1-4641-869 a-4ce5941f 4b79' | |
| 8596 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC AFR CP2D>AS3 2 C', [LastU pdateDate] ='2016-07- 27 11:17:0 6.000', [L astUpdateU ser]=' RED A CTED ' WHERE [B loodProduc tGuid]='e9 f28e68-d83 d-486a-a5b 8-4cec567a ca46' | |
| 8597 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC AFR CP2D>AS3 I RD SR 1C', [LastUpda teDate]='2 016-07-27 11:17:06.0 00', [Last UpdateUser ]=' RED A CTED ' WHERE [B loodProduc tGuid]='08 679382-456 4-4f38-8d8 f-4cef2d04 d102' | |
| 8598 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLT AFR ACD-B MNFN I OPN 1C', [LastUpda teDate]='2 016-07-27 11:17:06.0 00', [Last UpdateUser ]=' RED A CTED ' WHERE [B loodProduc tGuid]='22 1868a8-2db 3-4015-bcd b-4cf1492e 8178' | |
| 8599 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLT AFR ACD-A IRD LUKOPR 2C BacTest', [LastUpdat eDate]='20 16-07-27 1 1:17:06.00 0', [LastU pdateUser] =' RED A CTED ' WHERE [B loodProduc tGuid]='a4 6f9607-2d8 b-4093-ad8 8-4cf3eb4d b398' | |
| 8600 | UPDATE [db o].[BloodP roduct] SE T [Product Name]='FRE SH FROZEN PLASMA|CPD /450mL/<=- 65C|Irradi ated|ResLe u:<1E6', [ LastUpdate Date]='201 6-07-27 11 :17:06.000 ', [LastUp dateUser]= ' RED A CTED ' WHERE [B loodProduc tGuid]='80 8c17c2-3ea 4-47c7-8ab 2-4cf97c11 fbeb' | |
| 8601 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC AFR CP2D SR 2C ', [LastUp dateDate]= '2016-07-2 7 11:17:06 .000', [La stUpdateUs er]=' RED A CTED ' WHERE [B loodProduc tGuid]='a6 57d4e3-e94 e-44ed-909 6-4d1333c9 ab4b' | |
| 8602 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC AFR Deg Rej No ne OPN 4C' , [LastUpd ateDate]=' 2016-07-27 11:17:06. 000', [Las tUpdateUse r]=' RED A CTED ' WHERE [B loodProduc tGuid]='a5 93ef26-a8c a-40a0-8ee 7-4d15fca4 eb49' | |
| 8603 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC AFR ACD-A OPN IRD LUKOPR SR 2C', [ LastUpdate Date]='201 6-07-27 11 :17:06.000 ', [LastUp dateUser]= ' RED A CTED ' WHERE [B loodProduc tGuid]='4b 407d6a-167 6-40ba-890 7-4d1bfe6c fae5' | |
| 8604 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC AFR CP2D>AS3 I RD 1C', [L astUpdateD ate]='2016 -07-27 11: 17:06.000' , [LastUpd ateUser]=' RED A CTED ' WHERE [B loodProduc tGuid]='4e 4d817a-3f5 1-4290-af0 a-4d1ce7ae ee48' | |
| 8605 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC AFR CP2D>AS3 I RD 4C', [L astUpdateD ate]='2016 -07-27 11: 17:06.000' , [LastUpd ateUser]=' RED A CTED ' WHERE [B loodProduc tGuid]='94 5456f4-7b0 0-487f-bd2 7-4d404782 8e90' | |
| 8606 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLT AFR ACD-A OPN IRD LUKOPR PLS Red 1 CNA', [Las tUpdateDat e]='2016-0 7-27 11:17 :06.000', [LastUpdat eUser]=' RED A CTED ' WHERE [B loodProduc tGuid]='7d 03e1bd-5b9 6-4e14-b71 2-4d78c71d 499e' | |
| 8607 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC AFR ACD-A NMT 1C', [Last UpdateDate ]='2016-07 -27 11:17: 06.000', [ LastUpdate User]=' RED A CTED ' WHERE [B loodProduc tGuid]='b8 a4ef4e-0fa 4-4e34-b06 7-4d83f150 cac1' | |
| 8608 | UPDATE [db o].[BloodP roduct] SE T [Product Name]='Aph eresis FRE SH FROZEN PLASMA|ACD -A/XX/<=-3 0C|ResLeu: <1E6|>=400 mL<600mL|P soralen-tr eated', [L astUpdateD ate]='2016 -07-27 11: 17:06.000' , [LastUpd ateUser]=' RED A CTED ' WHERE [B loodProduc tGuid]='9a 2ff93f-4dd 3-4720-8bd 7-4dac819e 0a53' | |
| 8609 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLT AFR Wash None OPN 4C', [ LastUpdate Date]='201 6-07-27 11 :17:06.000 ', [LastUp dateUser]= ' RED A CTED ' WHERE [B loodProduc tGuid]='a4 569456-cb5 1-4895-b8e 7-4dcbdfc3 683e' | |
| 8610 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLT AFR PAS-C MNFI LUKOPR 2C ', [LastUp dateDate]= '2016-07-2 7 11:17:06 .000', [La stUpdateUs er]=' RED A CTED ' WHERE [B loodProduc tGuid]='f8 afe733-e4c 6-4384-a50 0-4dd07337 5da2' | |
| 8611 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC AFR CP2D>AS3 I RD 2C', [L astUpdateD ate]='2016 -07-27 11: 17:06.000' , [LastUpd ateUser]=' RED A CTED ' WHERE [B loodProduc tGuid]='81 587248-33b 4-4bb5-a75 a-4dd169ff 54af' | |
| 8612 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLT AFR ACD-A OPN LUKOPR 1CN A', [LastU pdateDate] ='2016-07- 27 11:17:0 6.000', [L astUpdateU ser]=' RED A CTED ' WHERE [B loodProduc tGuid]='a8 28d00c-ba7 7-419a-83c 9-4dd718e9 3c59' | |
| 8613 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLT AFR NaCit LUKO PR 2C', [L astUpdateD ate]='2016 -07-27 11: 17:06.000' , [LastUpd ateUser]=' RED A CTED ' WHERE [B loodProduc tGuid]='4c a0eb53-30d 4-46ee-873 a-4de3876f 19c8' | |
| 8614 | UPDATE [db o].[BloodP roduct] SE T [Product Name]='Aph eresis FRE SH FROZEN PLASMA|ACD -A/XX/<=-2 5C|Irradia ted|ResLeu :<1E6|1st container' , [Product ShortName] ='FFP AFR ACD-A IRD LUKOPR 1C' , [LastUpd ateDate]=' 2016-07-27 11:17:06. 000', [Las tUpdateUse r]=' RED A CTED ' WHERE [B loodProduc tGuid]='dc b333de-070 d-4aa6-a1b 0-4deb544e 6bd4' | |
| 8615 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLT AFR Wash NS LU KOPR 2C', [LastUpdat eDate]='20 16-07-27 1 1:17:06.00 0', [LastU pdateUser] =' RED A CTED ' WHERE [B loodProduc tGuid]='68 649281-278 2-42c3-bad 8-4df654aa 945c' | |
| 8616 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC AFR ACD-A>AS1 IRD 5C', [ LastUpdate Date]='201 6-07-27 11 :17:06.000 ', [LastUp dateUser]= ' RED A CTED ' WHERE [B loodProduc tGuid]='e5 26a010-f30 4-42e1-ba1 0-4e351ef2 2fd8' | |
| 8617 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC AFR CP2D>AS3 O PN LUKOPR ALB Add 1C ', [LastUp dateDate]= '2016-07-2 7 11:17:06 .000', [La stUpdateUs er]=' RED A CTED ' WHERE [B loodProduc tGuid]='56 f8cd53-8e5 2-49fc-a17 4-4e59019c eb26' | |
| 8618 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC AFR CP2D>AS3 I RD LUKOPR 4C', [Last UpdateDate ]='2016-07 -27 11:17: 06.000', [ LastUpdate User]=' RED A CTED ' WHERE [B loodProduc tGuid]='b0 7a7a0b-65c 9-419a-a29 2-4e5b93d6 3c47' | |
| 8619 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='FFP AFR Thaw ACD-A 3C QUAR', [LastUpda teDate]='2 016-07-27 11:17:06.0 00', [Last UpdateUser ]=' RED A CTED ' WHERE [B loodProduc tGuid]='87 b662c9-961 6-4171-bac 7-4e666357 289c' | |
| 8620 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC CPD IRD LUKOPR 5C', [Las tUpdateDat e]='2016-0 7-27 11:17 :06.000', [LastUpdat eUser]=' RED A CTED ' WHERE [B loodProduc tGuid]='09 7605c5-d53 4-4014-80a 5-4e6a1502 c15c' | |
| 8621 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLT AFR Wash NS LU KOPR 2C', [LastUpdat eDate]='20 16-07-27 1 1:17:06.00 0', [LastU pdateUser] =' RED A CTED ' WHERE [B loodProduc tGuid]='50 41684d-f5d 8-4240-beb 2-4e6cc4d7 8090' | |
| 8622 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLT AFR ACD-A 5C', [LastUpda teDate]='2 016-07-27 11:17:06.0 00', [Last UpdateUser ]=' RED A CTED ' WHERE [B loodProduc tGuid]='a9 12ecf2-0c1 d-429b-b03 8-4e71a095 b720' | |
| 8623 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLASMA N one 2C', [ LastUpdate Date]='201 6-07-27 11 :17:06.000 ', [LastUp dateUser]= ' RED A CTED ' WHERE [B loodProduc tGuid]='1f 00433b-f1f 8-49ca-803 8-4e7deeea 7423' | |
| 8624 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='WB CP2D IRD LUKOPR 6C', [Las tUpdateDat e]='2016-0 7-27 11:17 :06.000', [LastUpdat eUser]=' RED A CTED ' WHERE [B loodProduc tGuid]='be 26d807-bbf e-409f-ada 2-4e819370 3170' | |
| 8625 | UPDATE [db o].[BloodP roduct] SE T [Product Name]='Aph eresis FRE SH FROZEN PLASMA|ACD -A/XX/<=-6 5C|>=400mL <600mL', [ LastUpdate Date]='201 6-07-27 11 :17:06.000 ', [LastUp dateUser]= ' RED A CTED ' WHERE [B loodProduc tGuid]='9b 713d38-7da 8-4761-b97 5-4e81b473 36f7' | |
| 8626 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC AFR ACD-A IRD SR/PA 2C', [LastUpda teDate]='2 016-07-27 11:17:06.0 00', [Last UpdateUser ]=' RED A CTED ' WHERE [B loodProduc tGuid]='e4 d7c335-84f 9-4099-b56 8-4e85a782 4cf6' | |
| 8627 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLT AFR PAS-E LUKO PR 4C', [L astUpdateD ate]='2016 -07-27 11: 17:06.000' , [LastUpd ateUser]=' RED A CTED ' WHERE [B loodProduc tGuid]='12 d83109-60d e-4782-a2d 1-4ebb0c48 974f' | |
| 8628 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC AFR Froz None OPN LUKOPR 7C', [Las tUpdateDat e]='2016-0 7-27 11:17 :06.000', [LastUpdat eUser]=' RED A CTED ' WHERE [B loodProduc tGuid]='99 64485f-e9f 4-4768-9e6 1-4ebffb63 a4d0' | |
| 8629 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLT AFR PAS-E LUKO PR 2C', [L astUpdateD ate]='2016 -07-27 11: 17:06.000' , [LastUpd ateUser]=' RED A CTED ' WHERE [B loodProduc tGuid]='e5 30c1ec-d5b 9-48f2-9c5 2-4ec566c8 5512' | |
| 8630 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLT AFR ACD-A MNFN I IRD LUKO PR 1C', [L astUpdateD ate]='2016 -07-27 11: 17:06.000' , [LastUpd ateUser]=' RED A CTED ' WHERE [B loodProduc tGuid]='fa cd3c29-1a1 8-4790-805 8-4ed5a073 ad73' | |
| 8631 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLT AFR ACD-A OPN PLS Red 2C ', [LastUp dateDate]= '2016-07-2 7 11:17:06 .000', [La stUpdateUs er]=' RED A CTED ' WHERE [B loodProduc tGuid]='68 1f50d6-544 e-4186-b22 3-4ee283ad 7c34' | |
| 8632 | UPDATE [db o].[BloodP roduct] SE T [Product Name]='Aph eresis FRE SH FROZEN PLASMA|ACD -A/XX/<=-3 0C|Frozen <=6h', [La stUpdateDa te]='2016- 07-27 11:1 7:06.000', [LastUpda teUser]=' RED A CTED ' WHERE [B loodProduc tGuid]='f2 293ceb-c14 5-4612-8c4 5-4eea04ec 29a1' | |
| 8633 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLT AFR Wash None OPN LUKOPR 1C', [Las tUpdateDat e]='2016-0 7-27 11:17 :06.000', [LastUpdat eUser]=' RED A CTED ' WHERE [B loodProduc tGuid]='af ea7dee-48d b-4733-857 3-4efe2eb1 0e18' | |
| 8634 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC AFR ACD-A>AS1 IRD LUKOPR 4C', [Las tUpdateDat e]='2016-0 7-27 11:17 :06.000', [LastUpdat eUser]=' RED A CTED ' WHERE [B loodProduc tGuid]='87 85eef7-41f 2-4ad4-9d2 f-4f035470 2439' | |
| 8635 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC AFR CPDA-1 IRD LUKOPR 8C ', [LastUp dateDate]= '2016-07-2 7 11:17:06 .000', [La stUpdateUs er]=' RED A CTED ' WHERE [B loodProduc tGuid]='25 72749d-5aa 5-4eb8-976 a-4f10f2ac c86c' | |
| 8636 | UPDATE [db o].[BloodP roduct] SE T [Product Name]='Aph eresis FRE SH FROZEN PLASMA|CPD -50/XX/<=- 30C|For mn f:injectab le', [Last UpdateDate ]='2016-07 -27 11:17: 06.000', [ LastUpdate User]=' RED A CTED ' WHERE [B loodProduc tGuid]='c8 28fa0e-799 1-44b0-84c 8-4f177459 89a9' | |
| 8637 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC Deg None 4C', [LastUpdat eDate]='20 16-07-27 1 1:17:06.00 0', [LastU pdateUser] =' RED A CTED ' WHERE [B loodProduc tGuid]='94 f709f3-f00 e-4a07-9f5 3-4f4d450f 548c' | |
| 8638 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC AFR ACD-A>AS3 OPN IRD LU KOPR SAL A dd 1C', [L astUpdateD ate]='2016 -07-27 11: 17:06.000' , [LastUpd ateUser]=' RED A CTED ' WHERE [B loodProduc tGuid]='57 6d7374-386 0-477f-8d1 b-4f52835c 7da6' | |
| 8639 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLT AFR Wash None OPN IRD 2C ', [LastUp dateDate]= '2016-07-2 7 11:17:06 .000', [La stUpdateUs er]=' RED A CTED ' WHERE [B loodProduc tGuid]='5c 2538f8-832 4-46c8-81e c-4f665853 bd9e' | |
| 8640 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC Froz None OPN IRD 5C', [ LastUpdate Date]='201 6-07-27 11 :17:06.000 ', [LastUp dateUser]= ' RED A CTED ' WHERE [B loodProduc tGuid]='dd 00aed0-53f 5-4f3b-b5c b-4f7b1d35 8740' | |
| 8641 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLASMA A FR ACD-A 1 C', [LastU pdateDate] ='2016-07- 27 11:17:0 6.000', [L astUpdateU ser]=' RED A CTED ' WHERE [B loodProduc tGuid]='27 b2dbdb-088 a-4d5e-8fe 2-4f8ee586 9875' | |
| 8642 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='WB CPD I RD 3C', [L astUpdateD ate]='2016 -07-27 11: 17:06.000' , [LastUpd ateUser]=' RED A CTED ' WHERE [B loodProduc tGuid]='2e 95d487-3cb 2-47b6-995 b-4f8f2e6c 7a67' | |
| 8643 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC AFR ACD-A>AS3 NMT 1C', [ LastUpdate Date]='201 6-07-27 11 :17:06.000 ', [LastUp dateUser]= ' RED A CTED ' WHERE [B loodProduc tGuid]='47 e36bc3-998 8-4e70-b6b 8-4fa51302 98f4' | |
| 8644 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC AFR Deg None O PN IRD PA 1C', [Last UpdateDate ]='2016-07 -27 11:17: 06.000', [ LastUpdate User]=' RED A CTED ' WHERE [B loodProduc tGuid]='ba abe5a8-673 d-455e-9a7 a-4fc91960 60e9' | |
| 8645 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC AFR ACD-A>AS1 OPN IRD LU KOPR PA 1C ', [LastUp dateDate]= '2016-07-2 7 11:17:06 .000', [La stUpdateUs er]=' RED A CTED ' WHERE [B loodProduc tGuid]='3d 116aff-43e d-49a9-b48 3-4fccf853 b652' | |
| 8646 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC CPD 1C', [Reti reDate]='2 015-04-07 00:00:00.0 00', [Last UpdateDate ]='2016-07 -27 11:17: 06.000', [ LastUpdate User]=' RED A CTED ' WHERE [B loodProduc tGuid]='2b a9dbb5-4ba 6-4bb5-b77 e-4fcfca81 de87' | |
| 8647 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC CPD LUKOPR 4C' , [LastUpd ateDate]=' 2016-07-27 11:17:06. 000', [Las tUpdateUse r]=' RED A CTED ' WHERE [B loodProduc tGuid]='61 cc0e12-e56 e-440b-b24 2-4fdb93fa dc87' | |
| 8648 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC AFR CPDA-1 IRD 1C', [Las tUpdateDat e]='2016-0 7-27 11:17 :06.000', [LastUpdat eUser]=' RED A CTED ' WHERE [B loodProduc tGuid]='cc ebc678-d38 d-4406-bb4 7-4ff1f758 00b6' | |
| 8649 | UPDATE [db o].[BloodP roduct] SE T [Product Name]='FRE SH FROZEN PLASMA|CPD A-1/450mL/ <=-25C|Fro zen <=8h|Q uar:>=112d /retested' , [LastUpd ateDate]=' 2016-07-27 11:17:06. 000', [Las tUpdateUse r]=' RED A CTED ' WHERE [B loodProduc tGuid]='c0 a3a73f-3d6 3-4e54-984 2-4ff7671d 7ba7' | |
| 8650 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC Wash None OPN IRD 5C', [ LastUpdate Date]='201 6-07-27 11 :17:06.000 ', [LastUp dateUser]= ' RED A CTED ' WHERE [B loodProduc tGuid]='e1 574731-74e 5-424d-b80 f-50175418 bab7' | |
| 8651 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='WB CPDA- 1 IRD LUKO PR 1C', [L astUpdateD ate]='2016 -07-27 11: 17:06.000' , [LastUpd ateUser]=' RED A CTED ' WHERE [B loodProduc tGuid]='da 9766b1-157 e-4453-adb c-501dc99d 3b10' | |
| 8652 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='FFP Thaw CPD 3C QU AR', [Last UpdateDate ]='2016-07 -27 11:17: 06.000', [ LastUpdate User]=' RED A CTED ' WHERE [B loodProduc tGuid]='d8 ce73f9-58b 5-4a7f-947 7-5023834b 3aba' | |
| 8653 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLT AFR Thaw DMSO OPN LUKOPR 1C', [Las tUpdateDat e]='2016-0 7-27 11:17 :06.000', [LastUpdat eUser]=' RED A CTED ' WHERE [B loodProduc tGuid]='a0 f103e4-136 4-4701-a12 0-5028bad8 d31d' | |
| 8654 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC AFR CP2D-AS3 2 C', [LastU pdateDate] ='2016-07- 27 11:17:0 6.000', [L astUpdateU ser]=' RED A CTED ' WHERE [B loodProduc tGuid]='51 50eece-8f4 1-496c-893 c-5037560f 173b' | |
| 8655 | UPDATE [db o].[BloodP roduct] SE T [Product Name]='Aph eresis FRE SH FROZEN PLASMA|ACD -B/XX/<=-6 5C|>=400mL <600mL|Qua r:>=6m/ret ested', [L astUpdateD ate]='2016 -07-27 11: 17:06.000' , [LastUpd ateUser]=' RED A CTED ' WHERE [B loodProduc tGuid]='3e b5a15f-26b a-44e7-8cc 5-5054f200 9257' | |
| 8656 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC AFR Deg Rej No ne OPN IRD LUKOPR 2C ', [LastUp dateDate]= '2016-07-2 7 11:17:06 .000', [La stUpdateUs er]=' RED A CTED ' WHERE [B loodProduc tGuid]='47 e4d2fe-3d7 1-4e92-860 6-5081a46d 2fd4' | |
| 8657 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC AFR ACD-A IRD LUKOPR 2C' , [LastUpd ateDate]=' 2016-07-27 11:17:06. 000', [Las tUpdateUse r]=' RED A CTED ' WHERE [B loodProduc tGuid]='9b 8cbe89-fed 0-4994-9fd d-50833644 b254' | |
| 8658 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLT AFR Thaw DMSO OPN IRD LU KOPR 2C', [LastUpdat eDate]='20 16-07-27 1 1:17:06.00 0', [LastU pdateUser] =' RED A CTED ' WHERE [B loodProduc tGuid]='b6 331150-090 b-465f-aea b-509e6fbb 3af8' | |
| 8659 | UPDATE [db o].[BloodP roduct] SE T [Product Name]='PLA SMA|CPD/45 0mL/<=-25C |Cryo redu ced|Ribofl avin-treat ed', [Last UpdateDate ]='2016-07 -27 11:17: 06.000', [ LastUpdate User]=' RED A CTED ' WHERE [B loodProduc tGuid]='bf 218304-098 5-446e-890 e-50d1756f ab5e' | |
| 8660 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC AFR CPDA-1 1C' , [LastUpd ateDate]=' 2016-07-27 11:17:06. 000', [Las tUpdateUse r]=' RED A CTED ' WHERE [B loodProduc tGuid]='e1 ea3c47-90e 0-4d47-9ab 3-50dac785 97d1' | |
| 8661 | UPDATE [db o].[BloodP roduct] SE T [Product Name]='Aph eresis FRE SH FROZEN PLASMA|CPD -50/XX/<=- 25C|For mn f:noninjec table', [L astUpdateD ate]='2016 -07-27 11: 17:06.000' , [LastUpd ateUser]=' RED A CTED ' WHERE [B loodProduc tGuid]='9c b6a610-986 7-467e-a57 3-50f6e55f 3f0c' | |
| 8662 | UPDATE [db o].[BloodP roduct] SE T [Product Name]='Aph eresis PLA SMA|ACD-A/ XX/<=-25C| ResLeu:<1E 6', [LastU pdateDate] ='2016-07- 27 11:17:0 6.000', [L astUpdateU ser]=' RED A CTED ' WHERE [B loodProduc tGuid]='67 24e97c-85a 3-48c0-b9d 5-510acc25 f791' | |
| 8663 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLT AFR ACD-B IRD LUKOPR PLS Red 3C', [LastUpdat eDate]='20 16-07-27 1 1:17:06.00 0', [LastU pdateUser] =' RED A CTED ' WHERE [B loodProduc tGuid]='bb 5a0e4d-01a 8-4d15-95c d-511e0f5c 795c' | |
| 8664 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='FFP Thaw None 2C', [LastUpda teDate]='2 016-07-27 11:17:06.0 00', [Last UpdateUser ]=' RED A CTED ' WHERE [B loodProduc tGuid]='20 34b9b6-702 4-416c-a97 8-5121479c fb7c' | |
| 8665 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC AFR CPDA-1 IRD LUKOPR 8C ', [LastUp dateDate]= '2016-07-2 7 11:17:06 .000', [La stUpdateUs er]=' RED A CTED ' WHERE [B loodProduc tGuid]='54 792a62-977 3-4317-82c d-5124a7ef 1f6f' | |
| 8666 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC AFR Rej None O PN 1C', [L astUpdateD ate]='2016 -07-27 11: 17:06.000' , [LastUpd ateUser]=' RED A CTED ' WHERE [B loodProduc tGuid]='08 2f102c-147 6-48a3-9ce 8-5142e9f6 038b' | |
| 8667 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='FFP AFR NaCit 3C Q UAR', [Las tUpdateDat e]='2016-0 7-27 11:17 :06.000', [LastUpdat eUser]=' RED A CTED ' WHERE [B loodProduc tGuid]='14 1c88ff-d3f e-40d1-a7a f-51566cfa 4c05' | |
| 8668 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLT AFR NaCit OPN PLS Red 1C ', [LastUp dateDate]= '2016-07-2 7 11:17:06 .000', [La stUpdateUs er]=' RED A CTED ' WHERE [B loodProduc tGuid]='52 8afb95-3d1 b-4f87-8e8 8-516f81fd 3737' | |
| 8669 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLT AFR ACD-A IRD LUKOPR 2C Ribo', [La stUpdateDa te]='2016- 07-27 11:1 7:06.000', [LastUpda teUser]=' RED A CTED ' WHERE [B loodProduc tGuid]='3a 747901-d88 a-489f-a0c 4-5177c627 c3a5' | |
| 8670 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC Wash None OPN 5C', [Last UpdateDate ]='2016-07 -27 11:17: 06.000', [ LastUpdate User]=' RED A CTED ' WHERE [B loodProduc tGuid]='fd eb82a9-ff5 5-4231-bb1 9-517bd56f fe45' | |
| 8671 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLT AFR Wash NS OP N 3C', [La stUpdateDa te]='2016- 07-27 11:1 7:06.000', [LastUpda teUser]=' RED A CTED ' WHERE [B loodProduc tGuid]='75 0f23e8-59e 7-4c1b-876 d-517e53fb 0d5d' | |
| 8672 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLT AFR ACD-A IRD LUKOPR 3C' , [LastUpd ateDate]=' 2016-07-27 11:17:06. 000', [Las tUpdateUse r]=' RED A CTED ' WHERE [B loodProduc tGuid]='ea 41bab8-989 7-4944-aaa 1-518a487a e2ae' | |
| 8673 | UPDATE [db o].[BloodP roduct] SE T [Product Name]='CRY OPRECIPITA TE|NS/450m L/<=-30C|R esLeu:<5E6 ', [LastUp dateDate]= '2016-07-2 7 11:17:06 .000', [La stUpdateUs er]=' RED A CTED ' WHERE [B loodProduc tGuid]='df aeba4a-8e9 c-4deb-924 0-51997af3 b69f' | |
| 8674 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLT AFR ACD-B NMT 1C', [Last UpdateDate ]='2016-07 -27 11:17: 06.000', [ LastUpdate User]=' RED A CTED ' WHERE [B loodProduc tGuid]='76 26e11f-958 5-4bab-9b6 7-51c32b39 524c' | |
| 8675 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLT AFR ACD-A OPN LUKOPR 3C' , [LastUpd ateDate]=' 2016-07-27 11:17:06. 000', [Las tUpdateUse r]=' RED A CTED ' WHERE [B loodProduc tGuid]='cb 81d7f1-720 7-47fc-b94 3-51dbf75e bd21' | |
| 8676 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLT AFR NaCit MNFI 1C', [Las tUpdateDat e]='2016-0 7-27 11:17 :06.000', [LastUpdat eUser]=' RED A CTED ' WHERE [B loodProduc tGuid]='28 75be9b-232 3-4433-a1a 2-51e9af30 4ede' | |
| 8677 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLASMA A FR CP2D 3C ', [LastUp dateDate]= '2016-07-2 7 11:17:06 .000', [La stUpdateUs er]=' RED A CTED ' WHERE [B loodProduc tGuid]='7b 36568b-f83 f-47e3-a38 6-51eb82e9 18ba' | |
| 8678 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='WB CPDA- 1 LUKOPR 4 C', [LastU pdateDate] ='2016-07- 27 11:17:0 6.000', [L astUpdateU ser]=' RED A CTED ' WHERE [B loodProduc tGuid]='04 2a5861-e6b a-402e-adb e-51eeb264 fa7b' | |
| 8679 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='FFP AFR ACD-A LUKO PR 8C', [L astUpdateD ate]='2016 -07-27 11: 17:06.000' , [LastUpd ateUser]=' RED A CTED ' WHERE [B loodProduc tGuid]='62 42f94b-dd5 5-4a87-bb7 7-520eb573 a230' | |
| 8680 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC AFR Froz None OPN LUKOPR 5C', [Las tUpdateDat e]='2016-0 7-27 11:17 :06.000', [LastUpdat eUser]=' RED A CTED ' WHERE [B loodProduc tGuid]='e0 def8a4-ee1 9-4683-bf5 3-523a3338 21ef' | |
| 8681 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='FFP AFR None 4C', [LastUpdat eDate]='20 16-07-27 1 1:17:06.00 0', [LastU pdateUser] =' RED A CTED ' WHERE [B loodProduc tGuid]='e8 5c7837-85c 5-44d5-a5b a-523ed993 7908' | |
| 8682 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLT AFR NS LUKOPR 3C', [Last UpdateDate ]='2016-07 -27 11:17: 06.000', [ LastUpdate User]=' RED A CTED ' WHERE [B loodProduc tGuid]='2e b3bbf1-254 f-4850-8d9 b-52421dc7 8448' | |
| 8683 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC AFR ACD-A IRD LUKOPR 1C' , [LastUpd ateDate]=' 2016-07-27 11:17:06. 000', [Las tUpdateUse r]=' RED A CTED ' WHERE [B loodProduc tGuid]='bd 45accc-341 0-4040-99e e-5246ad07 8a75' | |
| 8684 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLT AFR Wash None OPN IRD LU KOPR 2C', [LastUpdat eDate]='20 16-07-27 1 1:17:06.00 0', [LastU pdateUser] =' RED A CTED ' WHERE [B loodProduc tGuid]='54 4edaa8-d54 9-420b-94a b-526c9134 2d13' | |
| 8685 | UPDATE [db o].[BloodP roduct] SE T [Product Name]='Aph eresis FRE SH FROZEN PLASMA|ACD -B/XX/<=-3 0C|>=200mL <400mL', [ LastUpdate Date]='201 6-07-27 11 :17:06.000 ', [LastUp dateUser]= ' RED A CTED ' WHERE [B loodProduc tGuid]='93 f65cfa-c3d 9-4708-ade 6-52ad26a0 a54e' | |
| 8686 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC Deg Rej None O PN 8C', [L astUpdateD ate]='2016 -07-27 11: 17:06.000' , [LastUpd ateUser]=' RED A CTED ' WHERE [B loodProduc tGuid]='62 7621d0-9d0 b-40fc-985 4-52baabf7 a052' | |
| 8687 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC AFR CP2D LUKOP R SR/PA 1C ', [LastUp dateDate]= '2016-07-2 7 11:17:06 .000', [La stUpdateUs er]=' RED A CTED ' WHERE [B loodProduc tGuid]='ac 37b7e4-b1b d-4c1e-b01 2-52d4dff6 ad86' | |
| 8688 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLT AFR PAS-C LUKO PR 2C', [L astUpdateD ate]='2016 -07-27 11: 17:06.000' , [LastUpd ateUser]=' RED A CTED ' WHERE [B loodProduc tGuid]='a2 38e591-cbc c-4266-99e 0-52d71575 93f2' | |
| 8689 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLT AFR NS 3C', [L astUpdateD ate]='2016 -07-27 11: 17:06.000' , [LastUpd ateUser]=' RED A CTED ' WHERE [B loodProduc tGuid]='6d 2d2917-b9c 6-4651-a58 6-52de1bf8 9e97' | |
| 8690 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC AFR CP2D IRD S R/PA 2C', [LastUpdat eDate]='20 16-07-27 1 1:17:06.00 0', [LastU pdateUser] =' RED A CTED ' WHERE [B loodProduc tGuid]='84 f7bab6-95b d-4597-a66 2-52e2cd17 d587' | |
| 8691 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLASMA T haw None 7 C', [LastU pdateDate] ='2016-07- 27 11:17:0 6.000', [L astUpdateU ser]=' RED A CTED ' WHERE [B loodProduc tGuid]='cd 5ac32b-f66 8-4918-887 c-52efc72d 18e1' | |
| 8692 | UPDATE [db o].[BloodP roduct] SE T [Product Name]='Fro zen Aphere sis PLATEL ETS|DMSO/X X/<=-65C|O pen|3rd co ntainer', [ProductSh ortName]=' PLT AFR Fr oz DMSO 3C ', [LastUp dateDate]= '2016-07-2 7 11:17:06 .000', [La stUpdateUs er]=' RED A CTED ' WHERE [B loodProduc tGuid]='64 8cee55-812 9-4658-818 5-52f4dffc 8389' | |
| 8693 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLT AFR PAS-E LUKO PR 1C BacT est', [Las tUpdateDat e]='2016-0 7-27 11:17 :06.000', [LastUpdat eUser]=' RED A CTED ' WHERE [B loodProduc tGuid]='17 2be15d-423 b-40e4-949 f-52f5ce77 e290' | |
| 8694 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLT AFR ACD-A OPN IRD PLS Re d 1C', [La stUpdateDa te]='2016- 07-27 11:1 7:06.000', [LastUpda teUser]=' RED A CTED ' WHERE [B loodProduc tGuid]='ca 7e127a-cdb 2-493a-b4e 3-53064f1c 5f00' | |
| 8695 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC AFR Wash None OPN IRD LU KOPR 1C', [LastUpdat eDate]='20 16-07-27 1 1:17:06.00 0', [LastU pdateUser] =' RED A CTED ' WHERE [B loodProduc tGuid]='73 e9bde3-f56 a-471f-899 2-530dd66b fe58' | |
| 8696 | UPDATE [db o].[BloodP roduct] SE T [Product Name]='FRE SH FROZEN PLASMA|NS/ XX/<=-30C| ResLeu:<1E 6', [LastU pdateDate] ='2016-07- 27 11:17:0 6.000', [L astUpdateU ser]=' RED A CTED ' WHERE [B loodProduc tGuid]='7b 31013e-d05 7-4046-848 7-530fef18 c5cf' | |
| 8697 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC AFR ACD-A>AS1 OPN IRD LU KOPR SUPRe d 2C', [La stUpdateDa te]='2016- 07-27 11:1 7:06.000', [LastUpda teUser]=' RED A CTED ' WHERE [B loodProduc tGuid]='86 179d68-ef6 3-439a-8ce f-5314c8b6 9991' | |
| 8698 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='FFP None QUAR 5C', [LastUpda teDate]='2 016-07-27 11:17:06.0 00', [Last UpdateUser ]=' RED A CTED ' WHERE [B loodProduc tGuid]='2d 8af4dd-11d 1-414a-814 0-53200767 f8de' | |
| 8699 | UPDATE [db o].[BloodP roduct] SE T [Product Name]='FRE SH FROZEN PLASMA|0.5 CPD/XX/<= -30C', [La stUpdateDa te]='2016- 07-27 11:1 7:06.000', [LastUpda teUser]=' RED A CTED ' WHERE [B loodProduc tGuid]='fe e9aa93-56c 0-4b0e-946 e-53204a17 dfdc' | |
| 8700 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='FFP AFR Thaw ACD-A 3C', [Las tUpdateDat e]='2016-0 7-27 11:17 :06.000', [LastUpdat eUser]=' RED A CTED ' WHERE [B loodProduc tGuid]='39 0f0eb8-c21 2-4c35-bc2 a-5327926c 98e2' | |
| 8701 | UPDATE [db o].[BloodP roduct] SE T [Product Name]='Fro zen Aphere sis RED BL OOD CELLS| Gly40%/XX/ <=-65C|Ope n|Irradiat ed|ResLeu: <5E6|2nd c ontainer', [ProductS hortName]= 'RBC AFR F roz Gly40% OPN IRD L UKOPR 2C', [LastUpda teDate]='2 016-07-27 11:17:06.0 00', [Last UpdateUser ]=' RED A CTED ' WHERE [B loodProduc tGuid]='be a63b00-e24 8-431e-874 2-534fca66 7eb7' | |
| 8702 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC AFR ACD-A>AS3 IRD LUKOPR 2C', [Las tUpdateDat e]='2016-0 7-27 11:17 :06.000', [LastUpdat eUser]=' RED A CTED ' WHERE [B loodProduc tGuid]='12 662cc6-c9f d-40f2-a37 4-53543c81 1565' | |
| 8703 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC AFR ACD-A>SAGM LUKOPR 2C ', [LastUp dateDate]= '2016-07-2 7 11:17:06 .000', [La stUpdateUs er]=' RED A CTED ' WHERE [B loodProduc tGuid]='63 276200-e72 f-42c5-93d 2-5365b063 3430' | |
| 8704 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC AFR ACD-A>AS1 6C', [Last UpdateDate ]='2016-07 -27 11:17: 06.000', [ LastUpdate User]=' RED A CTED ' WHERE [B loodProduc tGuid]='67 6e8945-280 4-4e90-b67 2-536d6841 35bf' | |
| 8705 | UPDATE [db o].[BloodP roduct] SE T [Product Name]='Aph eresis FRE SH FROZEN PLASMA|ACD -A/XX/<=-6 5C|Quar:>= 6m/reteste d', [LastU pdateDate] ='2016-07- 27 11:17:0 6.000', [L astUpdateU ser]=' RED A CTED ' WHERE [B loodProduc tGuid]='93 6529d7-ca7 7-4921-be9 e-5395e984 7aa1' | |
| 8706 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC AFR CP2D OPN S R/PA 1C', [LastUpdat eDate]='20 16-07-27 1 1:17:06.00 0', [LastU pdateUser] =' RED A CTED ' WHERE [B loodProduc tGuid]='82 2d40bf-d82 7-4cc0-9c6 4-539c5762 451e' | |
| 8707 | UPDATE [db o].[BloodP roduct] SE T [Product Name]='Aph eresis FRE SH FROZEN PLASMA|ACD -A/XX/<=-2 5C|Irradia ted|ResLeu :<1E6|Froz en <=6h', [LastUpdat eDate]='20 16-07-27 1 1:17:06.00 0', [LastU pdateUser] =' RED A CTED ' WHERE [B loodProduc tGuid]='04 96a077-534 e-4787-812 0-53ad4046 f956' | |
| 8708 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLASMA A FR ACD-A I RD 1C', [L astUpdateD ate]='2016 -07-27 11: 17:06.000' , [LastUpd ateUser]=' RED A CTED ' WHERE [B loodProduc tGuid]='06 8c7f0e-906 7-4666-bf9 4-53bf37c3 b4ab' | |
| 8709 | UPDATE [db o].[BloodP roduct] SE T [Product Name]='Fro zen Rejuve nated Aphe resis RED BLOOD CELL S|None/XX/ <=-65C|Ope n|ResLeu:< 5E6', [Las tUpdateDat e]='2016-0 7-27 11:17 :06.000', [LastUpdat eUser]=' RED A CTED ' WHERE [B loodProduc tGuid]='62 97e0a7-071 6-433c-884 6-53d71378 5f73' | |
| 8710 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLT AFR Thaw DMSO OPN IRD 4C ', [LastUp dateDate]= '2016-07-2 7 11:17:06 .000', [La stUpdateUs er]=' RED A CTED ' WHERE [B loodProduc tGuid]='a2 9cd396-8a6 0-4395-8f0 2-53e06e31 17e3' | |
| 8711 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLT AFR Thaw DMSO OPN IRD 1C ', [LastUp dateDate]= '2016-07-2 7 11:17:06 .000', [La stUpdateUs er]=' RED A CTED ' WHERE [B loodProduc tGuid]='06 46abac-363 b-4b61-9f2 a-53e29ad3 e3a4' | |
| 8712 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC CPDA -1 LUKOPR 1C', [Reti reDate]='2 015-04-07 00:00:00.0 00', [Last UpdateDate ]='2016-07 -27 11:17: 06.000', [ LastUpdate User]=' RED A CTED ' WHERE [B loodProduc tGuid]='66 ad6499-af5 1-410a-a10 a-53eec266 396c' | |
| 8713 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLT AFR Wash None OPN LUKOPR 2C', [Las tUpdateDat e]='2016-0 7-27 11:17 :06.000', [LastUpdat eUser]=' RED A CTED ' WHERE [B loodProduc tGuid]='f9 819088-ba5 4-4c19-b4f 0-5401981d 43ba' | |
| 8714 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLT AFR ACD-A LUKO PR 1C', [L astUpdateD ate]='2016 -07-27 11: 17:06.000' , [LastUpd ateUser]=' RED A CTED ' WHERE [B loodProduc tGuid]='17 934872-29a 4-4cd5-a72 3-541230a1 59a0' | |
| 8715 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLT AFR NaCit LUKO PR PLS Red 2CNA', [L astUpdateD ate]='2016 -07-27 11: 17:06.000' , [LastUpd ateUser]=' RED A CTED ' WHERE [B loodProduc tGuid]='5b 35e75b-244 8-47c5-a76 7-541b0b08 7a62' | |
| 8716 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLASMA A FR Thaw AC D-A IRD 1C ', [LastUp dateDate]= '2016-07-2 7 11:17:06 .000', [La stUpdateUs er]=' RED A CTED ' WHERE [B loodProduc tGuid]='8e ac0421-c18 2-41ce-ad1 4-5424e421 681e' | |
| 8717 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC CPD> AS1 1C', [ LastUpdate Date]='201 6-07-27 11 :17:06.000 ', [LastUp dateUser]= ' RED A CTED ' WHERE [B loodProduc tGuid]='24 977301-7eb d-485a-af9 8-5426ba8b 7c40' | |
| 8718 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC CPD> AS5 6C', [ LastUpdate Date]='201 6-07-27 11 :17:06.000 ', [LastUp dateUser]= ' RED A CTED ' WHERE [B loodProduc tGuid]='4b ecdd7b-696 1-400a-82c 4-5437c868 9224' | |
| 8719 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLT AFR ACD-B 2C', [LastUpda teDate]='2 016-07-27 11:17:06.0 00', [Last UpdateUser ]=' RED A CTED ' WHERE [B loodProduc tGuid]='b9 28b2e4-e51 e-44c7-b4f 0-543e3c29 514d' | |
| 8720 | UPDATE [db o].[BloodP roduct] SE T [Product Name]='Aph eresis FRE SH FROZEN PLASMA|NaC itrate/XX/ <=-65C|<20 0 mL', [La stUpdateDa te]='2016- 07-27 11:1 7:06.000', [LastUpda teUser]=' RED A CTED ' WHERE [B loodProduc tGuid]='15 caf660-d20 0-4632-b1f 0-54586322 f851' | |
| 8721 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC AFR CP2D>AS3 1 C', [LastU pdateDate] ='2016-07- 27 11:17:0 6.000', [L astUpdateU ser]=' RED A CTED ' WHERE [B loodProduc tGuid]='2e 7d75d4-68f 5-409a-9c4 4-5469d78c 8bae' | |
| 8722 | UPDATE [db o].[BloodP roduct] SE T [Product Name]='CRY OPRECIPITA TE|CPDA-1/ 450mL/<=-2 5C|Quar:>= 112d/retes ted', [Las tUpdateDat e]='2016-0 7-27 11:17 :06.000', [LastUpdat eUser]=' RED A CTED ' WHERE [B loodProduc tGuid]='f2 da28ed-b30 9-4593-914 f-549fadd4 d492' | |
| 8723 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC CPD 3C', [Reti reDate]='2 015-04-07 00:00:00.0 00', [Last UpdateDate ]='2016-07 -27 11:17: 06.000', [ LastUpdate User]=' RED A CTED ' WHERE [B loodProduc tGuid]='60 d776e4-a3f 9-482f-af7 a-54a7a004 4caf' | |
| 8724 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC AFR CP2D>AS3 I RD LUKOPR 5C', [Last UpdateDate ]='2016-07 -27 11:17: 06.000', [ LastUpdate User]=' RED A CTED ' WHERE [B loodProduc tGuid]='8e 70d2ca-f18 b-4e34-929 2-54a98029 0eed' | |
| 8725 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLT AFR Froz None MNFNI LUKO PR 3C', [L astUpdateD ate]='2016 -07-27 11: 17:06.000' , [LastUpd ateUser]=' RED A CTED ' WHERE [B loodProduc tGuid]='c1 de5f4f-7f4 b-4440-926 6-54aacd64 2ef0' | |
| 8726 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLT AFR PAS-E IRD LUKOPR 4C BacMtr', [ LastUpdate Date]='201 6-07-27 11 :17:06.000 ', [LastUp dateUser]= ' RED A CTED ' WHERE [B loodProduc tGuid]='12 9dac10-5e6 2-45a8-b66 b-54b14b89 f451' | |
| 8727 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='FFP AFR Thaw None LUKOPR 8C' , [LastUpd ateDate]=' 2016-07-27 11:17:06. 000', [Las tUpdateUse r]=' RED A CTED ' WHERE [B loodProduc tGuid]='f5 809f5e-abe 1-4a6b-93f 8-54b48db1 9113' | |
| 8728 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='FFP AFR Thaw None 7C', [Last UpdateDate ]='2016-07 -27 11:17: 06.000', [ LastUpdate User]=' RED A CTED ' WHERE [B loodProduc tGuid]='97 114df0-ed1 a-4af3-b84 e-54d81c46 39e9' | |
| 8729 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC AFR Deg Rej No ne OPN IRD LUKOPR 2C ', [LastUp dateDate]= '2016-07-2 7 11:17:06 .000', [La stUpdateUs er]=' RED A CTED ' WHERE [B loodProduc tGuid]='4c 140c09-11a 8-4342-b51 e-54e4882b adea' | |
| 8730 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC AFR ACD-A>AS3 IRD LUKOPR 2C', [Las tUpdateDat e]='2016-0 7-27 11:17 :06.000', [LastUpdat eUser]=' RED A CTED ' WHERE [B loodProduc tGuid]='7e 41fcf0-940 3-4d7e-944 1-54f304d9 91d7' | |
| 8731 | UPDATE [db o].[BloodP roduct] SE T [Product Name]='FRE SH FROZEN PLASMA|0.5 CPD/XX/<= -25C|Not f or tx or m nf', [Last UpdateDate ]='2016-07 -27 11:17: 06.000', [ LastUpdate User]=' RED A CTED ' WHERE [B loodProduc tGuid]='b7 b05ff5-d24 2-4920-b9e b-54feb55b 3092' | |
| 8732 | UPDATE [db o].[BloodP roduct] SE T [Product Name]='Aph eresis FRE SH FROZEN PLASMA|ACD -B/XX/<=-2 5C|Not for tx or mnf ', [LastUp dateDate]= '2016-07-2 7 11:17:06 .000', [La stUpdateUs er]=' RED A CTED ' WHERE [B loodProduc tGuid]='20 2f6123-1fd 9-4712-8df 6-550cd431 8325' | |
| 8733 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC AFR Deg Rej No ne OPN IRD LUKOPR 1C ', [LastUp dateDate]= '2016-07-2 7 11:17:06 .000', [La stUpdateUs er]=' RED A CTED ' WHERE [B loodProduc tGuid]='82 6e87cd-933 b-4dc5-82d d-552313ae da26' | |
| 8734 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='FFP Thaw CPD 1C QU AR', [Last UpdateDate ]='2016-07 -27 11:17: 06.000', [ LastUpdate User]=' RED A CTED ' WHERE [B loodProduc tGuid]='95 5ca778-a11 7-4d26-91b 5-55249fa9 bfe8' | |
| 8735 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLT AFR Wash None OPN LUKOPR 1CNA', [L astUpdateD ate]='2016 -07-27 11: 17:06.000' , [LastUpd ateUser]=' RED A CTED ' WHERE [B loodProduc tGuid]='e7 01aaff-381 2-4833-ae7 d-552bd829 27d4' | |
| 8736 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC AFR CPDA-1 SR 2C', [Last UpdateDate ]='2016-07 -27 11:17: 06.000', [ LastUpdate User]=' RED A CTED ' WHERE [B loodProduc tGuid]='ef 619d4f-a4e b-4be4-886 b-552eb056 63ba' | |
| 8737 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='FFP AFR None 7C', [LastUpdat eDate]='20 16-07-27 1 1:17:06.00 0', [LastU pdateUser] =' RED A CTED ' WHERE [B loodProduc tGuid]='36 37a9cf-e39 4-4440-924 1-553fb31c e21b' | |
| 8738 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLT AFR NaCit MNFN I OPN 4C', [LastUpda teDate]='2 016-07-27 11:17:06.0 00', [Last UpdateUser ]=' RED A CTED ' WHERE [B loodProduc tGuid]='24 2a2f42-085 8-4721-86a 4-553ffcfa babf' | |
| 8739 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC CP2D 1C', [Las tUpdateDat e]='2016-0 7-27 11:17 :06.000', [LastUpdat eUser]=' RED A CTED ' WHERE [B loodProduc tGuid]='7e a3070a-edf b-4c51-831 2-5540df6f d671' | |
| 8740 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLT AFR NaCit MNFI 1CNA', [L astUpdateD ate]='2016 -07-27 11: 17:06.000' , [LastUpd ateUser]=' RED A CTED ' WHERE [B loodProduc tGuid]='9c 8a09c8-ca0 7-4e3e-b1d 2-554f50ae ac2c' | |
| 8741 | UPDATE [db o].[BloodP roduct] SE T [Product Name]='Aph eresis FRE SH FROZEN PLASMA|ACD -A/XX/<=-6 5C|>=600mL |Quar:>=6m /retested' , [LastUpd ateDate]=' 2016-07-27 11:17:06. 000', [Las tUpdateUse r]=' RED A CTED ' WHERE [B loodProduc tGuid]='90 6f9336-0d9 0-47c9-b64 9-5553f96b 8b8c' | |
| 8742 | UPDATE [db o].[BloodP roduct] SE T [Product Name]='Fro zen Aphere sis RED BL OOD CELLS| Gly40%/XX/ <=-65C|Ope n|ResLeu:< 5E6|2nd co ntainer', [ProductSh ortName]=' RBC AFR Fr oz Gly40% OPN LUKOPR 2C', [Las tUpdateDat e]='2016-0 7-27 11:17 :06.000', [LastUpdat eUser]=' RED A CTED ' WHERE [B loodProduc tGuid]='fd 47ed09-4c9 4-4f19-88a 8-556031c5 42bc' | |
| 8743 | UPDATE [db o].[BloodP roduct] SE T [Product Name]='FRE SH FROZEN PLASMA|CPD A-1/450mL/ <=-25C|Fro zen <=6h|Q uar:>=112d /retested' , [LastUpd ateDate]=' 2016-07-27 11:17:06. 000', [Las tUpdateUse r]=' RED A CTED ' WHERE [B loodProduc tGuid]='d4 f71d31-a29 2-4c41-afc 6-55745719 e83c' | |
| 8744 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLT AFR ACD-A LUKO PR 4CBacMt r', [LastU pdateDate] ='2016-07- 27 11:17:0 6.000', [L astUpdateU ser]=' RED A CTED ' WHERE [B loodProduc tGuid]='f5 318ed4-42f 2-46e7-af7 5-5577f035 5282' | |
| 8745 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='FFP AFR NaCit 5C', [LastUpda teDate]='2 016-07-27 11:17:06.0 00', [Last UpdateUser ]=' RED A CTED ' WHERE [B loodProduc tGuid]='32 396fa1-d38 f-4c82-8f4 a-559aa68d df5d' | |
| 8746 | UPDATE [db o].[BloodP roduct] SE T [Product Name]='Aph eresis FRE SH FROZEN PLASMA|ACD -A/XX/<=-3 0C|ResLeu: <1E6|>=200 mL<400mL|F rozen <=18 h|1st cont ainer|Meth ylene blue -treated', [ProductS hortName]= 'FFP AFR A CD-A LUKOP R 1C Methy l Blue', [ LastUpdate Date]='201 6-07-27 11 :17:06.000 ', [LastUp dateUser]= ' RED A CTED ' WHERE [B loodProduc tGuid]='b6 5fcb45-40b 5-4cbe-919 e-55a36656 6bf2' | |
| 8747 | UPDATE [db o].[BloodP roduct] SE T [Product Name]='CRY OPRECIPITA TE|CPDA-1/ 450mL/<=-2 5C', [Last UpdateDate ]='2016-07 -27 11:17: 06.000', [ LastUpdate User]=' RED A CTED ' WHERE [B loodProduc tGuid]='ae 721b66-08e d-4b3f-a80 e-55c0f3b2 c439' | |
| 8748 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLASMA A FR Thaw Na Cit IRD 5C ', [LastUp dateDate]= '2016-07-2 7 11:17:06 .000', [La stUpdateUs er]=' RED A CTED ' WHERE [B loodProduc tGuid]='d1 7c9657-406 8-4ead-a9a c-55eb74b8 546c' | |
| 8749 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC AFR CPDA-1 4C' , [LastUpd ateDate]=' 2016-07-27 11:17:06. 000', [Las tUpdateUse r]=' RED A CTED ' WHERE [B loodProduc tGuid]='97 9ed533-53e 3-4e1a-887 4-56000fef 8f81' | |
| 8750 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC Froz None OPN LUKOPR 8C' , [LastUpd ateDate]=' 2016-07-27 11:17:06. 000', [Las tUpdateUse r]=' RED A CTED ' WHERE [B loodProduc tGuid]='69 37b18c-ec3 2-46bc-91a 7-560c4e15 6cf6' | |
| 8751 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='FFP AFR Thaw None IRD LUKOPR 1C', [Las tUpdateDat e]='2016-0 7-27 11:17 :06.000', [LastUpdat eUser]=' RED A CTED ' WHERE [B loodProduc tGuid]='a2 d8f3f7-2b2 f-4c13-a4d 2-561b0838 2e77' | |
| 8752 | UPDATE [db o].[BloodP roduct] SE T [Product Name]='FRE SH FROZEN PLASMA|CPD /450mL/<=- 25C|For mn f:injectab le|Frozen <=24h', [L astUpdateD ate]='2016 -07-27 11: 17:06.000' , [LastUpd ateUser]=' RED A CTED ' WHERE [B loodProduc tGuid]='3e 15d9f2-06a 3-45c3-a02 8-5633bec1 a9af' | |
| 8753 | UPDATE [db o].[BloodP roduct] SE T [Product Name]='Fro zen Aphere sis PLATEL ETS|DMSO/X X/<=-65C|N ot for tx or mnf|Ope n', [LastU pdateDate] ='2016-07- 27 11:17:0 6.000', [L astUpdateU ser]=' RED A CTED ' WHERE [B loodProduc tGuid]='a6 3ed53d-1ea 3-4057-a0b 9-563cdcce 9007' | |
| 8754 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC CP2D >AS3 IRD L UKOPR 7C', [LastUpda teDate]='2 016-07-27 11:17:06.0 00', [Last UpdateUser ]=' RED A CTED ' WHERE [B loodProduc tGuid]='f5 b30f21-03c a-43ad-a43 0-564ae728 2301' | |
| 8755 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC AFR Deg None O PN IRD 7C' , [LastUpd ateDate]=' 2016-07-27 11:17:06. 000', [Las tUpdateUse r]=' RED A CTED ' WHERE [B loodProduc tGuid]='92 055ade-7de e-4733-bd5 1-565fba08 691b' | |
| 8756 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLT AFR ACD-B OPN LUKOPR 4C' , [LastUpd ateDate]=' 2016-07-27 11:17:06. 000', [Las tUpdateUse r]=' RED A CTED ' WHERE [B loodProduc tGuid]='e4 26128f-99b e-4fd5-bf5 8-566f3971 d16d' | |
| 8757 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='FFP AFR None QUAR 7C', [Last UpdateDate ]='2016-07 -27 11:17: 06.000', [ LastUpdate User]=' RED A CTED ' WHERE [B loodProduc tGuid]='20 4b1bde-41a 1-4a1f-9b1 5-56908ba2 868a' | |
| 8758 | UPDATE [db o].[BloodP roduct] SE T [Product Name]='Aph eresis FRE SH FROZEN PLASMA|ACD -A/XX/<=-6 5C|Irradia ted|1st co ntainer', [ProductSh ortName]=' FFP AFR AC D-A IRD 1C ', [LastUp dateDate]= '2016-07-2 7 11:17:06 .000', [La stUpdateUs er]=' RED A CTED ' WHERE [B loodProduc tGuid]='08 5954db-789 0-4c7e-aa7 4-56990a7c f7f8' | |
| 8759 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLT AFR ACD-A LUKO PR 1C BacM tr', [Last UpdateDate ]='2016-07 -27 11:17: 06.000', [ LastUpdate User]=' RED A CTED ' WHERE [B loodProduc tGuid]='62 217889-5e5 8-4ca0-a42 8-56bceacf 8285' | |
| 8760 | UPDATE [db o].[BloodP roduct] SE T [Product Name]='Aph eresis FRE SH FROZEN PLASMA|ACD -A/XX/<=-2 5C|For mnf :injectabl e|>=400mL< 600mL', [L astUpdateD ate]='2016 -07-27 11: 17:06.000' , [LastUpd ateUser]=' RED A CTED ' WHERE [B loodProduc tGuid]='25 7e1097-3fd 5-4ded-a22 c-56cdf9d8 a88f' | |
| 8761 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='FFP AFR Thaw NaCit IRD 4C QU AR', [Last UpdateDate ]='2016-07 -27 11:17: 06.000', [ LastUpdate User]=' RED A CTED ' WHERE [B loodProduc tGuid]='92 48b600-46e b-4895-a98 0-56d68a13 f0ed' | |
| 8762 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLT AFR Wash NS IR D LUKOPR 1 C', [LastU pdateDate] ='2016-07- 27 11:17:0 6.000', [L astUpdateU ser]=' RED A CTED ' WHERE [B loodProduc tGuid]='0b 1be1ec-9c4 8-4c8d-872 a-56e27392 5ca9' | |
| 8763 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='FFP AFR Thaw None IRD LUKOPR 8C', [Las tUpdateDat e]='2016-0 7-27 11:17 :06.000', [LastUpdat eUser]=' RED A CTED ' WHERE [B loodProduc tGuid]='17 965621-fcc 3-4ba7-911 9-56e8ed38 a7c8' | |
| 8764 | UPDATE [db o].[BloodP roduct] SE T [Product Name]='Fro zen Aphere sis PLATEL ETS|DMSO/X X/<=-65C|O pen|Irradi ated|ResLe u:<5E6', [ LastUpdate Date]='201 6-07-27 11 :17:06.000 ', [LastUp dateUser]= ' RED A CTED ' WHERE [B loodProduc tGuid]='e9 f05919-aec 4-4791-acc 7-56ec60d4 7fb5' | |
| 8765 | UPDATE [db o].[BloodP roduct] SE T [Product Name]='Aph eresis FRE SH FROZEN PLASMA|NaC itrate/XX/ <=-65C|Irr adiated|6t h containe r|Quar:>=1 12d/retest ed', [Prod uctShortNa me]='FFP A FR NaCit I RD 6C QUAR ', [LastUp dateDate]= '2016-07-2 7 11:17:06 .000', [La stUpdateUs er]=' RED A CTED ' WHERE [B loodProduc tGuid]='cd 2249ac-8b7 e-46e2-97f f-56f6a649 c0a0' | |
| 8766 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC CPDA -1 4C', [L astUpdateD ate]='2016 -07-27 11: 17:06.000' , [LastUpd ateUser]=' RED A CTED ' WHERE [B loodProduc tGuid]='41 63a367-7ab b-427b-9d5 5-56fbabec 9cbf' | |
| 8767 | UPDATE [db o].[BloodP roduct] SE T [Product Name]='FRE SH FROZEN PLASMA|CPD A-1/XX/<=- 25C|Not fo r tx or mn f|Quar:>=6 m/retested ', [LastUp dateDate]= '2016-07-2 7 11:17:06 .000', [La stUpdateUs er]=' RED A CTED ' WHERE [B loodProduc tGuid]='98 8a6622-706 6-4f9c-b48 0-570783ba 8697' | |
| 8768 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLT AFR Wash None LUKOPR 4C Psoraln', [LastUpdat eDate]='20 16-07-27 1 1:17:06.00 0', [LastU pdateUser] =' RED A CTED ' WHERE [B loodProduc tGuid]='d7 0ae5a3-bbb d-4b5f-887 5-571198f1 0357' | |
| 8769 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC AFR Rej None O PN IRD 1C' , [LastUpd ateDate]=' 2016-07-27 11:17:06. 000', [Las tUpdateUse r]=' RED A CTED ' WHERE [B loodProduc tGuid]='c0 c01d11-9d4 a-48f9-b00 e-5712ad98 b967' | |
| 8770 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='WB CPDA- 1 1C', [La stUpdateDa te]='2016- 07-27 11:1 7:06.000', [LastUpda teUser]=' RED A CTED ' WHERE [B loodProduc tGuid]='b8 861457-92e d-4f87-979 b-57137882 ce43' | |
| 8771 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLT AFR ACD-A>PAS- F IRD LUKO PR 1C', [L astUpdateD ate]='2016 -07-27 11: 17:06.000' , [LastUpd ateUser]=' RED A CTED ' WHERE [B loodProduc tGuid]='7b 4f4dee-e2a f-4098-936 c-571bfa15 a18d' | |
| 8772 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='FFP AFR None IRD L UKOPR 5C', [LastUpda teDate]='2 016-07-27 11:17:06.0 00', [Last UpdateUser ]=' RED A CTED ' WHERE [B loodProduc tGuid]='cd 1374d6-31e 7-4dbc-9e3 9-571fe190 2ddf' | |
| 8773 | UPDATE [db o].[BloodP roduct] SE T [Product Name]='FRE SH FROZEN PLASMA|CPD /450mL/<=- 25C|For mn f:noninjec table|Froz en <=8h|Qu ar:>=112d/ retested', [LastUpda teDate]='2 016-07-27 11:17:06.0 00', [Last UpdateUser ]=' RED A CTED ' WHERE [B loodProduc tGuid]='0c 46ff67-b7c 0-4991-895 7-572e550e 259f' | |
| 8774 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC AFR Wash SAGM IRD LUKOPR 1C', [Las tUpdateDat e]='2016-0 7-27 11:17 :06.000', [LastUpdat eUser]=' RED A CTED ' WHERE [B loodProduc tGuid]='6a 75c85e-21b 6-42c5-968 6-57348e8a dbb7' | |
| 8775 | UPDATE [db o].[BloodP roduct] SE T [Product Name]='Aph eresis FRE SH FROZEN PLASMA|ACD -B/XX/<=-2 5C|Aphr no t automate d', [LastU pdateDate] ='2016-07- 27 11:17:0 6.000', [L astUpdateU ser]=' RED A CTED ' WHERE [B loodProduc tGuid]='1b d788b6-f0d 8-4399-943 c-5740f76d ea1f' | |
| 8776 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC AFR ACD-A>AS3 8C', [Last UpdateDate ]='2016-07 -27 11:17: 06.000', [ LastUpdate User]=' RED A CTED ' WHERE [B loodProduc tGuid]='b3 76d978-305 9-4173-97a 4-5753063d 2496' | |
| 8777 | UPDATE [db o].[BloodP roduct] SE T [Product Name]='Fro zen Aphere sis RED BL OOD CELLS| None/XX/<= -65C|ResLe u:<5E6', [ LastUpdate Date]='201 6-07-27 11 :17:06.000 ', [LastUp dateUser]= ' RED A CTED ' WHERE [B loodProduc tGuid]='56 298c36-fcb b-4fa8-83c 0-57755c1f 7fc3' | |
| 8778 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='FFP AFR Thaw None IRD LUKOPR 3C', [Las tUpdateDat e]='2016-0 7-27 11:17 :06.000', [LastUpdat eUser]=' RED A CTED ' WHERE [B loodProduc tGuid]='75 d05816-2fe 0-486a-96d 1-57aa8367 799e' | |
| 8779 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLT AFR PAS-E LUKO PR SUPRed 3C Psoraln ', [LastUp dateDate]= '2016-07-2 7 11:17:06 .000', [La stUpdateUs er]=' RED A CTED ' WHERE [B loodProduc tGuid]='9c dca9db-397 7-4923-b13 7-57b98451 51fe' | |
| 8780 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC CP2D >AS3 IRD L UKOPR 5C', [LastUpda teDate]='2 016-07-27 11:17:06.0 00', [Last UpdateUser ]=' RED A CTED ' WHERE [B loodProduc tGuid]='e1 8203fe-d6e 1-461e-b53 0-57cc2920 0d22' | |
| 8781 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLASMA A FR Thaw AC D-A 4C', [ LastUpdate Date]='201 6-07-27 11 :17:06.000 ', [LastUp dateUser]= ' RED A CTED ' WHERE [B loodProduc tGuid]='db e88b1a-42e 4-4b2e-bec d-57f61b43 bb87' | |
| 8782 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC AFR Deg None O PN IRD 6C' , [LastUpd ateDate]=' 2016-07-27 11:17:06. 000', [Las tUpdateUse r]=' RED A CTED ' WHERE [B loodProduc tGuid]='26 3c56ce-a41 6-4750-be9 7-57f640ff ac6d' | |
| 8783 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC CP2D >AS3 LUKOP R 2C', [La stUpdateDa te]='2016- 07-27 11:1 7:06.000', [LastUpda teUser]=' RED A CTED ' WHERE [B loodProduc tGuid]='47 06e09d-442 2-4bd2-938 0-5800ae3b dc7e' | |
| 8784 | UPDATE [db o].[BloodP roduct] SE T [Product Name]='Fro zen RED BL OOD CELLS| None/500mL /<=-65C|Op en|ResLeu: <5E6', [La stUpdateDa te]='2016- 07-27 11:1 7:06.000', [LastUpda teUser]=' RED A CTED ' WHERE [B loodProduc tGuid]='cb a0e28c-fbe 3-4140-b5a 1-580a9a5c 33bf' | |
| 8785 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLASMA A FR Thaw AC D-A IRD 2C ', [LastUp dateDate]= '2016-07-2 7 11:17:06 .000', [La stUpdateUs er]=' RED A CTED ' WHERE [B loodProduc tGuid]='49 3ca5ec-c11 d-4d38-9bf f-581398d2 dd0c' | |
| 8786 | UPDATE [db o].[BloodP roduct] SE T [Product Name]='Aph eresis FRE SH FROZEN PLASMA|ACD -A/XX/<=-6 5C|>=600mL ', [LastUp dateDate]= '2016-07-2 7 11:17:06 .000', [La stUpdateUs er]=' RED A CTED ' WHERE [B loodProduc tGuid]='88 9b9daa-25a 9-4f05-bc6 c-58158b64 d045' | |
| 8787 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC AFR ACD-A>AS3 1C', [Last UpdateDate ]='2016-07 -27 11:17: 06.000', [ LastUpdate User]=' RED A CTED ' WHERE [B loodProduc tGuid]='62 93b421-52b 8-4fbf-984 e-582236d6 f3a3' | |
| 8788 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLT AFR PAS-E LUKO PR 2C Psor aln', [Las tUpdateDat e]='2016-0 7-27 11:17 :06.000', [LastUpdat eUser]=' RED A CTED ' WHERE [B loodProduc tGuid]='be 7eae1b-ad7 2-4dee-bdc 6-5823bf4d 3338' | |
| 8789 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC CPDA -1 IRD LUK OPR 3C', [ LastUpdate Date]='201 6-07-27 11 :17:06.000 ', [LastUp dateUser]= ' RED A CTED ' WHERE [B loodProduc tGuid]='e3 26dccc-180 7-4843-90f d-5842679e 94bb' | |
| 8790 | UPDATE [db o].[BloodP roduct] SE T [Product Name]='Aph eresis FRE SH FROZEN PLASMA|NS/ XX/<=-30C| For mnf:no ninjectabl e|ResLeu:< 1E6|Frozen <=72h', [ LastUpdate Date]='201 6-07-27 11 :17:06.000 ', [LastUp dateUser]= ' RED A CTED ' WHERE [B loodProduc tGuid]='f6 bb58c6-fac 3-4450-808 5-5856f630 b93b' | |
| 8791 | UPDATE [db o].[BloodP roduct] SE T [Product Name]='Fro zen Aphere sis RED BL OOD CELLS| None/XX/<= -65C|Open| Irradiated |ResLeu:<5 E6|2nd con tainer', [ ProductSho rtName]='R BC AFR Fro z None OPN IRD LUKOP R 2C', [La stUpdateDa te]='2016- 07-27 11:1 7:06.000', [LastUpda teUser]=' RED A CTED ' WHERE [B loodProduc tGuid]='f5 23348c-f22 c-44f1-89c 3-587416e9 4b32' | |
| 8792 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC AFR CP2D>AS3 O PN IRD SR 1C', [Last UpdateDate ]='2016-07 -27 11:17: 06.000', [ LastUpdate User]=' RED A CTED ' WHERE [B loodProduc tGuid]='16 13278b-19c d-4bd2-b1a 6-588194ed 63f1' | |
| 8793 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC CPDA -1 5C', [L astUpdateD ate]='2016 -07-27 11: 17:06.000' , [LastUpd ateUser]=' RED A CTED ' WHERE [B loodProduc tGuid]='39 85ee0d-0ac 1-436c-a94 d-588a9cc1 ed13' | |
| 8794 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC AFR CPDA-1 IRD 8C', [Las tUpdateDat e]='2016-0 7-27 11:17 :06.000', [LastUpdat eUser]=' RED A CTED ' WHERE [B loodProduc tGuid]='1e 7219f5-071 5-44fe-908 1-588d8e22 db82' | |
| 8795 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC AFR ACD-A>AS3 LUKOPR 7C' , [LastUpd ateDate]=' 2016-07-27 11:17:06. 000', [Las tUpdateUse r]=' RED A CTED ' WHERE [B loodProduc tGuid]='fa bf205d-f13 d-490c-a89 e-5893b94e d86b' | |
| 8796 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLT AFR Wash NS LU KOPR SUPRe d 1C', [La stUpdateDa te]='2016- 07-27 11:1 7:06.000', [LastUpda teUser]=' RED A CTED ' WHERE [B loodProduc tGuid]='3c 3e2dcf-885 9-4860-9f2 c-589a14e2 a1e8' | |
| 8797 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLT AFR PAS-E IRD LUKOPR 1C BacMtr', [ LastUpdate Date]='201 6-07-27 11 :17:06.000 ', [LastUp dateUser]= ' RED A CTED ' WHERE [B loodProduc tGuid]='60 39ec7a-69b a-4abb-93a e-58a22473 5428' | |
| 8798 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLT AFR ACD-A IRD 4C', [Last UpdateDate ]='2016-07 -27 11:17: 06.000', [ LastUpdate User]=' RED A CTED ' WHERE [B loodProduc tGuid]='12 5822f8-de9 f-416c-bf0 c-58c071e8 ac65' | |
| 8799 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLT AFR ACD-B IRD LUKOPR PLS Red 2CNA' , [LastUpd ateDate]=' 2016-07-27 11:17:06. 000', [Las tUpdateUse r]=' RED A CTED ' WHERE [B loodProduc tGuid]='d8 49d272-523 1-4915-aa2 0-58c2542e 5ac7' | |
| 8800 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLT AFR ACD-A IRD LUKOPR 2C' , [LastUpd ateDate]=' 2016-07-27 11:17:06. 000', [Las tUpdateUse r]=' RED A CTED ' WHERE [B loodProduc tGuid]='62 9ed9c0-7ad 0-4705-80b e-58c3ca8d 0f57' | |
| 8801 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC AFR CPDA-1 OPN IRD LUKOP R PA 2C', [LastUpdat eDate]='20 16-07-27 1 1:17:06.00 0', [LastU pdateUser] =' RED A CTED ' WHERE [B loodProduc tGuid]='8e 686104-ca4 4-4785-899 f-58c89ceb fa35' | |
| 8802 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC AFR ACD-A>AS1 IRD 7C', [ LastUpdate Date]='201 6-07-27 11 :17:06.000 ', [LastUp dateUser]= ' RED A CTED ' WHERE [B loodProduc tGuid]='0f 62a3ea-715 5-4ed2-a22 b-58c99afd fa5d' | |
| 8803 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLT AFR ACD-A 8C', [LastUpda teDate]='2 016-07-27 11:17:06.0 00', [Last UpdateUser ]=' RED A CTED ' WHERE [B loodProduc tGuid]='95 b714d7-3cb 2-4a00-940 c-58dc93c5 9c9c' | |
| 8804 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLT AFR ACD-A IRD LUKOPR 2C BacMtr', [ LastUpdate Date]='201 6-07-27 11 :17:06.000 ', [LastUp dateUser]= ' RED A CTED ' WHERE [B loodProduc tGuid]='d1 37e3dc-285 8-475c-bd8 7-58e04887 a7ec' | |
| 8805 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLT AFR NaCit OPN IRD LUKOPR 3C', [Las tUpdateDat e]='2016-0 7-27 11:17 :06.000', [LastUpdat eUser]=' RED A CTED ' WHERE [B loodProduc tGuid]='7b 8f9171-d7f 5-4c5e-bc9 f-58e2cf08 9c68' | |
| 8806 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC AFR CP2D MNFNI OPN 1C', [LastUpdat eDate]='20 16-07-27 1 1:17:06.00 0', [LastU pdateUser] =' RED A CTED ' WHERE [B loodProduc tGuid]='70 62eb3a-f0d 0-4819-aff e-591496ad 5f4e' | |
| 8807 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC CPD IRD 4C', [ RetireDate ]='2015-04 -07 00:00: 00.000', [ LastUpdate Date]='201 6-07-27 11 :17:06.000 ', [LastUp dateUser]= ' RED A CTED ' WHERE [B loodProduc tGuid]='6e 4bf38d-792 4-424b-bff 9-5924ad66 bfb2' | |
| 8808 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLT AFR Froz ACD-A >PAS-C MNF NI LUKOPR 3C', [Last UpdateDate ]='2016-07 -27 11:17: 06.000', [ LastUpdate User]=' RED A CTED ' WHERE [B loodProduc tGuid]='b7 bc1da7-6d7 8-4363-9f0 4-592953a7 dda1' | |
| 8809 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLT AFR Wash PAS-D LUKOPR 2C ', [LastUp dateDate]= '2016-07-2 7 11:17:06 .000', [La stUpdateUs er]=' RED A CTED ' WHERE [B loodProduc tGuid]='14 709128-474 c-4dcd-892 1-59555c79 1f54' | |
| 8810 | UPDATE [db o].[BloodP roduct] SE T [Product Name]='Aph eresis FRE SH FROZEN PLASMA|NaC itrate/XX/ <=-65C|Irr adiated|>= 400mL<600m L', [LastU pdateDate] ='2016-07- 27 11:17:0 6.000', [L astUpdateU ser]=' RED A CTED ' WHERE [B loodProduc tGuid]='06 c43405-b37 5-4335-b58 7-59650e83 b6c5' | |
| 8811 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC CP2D IRD 1C', [LastUpdat eDate]='20 16-07-27 1 1:17:06.00 0', [LastU pdateUser] =' RED A CTED ' WHERE [B loodProduc tGuid]='c5 fd004c-2d9 e-45ca-8ca 6-59666387 e766' | |
| 8812 | UPDATE [db o].[BloodP roduct] SE T [Product Name]='Fro zen Aphere sis PLATEL ETS|DMSO/X X/<=-65C|O pen|ResLeu :<5E6', [L astUpdateD ate]='2016 -07-27 11: 17:06.000' , [LastUpd ateUser]=' RED A CTED ' WHERE [B loodProduc tGuid]='80 6905a8-4bf 6-45a9-86c e-5972f849 0332' | |
| 8813 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLT AFR ACD-A>PAS- C 3C', [La stUpdateDa te]='2016- 07-27 11:1 7:06.000', [LastUpda teUser]=' RED A CTED ' WHERE [B loodProduc tGuid]='72 b7b724-845 7-4b81-838 c-5976244b e8fa' | |
| 8814 | UPDATE [db o].[BloodP roduct] SE T [Product Name]='Aph eresis FRE SH FROZEN PLASMA|ACD -B/XX/<=-6 5C|Not for tx or mnf ', [LastUp dateDate]= '2016-07-2 7 11:17:06 .000', [La stUpdateUs er]=' RED A CTED ' WHERE [B loodProduc tGuid]='c4 dd7803-70f d-4d7a-bbd b-597630ec 7e9d' | |
| 8815 | UPDATE [db o].[BloodP roduct] SE T [Product Name]='Aph eresis FRE SH FROZEN PLASMA|NaC itrate/XX/ <=-30C|Res Leu:<1E6|< 200 mL|Fro zen <=18h| Methylene blue-treat ed', [Last UpdateDate ]='2016-07 -27 11:17: 06.000', [ LastUpdate User]=' RED A CTED ' WHERE [B loodProduc tGuid]='9e 63a534-742 c-41e0-9f1 e-599de3bf f956' | |
| 8816 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='FFP AFR CP2D 2C', [LastUpdat eDate]='20 16-07-27 1 1:17:06.00 0', [LastU pdateUser] =' RED A CTED ' WHERE [B loodProduc tGuid]='c9 a74e0a-2dc 8-4d51-a4a 4-59ae429b f110' | |
| 8817 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLT AFR ACD-A>PAS- C 1C', [La stUpdateDa te]='2016- 07-27 11:1 7:06.000', [LastUpda teUser]=' RED A CTED ' WHERE [B loodProduc tGuid]='42 aa818c-069 8-401f-b13 a-59bc6e0e 318a' | |
| 8818 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC AFR CP2D 1C', [LastUpdat eDate]='20 16-07-27 1 1:17:06.00 0', [LastU pdateUser] =' RED A CTED ' WHERE [B loodProduc tGuid]='cb ca5fde-fe2 c-4be1-8bc 6-59d7b2a8 2ef6' | |
| 8819 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLT AFR NaCit MNFN I 1CNA', [ LastUpdate Date]='201 6-07-27 11 :17:06.000 ', [LastUp dateUser]= ' RED A CTED ' WHERE [B loodProduc tGuid]='ba 0a8c4d-c5c c-4284-81f b-59f95fed 77de' | |
| 8820 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC CPD> AS1 IRD LU KOPR 5C', [LastUpdat eDate]='20 16-07-27 1 1:17:06.00 0', [LastU pdateUser] =' RED A CTED ' WHERE [B loodProduc tGuid]='3a 0b8f0f-08a f-4650-875 8-5a04321b abd8' | |
| 8821 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='FFP AFR ACD-A LUKO PR 1C', [L astUpdateD ate]='2016 -07-27 11: 17:06.000' , [LastUpd ateUser]=' RED A CTED ' WHERE [B loodProduc tGuid]='87 8db69e-205 b-406e-b35 6-5a069882 4c13' | |
| 8822 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLT AFR ACD-A LUKO PR 7C', [L astUpdateD ate]='2016 -07-27 11: 17:06.000' , [LastUpd ateUser]=' RED A CTED ' WHERE [B loodProduc tGuid]='53 5a1af3-679 5-42de-a37 9-5a1dc6ce b170' | |
| 8823 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLT AFR NaCit OPN LUKOPR 4C' , [LastUpd ateDate]=' 2016-07-27 11:17:06. 000', [Las tUpdateUse r]=' RED A CTED ' WHERE [B loodProduc tGuid]='62 66e99f-ebf 2-45db-b1b 3-5a28853e 3831' | |
| 8824 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC AFR Deg None O PN LUKOPR 1C', [Last UpdateDate ]='2016-07 -27 11:17: 06.000', [ LastUpdate User]=' RED A CTED ' WHERE [B loodProduc tGuid]='b4 96dc82-c12 f-4d0e-a8c d-5a450ffe a0c8' | |
| 8825 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='FFP AFR None IRD 6 C', [LastU pdateDate] ='2016-07- 27 11:17:0 6.000', [L astUpdateU ser]=' RED A CTED ' WHERE [B loodProduc tGuid]='6b d1003d-436 f-42fb-964 8-5a536edb 0807' | |
| 8826 | UPDATE [db o].[BloodP roduct] SE T [Product Name]='Aph eresis FRE SH FROZEN PLASMA|ACD -A/XX/<=-6 5C|Not for tx or mnf |Fin Con:N S|Quar:>=6 m/retested ', [LastUp dateDate]= '2016-07-2 7 11:17:06 .000', [La stUpdateUs er]=' RED A CTED ' WHERE [B loodProduc tGuid]='80 18ed95-ab7 9-4885-818 1-5a556f8c 5701' | |
| 8827 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC AFR ACD-A>AS3 2C', [Last UpdateDate ]='2016-07 -27 11:17: 06.000', [ LastUpdate User]=' RED A CTED ' WHERE [B loodProduc tGuid]='1c 99d9b9-cc9 e-4cdb-b43 f-5a7c2762 cbb7' | |
| 8828 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLT AFR ACD-A NMT OPN 1CNA', [LastUpda teDate]='2 016-07-27 11:17:06.0 00', [Last UpdateUser ]=' RED A CTED ' WHERE [B loodProduc tGuid]='09 13c4a5-9fc 6-4748-b8b 7-5a7f9695 66e5' | |
| 8829 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLT AFR NS LUKOPR PLS Red 3C ', [LastUp dateDate]= '2016-07-2 7 11:17:06 .000', [La stUpdateUs er]=' RED A CTED ' WHERE [B loodProduc tGuid]='43 d11a10-04d 4-4ea5-820 0-5a919836 2fb2' | |
| 8830 | UPDATE [db o].[BloodP roduct] SE T [Product Name]='FRE SH FROZEN PLASMA|CPD /450mL/<=- 30C|ResLeu :<1E6|Quar :>=62d/ret ested', [L astUpdateD ate]='2016 -07-27 11: 17:06.000' , [LastUpd ateUser]=' RED A CTED ' WHERE [B loodProduc tGuid]='e4 bc8294-02a 4-438f-92b 3-5ab3bdeb c7da' | |
| 8831 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLT AFR ACD-A IRD LUKOPR 6C BacMtr', [ LastUpdate Date]='201 6-07-27 11 :17:06.000 ', [LastUp dateUser]= ' RED A CTED ' WHERE [B loodProduc tGuid]='b7 b1d470-f75 3-4036-a14 f-5ac61c75 079c' | |
| 8832 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC AFR CPDA-1 MNF NI 1C', [L astUpdateD ate]='2016 -07-27 11: 17:06.000' , [LastUpd ateUser]=' RED A CTED ' WHERE [B loodProduc tGuid]='65 f3a4a0-aa8 c-4892-9e7 9-5ac88866 41d6' | |
| 8833 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC AFR CP2D>AS3 I RD LUKOPR 4C', [Last UpdateDate ]='2016-07 -27 11:17: 06.000', [ LastUpdate User]=' RED A CTED ' WHERE [B loodProduc tGuid]='b2 ff2d7e-fb8 6-41d4-aea 6-5accc974 adbe' | |
| 8834 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC AFR ACD-A>AS1 IRD 8C', [ LastUpdate Date]='201 6-07-27 11 :17:06.000 ', [LastUp dateUser]= ' RED A CTED ' WHERE [B loodProduc tGuid]='4d dbd331-129 3-4f1d-819 7-5ad5cd17 2031' | |
| 8835 | UPDATE [db o].[BloodP roduct] SE T [Product Name]='Fro zen POOLED PLATELETS |DMSO/XX/< =-80C|Open |ResLeu:<1 E6|Buffy c oat plts p rep|4 unit s', [LastU pdateDate] ='2016-07- 27 11:17:0 6.000', [L astUpdateU ser]=' RED A CTED ' WHERE [B loodProduc tGuid]='8b d234ae-2ac 0-428f-bda 9-5ad622d5 5060' | |
| 8836 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC AFR CP2D>AS3 8 C', [LastU pdateDate] ='2016-07- 27 11:17:0 6.000', [L astUpdateU ser]=' RED A CTED ' WHERE [B loodProduc tGuid]='b9 380e93-7c8 8-4c53-a24 d-5ad6735f 63db' | |
| 8837 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLT AFR ACD-A>PAS- F IRD LUKO PR 2C', [L astUpdateD ate]='2016 -07-27 11: 17:06.000' , [LastUpd ateUser]=' RED A CTED ' WHERE [B loodProduc tGuid]='0b 040869-b89 5-438c-a07 e-5ad9491d ca47' | |
| 8838 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLT AFR ACD-A IRD LUKOPR 5C' , [LastUpd ateDate]=' 2016-07-27 11:17:06. 000', [Las tUpdateUse r]=' RED A CTED ' WHERE [B loodProduc tGuid]='d4 0d87e9-1be 9-42e2-afc e-5ae39956 ce3b' | |
| 8839 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC AFR CPDA-1 OPN LUKOPR SR 2C', [Las tUpdateDat e]='2016-0 7-27 11:17 :06.000', [LastUpdat eUser]=' RED A CTED ' WHERE [B loodProduc tGuid]='07 4e1030-d2e 2-4e21-b8b b-5b0d2e7b 71f5' | |
| 8840 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLT AFR PAS-D IRD LUKOPR 2C BacTest', [LastUpdat eDate]='20 16-07-27 1 1:17:06.00 0', [LastU pdateUser] =' RED A CTED ' WHERE [B loodProduc tGuid]='84 1fcf4b-b59 2-4a65-aa4 b-5b0ea8d8 4ab5' | |
| 8841 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC AFR ACD-A>AS3 IRD LUKOPR 3C', [Las tUpdateDat e]='2016-0 7-27 11:17 :06.000', [LastUpdat eUser]=' RED A CTED ' WHERE [B loodProduc tGuid]='be 8e8961-e02 d-4512-8d9 a-5b12c11c 7d74' | |
| 8842 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC AFR CP2D NMT 1 C', [LastU pdateDate] ='2016-07- 27 11:17:0 6.000', [L astUpdateU ser]=' RED A CTED ' WHERE [B loodProduc tGuid]='8e 9b2980-f73 a-4abd-85e e-5b31b164 6478' | |
| 8843 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC AFR ACD-A MNFN I 2C', [La stUpdateDa te]='2016- 07-27 11:1 7:06.000', [LastUpda teUser]=' RED A CTED ' WHERE [B loodProduc tGuid]='f6 6b56a2-6fe 0-4360-9e4 6-5b381e43 b2af' | |
| 8844 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC CPD LUKOPR 7C' , [LastUpd ateDate]=' 2016-07-27 11:17:06. 000', [Las tUpdateUse r]=' RED A CTED ' WHERE [B loodProduc tGuid]='7d 38a378-051 5-4a77-8a0 9-5b49e4c7 8b67' | |
| 8845 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='FFP AFR Thaw 0.5 C PD IRD LUK OPR 1C', [ LastUpdate Date]='201 6-07-27 11 :17:06.000 ', [LastUp dateUser]= ' RED A CTED ' WHERE [B loodProduc tGuid]='cb d27016-2fb 9-463f-a52 d-5b4b0a6a 141e' | |
| 8846 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLASMA A FR Thaw AC D-A OPN IR D 2C', [La stUpdateDa te]='2016- 07-27 11:1 7:06.000', [LastUpda teUser]=' RED A CTED ' WHERE [B loodProduc tGuid]='dd 31c8bc-615 a-4c9a-8be 3-5b5d8ff1 e80c' | |
| 8847 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='FFP AFR Thaw ACD-A LUKOPR 1C ', [LastUp dateDate]= '2016-07-2 7 11:17:06 .000', [La stUpdateUs er]=' RED A CTED ' WHERE [B loodProduc tGuid]='03 97977b-a84 d-4abe-aa0 c-5b73d6af d830' | |
| 8848 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLT AFR Wash None NMT OPN 4C ', [LastUp dateDate]= '2016-07-2 7 11:17:06 .000', [La stUpdateUs er]=' RED A CTED ' WHERE [B loodProduc tGuid]='1e b9091e-4b6 4-45cd-923 c-5b7e7657 bc9a' | |
| 8849 | UPDATE [db o].[BloodP roduct] SE T [Product Name]='Fro zen RED BL OOD CELLS| None/450mL /<=-65C|No t for tx o r mnf|Open ', [LastUp dateDate]= '2016-07-2 7 11:17:06 .000', [La stUpdateUs er]=' RED A CTED ' WHERE [B loodProduc tGuid]='b5 028619-be0 5-4083-80f 6-5b957a12 4c42' | |
| 8850 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLT AFR ACD-B OPN PLS Red 3C ', [LastUp dateDate]= '2016-07-2 7 11:17:06 .000', [La stUpdateUs er]=' RED A CTED ' WHERE [B loodProduc tGuid]='6c 011861-b87 8-4d81-8fc f-5bb5668a 2b5b' | |
| 8851 | UPDATE [db o].[BloodP roduct] SE T [Product Name]='Aph eresis FRE SH FROZEN PLASMA|NaC itrate/XX/ <=-30C|Res Leu:<1E6|> =200mL<400 mL|Frozen <=18h|1st container' , [Product ShortName] ='FFP AFR NaCit LUKO PR 1C', [L astUpdateD ate]='2016 -07-27 11: 17:06.000' , [LastUpd ateUser]=' RED A CTED ' WHERE [B loodProduc tGuid]='f4 6af6cb-ce2 b-4366-a75 c-5bb7df12 20b1' | |
| 8852 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLT AFR NS IRD LUK OPR 1C', [ LastUpdate Date]='201 6-07-27 11 :17:06.000 ', [LastUp dateUser]= ' RED A CTED ' WHERE [B loodProduc tGuid]='8f 290a43-129 1-4f07-b07 e-5bbdbe2e fe69' | |
| 8853 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLT AFR NS IRD LUK OPR 3C', [ LastUpdate Date]='201 6-07-27 11 :17:06.000 ', [LastUp dateUser]= ' RED A CTED ' WHERE [B loodProduc tGuid]='2a 58dc36-34a e-4951-b5e 2-5bc1496a 1ca3' | |
| 8854 | UPDATE [db o].[BloodP roduct] SE T [Product Name]='Aph eresis FRE SH FROZEN PLASMA|ACD -B/XX/<=-2 5C|Irradia ted|>=400m L<600mL', [LastUpdat eDate]='20 16-07-27 1 1:17:06.00 0', [LastU pdateUser] =' RED A CTED ' WHERE [B loodProduc tGuid]='88 af9231-a89 c-4456-9e1 7-5bdf49df 9866' | |
| 8855 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLT AFR Thaw DMSO OPN IRD PA 1CNA', [L astUpdateD ate]='2016 -07-27 11: 17:06.000' , [LastUpd ateUser]=' RED A CTED ' WHERE [B loodProduc tGuid]='25 d9a8b5-fe8 c-4844-a45 b-5be1b8bb 71ba' | |
| 8856 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC AFR Deg None O PN LUKOPR 1C', [Last UpdateDate ]='2016-07 -27 11:17: 06.000', [ LastUpdate User]=' RED A CTED ' WHERE [B loodProduc tGuid]='5c d5bfb3-42d 3-4501-85f 3-5be56ebc 16b3' | |
| 8857 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLASMA A FR Thaw No ne IRD 2C' , [LastUpd ateDate]=' 2016-07-27 11:17:06. 000', [Las tUpdateUse r]=' RED A CTED ' WHERE [B loodProduc tGuid]='84 ab3e91-7cc 9-448e-87a 3-5c11a048 e02d' | |
| 8858 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC AFR CPDA-1 IRD LUKOPR 2C ', [LastUp dateDate]= '2016-07-2 7 11:17:06 .000', [La stUpdateUs er]=' RED A CTED ' WHERE [B loodProduc tGuid]='91 a63e52-b3d c-4f5a-878 0-5c266636 301a' | |
| 8859 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC Froz None OPN LUKOPR 2C' , [LastUpd ateDate]=' 2016-07-27 11:17:06. 000', [Las tUpdateUse r]=' RED A CTED ' WHERE [B loodProduc tGuid]='7d 96cf11-416 a-46ae-990 5-5c298bb3 7f01' | |
| 8860 | UPDATE [db o].[BloodP roduct] SE T [Product Name]='Fro zen Aphere sis PLATEL ETS|DMSO/X X/<=-65C|I rradiated| ResLeu:<5E 6|2nd cont ainer', [P roductShor tName]='PL T AFR Froz DMSO IRD LUKOPR 2C' , [LastUpd ateDate]=' 2016-07-27 11:17:06. 000', [Las tUpdateUse r]=' RED A CTED ' WHERE [B loodProduc tGuid]='80 120598-394 9-4488-98d 8-5c40a86e 5cae' | |
| 8861 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='WB CPD 4 C', [LastU pdateDate] ='2016-07- 27 11:17:0 6.000', [L astUpdateU ser]=' RED A CTED ' WHERE [B loodProduc tGuid]='bc 31f924-d74 7-432a-8e7 0-5c4b064c 0b5c' | |
| 8862 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLT AFR Wash NS IR D LUKOPR 3 C', [LastU pdateDate] ='2016-07- 27 11:17:0 6.000', [L astUpdateU ser]=' RED A CTED ' WHERE [B loodProduc tGuid]='f1 4a6416-ffa 5-4153-a03 0-5c5b5a4d be8a' | |
| 8863 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLT AFR ACD-A>PAS- C LUKOPR 2 C Pedi', [ LastUpdate Date]='201 6-07-27 11 :17:06.000 ', [LastUp dateUser]= ' RED A CTED ' WHERE [B loodProduc tGuid]='fd 96c1ff-ef1 0-41a4-a7c 4-5c629775 aa87' | |
| 8864 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='FFP AFR NaCit IRD 5C', [Last UpdateDate ]='2016-07 -27 11:17: 06.000', [ LastUpdate User]=' RED A CTED ' WHERE [B loodProduc tGuid]='55 8ac514-a74 d-4c39-9de a-5c66c680 b41e' | |
| 8865 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC AFR CP2D>AS3 L UKOPR SR 2 C', [LastU pdateDate] ='2016-07- 27 11:17:0 6.000', [L astUpdateU ser]=' RED A CTED ' WHERE [B loodProduc tGuid]='5c 876ce2-cd1 8-433e-9cb 1-5c71c655 8c6f' | |
| 8866 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLT AFR PAS-C LUKO PR 3C', [L astUpdateD ate]='2016 -07-27 11: 17:06.000' , [LastUpd ateUser]=' RED A CTED ' WHERE [B loodProduc tGuid]='f6 792a00-981 8-473a-a4d 6-5c72f215 a892' | |
| 8867 | UPDATE [db o].[BloodP roduct] SE T [Product Name]='Aph eresis FRE SH FROZEN PLASMA|ACD -B/XX/<=-2 5C|Irradia ted|Aphr n ot automat ed|Quar:>= 6m/reteste d', [LastU pdateDate] ='2016-07- 27 11:17:0 6.000', [L astUpdateU ser]=' RED A CTED ' WHERE [B loodProduc tGuid]='fa 84735e-264 a-46c9-940 6-5c754639 f646' | |
| 8868 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLT AFR ACD-A IRD LUKOPR 2C' , [LastUpd ateDate]=' 2016-07-27 11:17:06. 000', [Las tUpdateUse r]=' RED A CTED ' WHERE [B loodProduc tGuid]='ee a4fab6-202 2-49f2-b53 b-5c918ed4 c09b' | |
| 8869 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC AFR ACD-A>AS3 MNFNI 2C', [LastUpda teDate]='2 016-07-27 11:17:06.0 00', [Last UpdateUser ]=' RED A CTED ' WHERE [B loodProduc tGuid]='7b 8c0fe5-90e 6-4616-9a3 1-5c923d8f 3df6' | |
| 8870 | UPDATE [db o].[BloodP roduct] SE T [Product Name]='POO LED FRESH FROZEN PLA SMA|CPD/XX /<=-30C|Re sLeu:<1E6| >=600mL|3 units|Psor alen-treat ed', [Prod uctShortNa me]='FFP P ool CPD LU KOPR LrgVo l 3U Psora ln', [Last UpdateDate ]='2016-07 -27 11:17: 06.000', [ LastUpdate User]=' RED A CTED ' WHERE [B loodProduc tGuid]='90 04481f-fe0 3-44d0-83a 7-5caf0325 7da6' | |
| 8871 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC AFR ACD-A>AS3 OPN LUKOPR ALB Add 1 C', [LastU pdateDate] ='2016-07- 27 11:17:0 6.000', [L astUpdateU ser]=' RED A CTED ' WHERE [B loodProduc tGuid]='be 4da2de-a4d 0-48ea-889 b-5cb128fc eec0' | |
| 8872 | UPDATE [db o].[BloodP roduct] SE T [Product Name]='Fro zen Rejuve nated Aphe resis RED BLOOD CELL S|None/XX/ <=-65C|Ope n|ResLeu:< 5E6|2nd co ntainer', [ProductSh ortName]=' RBC AFR Fr oz Rej Non e OPN LUKO PR 2C', [L astUpdateD ate]='2016 -07-27 11: 17:06.000' , [LastUpd ateUser]=' RED A CTED ' WHERE [B loodProduc tGuid]='92 b2aaeb-7b6 1-4370-aac e-5cb9ce04 6588' | |
| 8873 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLT AFR ACD-A IRD LUKOPR 6C' , [LastUpd ateDate]=' 2016-07-27 11:17:06. 000', [Las tUpdateUse r]=' RED A CTED ' WHERE [B loodProduc tGuid]='60 c0298a-f9f 7-4ab2-8ec 3-5cc8d6f9 48f9' | |
| 8874 | UPDATE [db o].[BloodP roduct] SE T [Product Name]='Aph eresis FRE SH FROZEN PLASMA|ACD -A/XX/<=-3 0C|For mnf :injectabl e|>=600mL' , [LastUpd ateDate]=' 2016-07-27 11:17:06. 000', [Las tUpdateUse r]=' RED A CTED ' WHERE [B loodProduc tGuid]='37 094f89-050 a-4045-9cd 0-5cfac573 41fd' | |
| 8875 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLT AFR ACD-A OPN IRD LUKOPR PLS Red 1 C', [LastU pdateDate] ='2016-07- 27 11:17:0 6.000', [L astUpdateU ser]=' RED A CTED ' WHERE [B loodProduc tGuid]='e4 c0171a-ffa d-42cc-8d9 2-5d0cc3ff 57a0' | |
| 8876 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC Deg None 2C', [LastUpdat eDate]='20 16-07-27 1 1:17:06.00 0', [LastU pdateUser] =' RED A CTED ' WHERE [B loodProduc tGuid]='3e de4435-ce1 6-4363-ac8 7-5d138e46 512a' | |
| 8877 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC CP2D 7C', [Las tUpdateDat e]='2016-0 7-27 11:17 :06.000', [LastUpdat eUser]=' RED A CTED ' WHERE [B loodProduc tGuid]='38 2ae367-1f7 2-4c24-a02 d-5d203887 fca6' | |
| 8878 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLT AFR NS IRD LUK OPR PLS Re d 3C', [La stUpdateDa te]='2016- 07-27 11:1 7:06.000', [LastUpda teUser]=' RED A CTED ' WHERE [B loodProduc tGuid]='0e 1a822f-20d 7-4032-840 b-5d22b78c 4eae' | |
| 8879 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='FFP AFR Thaw None 5C', [Last UpdateDate ]='2016-07 -27 11:17: 06.000', [ LastUpdate User]=' RED A CTED ' WHERE [B loodProduc tGuid]='bf 3976fe-b4c c-4ca5-b4c e-5d292ea8 209d' | |
| 8880 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC CPD IRD 2C', [ LastUpdate Date]='201 6-07-27 11 :17:06.000 ', [LastUp dateUser]= ' RED A CTED ' WHERE [B loodProduc tGuid]='24 586a20-fb0 4-451e-aef 2-5d3195a5 0cac' | |
| 8881 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLT AFR PAS-E IRD LUKOPR 3C BacMtr', [ LastUpdate Date]='201 6-07-27 11 :17:06.000 ', [LastUp dateUser]= ' RED A CTED ' WHERE [B loodProduc tGuid]='66 62b5df-1ad 9-42c1-9a1 5-5d4d0f84 ce30' | |
| 8882 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLT AFR ACD-A LUKO PR 4C', [L astUpdateD ate]='2016 -07-27 11: 17:06.000' , [LastUpd ateUser]=' RED A CTED ' WHERE [B loodProduc tGuid]='38 b2da12-0d6 e-40c7-b31 c-5d54cde2 51ca' | |
| 8883 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC CPDA -1 IRD LUK OPR 5C', [ LastUpdate Date]='201 6-07-27 11 :17:06.000 ', [LastUp dateUser]= ' RED A CTED ' WHERE [B loodProduc tGuid]='f1 b20a14-00f 7-4e3f-bb0 a-5d69c47a e23c' | |
| 8884 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='WB CPDA- 1 LUKOPR 7 C', [LastU pdateDate] ='2016-07- 27 11:17:0 6.000', [L astUpdateU ser]=' RED A CTED ' WHERE [B loodProduc tGuid]='e1 ce0cd2-fce 4-4ab6-8aa f-5d76c5e4 7eee' | |
| 8885 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLT AFR NaCit MNFN I 2C', [La stUpdateDa te]='2016- 07-27 11:1 7:06.000', [LastUpda teUser]=' RED A CTED ' WHERE [B loodProduc tGuid]='18 e58726-81d 4-4e75-8af 4-5d7bd451 3de2' | |
| 8886 | UPDATE [db o].[BloodP roduct] SE T [Product Name]='FRE SH FROZEN PLASMA|CPD /450mL/<=- 30C|ResLeu :<1E6|Froz en <=6h', [LastUpdat eDate]='20 16-07-27 1 1:17:06.00 0', [LastU pdateUser] =' RED A CTED ' WHERE [B loodProduc tGuid]='23 831017-0aa d-4c08-8c8 c-5dc219cc 70b2' | |
| 8887 | UPDATE [db o].[BloodP roduct] SE T [Product Name]='Fro zen RED BL OOD CELLS| Gly17%/450 mL/<=-120C |Open|ResL eu:<1E6', [LastUpdat eDate]='20 16-07-27 1 1:17:06.00 0', [LastU pdateUser] =' RED A CTED ' WHERE [B loodProduc tGuid]='74 8d9fb3-f69 e-41ae-ad5 b-5dc6d33a 3473' | |
| 8888 | UPDATE [db o].[BloodP roduct] SE T [Product Name]='Fro zen RED BL OOD CELLS| None/XX/<= -65C|Open| Irradiated ', [LastUp dateDate]= '2016-07-2 7 11:17:06 .000', [La stUpdateUs er]=' RED A CTED ' WHERE [B loodProduc tGuid]='c1 9a9b17-cf1 e-48c0-b67 9-5df680bd 0c13' | |
| 8889 | UPDATE [db o].[BloodP roduct] SE T [Product Name]='Aph eresis FRE SH FROZEN PLASMA|ACD -B/XX/<=-6 5C|Not for tx or mnf |Fin Con:N S|Aphr not automated |Quar:>=6m /retested' , [LastUpd ateDate]=' 2016-07-27 11:17:06. 000', [Las tUpdateUse r]=' RED A CTED ' WHERE [B loodProduc tGuid]='15 b9f538-00a e-4458-976 d-5dfd24a0 a04c' | |
| 8890 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLT AFR PAS-B LUKO PR 3C', [L astUpdateD ate]='2016 -07-27 11: 17:06.000' , [LastUpd ateUser]=' RED A CTED ' WHERE [B loodProduc tGuid]='bc f42a26-f01 f-489f-a43 a-5e007696 c4f0' | |
| 8891 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC AFR ACD-A>AS3 5C', [Last UpdateDate ]='2016-07 -27 11:17: 06.000', [ LastUpdate User]=' RED A CTED ' WHERE [B loodProduc tGuid]='70 8ca055-b0c 2-4d44-81b 4-5e27648c 8724' | |
| 8892 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC AFR CP2D>AS3 I RD 1C', [L astUpdateD ate]='2016 -07-27 11: 17:06.000' , [LastUpd ateUser]=' RED A CTED ' WHERE [B loodProduc tGuid]='6c 83ac4a-498 5-475d-bd0 1-5e2a8da0 bc38' | |
| 8893 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLT AFR Froz DMSO IRD 3C', [ LastUpdate Date]='201 6-07-27 11 :17:06.000 ', [LastUp dateUser]= ' RED A CTED ' WHERE [B loodProduc tGuid]='fa 5ede6f-d42 c-4f6f-9ab b-5e47cfab 5272' | |
| 8894 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC AFR Deg None O PN LUKOPR 2C', [Last UpdateDate ]='2016-07 -27 11:17: 06.000', [ LastUpdate User]=' RED A CTED ' WHERE [B loodProduc tGuid]='93 74afed-ef7 b-45bf-9cb 5-5e582a19 b1ff' | |
| 8895 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLT AFR PAS-C LUKO PR 3C Psor aln', [Las tUpdateDat e]='2016-0 7-27 11:17 :06.000', [LastUpdat eUser]=' RED A CTED ' WHERE [B loodProduc tGuid]='e1 1a6e1e-53f f-442f-84c f-5e9234c4 62fb' | |
| 8896 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC AFR CP2D>AS3 O PN IRD LUK OPR SUPRed 2C', [Las tUpdateDat e]='2016-0 7-27 11:17 :06.000', [LastUpdat eUser]=' RED A CTED ' WHERE [B loodProduc tGuid]='5e 2f398d-8c1 1-448e-84f 5-5e930ca0 1561' | |
| 8897 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLT AFR Wash None IRD LUKOPR 3C', [Las tUpdateDat e]='2016-0 7-27 11:17 :06.000', [LastUpdat eUser]=' RED A CTED ' WHERE [B loodProduc tGuid]='c1 e8edc5-744 e-4943-859 e-5e93ea55 6d09' | |
| 8898 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC CPD> SAGM OPN', [LastUpda teDate]='2 016-07-27 11:17:06.0 00', [Last UpdateUser ]=' RED A CTED ' WHERE [B loodProduc tGuid]='1e 23edb7-bb6 b-490e-b2c 9-5eace260 7dda' | |
| 8899 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC Rej None OPN I RD 2C', [L astUpdateD ate]='2016 -07-27 11: 17:06.000' , [LastUpd ateUser]=' RED A CTED ' WHERE [B loodProduc tGuid]='a6 fcfae2-00b 5-4e0e-a2a 7-5ebc277f fcfe' | |
| 8900 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLT AFR ACD-A 7C', [LastUpda teDate]='2 016-07-27 11:17:06.0 00', [Last UpdateUser ]=' RED A CTED ' WHERE [B loodProduc tGuid]='4c 332f18-9ae e-455a-ba4 5-5ebe4aa1 932b' | |
| 8901 | UPDATE [db o].[BloodP roduct] SE T [Product Name]='Aph eresis FRE SH FROZEN PLASMA|ACD -B/XX/<=-6 5C|Quar:>= 6m/reteste d', [LastU pdateDate] ='2016-07- 27 11:17:0 6.000', [L astUpdateU ser]=' RED A CTED ' WHERE [B loodProduc tGuid]='10 7065fd-dd5 8-4f54-bf8 e-5ec3be9d 3fc4' | |
| 8902 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='FFP AFR None IRD 6 C', [LastU pdateDate] ='2016-07- 27 11:17:0 6.000', [L astUpdateU ser]=' RED A CTED ' WHERE [B loodProduc tGuid]='b7 104bdf-c77 9-4574-b54 3-5ed32445 07b5' | |
| 8903 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC AFR Wash None OPN LUKOPR 2C', [Las tUpdateDat e]='2016-0 7-27 11:17 :06.000', [LastUpdat eUser]=' RED A CTED ' WHERE [B loodProduc tGuid]='15 b0fc06-5d6 9-4311-9f7 5-5ed9ebb1 9bdb' | |
| 8904 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC AFR Wash None OPN IRD LU KOPR ALB A dd 2C', [L astUpdateD ate]='2016 -07-27 11: 17:06.000' , [LastUpd ateUser]=' RED A CTED ' WHERE [B loodProduc tGuid]='b0 1d47c8-9a2 f-4233-a78 d-5ee458de 1956' | |
| 8905 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLT AFR ACD-A>PAS- F OPN IRD LUKOPR 2C' , [LastUpd ateDate]=' 2016-07-27 11:17:06. 000', [Las tUpdateUse r]=' RED A CTED ' WHERE [B loodProduc tGuid]='0f 6cdebb-413 d-4dc4-a12 5-5ef015be 6372' | |
| 8906 | UPDATE [db o].[BloodP roduct] SE T [Product Name]='Fro zen RED BL OOD CELLS| None/450mL /<=-30C|Fo r mnf:inje ctable|Res Leu:<1E6|S upernat re m', [LastU pdateDate] ='2016-07- 27 11:17:0 6.000', [L astUpdateU ser]=' RED A CTED ' WHERE [B loodProduc tGuid]='92 c78ab6-75e c-4ff1-87c a-5ef62a30 bfc1' | |
| 8907 | UPDATE [db o].[BloodP roduct] SE T [Product Name]='Fro zen Aphere sis RED BL OOD CELLS| None/XX/<= -65C|ResLe u:<5E6|1st container ', [Produc tShortName ]='RBC AFR Froz None LUKOPR 1C ', [LastUp dateDate]= '2016-07-2 7 11:17:06 .000', [La stUpdateUs er]=' RED A CTED ' WHERE [B loodProduc tGuid]='a7 738d1b-3a3 6-441c-8b7 c-5f0474af a497' | |
| 8908 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC AFR ACD-A>AS1 MNFI LUKOP R 2C', [La stUpdateDa te]='2016- 07-27 11:1 7:06.000', [LastUpda teUser]=' RED A CTED ' WHERE [B loodProduc tGuid]='d8 6dd0b8-413 8-432b-a23 8-5f0bc119 4aa8' | |
| 8909 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLT AFR ACD-B OPN 2CNA', [La stUpdateDa te]='2016- 07-27 11:1 7:06.000', [LastUpda teUser]=' RED A CTED ' WHERE [B loodProduc tGuid]='a6 2db46b-050 6-40b0-bb0 3-5f1cf691 fbcc' | |
| 8910 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC Wash None OPN IRD 2C', [ LastUpdate Date]='201 6-07-27 11 :17:06.000 ', [LastUp dateUser]= ' RED A CTED ' WHERE [B loodProduc tGuid]='04 7230da-88c 9-4906-8c0 4-5f231f00 59bd' | |
| 8911 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLT AFR ACD-A OPN 2C', [Last UpdateDate ]='2016-07 -27 11:17: 06.000', [ LastUpdate User]=' RED A CTED ' WHERE [B loodProduc tGuid]='8b fd46c5-0b8 0-46db-8b5 3-5f360dfd 1f35' | |
| 8912 | UPDATE [db o].[BloodP roduct] SE T [Product Name]='Aph eresis FRE SH FROZEN PLASMA|ACD -A/XX/<=-3 0C|For mnf :injectabl e|ResLeu:< 1E6|>=400m L<600mL', [LastUpdat eDate]='20 16-07-27 1 1:17:06.00 0', [LastU pdateUser] =' RED A CTED ' WHERE [B loodProduc tGuid]='07 0993ce-994 7-4863-a98 7-5f47ebd8 bb3a' | |
| 8913 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLASMA A FR Thaw No ne IRD 1C' , [LastUpd ateDate]=' 2016-07-27 11:17:06. 000', [Las tUpdateUse r]=' RED A CTED ' WHERE [B loodProduc tGuid]='9d 9f4372-a9c 0-48ed-896 1-5f4b7003 36a3' | |
| 8914 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC CPD> AS5 3C', [ LastUpdate Date]='201 6-07-27 11 :17:06.000 ', [LastUp dateUser]= ' RED A CTED ' WHERE [B loodProduc tGuid]='63 d189fd-936 e-44a2-b6e c-5f4cc305 3238' | |
| 8915 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC AFR ACD-A>AS3 OPN IRD LU KOPR SR/PA 2C', [Las tUpdateDat e]='2016-0 7-27 11:17 :06.000', [LastUpdat eUser]=' RED A CTED ' WHERE [B loodProduc tGuid]='b7 7b44f7-e0a 0-4246-83f 3-5f641351 f864' | |
| 8916 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='WB CP2D 5C', [Last UpdateDate ]='2016-07 -27 11:17: 06.000', [ LastUpdate User]=' RED A CTED ' WHERE [B loodProduc tGuid]='77 b19854-f28 1-41c1-961 6-5f682c10 164b' | |
| 8917 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLASMA A FR ACD-A I RD 3C', [L astUpdateD ate]='2016 -07-27 11: 17:06.000' , [LastUpd ateUser]=' RED A CTED ' WHERE [B loodProduc tGuid]='05 b796c6-eb2 c-45b5-92e 9-5f719be1 95fa' | |
| 8918 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='FFP AFR Thaw ACD-A IRD 6C QU AR', [Last UpdateDate ]='2016-07 -27 11:17: 06.000', [ LastUpdate User]=' RED A CTED ' WHERE [B loodProduc tGuid]='1f 6a022c-c2a 0-4b39-a8c 7-5f8c2621 4dca' | |
| 8919 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLT AFR ACD-B NMT 2CNA', [La stUpdateDa te]='2016- 07-27 11:1 7:06.000', [LastUpda teUser]=' RED A CTED ' WHERE [B loodProduc tGuid]='76 bb036c-29f a-46f4-9dc 8-5f982225 dd6e' | |
| 8920 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC Deg Rej None O PN SR 1C', [LastUpda teDate]='2 016-07-27 11:17:06.0 00', [Last UpdateUser ]=' RED A CTED ' WHERE [B loodProduc tGuid]='78 c6a553-ded 1-44f2-809 f-5fa3b84f 95bf' | |
| 8921 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLT AFR NaCit IRD PLS Red 1C NA', [Last UpdateDate ]='2016-07 -27 11:17: 06.000', [ LastUpdate User]=' RED A CTED ' WHERE [B loodProduc tGuid]='f0 e21130-fec 0-469f-9d1 b-5faef222 a722' | |
| 8922 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLT AFR ACD-A OPN IRD LUKOPR 2C', [Las tUpdateDat e]='2016-0 7-27 11:17 :06.000', [LastUpdat eUser]=' RED A CTED ' WHERE [B loodProduc tGuid]='95 954369-ad6 9-4ba7-bf2 2-5fb91bd0 07e3' | |
| 8923 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLT AFR ACD-A IRD 1C', [Last UpdateDate ]='2016-07 -27 11:17: 06.000', [ LastUpdate User]=' RED A CTED ' WHERE [B loodProduc tGuid]='d0 0cfd5f-a64 2-45b5-b05 b-5fbbb1e6 64d9' | |
| 8924 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC AFR ACD-A>SAGM IRD LUKOP R 2C', [La stUpdateDa te]='2016- 07-27 11:1 7:06.000', [LastUpda teUser]=' RED A CTED ' WHERE [B loodProduc tGuid]='e9 d35ddc-2a0 d-465c-a17 1-5fda3d2e 94f0' | |
| 8925 | UPDATE [db o].[BloodP roduct] SE T [Product Name]='Aph eresis CRY OPRECIPITA TE|None/XX /<=-30C|Ir radiated', [LastUpda teDate]='2 016-07-27 11:17:06.0 00', [Last UpdateUser ]=' RED A CTED ' WHERE [B loodProduc tGuid]='1f 1f8df8-b6d e-444e-a45 6-5fe1c666 fa08' | |
| 8926 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC AFR CP2D>AS3 I RD 6C', [L astUpdateD ate]='2016 -07-27 11: 17:06.000' , [LastUpd ateUser]=' RED A CTED ' WHERE [B loodProduc tGuid]='6f fc11c2-17a 0-426e-ad5 5-5fe8bb6e e932' | |
| 8927 | UPDATE [db o].[BloodP roduct] SE T [Product Name]='Aph eresis FRE SH FROZEN PLASMA|ACD -A/XX/<=-6 5C|5th con tainer|Qua r:>=112d/r etested', [ProductSh ortName]=' FFP AFR AC D-A 5C QUA R', [LastU pdateDate] ='2016-07- 27 11:17:0 6.000', [L astUpdateU ser]=' RED A CTED ' WHERE [B loodProduc tGuid]='e1 92450c-0ee b-4e25-b41 1-5fed544b 5093' | |
| 8928 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLT AFR ACD-B OPN LUKOPR PLS Red 3C', [LastUpdat eDate]='20 16-07-27 1 1:17:06.00 0', [LastU pdateUser] =' RED A CTED ' WHERE [B loodProduc tGuid]='85 f1e745-4df e-47f0-83c d-60085257 2304' | |
| 8929 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLT AFR ACD-A LUKO PR PLS Red 2C', [Las tUpdateDat e]='2016-0 7-27 11:17 :06.000', [LastUpdat eUser]=' RED A CTED ' WHERE [B loodProduc tGuid]='bb 573e0b-f89 0-433f-bc8 3-60238b01 7ccd' | |
| 8930 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLT AFR Wash PAS-D LUKOPR 4C ', [LastUp dateDate]= '2016-07-2 7 11:17:06 .000', [La stUpdateUs er]=' RED A CTED ' WHERE [B loodProduc tGuid]='73 c2b2e3-ef4 4-47dc-8dd 4-60339db9 b8e0' | |
| 8931 | UPDATE [db o].[BloodP roduct] SE T [Product Name]='FRE SH FROZEN PLASMA|CPD /XX/<=-30C |ResLeu:<5 E6|50mL|Ri boflavin-t reated', [ LastUpdate Date]='201 6-07-27 11 :17:06.000 ', [LastUp dateUser]= ' RED A CTED ' WHERE [B loodProduc tGuid]='9c 837182-93f 2-4464-bd7 d-6038133b a47c' | |
| 8932 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC Deg Rej None O PN IRD 7C' , [LastUpd ateDate]=' 2016-07-27 11:17:06. 000', [Las tUpdateUse r]=' RED A CTED ' WHERE [B loodProduc tGuid]='5c 7e2bfe-be7 f-4f82-97f d-605234df fc3d' | |
| 8933 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='FFP Thaw None 5C', [LastUpda teDate]='2 016-07-27 11:17:06.0 00', [Last UpdateUser ]=' RED A CTED ' WHERE [B loodProduc tGuid]='ce 75e0b5-cd9 c-4ca5-832 a-605f336f 6e0c' | |
| 8934 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='FFP AFR Thaw ACD-A LUKOPR 1C ', [LastUp dateDate]= '2016-07-2 7 11:17:06 .000', [La stUpdateUs er]=' RED A CTED ' WHERE [B loodProduc tGuid]='30 99ae73-c63 9-45e9-ab8 f-60601d4e 8c07' | |
| 8935 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='CRYO AFR ACD-A LUK OPR 1C', [ LastUpdate Date]='201 6-07-27 11 :17:06.000 ', [LastUp dateUser]= ' RED A CTED ' WHERE [B loodProduc tGuid]='a0 a1750b-dcf 9-44b6-b9f 8-6073fe62 1775' | |
| 8936 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLASMA A FR Thaw AC D-A 3C', [ LastUpdate Date]='201 6-07-27 11 :17:06.000 ', [LastUp dateUser]= ' RED A CTED ' WHERE [B loodProduc tGuid]='e4 fd8678-995 a-40e1-a9b a-60938c25 6da2' | |
| 8937 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLT AFR ACD-A IRD 2C', [Last UpdateDate ]='2016-07 -27 11:17: 06.000', [ LastUpdate User]=' RED A CTED ' WHERE [B loodProduc tGuid]='d5 5414cf-987 9-442b-90d 0-609416a6 a695' | |
| 8938 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC CPDA -1 1C', [R etireDate] ='2015-04- 07 00:00:0 0.000', [L astUpdateD ate]='2016 -07-27 11: 17:06.000' , [LastUpd ateUser]=' RED A CTED ' WHERE [B loodProduc tGuid]='04 71397d-5e3 b-4c51-b97 a-60af26db 13a6' | |
| 8939 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLT AFR NS IRD LUK OPR 1C', [ LastUpdate Date]='201 6-07-27 11 :17:06.000 ', [LastUp dateUser]= ' RED A CTED ' WHERE [B loodProduc tGuid]='ea 2cb398-7c6 6-4e33-87d 6-60b0e8e7 eccf' | |
| 8940 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC Froz Rej None OPN 2C', [ LastUpdate Date]='201 6-07-27 11 :17:06.000 ', [LastUp dateUser]= ' RED A CTED ' WHERE [B loodProduc tGuid]='93 bcc7ec-588 3-4540-bbf b-60c3e53f 070a' | |
| 8941 | UPDATE [db o].[BloodP roduct] SE T [Product Name]='Fro zen Aphere sis PLATEL ETS|DMSO/X X/<=-65C|N ot for tx or mnf|Ope n|Aphr not automated ', [LastUp dateDate]= '2016-07-2 7 11:17:06 .000', [La stUpdateUs er]=' RED A CTED ' WHERE [B loodProduc tGuid]='ef 4819ee-c6b e-4a83-af6 5-60ce4e7d 68a9' | |
| 8942 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLT AFR PAS-E LUKO PR SUPRed 3C', [Last UpdateDate ]='2016-07 -27 11:17: 06.000', [ LastUpdate User]=' RED A CTED ' WHERE [B loodProduc tGuid]='20 ba3260-c76 8-4fc5-8fd 3-60e0b0e4 b3ba' | |
| 8943 | UPDATE [db o].[BloodP roduct] SE T [RetireD ate]='2015 -03-06 00: 00:00.000' , [LastUpd ateDate]=' 2016-07-27 11:17:06. 000', [Las tUpdateUse r]=' RED A CTED ' WHERE [B loodProduc tGuid]='57 67d786-123 1-4971-934 2-60e3bbd0 f82b' | |
| 8944 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='FFP None IRD 5C', [LastUpdat eDate]='20 16-07-27 1 1:17:06.00 0', [LastU pdateUser] =' RED A CTED ' WHERE [B loodProduc tGuid]='93 4809f7-628 7-4184-8b9 1-60e531dc 7617' | |
| 8945 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLT AFR NaCit OPN PLS Red 4C ', [LastUp dateDate]= '2016-07-2 7 11:17:06 .000', [La stUpdateUs er]=' RED A CTED ' WHERE [B loodProduc tGuid]='90 06181a-02a 5-4125-b99 9-60ea37db 021f' | |
| 8946 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='FFP AFR Thaw CPD-5 0 IRD LUKO PR 1C', [L astUpdateD ate]='2016 -07-27 11: 17:06.000' , [LastUpd ateUser]=' RED A CTED ' WHERE [B loodProduc tGuid]='a3 70385d-8c4 6-45f5-b12 6-60ebce0d 8070' | |
| 8947 | UPDATE [db o].[BloodP roduct] SE T [Product Name]='Fro zen Aphere sis RED BL OOD CELLS| None/XX/<= -65C|Open| Irradiated |1st conta iner', [Pr oductShort Name]='RBC AFR Froz None OPN I RD 1C', [L astUpdateD ate]='2016 -07-27 11: 17:06.000' , [LastUpd ateUser]=' RED A CTED ' WHERE [B loodProduc tGuid]='dd abf276-9b2 b-4b2d-94b 5-60f4dd56 4e72' | |
| 8948 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLT AFR ACD-A LUKO PR 1C', [L astUpdateD ate]='2016 -07-27 11: 17:06.000' , [LastUpd ateUser]=' RED A CTED ' WHERE [B loodProduc tGuid]='fa 57afe6-bba 2-4a79-859 9-611f641e 24a8' | |
| 8949 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC AFR ACD-A>AS1 LUKOPR 8C' , [LastUpd ateDate]=' 2016-07-27 11:17:06. 000', [Las tUpdateUse r]=' RED A CTED ' WHERE [B loodProduc tGuid]='b9 b57ac0-c68 9-43e4-b38 7-611faf88 4d15' | |
| 8950 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLT AFR NaCit OPN 2CNA', [La stUpdateDa te]='2016- 07-27 11:1 7:06.000', [LastUpda teUser]=' RED A CTED ' WHERE [B loodProduc tGuid]='d9 4f6ebd-53f d-4a12-bcd 3-612366c2 7349' | |
| 8951 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='FFP AFR None IRD 5 C', [LastU pdateDate] ='2016-07- 27 11:17:0 6.000', [L astUpdateU ser]=' RED A CTED ' WHERE [B loodProduc tGuid]='b4 3a6ea6-833 4-4fb1-815 1-61333325 544a' | |
| 8952 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='FFP AFR Thaw ACD-A IRD 4C QU AR', [Last UpdateDate ]='2016-07 -27 11:17: 06.000', [ LastUpdate User]=' RED A CTED ' WHERE [B loodProduc tGuid]='4a c4ccf2-606 3-423b-80a 1-613440b2 5fd1' | |
| 8953 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='WB CPDA- 1 IRD 5C', [LastUpda teDate]='2 016-07-27 11:17:06.0 00', [Last UpdateUser ]=' RED A CTED ' WHERE [B loodProduc tGuid]='16 005729-f9e d-458c-8a0 1-614632d3 39a3' | |
| 8954 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC CP2D >AS3 LUKOP R 6C', [La stUpdateDa te]='2016- 07-27 11:1 7:06.000', [LastUpda teUser]=' RED A CTED ' WHERE [B loodProduc tGuid]='3f 5cd9e2-358 4-42b4-98e 1-6171d408 a074' | |
| 8955 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='FFP AFR Thaw None IRD 8C', [ LastUpdate Date]='201 6-07-27 11 :17:06.000 ', [LastUp dateUser]= ' RED A CTED ' WHERE [B loodProduc tGuid]='de 1c4d0c-2ea f-45a0-9f7 5-61823f2a f174' | |
| 8956 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC AFR CP2D MNFI 2C', [Last UpdateDate ]='2016-07 -27 11:17: 06.000', [ LastUpdate User]=' RED A CTED ' WHERE [B loodProduc tGuid]='a6 a96a62-c45 8-4a6d-9f6 e-618cb819 ad56' | |
| 8957 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLT AFR ACD-A LUKO PR 1C BacM tr', [Last UpdateDate ]='2016-07 -27 11:17: 06.000', [ LastUpdate User]=' RED A CTED ' WHERE [B loodProduc tGuid]='7a b9010e-101 e-485c-9ad c-618cc67a 03a6' | |
| 8958 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLT AFR ACD-B OPN IRD PLS Re d 1C', [La stUpdateDa te]='2016- 07-27 11:1 7:06.000', [LastUpda teUser]=' RED A CTED ' WHERE [B loodProduc tGuid]='cc 39bdfd-2c6 a-4a19-843 2-61bb1886 a674' | |
| 8959 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='FFP AFR None IRD 7 C', [LastU pdateDate] ='2016-07- 27 11:17:0 6.000', [L astUpdateU ser]=' RED A CTED ' WHERE [B loodProduc tGuid]='76 2f0656-d64 b-4eaa-bd6 f-61da73af d353' | |
| 8960 | UPDATE [db o].[BloodP roduct] SE T [Product Name]='Aph eresis FRE SH FROZEN PLASMA|ACD -B/XX/<=-3 0C|>=600mL |Quar:>=6m /retested' , [LastUpd ateDate]=' 2016-07-27 11:17:06. 000', [Las tUpdateUse r]=' RED A CTED ' WHERE [B loodProduc tGuid]='1d 170951-db9 e-4b9c-b6a d-61e01076 691b' | |
| 8961 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC AFR Deg Rej No ne OPN IRD LUKOPR 3C ', [LastUp dateDate]= '2016-07-2 7 11:17:06 .000', [La stUpdateUs er]=' RED A CTED ' WHERE [B loodProduc tGuid]='95 37c485-e72 0-48bc-b56 9-61e453e2 f635' | |
| 8962 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLASMA A FR Thaw Na Cit IRD 4C ', [LastUp dateDate]= '2016-07-2 7 11:17:06 .000', [La stUpdateUs er]=' RED A CTED ' WHERE [B loodProduc tGuid]='31 b6cb7b-507 8-4c05-848 b-61ee1bee 156a' | |
| 8963 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLT AFR NS LUKOPR 2C', [Last UpdateDate ]='2016-07 -27 11:17: 06.000', [ LastUpdate User]=' RED A CTED ' WHERE [B loodProduc tGuid]='93 ee270d-474 3-4358-9ee 9-620edc50 3e26' | |
| 8964 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLT AFR Wash None OPN IRD LU KOPR 1C', [LastUpdat eDate]='20 16-07-27 1 1:17:06.00 0', [LastU pdateUser] =' RED A CTED ' WHERE [B loodProduc tGuid]='64 969fb4-0d9 2-414b-953 d-621abd22 1707' | |
| 8965 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='FFP AFR ACD-A 3C Q UAR', [Las tUpdateDat e]='2016-0 7-27 11:17 :06.000', [LastUpdat eUser]=' RED A CTED ' WHERE [B loodProduc tGuid]='be 4a988e-f8e 3-4f46-bc3 1-6224edee 493e' | |
| 8966 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='WB CPD I RD 8C', [L astUpdateD ate]='2016 -07-27 11: 17:06.000' , [LastUpd ateUser]=' RED A CTED ' WHERE [B loodProduc tGuid]='74 e878fc-062 5-4d90-998 2-62256985 a457' | |
| 8967 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC AFR CP2D>AS3 I RD LUKOPR 7C', [Last UpdateDate ]='2016-07 -27 11:17: 06.000', [ LastUpdate User]=' RED A CTED ' WHERE [B loodProduc tGuid]='d6 60bc27-9db 7-4ed8-bfd a-62299435 4019' | |
| 8968 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC AFR Froz None OPN LUKOPR 5C', [Las tUpdateDat e]='2016-0 7-27 11:17 :06.000', [LastUpdat eUser]=' RED A CTED ' WHERE [B loodProduc tGuid]='97 4b5916-134 4-4aa0-9ec 9-6244486a 6621' | |
| 8969 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLT AFR ACD-A OPN IRD LUKOPR PLS Red/S AL Add 2C' , [LastUpd ateDate]=' 2016-07-27 11:17:06. 000', [Las tUpdateUse r]=' RED A CTED ' WHERE [B loodProduc tGuid]='e1 db7461-fc6 c-43a2-b33 0-624d4754 8de0' | |
| 8970 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC AFR ACD-A>AS3 OPN IRD LU KOPR PA 2C ', [LastUp dateDate]= '2016-07-2 7 11:17:06 .000', [La stUpdateUs er]=' RED A CTED ' WHERE [B loodProduc tGuid]='4d cf35bd-72a c-405b-b8d b-626d55ec 31a5' | |
| 8971 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLT AFR ACD-A LUKO PR 1C', [L astUpdateD ate]='2016 -07-27 11: 17:06.000' , [LastUpd ateUser]=' RED A CTED ' WHERE [B loodProduc tGuid]='d5 f1aa2a-920 5-4b5c-a5a c-62862d55 fe60' | |
| 8972 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLT AFR ACD-A 7C', [LastUpda teDate]='2 016-07-27 11:17:06.0 00', [Last UpdateUser ]=' RED A CTED ' WHERE [B loodProduc tGuid]='2a ec9e17-e56 6-4a5d-b2e a-6290cafa e1e9' | |
| 8973 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC AFR CP2D SR/PA 1C', [Las tUpdateDat e]='2016-0 7-27 11:17 :06.000', [LastUpdat eUser]=' RED A CTED ' WHERE [B loodProduc tGuid]='c0 972fad-94c e-47cf-b3c f-6296d2ee de06' | |
| 8974 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC AFR ACD-A>AS1 MNFNI 2C', [LastUpda teDate]='2 016-07-27 11:17:06.0 00', [Last UpdateUser ]=' RED A CTED ' WHERE [B loodProduc tGuid]='14 4358b8-567 9-492b-bae f-62a81cee 8c52' | |
| 8975 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLT AFR ACD-B NMT 4C', [Last UpdateDate ]='2016-07 -27 11:17: 06.000', [ LastUpdate User]=' RED A CTED ' WHERE [B loodProduc tGuid]='60 68bac1-25c 3-4085-83a 4-62b124e3 f1ce' | |
| 8976 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC AFR Wash None OPN IRD LU KOPR 1C', [LastUpdat eDate]='20 16-07-27 1 1:17:06.00 0', [LastU pdateUser] =' RED A CTED ' WHERE [B loodProduc tGuid]='67 c05062-281 4-4a00-8eb 1-62cf3705 5543' | |
| 8977 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLT AFR ACD-A NMT OPN 1C', [ LastUpdate Date]='201 6-07-27 11 :17:06.000 ', [LastUp dateUser]= ' RED A CTED ' WHERE [B loodProduc tGuid]='b7 54f7bb-20b 1-462c-b07 d-62d3d61e c7c5' | |
| 8978 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC CPD> AS1 LUKOPR 7C', [Las tUpdateDat e]='2016-0 7-27 11:17 :06.000', [LastUpdat eUser]=' RED A CTED ' WHERE [B loodProduc tGuid]='23 4e28cb-985 4-4485-b27 3-6306a66c 3e69' | |
| 8979 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLT AFR Wash None OPN IRD LU KOPR 3C', [LastUpdat eDate]='20 16-07-27 1 1:17:06.00 0', [LastU pdateUser] =' RED A CTED ' WHERE [B loodProduc tGuid]='01 f323b2-b87 e-460f-a09 e-633fd44d 85fc' | |
| 8980 | UPDATE [db o].[BloodP roduct] SE T [Product Name]='Aph eresis FRE SH FROZEN PLASMA|NaC itrate/XX/ <=-30C|Irr adiated|Re sLeu:<1E6| >=200mL<40 0mL|Frozen <=6h|3rd container' , [Product ShortName] ='FFP AFR Nacit IRD LUKOPR 3C' , [LastUpd ateDate]=' 2016-07-27 11:17:06. 000', [Las tUpdateUse r]=' RED A CTED ' WHERE [B loodProduc tGuid]='31 c76d03-3c7 b-4f96-b1e 9-637e2927 c083' | |
| 8981 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC AFR CP2D LUKOP R SR 2C', [LastUpdat eDate]='20 16-07-27 1 1:17:06.00 0', [LastU pdateUser] =' RED A CTED ' WHERE [B loodProduc tGuid]='00 39fd51-e5c c-486b-ad5 e-637f862f 2e98' | |
| 8982 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC AFR CP2D>AS3 M NFI LUKOPR 1C', [Las tUpdateDat e]='2016-0 7-27 11:17 :06.000', [LastUpdat eUser]=' RED A CTED ' WHERE [B loodProduc tGuid]='2d 5d0cd1-e28 f-4d1d-960 7-638ce7d6 9e38' | |
| 8983 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='FFP AFR None IRD Q UAR 5C', [ LastUpdate Date]='201 6-07-27 11 :17:06.000 ', [LastUp dateUser]= ' RED A CTED ' WHERE [B loodProduc tGuid]='2b fa7fe1-888 4-4fd7-934 f-639e3ee4 2849' | |
| 8984 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLT AFR ACD-A LUKO PR 3C Pedi ', [LastUp dateDate]= '2016-07-2 7 11:17:06 .000', [La stUpdateUs er]=' RED A CTED ' WHERE [B loodProduc tGuid]='56 9417f3-d4e a-4dc7-a84 0-639f1cd8 68d2' | |
| 8985 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='FFP AFR None IRD Q UAR 7C', [ LastUpdate Date]='201 6-07-27 11 :17:06.000 ', [LastUp dateUser]= ' RED A CTED ' WHERE [B loodProduc tGuid]='9a 4ed130-eab f-4465-a52 a-63a9035d cba2' | |
| 8986 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLT AFR ACD-A OPN IRD LUKOPR PLS Red 1 C', [LastU pdateDate] ='2016-07- 27 11:17:0 6.000', [L astUpdateU ser]=' RED A CTED ' WHERE [B loodProduc tGuid]='11 82d4dd-920 3-4240-84c 3-63c62371 b847' | |
| 8987 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC AFR ACD-A>AS1 NMT LUKOPR 1C', [Las tUpdateDat e]='2016-0 7-27 11:17 :06.000', [LastUpdat eUser]=' RED A CTED ' WHERE [B loodProduc tGuid]='1f 7f1344-b86 8-4afc-9c0 4-63c900d5 f645' | |
| 8988 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC AFR Deg AS3 IR D LUKOPR 1 C', [LastU pdateDate] ='2016-07- 27 11:17:0 6.000', [L astUpdateU ser]=' RED A CTED ' WHERE [B loodProduc tGuid]='47 87dc67-9e0 0-47c3-acb 5-63caf1fd 42e0' | |
| 8989 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLT AFR NaCit OPN 1C', [Last UpdateDate ]='2016-07 -27 11:17: 06.000', [ LastUpdate User]=' RED A CTED ' WHERE [B loodProduc tGuid]='58 79e2d1-6e5 5-4e74-924 d-63d93f1d ff31' | |
| 8990 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLASMA A FR Liq CPD -50 LUKOPR 1C Psoral n', [LastU pdateDate] ='2016-07- 27 11:17:0 6.000', [L astUpdateU ser]=' RED A CTED ' WHERE [B loodProduc tGuid]='f8 2d292d-63a 8-49ef-8a2 f-63e3362a 37bc' | |
| 8991 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLT AFR PAS-D LUKO PR 1C', [L astUpdateD ate]='2016 -07-27 11: 17:06.000' , [LastUpd ateUser]=' RED A CTED ' WHERE [B loodProduc tGuid]='2c 855716-3aa b-4129-bce c-640164fc 33f1' | |
| 8992 | UPDATE [db o].[BloodP roduct] SE T [Product Name]='FRE SH FROZEN PLASMA|CPD A-1/XX/<=- 25C|Frozen <=15h|Met hylene blu e-treated' , [LastUpd ateDate]=' 2016-07-27 11:17:06. 000', [Las tUpdateUse r]=' RED A CTED ' WHERE [B loodProduc tGuid]='e5 15713a-e12 5-47d8-972 5-64021dcc 2773' | |
| 8993 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLT AFR ACD-B LUKO PR 2CNA', [LastUpdat eDate]='20 16-07-27 1 1:17:06.00 0', [LastU pdateUser] =' RED A CTED ' WHERE [B loodProduc tGuid]='12 602933-01d 4-4054-831 3-641ab8b3 1f13' | |
| 8994 | UPDATE [db o].[BloodP roduct] SE T [Product Name]='Aph eresis FRE SH FROZEN PLASMA|ACD -A/XX/<=-3 0C|For mnf :injectabl e|Frozen < =24h', [La stUpdateDa te]='2016- 07-27 11:1 7:06.000', [LastUpda teUser]=' RED A CTED ' WHERE [B loodProduc tGuid]='ff 1fc422-d91 7-4654-a15 a-642556ae 70cc' | |
| 8995 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLT AFR ACD-A IRD LUKOPR 4C' , [LastUpd ateDate]=' 2016-07-27 11:17:06. 000', [Las tUpdateUse r]=' RED A CTED ' WHERE [B loodProduc tGuid]='34 35f44a-b19 f-4551-945 d-64372e92 0ded' | |
| 8996 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC CP2D >AS3 IRD L UKOPR 4C', [LastUpda teDate]='2 016-07-27 11:17:06.0 00', [Last UpdateUser ]=' RED A CTED ' WHERE [B loodProduc tGuid]='8e db89a8-912 0-4bb8-bee b-64678c1b 76cb' | |
| 8997 | UPDATE [db o].[BloodP roduct] SE T [Product Name]='Fro zen RED BL OOD CELLS| None/XX/<= -65C', [La stUpdateDa te]='2016- 07-27 11:1 7:06.000', [LastUpda teUser]=' RED A CTED ' WHERE [B loodProduc tGuid]='fd a4ac7d-f0a 0-4d0e-8f3 5-646817b5 47b9' | |
| 8998 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='FFP Thaw CPD IRD 3 C QUAR', [ LastUpdate Date]='201 6-07-27 11 :17:06.000 ', [LastUp dateUser]= ' RED A CTED ' WHERE [B loodProduc tGuid]='d4 61bed0-70c b-417b-875 b-646c6f57 c56a' | |
| 8999 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC Wash None OPN 8C', [Last UpdateDate ]='2016-07 -27 11:17: 06.000', [ LastUpdate User]=' RED A CTED ' WHERE [B loodProduc tGuid]='cf 3bd62c-06e c-4d9a-9cc 6-647424e7 f45b' | |
| 9000 | UPDATE [db o].[BloodP roduct] SE T [Product Name]='Aph eresis FRE SH FROZEN PLASMA|NaC itrate/XX/ <=-65C|Irr adiated|>= 600mL|Quar :>=6m/rete sted', [La stUpdateDa te]='2016- 07-27 11:1 7:06.000', [LastUpda teUser]=' RED A CTED ' WHERE [B loodProduc tGuid]='a6 ea87ca-8ac 7-4405-90b d-6478468e 30b2' | |
| 9001 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLT AFR NaCit MNFN I 4C', [La stUpdateDa te]='2016- 07-27 11:1 7:06.000', [LastUpda teUser]=' RED A CTED ' WHERE [B loodProduc tGuid]='e6 3042ce-1c9 b-45a9-b87 f-64abc7f6 050a' | |
| 9002 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC Froz Rej None OPN 1C', [ LastUpdate Date]='201 6-07-27 11 :17:06.000 ', [LastUp dateUser]= ' RED A CTED ' WHERE [B loodProduc tGuid]='73 e1d4e7-427 f-4bee-9a7 4-64c6503d 07f4' | |
| 9003 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='FFP AFR Thaw ACD-A IRD LUKOP R 2C', [La stUpdateDa te]='2016- 07-27 11:1 7:06.000', [LastUpda teUser]=' RED A CTED ' WHERE [B loodProduc tGuid]='67 6d0b7f-945 1-4619-a48 f-64c878df 0ce2' | |
| 9004 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC AFR CP2D>AS3 O PN 2C', [L astUpdateD ate]='2016 -07-27 11: 17:06.000' , [LastUpd ateUser]=' RED A CTED ' WHERE [B loodProduc tGuid]='a1 82a6f0-71d 9-4bcf-809 6-64ccee0a d216' | |
| 9005 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLT AFR ACD-B OPN 2C', [Last UpdateDate ]='2016-07 -27 11:17: 06.000', [ LastUpdate User]=' RED A CTED ' WHERE [B loodProduc tGuid]='97 c35d3a-efa a-4b0f-a87 5-64e829f2 5a81' | |
| 9006 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='FFP AFR Thaw ACD-A IRD 3C QU AR', [Last UpdateDate ]='2016-07 -27 11:17: 06.000', [ LastUpdate User]=' RED A CTED ' WHERE [B loodProduc tGuid]='16 5ed9c1-30f c-4d9e-944 8-6515d8b1 b235' | |
| 9007 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLT AFR Thaw DMSO OPN LUKOPR PA 1C', [ LastUpdate Date]='201 6-07-27 11 :17:06.000 ', [LastUp dateUser]= ' RED A CTED ' WHERE [B loodProduc tGuid]='9a 73b545-4d9 2-4bfe-8f1 a-651bf9d8 1ef4' | |
| 9008 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC AFR Deg None O PN IRD 3C' , [LastUpd ateDate]=' 2016-07-27 11:17:06. 000', [Las tUpdateUse r]=' RED A CTED ' WHERE [B loodProduc tGuid]='9e 1fcfc7-fad f-45a8-941 1-651dffdc 1867' | |
| 9009 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC CPD 2C', [Last UpdateDate ]='2016-07 -27 11:17: 06.000', [ LastUpdate User]=' RED A CTED ' WHERE [B loodProduc tGuid]='6a 18f9c9-5b9 f-4c51-8c6 a-65224958 986e' | |
| 9010 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLT AFR Wash None OPN LUKOPR 3C', [Las tUpdateDat e]='2016-0 7-27 11:17 :06.000', [LastUpdat eUser]=' RED A CTED ' WHERE [B loodProduc tGuid]='43 8e1883-726 5-4752-a8c 9-6529ba6c 1c96' | |
| 9011 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC AFR CP2D IRD L UKOPR SR/P A 1C', [La stUpdateDa te]='2016- 07-27 11:1 7:06.000', [LastUpda teUser]=' RED A CTED ' WHERE [B loodProduc tGuid]='98 eb891c-3ac 5-461b-b2f f-6540e700 8f0f' | |
| 9012 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLT AFR ACD-A OPN LUKOPR PLS Red/ALB A dd 3C', [L astUpdateD ate]='2016 -07-27 11: 17:06.000' , [LastUpd ateUser]=' RED A CTED ' WHERE [B loodProduc tGuid]='5b f2e2d0-2af c-4b27-b06 4-6544ad9f 63c9' | |
| 9013 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC Froz Rej None OPN IRD 3C ', [LastUp dateDate]= '2016-07-2 7 11:17:06 .000', [La stUpdateUs er]=' RED A CTED ' WHERE [B loodProduc tGuid]='00 f1653b-bdd 8-4a46-b34 2-65647f67 81b1' | |
| 9014 | UPDATE [db o].[BloodP roduct] SE T [Product Name]='Fro zen Rejuve nated RED BLOOD CELL S|None/XX/ <=-65C|Ope n', [LastU pdateDate] ='2016-07- 27 11:17:0 6.000', [L astUpdateU ser]=' RED A CTED ' WHERE [B loodProduc tGuid]='6c 582aee-0ea 8-444d-b27 b-6568ef4f a113' | |
| 9015 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLT AFR ACD-A OPN IRD PLS Re d 2C', [La stUpdateDa te]='2016- 07-27 11:1 7:06.000', [LastUpda teUser]=' RED A CTED ' WHERE [B loodProduc tGuid]='b2 3c13d4-5f3 3-4638-843 4-656f1eff c953' | |
| 9016 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLT AFR NaCit MNFI 2C', [Las tUpdateDat e]='2016-0 7-27 11:17 :06.000', [LastUpdat eUser]=' RED A CTED ' WHERE [B loodProduc tGuid]='2d 891511-d38 0-4ada-a59 1-6571fdd1 e6f0' | |
| 9017 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='FFP None QUAR 1C', [LastUpda teDate]='2 016-07-27 11:17:06.0 00', [Last UpdateUser ]=' RED A CTED ' WHERE [B loodProduc tGuid]='9e 02b84d-d62 8-4d13-8f6 c-6583a691 2eb0' | |
| 9018 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='FFP AFR ACD-A 6C Q UAR', [Las tUpdateDat e]='2016-0 7-27 11:17 :06.000', [LastUpdat eUser]=' RED A CTED ' WHERE [B loodProduc tGuid]='8f e43139-884 a-4f02-bbe 8-659031ee e575' | |
| 9019 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC AFR ACD-A>AS1 LUKOPR 6C' , [LastUpd ateDate]=' 2016-07-27 11:17:06. 000', [Las tUpdateUse r]=' RED A CTED ' WHERE [B loodProduc tGuid]='70 7c873d-ccc e-49e8-846 0-65930f40 9587' | |
| 9020 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC AFR Deg None O PN LUKOPR 1C', [Last UpdateDate ]='2016-07 -27 11:17: 06.000', [ LastUpdate User]=' RED A CTED ' WHERE [B loodProduc tGuid]='d5 b7fc37-414 7-47e2-81f 3-65ad642a 3203' | |
| 9021 | UPDATE [db o].[BloodP roduct] SE T [Product Name]='FRE SH FROZEN PLASMA|CPD /450mL/<=- 25C|Irradi ated|ResLe u:<1E6|Fro zen <=6h', [LastUpda teDate]='2 016-07-27 11:17:06.0 00', [Last UpdateUser ]=' RED A CTED ' WHERE [B loodProduc tGuid]='5f 57cd07-0ed 8-4181-820 4-65b83df3 65cf' | |
| 9022 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='FFP AFR ACD-A IRD 4C', [Last UpdateDate ]='2016-07 -27 11:17: 06.000', [ LastUpdate User]=' RED A CTED ' WHERE [B loodProduc tGuid]='f4 93b51a-555 d-4c24-bde c-65c70b49 2b07' | |
| 9023 | UPDATE [db o].[BloodP roduct] SE T [Product Name]='Aph eresis PLA SMA|ACD-A/ XX/<=-30C| For mnf:in jectable|> =200mL<400 mL|Frozen >24h', [La stUpdateDa te]='2016- 07-27 11:1 7:06.000', [LastUpda teUser]=' RED A CTED ' WHERE [B loodProduc tGuid]='e0 3a84cf-28d f-4d28-beb 9-65e5ea20 3efd' | |
| 9024 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC AFR ACD-A>AS3 IRD 5C', [ LastUpdate Date]='201 6-07-27 11 :17:06.000 ', [LastUp dateUser]= ' RED A CTED ' WHERE [B loodProduc tGuid]='dc 45eb2a-7a1 4-45d5-abd 1-65effd49 d1ca' | |
| 9025 | UPDATE [db o].[BloodP roduct] SE T [Product Name]='Aph eresis FRE SH FROZEN PLASMA|ACD -B/XX/<=-3 0C|Not for tx or mnf |Aphr not automated| Quar:>=6m/ retested', [LastUpda teDate]='2 016-07-27 11:17:06.0 00', [Last UpdateUser ]=' RED A CTED ' WHERE [B loodProduc tGuid]='ac 33e10c-685 c-4e9a-956 4-660c4380 1cb5' | |
| 9026 | UPDATE [db o].[BloodP roduct] SE T [Product Name]='PLA SMA|CPD/45 0mL/<=-30C |>=200mL<4 00mL|Froze n <=18h|Me thylene bl ue-treated ', [LastUp dateDate]= '2016-07-2 7 11:17:06 .000', [La stUpdateUs er]=' RED A CTED ' WHERE [B loodProduc tGuid]='b2 d0b7ae-16a 5-4b90-a06 7-66265832 9523' | |
| 9027 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC AFR ACD-A>AS1 OPN LUKOPR PA 2C', [ LastUpdate Date]='201 6-07-27 11 :17:06.000 ', [LastUp dateUser]= ' RED A CTED ' WHERE [B loodProduc tGuid]='73 09c2c4-0de c-43ab-8b2 8-663b220e 623a' | |
| 9028 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLT AFR ACD-A IRD LUKOPR PLS Red 1C', [LastUpdat eDate]='20 16-07-27 1 1:17:06.00 0', [LastU pdateUser] =' RED A CTED ' WHERE [B loodProduc tGuid]='30 b857da-372 8-40fc-8f4 a-6640b989 fb4c' | |
| 9029 | UPDATE [db o].[BloodP roduct] SE T [Product Name]='Aph eresis FRE SH FROZEN PLASMA|ACD -A/XX/<=-6 5C|<200 mL ', [LastUp dateDate]= '2016-07-2 7 11:17:06 .000', [La stUpdateUs er]=' RED A CTED ' WHERE [B loodProduc tGuid]='35 ce5d0f-d5e d-43a8-9be 6-6641f4ec 302d' | |
| 9030 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLT AFR ACD-A IRD 3C', [Last UpdateDate ]='2016-07 -27 11:17: 06.000', [ LastUpdate User]=' RED A CTED ' WHERE [B loodProduc tGuid]='c4 636c57-2b6 0-4fa3-803 e-66476e76 eac2' | |
| 9031 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC CPD> AS5 IRD LU KOPR 8C', [LastUpdat eDate]='20 16-07-27 1 1:17:06.00 0', [LastU pdateUser] =' RED A CTED ' WHERE [B loodProduc tGuid]='8b 943525-b70 4-4412-8bc f-665bcbe7 a90b' | |
| 9032 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC AFR Froz None OPN 6C', [ LastUpdate Date]='201 6-07-27 11 :17:06.000 ', [LastUp dateUser]= ' RED A CTED ' WHERE [B loodProduc tGuid]='48 2a5f3b-055 f-4efc-a76 a-6661bcf9 5988' | |
| 9033 | UPDATE [db o].[BloodP roduct] SE T [Product Name]='Aph eresis PLA SMA|NaCitr ate/XX/<=- 25C|Frozen <=6h|Quar :>=112d/re tested', [ LastUpdate Date]='201 6-07-27 11 :17:06.000 ', [LastUp dateUser]= ' RED A CTED ' WHERE [B loodProduc tGuid]='14 085b86-7a7 2-4f94-b11 c-66686f7f ccdb' | |
| 9034 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='WB CPD L UKOPR 8C', [LastUpda teDate]='2 016-07-27 11:17:06.0 00', [Last UpdateUser ]=' RED A CTED ' WHERE [B loodProduc tGuid]='db bacc76-585 9-4d20-923 7-668c34ac 3bbd' | |
| 9035 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC AFR CP2D OPN I RD LUKOPR SR/PA 2C', [LastUpda teDate]='2 016-07-27 11:17:06.0 00', [Last UpdateUser ]=' RED A CTED ' WHERE [B loodProduc tGuid]='a7 e02f9f-cbd b-463c-a78 9-668c8762 1748' | |
| 9036 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC CPD IRD LUKOPR 6C', [Ret ireDate]=' 2015-04-07 00:00:00. 000', [Las tUpdateDat e]='2016-0 7-27 11:17 :06.000', [LastUpdat eUser]=' RED A CTED ' WHERE [B loodProduc tGuid]='ef 1a15b6-518 a-4e16-9ec 3-668f12f5 ffe1' | |
| 9037 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC AFR Deg Rej No ne OPN IRD 3C', [Las tUpdateDat e]='2016-0 7-27 11:17 :06.000', [LastUpdat eUser]=' RED A CTED ' WHERE [B loodProduc tGuid]='f0 cb5659-f44 d-4553-ac2 2-669e048d 4cda' | |
| 9038 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC AFR CP2D MNFI OPN 2C', [ LastUpdate Date]='201 6-07-27 11 :17:06.000 ', [LastUp dateUser]= ' RED A CTED ' WHERE [B loodProduc tGuid]='88 be4f54-312 3-4e7d-a7d 6-66a4072b 658b' | |
| 9039 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLT AFR NaCit PLS Red 2CNA', [LastUpda teDate]='2 016-07-27 11:17:06.0 00', [Last UpdateUser ]=' RED A CTED ' WHERE [B loodProduc tGuid]='5f 966720-41a 5-4fd6-ade 8-66a65015 55b7' | |
| 9040 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLASMA A FR Thaw CP 2D 3C', [L astUpdateD ate]='2016 -07-27 11: 17:06.000' , [LastUpd ateUser]=' RED A CTED ' WHERE [B loodProduc tGuid]='78 8a6150-6a4 8-464f-b36 5-66ae6ff0 81fb' | |
| 9041 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLT AFR ACD-A>PAS- D IRD LUKO PR 2C BacM tr', [Last UpdateDate ]='2016-07 -27 11:17: 06.000', [ LastUpdate User]=' RED A CTED ' WHERE [B loodProduc tGuid]='2e ab7f93-3c1 7-458a-a28 f-66cbf798 5e90' | |
| 9042 | UPDATE [db o].[BloodP roduct] SE T [Product Name]='Fro zen Rejuve nated RED BLOOD CELL S|None/450 mL/<=-65C| Open', [La stUpdateDa te]='2016- 07-27 11:1 7:06.000', [LastUpda teUser]=' RED A CTED ' WHERE [B loodProduc tGuid]='63 e8fb71-64b 2-4d09-894 8-66ccece0 69e1' | |
| 9043 | UPDATE [db o].[BloodP roduct] SE T [Product Name]='POO LED GRANUL OCYTES|CPD /450mL/rt| Irradiated |Plasma Re duced|5 un its', [Pro ductShortN ame]='GRAN Pool CPD IRD PLS Re d 5U', [La stUpdateDa te]='2016- 07-27 11:1 7:06.000', [LastUpda teUser]=' RED A CTED ' WHERE [B loodProduc tGuid]='0f 923d51-fa2 8-4456-a2f f-66d4769e dc47' | |
| 9044 | UPDATE [db o].[BloodP roduct] SE T [Product Name]='Aph eresis FRE SH FROZEN PLASMA|ACD -B/XX/<=-6 5C|Irradia ted|Fin Co n:NS|Aphr not automa ted', [Las tUpdateDat e]='2016-0 7-27 11:17 :06.000', [LastUpdat eUser]=' RED A CTED ' WHERE [B loodProduc tGuid]='c9 c8dd60-6d5 3-441e-a2c f-66d4c3b0 bf9a' | |
| 9045 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC AFR CP2D>AS3 S R/PA 2C', [LastUpdat eDate]='20 16-07-27 1 1:17:06.00 0', [LastU pdateUser] =' RED A CTED ' WHERE [B loodProduc tGuid]='9b bb8b0e-c93 5-4671-a1c d-66dd6780 f429' | |
| 9046 | UPDATE [db o].[BloodP roduct] SE T [Product Name]='Aph eresis FRE SH FROZEN PLASMA|CPD -50/XX/<=- 30C|Psoral en-treated ', [LastUp dateDate]= '2016-07-2 7 11:17:06 .000', [La stUpdateUs er]=' RED A CTED ' WHERE [B loodProduc tGuid]='3b 5488f4-f03 7-45e5-856 1-66e85354 efb5' | |
| 9047 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLT AFR ACD-B OPN IRD LUKOPR PLS Red 2 C', [LastU pdateDate] ='2016-07- 27 11:17:0 6.000', [L astUpdateU ser]=' RED A CTED ' WHERE [B loodProduc tGuid]='0b 6f5561-5c5 8-4695-b09 2-66f73ecc 91d2' | |
| 9048 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC AFR ACD-A>AS3 LUKOPR SUP Red 1C', [ LastUpdate Date]='201 6-07-27 11 :17:06.000 ', [LastUp dateUser]= ' RED A CTED ' WHERE [B loodProduc tGuid]='b7 f65629-72f 2-4a4b-9df f-66fe2d59 7a9b' | |
| 9049 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='FFP Thaw None IRD 7C', [Last UpdateDate ]='2016-07 -27 11:17: 06.000', [ LastUpdate User]=' RED A CTED ' WHERE [B loodProduc tGuid]='66 637877-7ef 9-418f-be9 7-6702f0e6 34d0' | |
| 9050 | UPDATE [db o].[BloodP roduct] SE T [Product Name]='FRE SH FROZEN PLASMA|CPD /450mL/<=- 25C|For mn f:injectab le|Frozen <=6h', [La stUpdateDa te]='2016- 07-27 11:1 7:06.000', [LastUpda teUser]=' RED A CTED ' WHERE [B loodProduc tGuid]='48 839022-c3c 5-43db-922 d-67202dad 70e0' | |
| 9051 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLT AFR ACD-A LUKO PR 1C', [L astUpdateD ate]='2016 -07-27 11: 17:06.000' , [LastUpd ateUser]=' RED A CTED ' WHERE [B loodProduc tGuid]='04 cdef8e-4bc d-4b8b-939 9-673f58fd 8a19' | |
| 9052 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLT AFR NS MNFNI 3 C', [LastU pdateDate] ='2016-07- 27 11:17:0 6.000', [L astUpdateU ser]=' RED A CTED ' WHERE [B loodProduc tGuid]='95 b6de51-b8c 4-4d54-aa4 b-6743337e 871e' | |
| 9053 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC AFR CP2D>AS3 O PN LUKOPR SUPRed 1C' , [LastUpd ateDate]=' 2016-07-27 11:17:06. 000', [Las tUpdateUse r]=' RED A CTED ' WHERE [B loodProduc tGuid]='73 b4a70f-af2 9-4596-b70 d-674397a0 6623' | |
| 9054 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC AFR CP2D IRD 1 C', [LastU pdateDate] ='2016-07- 27 11:17:0 6.000', [L astUpdateU ser]=' RED A CTED ' WHERE [B loodProduc tGuid]='cf 6ff905-0ec 6-4e8e-bea d-674638b9 cebd' | |
| 9055 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC CPD LUKOPR 4C' , [RetireD ate]='2015 -04-07 00: 00:00.000' , [LastUpd ateDate]=' 2016-07-27 11:17:06. 000', [Las tUpdateUse r]=' RED A CTED ' WHERE [B loodProduc tGuid]='ed 1a8332-d21 7-4c78-904 c-67481839 0152' | |
| 9056 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLT AFR PAS-B LUKO PR 1C', [L astUpdateD ate]='2016 -07-27 11: 17:06.000' , [LastUpd ateUser]=' RED A CTED ' WHERE [B loodProduc tGuid]='ae e3b2a0-e96 8-4042-a9c 0-675bf056 28be' | |
| 9057 | UPDATE [db o].[BloodP roduct] SE T [Product Name]='Aph eresis FRE SH FROZEN PLASMA|CPD -50/XX/<=- 65C|Irradi ated|ResLe u:<1E6|Fro zen <=6h|1 st contain er', [Prod uctShortNa me]='FFP A FR CPD-50 IRD LUKOPR 1C', [Las tUpdateDat e]='2016-0 7-27 11:17 :06.000', [LastUpdat eUser]=' RED A CTED ' WHERE [B loodProduc tGuid]='55 896b79-c98 4-4013-ae4 3-675c0052 f68b' | |
| 9058 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC AFR ACD-A>AS1 OPN LUKOPR ALB Add 2 C', [LastU pdateDate] ='2016-07- 27 11:17:0 6.000', [L astUpdateU ser]=' RED A CTED ' WHERE [B loodProduc tGuid]='80 0addc1-387 7-40f6-a1e f-6767c4b5 0c83' | |
| 9059 | UPDATE [db o].[BloodP roduct] SE T [Product Name]='POO LED GRANUL OCYTES|CPD /450mL/rt| Irradiated |6 units', [ProductS hortName]= 'GRAN Pool CPD IRD 6 U', [LastU pdateDate] ='2016-07- 27 11:17:0 6.000', [L astUpdateU ser]=' RED A CTED ' WHERE [B loodProduc tGuid]='ee 9039c5-69e d-4849-a3e d-676cd37d 4395' | |
| 9060 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLASMA A FR None 5C ', [LastUp dateDate]= '2016-07-2 7 11:17:06 .000', [La stUpdateUs er]=' RED A CTED ' WHERE [B loodProduc tGuid]='e2 fb1c51-7c2 f-4238-b97 5-6780c56d c3b9' | |
| 9061 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC Froz None OPN 4C', [Last UpdateDate ]='2016-07 -27 11:17: 06.000', [ LastUpdate User]=' RED A CTED ' WHERE [B loodProduc tGuid]='85 250f5c-1f2 a-4e58-9e0 b-67920146 061d' | |
| 9062 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLT AFR ACD-A LUKO PR 1C BacM tr', [Last UpdateDate ]='2016-07 -27 11:17: 06.000', [ LastUpdate User]=' RED A CTED ' WHERE [B loodProduc tGuid]='2c c91ec3-350 e-4783-afa e-67930bf8 9a4d' | |
| 9063 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC AFR Froz None OPN IRD 2C ', [LastUp dateDate]= '2016-07-2 7 11:17:06 .000', [La stUpdateUs er]=' RED A CTED ' WHERE [B loodProduc tGuid]='5f eccda9-733 7-4339-b14 5-67b418e0 1c7d' | |
| 9064 | UPDATE [db o].[BloodP roduct] SE T [Product Name]='Aph eresis FRE SH FROZEN PLASMA|NaC itrate/XX/ <=-25C|For mnf:injec table|Froz en <=24h', [LastUpda teDate]='2 016-07-27 11:17:06.0 00', [Last UpdateUser ]=' RED A CTED ' WHERE [B loodProduc tGuid]='5b ff222d-90e e-4822-ba5 2-67bb2ffc 8bcc' | |
| 9065 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='FFP None IRD QUAR 6C', [Last UpdateDate ]='2016-07 -27 11:17: 06.000', [ LastUpdate User]=' RED A CTED ' WHERE [B loodProduc tGuid]='0d 140a4b-4d8 1-47b9-985 d-67caf022 7974' | |
| 9066 | UPDATE [db o].[BloodP roduct] SE T [Product Name]='FRE SH FROZEN PLASMA|CPD A-1/XX/<=- 65C|3rd co ntainer', [ProductSh ortName]=' FFP CPDA-1 3C', [Las tUpdateDat e]='2016-0 7-27 11:17 :06.000', [LastUpdat eUser]=' RED A CTED ' WHERE [B loodProduc tGuid]='00 c7729c-668 b-4b2f-ae8 1-67d6daf9 3e5a' | |
| 9067 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC CPD> AS5 1C', [ LastUpdate Date]='201 6-07-27 11 :17:06.000 ', [LastUp dateUser]= ' RED A CTED ' WHERE [B loodProduc tGuid]='c6 205d28-788 1-43e4-a38 2-67f95e52 52ec' | |
| 9068 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='FFP None QUAR 3C', [LastUpda teDate]='2 016-07-27 11:17:06.0 00', [Last UpdateUser ]=' RED A CTED ' WHERE [B loodProduc tGuid]='5e a59b61-488 2-4b09-bbe 3-6811efc9 dd3c' | |
| 9069 | UPDATE [db o].[BloodP roduct] SE T [Product Name]='Aph eresis FRE SH FROZEN PLASMA|NaC itrate/XX/ <=-25C|For mnf:nonin jectable|F rozen <=24 h', [LastU pdateDate] ='2016-07- 27 11:17:0 6.000', [L astUpdateU ser]=' RED A CTED ' WHERE [B loodProduc tGuid]='3a 9d0a1c-a85 7-4ab3-b45 2-6817ad96 3419' | |
| 9070 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC AFR CP2D>AS3 I RD LUKOPR 8C', [Last UpdateDate ]='2016-07 -27 11:17: 06.000', [ LastUpdate User]=' RED A CTED ' WHERE [B loodProduc tGuid]='25 59cce5-ef7 5-4d96-966 0-6824ff07 6504' | |
| 9071 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='FFP AFR Thaw None IRD LUKOPR 7C', [Las tUpdateDat e]='2016-0 7-27 11:17 :06.000', [LastUpdat eUser]=' RED A CTED ' WHERE [B loodProduc tGuid]='c3 f7cf41-c03 8-480e-969 c-6828eeef 3873' | |
| 9072 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLT AFR NaCit LUKO PR 3C', [L astUpdateD ate]='2016 -07-27 11: 17:06.000' , [LastUpd ateUser]=' RED A CTED ' WHERE [B loodProduc tGuid]='59 b62be6-4f6 3-4862-912 a-68298bea a382' | |
| 9073 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC AFR SAGM LUKOP R 1C', [La stUpdateDa te]='2016- 07-27 11:1 7:06.000', [LastUpda teUser]=' RED A CTED ' WHERE [B loodProduc tGuid]='65 4f7037-20e b-4f07-a31 3-6835be65 5308' | |
| 9074 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='FFP AFR None IRD 8 C', [LastU pdateDate] ='2016-07- 27 11:17:0 6.000', [L astUpdateU ser]=' RED A CTED ' WHERE [B loodProduc tGuid]='d8 99707b-5a6 e-4e82-ac1 1-683a294b 8f13' | |
| 9075 | UPDATE [db o].[BloodP roduct] SE T [Product Name]='Fro zen RED BL OOD CELLS| None/250mL /<=-65C|Op en|Irradia ted', [Las tUpdateDat e]='2016-0 7-27 11:17 :06.000', [LastUpdat eUser]=' RED A CTED ' WHERE [B loodProduc tGuid]='35 2d8cd1-0eb 2-4530-b35 5-683e365f dfff' | |
| 9076 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC Deg Rej None O PN 4C', [L astUpdateD ate]='2016 -07-27 11: 17:06.000' , [LastUpd ateUser]=' RED A CTED ' WHERE [B loodProduc tGuid]='50 3347ee-51a e-4b02-9da c-6840ea33 edf5' | |
| 9077 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='FFP AFR None QUAR 6C', [Last UpdateDate ]='2016-07 -27 11:17: 06.000', [ LastUpdate User]=' RED A CTED ' WHERE [B loodProduc tGuid]='f6 a19b16-319 0-400c-936 d-6844c364 fdb3' | |
| 9078 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC CPDA -1 IRD 7C' , [LastUpd ateDate]=' 2016-07-27 11:17:06. 000', [Las tUpdateUse r]=' RED A CTED ' WHERE [B loodProduc tGuid]='32 230ad1-e64 a-45a9-960 a-6853c3f3 6bab' | |
| 9079 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC AFR Froz None OPN LUKOPR 1C', [Las tUpdateDat e]='2016-0 7-27 11:17 :06.000', [LastUpdat eUser]=' RED A CTED ' WHERE [B loodProduc tGuid]='57 5c0025-fd0 8-4499-907 7-6866a37f 3374' | |
| 9080 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLASMA A FR None 8C ', [LastUp dateDate]= '2016-07-2 7 11:17:06 .000', [La stUpdateUs er]=' RED A CTED ' WHERE [B loodProduc tGuid]='a8 1445bb-49d 3-42ea-b3d 8-68933325 cb93' | |
| 9081 | UPDATE [db o].[BloodP roduct] SE T [Product Name]='Fro zen Aphere sis PLATEL ETS|DMSO/X X/<=-65C|O pen|2nd co ntainer', [ProductSh ortName]=' PLT AFR Fr oz DMSO OP N 2C', [La stUpdateDa te]='2016- 07-27 11:1 7:06.000', [LastUpda teUser]=' RED A CTED ' WHERE [B loodProduc tGuid]='d6 1ea9ac-db5 1-41f7-991 6-689a3644 4721' | |
| 9082 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC AFR CP2D>AS3 7 C', [LastU pdateDate] ='2016-07- 27 11:17:0 6.000', [L astUpdateU ser]=' RED A CTED ' WHERE [B loodProduc tGuid]='14 cfd2ea-175 f-4dd2-af1 9-68bc3f8e 4e05' | |
| 9083 | UPDATE [db o].[BloodP roduct] SE T [Product Name]='FRE SH FROZEN PLASMA|CP2 D/XX/<=-65 C', [LastU pdateDate] ='2016-07- 27 11:17:0 6.000', [L astUpdateU ser]=' RED A CTED ' WHERE [B loodProduc tGuid]='8f 193aef-704 c-490a-893 7-68ef2e0d 3e29' | |
| 9084 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLT AFR ACD-A OPN IRD LUKOPR 1C', [Las tUpdateDat e]='2016-0 7-27 11:17 :06.000', [LastUpdat eUser]=' RED A CTED ' WHERE [B loodProduc tGuid]='c2 4828f7-42f a-41b3-b9c 2-6907b190 2d8a' | |
| 9085 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='WB CP2D IRD 2C', [ LastUpdate Date]='201 6-07-27 11 :17:06.000 ', [LastUp dateUser]= ' RED A CTED ' WHERE [B loodProduc tGuid]='3e 208512-704 3-4b7c-8ba 1-69190096 a267' | |
| 9086 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLT AFR Wash None OPN IRD 1C ', [LastUp dateDate]= '2016-07-2 7 11:17:06 .000', [La stUpdateUs er]=' RED A CTED ' WHERE [B loodProduc tGuid]='cc 1bbe7e-6e5 e-4575-8e8 0-691de88b 5d5a' | |
| 9087 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLT AFR None OPN P LS Red/ALB Add 3C', [LastUpdat eDate]='20 16-07-27 1 1:17:06.00 0', [LastU pdateUser] =' RED A CTED ' WHERE [B loodProduc tGuid]='1b e36d09-b8e f-4417-86b 8-691f5d5a 64fe' | |
| 9088 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLT AFR Thaw DMSO OPN IRD LU KOPR PA 3C ', [LastUp dateDate]= '2016-07-2 7 11:17:06 .000', [La stUpdateUs er]=' RED A CTED ' WHERE [B loodProduc tGuid]='3f f816ca-af4 f-4339-b24 7-6958728b f6e8' | |
| 9089 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC CPD IRD 3C', [ LastUpdate Date]='201 6-07-27 11 :17:06.000 ', [LastUp dateUser]= ' RED A CTED ' WHERE [B loodProduc tGuid]='47 d9b89f-bb3 3-44bd-ac5 7-69599874 599e' | |
| 9090 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC AFR Deg None O PN IRD LUK OPR 1C', [ LastUpdate Date]='201 6-07-27 11 :17:06.000 ', [LastUp dateUser]= ' RED A CTED ' WHERE [B loodProduc tGuid]='8f 80c9d1-7be c-4a3e-9f4 c-695f5f13 fa87' | |
| 9091 | UPDATE [db o].[BloodP roduct] SE T [Product Name]='FRE SH FROZEN PLASMA|CPD /XX/<=-65C |1st conta iner|Quar: >=112d/ret ested', [P roductShor tName]='FF P CPD 1C Q UAR', [Las tUpdateDat e]='2016-0 7-27 11:17 :06.000', [LastUpdat eUser]=' RED A CTED ' WHERE [B loodProduc tGuid]='59 63331a-d11 b-4ebc-88d 7-696e08df 0919' | |
| 9092 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC AFR ACD-A>AS3 IRD 7C', [ LastUpdate Date]='201 6-07-27 11 :17:06.000 ', [LastUp dateUser]= ' RED A CTED ' WHERE [B loodProduc tGuid]='aa 671965-58d 4-4742-a41 4-69b7b8e0 dd60' | |
| 9093 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLT AFR ACD-A IRD LUKOPR 5C' , [LastUpd ateDate]=' 2016-07-27 11:17:06. 000', [Las tUpdateUse r]=' RED A CTED ' WHERE [B loodProduc tGuid]='1e a97638-757 2-42d7-803 d-69bebe0d 83f1' | |
| 9094 | UPDATE [db o].[BloodP roduct] SE T [Product Name]='Fro zen RED BL OOD CELLS| None/450mL /<=-120C|O pen|Irradi ated', [La stUpdateDa te]='2016- 07-27 11:1 7:06.000', [LastUpda teUser]=' RED A CTED ' WHERE [B loodProduc tGuid]='ad 5f5718-93b 9-4313-a2d d-69c7ff95 c273' | |
| 9095 | UPDATE [db o].[BloodP roduct] SE T [Product Name]='Aph eresis FRE SH FROZEN PLASMA|ACD -A/XX/<=-6 5C|Irradia ted|>=600m L|Quar:>=6 m/retested ', [LastUp dateDate]= '2016-07-2 7 11:17:06 .000', [La stUpdateUs er]=' RED A CTED ' WHERE [B loodProduc tGuid]='30 2c38cb-a02 6-4c97-b89 e-69d1ace5 d85e' | |
| 9096 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLT AFR ACD-B 4C', [LastUpda teDate]='2 016-07-27 11:17:06.0 00', [Last UpdateUser ]=' RED A CTED ' WHERE [B loodProduc tGuid]='1a 0ff05f-c82 0-4c33-b80 e-69e11361 581b' | |
| 9097 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLT AFR Wash None OPN LUKOPR 2C', [Las tUpdateDat e]='2016-0 7-27 11:17 :06.000', [LastUpdat eUser]=' RED A CTED ' WHERE [B loodProduc tGuid]='56 1bffd7-eca 4-4935-8a1 6-69e580b1 be00' | |
| 9098 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC CP2D LUKOPR 7C ', [LastUp dateDate]= '2016-07-2 7 11:17:06 .000', [La stUpdateUs er]=' RED A CTED ' WHERE [B loodProduc tGuid]='4b 200c27-a01 2-4d4e-aae a-69e8aff7 b288' | |
| 9099 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='FFP AFR None 5C', [LastUpdat eDate]='20 16-07-27 1 1:17:06.00 0', [LastU pdateUser] =' RED A CTED ' WHERE [B loodProduc tGuid]='d1 379c92-4a0 0-4f1c-9b5 8-69fdb8ad 7a2d' | |
| 9100 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC CPDA -1 IRD 3C' , [LastUpd ateDate]=' 2016-07-27 11:17:06. 000', [Las tUpdateUse r]=' RED A CTED ' WHERE [B loodProduc tGuid]='e1 675861-6c4 b-4472-908 e-69fe7d02 7665' | |
| 9101 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC CP2D >AS3 IRD 8 C', [LastU pdateDate] ='2016-07- 27 11:17:0 6.000', [L astUpdateU ser]=' RED A CTED ' WHERE [B loodProduc tGuid]='84 3c98fd-5be 7-41ac-a75 2-6a187a9f c258' | |
| 9102 | UPDATE [db o].[BloodP roduct] SE T [Product Name]='FRE SH FROZEN PLASMA|NS/ XX/<=-30C| For mnf:no ninjectabl e|ResLeu:< 1E6|Frozen <=48h', [ LastUpdate Date]='201 6-07-27 11 :17:06.000 ', [LastUp dateUser]= ' RED A CTED ' WHERE [B loodProduc tGuid]='6b 7b349f-ee9 9-498d-a4f b-6a25f12e ce06' | |
| 9103 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC AFR CP2D>AS3 O PN LUKOPR ALB Add 2C ', [LastUp dateDate]= '2016-07-2 7 11:17:06 .000', [La stUpdateUs er]=' RED A CTED ' WHERE [B loodProduc tGuid]='d3 4c87bb-758 4-4023-bb0 c-6a27f169 7611' | |
| 9104 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC CPD IRD LUKOPR 2C', [Las tUpdateDat e]='2016-0 7-27 11:17 :06.000', [LastUpdat eUser]=' RED A CTED ' WHERE [B loodProduc tGuid]='fc 3cf28f-1e8 1-4cca-87d 5-6a3416ea d923' | |
| 9105 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC AFR CP2D OPN L UKOPR SR 2 C', [LastU pdateDate] ='2016-07- 27 11:17:0 6.000', [L astUpdateU ser]=' RED A CTED ' WHERE [B loodProduc tGuid]='a5 28b80f-9b8 b-4a62-9f6 8-6a3ce31d e57d' | |
| 9106 | UPDATE [db o].[BloodP roduct] SE T [Product Name]='FRE SH FROZEN PLASMA|CPD /450mL/<=- 25C|For mn f:injectab le|Frozen <=8h|Quar: >=112d/ret ested', [L astUpdateD ate]='2016 -07-27 11: 17:06.000' , [LastUpd ateUser]=' RED A CTED ' WHERE [B loodProduc tGuid]='90 746fbc-582 2-4599-b81 b-6a450330 d396' | |
| 9107 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC AFR CP2D OPN S R 2C', [La stUpdateDa te]='2016- 07-27 11:1 7:06.000', [LastUpda teUser]=' RED A CTED ' WHERE [B loodProduc tGuid]='10 aee4ba-7b0 7-4eaf-bf7 7-6a4cbf0b 9ca2' | |
| 9108 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC AFR Deg Rej No ne OPN IRD 2C', [Las tUpdateDat e]='2016-0 7-27 11:17 :06.000', [LastUpdat eUser]=' RED A CTED ' WHERE [B loodProduc tGuid]='8d 277d92-486 c-4962-b64 3-6a4fe6bc 3672' | |
| 9109 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC AFR Deg None O PN 8C', [L astUpdateD ate]='2016 -07-27 11: 17:06.000' , [LastUpd ateUser]=' RED A CTED ' WHERE [B loodProduc tGuid]='36 ad931b-d01 f-4997-8b9 2-6a52dcd2 faf4' | |
| 9110 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLT AFR ACD-A MNFN I 1C', [La stUpdateDa te]='2016- 07-27 11:1 7:06.000', [LastUpda teUser]=' RED A CTED ' WHERE [B loodProduc tGuid]='4f 3b7a02-bbc f-4cb6-b79 a-6a667029 f09a' | |
| 9111 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC CP2D LUKOPR 2C ', [LastUp dateDate]= '2016-07-2 7 11:17:06 .000', [La stUpdateUs er]=' RED A CTED ' WHERE [B loodProduc tGuid]='f3 fcb738-fe9 d-4d7d-841 6-6a70f8d6 dd58' | |
| 9112 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC CPDA -1 IRD LUK OPR 6C', [ LastUpdate Date]='201 6-07-27 11 :17:06.000 ', [LastUp dateUser]= ' RED A CTED ' WHERE [B loodProduc tGuid]='45 ec02cb-5a2 0-4522-997 a-6a7cdc58 b02f' | |
| 9113 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC AFR ACD-A>AS1 LUKOPR 5C' , [LastUpd ateDate]=' 2016-07-27 11:17:06. 000', [Las tUpdateUse r]=' RED A CTED ' WHERE [B loodProduc tGuid]='8f 44c22f-146 5-4b9a-af8 c-6a82573e a82a' | |
| 9114 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLT AFR ACD-A IRD 8C', [Last UpdateDate ]='2016-07 -27 11:17: 06.000', [ LastUpdate User]=' RED A CTED ' WHERE [B loodProduc tGuid]='c9 c10833-e2b 9-4253-8d2 9-6aa3c9b9 c958' | |
| 9115 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLT AFR ACD-A LUKO PR 4CBacMt r', [LastU pdateDate] ='2016-07- 27 11:17:0 6.000', [L astUpdateU ser]=' RED A CTED ' WHERE [B loodProduc tGuid]='39 2a9cb7-bae a-4f90-a79 8-6aa6bf7f a5f9' | |
| 9116 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC CPDA -1 8C', [R etireDate] ='2015-04- 07 00:00:0 0.000', [L astUpdateD ate]='2016 -07-27 11: 17:06.000' , [LastUpd ateUser]=' RED A CTED ' WHERE [B loodProduc tGuid]='db a40789-dc9 e-446f-ba5 e-6ab6e32b b052' | |
| 9117 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLT AFR ACD-A NMT 1C', [Last UpdateDate ]='2016-07 -27 11:17: 06.000', [ LastUpdate User]=' RED A CTED ' WHERE [B loodProduc tGuid]='99 6630d5-b50 e-4f05-a24 9-6acb5f20 371d' | |
| 9118 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLT AFR Thaw DMSO OPN IRD LU KOPR 1C', [LastUpdat eDate]='20 16-07-27 1 1:17:06.00 0', [LastU pdateUser] =' RED A CTED ' WHERE [B loodProduc tGuid]='f7 b76312-bf9 1-4081-a14 f-6acfa083 22c3' | |
| 9119 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLASMA A FR ACD-A L UKOPR CRYO Red 2C', [ LastUpdate Date]='201 6-07-27 11 :17:06.000 ', [LastUp dateUser]= ' RED A CTED ' WHERE [B loodProduc tGuid]='5b b48fbd-e69 8-4d76-b27 4-6ad6aa29 b4ec' | |
| 9120 | UPDATE [db o].[BloodP roduct] SE T [Product Name]='Aph eresis FRE SH FROZEN PLASMA|NaC itrate/XX/ <=-65C|3rd container ', [Produc tShortName ]='FFP AFR NaCit 3C' , [LastUpd ateDate]=' 2016-07-27 11:17:06. 000', [Las tUpdateUse r]=' RED A CTED ' WHERE [B loodProduc tGuid]='d1 0dd248-309 c-43bd-b33 e-6ad9bc38 9cd7' | |
| 9121 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC Froz Rej None OPN 6C', [ LastUpdate Date]='201 6-07-27 11 :17:06.000 ', [LastUp dateUser]= ' RED A CTED ' WHERE [B loodProduc tGuid]='bb 0e65c9-15c e-4bc7-a3e 9-6ae3d20e a97b' | |
| 9122 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLASMA A FR CP2D IR D 2C', [La stUpdateDa te]='2016- 07-27 11:1 7:06.000', [LastUpda teUser]=' RED A CTED ' WHERE [B loodProduc tGuid]='5e d4fd55-51a 9-4ca6-84c a-6afeec34 37ad' | |
| 9123 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC CPDA -1 LUKOPR 4C', [Reti reDate]='2 015-04-07 00:00:00.0 00', [Last UpdateDate ]='2016-07 -27 11:17: 06.000', [ LastUpdate User]=' RED A CTED ' WHERE [B loodProduc tGuid]='d8 09296b-87d 1-4e77-896 d-6b02f356 2b18' | |
| 9124 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLT AFR NaCit OPN PLS Red 3C ', [LastUp dateDate]= '2016-07-2 7 11:17:06 .000', [La stUpdateUs er]=' RED A CTED ' WHERE [B loodProduc tGuid]='be fabd6a-f14 e-449d-96d c-6b1450ad abc4' | |
| 9125 | UPDATE [db o].[BloodP roduct] SE T [Product Name]='Aph eresis FRE SH FROZEN PLASMA|ACD -A/XX/<=-6 5C|Irradia ted|2nd co ntainer|Qu ar:>=112d/ retested', [ProductS hortName]= 'FFP AFR A CD-A IRD 2 C QUAR', [ LastUpdate Date]='201 6-07-27 11 :17:06.000 ', [LastUp dateUser]= ' RED A CTED ' WHERE [B loodProduc tGuid]='97 f4d9dc-af4 6-4a28-9aa 5-6b23c737 a8c8' | |
| 9126 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLASMA A FR Thaw AC D-A IRD 5C ', [LastUp dateDate]= '2016-07-2 7 11:17:06 .000', [La stUpdateUs er]=' RED A CTED ' WHERE [B loodProduc tGuid]='f2 7dea45-7c4 2-44a9-b88 d-6b2914ba bc4b' | |
| 9127 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='FFP AFR None IRD L UKOPR 8C', [LastUpda teDate]='2 016-07-27 11:17:06.0 00', [Last UpdateUser ]=' RED A CTED ' WHERE [B loodProduc tGuid]='42 99de09-4d4 5-4718-9da 7-6b31dc8e 101b' | |
| 9128 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC CPD IRD LUKOPR 1C', [Ret ireDate]=' 2015-04-07 00:00:00. 000', [Las tUpdateDat e]='2016-0 7-27 11:17 :06.000', [LastUpdat eUser]=' RED A CTED ' WHERE [B loodProduc tGuid]='fb c0c356-d11 3-4ff0-afa f-6b32a93b 4c57' | |
| 9129 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLASMA T haw None 4 C', [LastU pdateDate] ='2016-07- 27 11:17:0 6.000', [L astUpdateU ser]=' RED A CTED ' WHERE [B loodProduc tGuid]='6b 2d6f76-7d3 c-4532-92f 4-6b4e3689 f76d' | |
| 9130 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC CPD> AS5 2C', [ LastUpdate Date]='201 6-07-27 11 :17:06.000 ', [LastUp dateUser]= ' RED A CTED ' WHERE [B loodProduc tGuid]='12 c398f0-a74 e-45a9-9b4 1-6b6ed8f9 9b31' | |
| 9131 | UPDATE [db o].[BloodP roduct] SE T [Product Name]='Fro zen Aphere sis PLATEL ETS|DMSO/X X/<=-65C|F or mnf:inj ectable|Op en', [Last UpdateDate ]='2016-07 -27 11:17: 06.000', [ LastUpdate User]=' RED A CTED ' WHERE [B loodProduc tGuid]='c6 d728c8-06f 3-498c-8b5 7-6b727806 be43' | |
| 9132 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='FFP CPD IRD 3C', [ LastUpdate Date]='201 6-07-27 11 :17:06.000 ', [LastUp dateUser]= ' RED A CTED ' WHERE [B loodProduc tGuid]='9c 5abcd6-652 9-4a90-9ec 6-6b7d5d1a 488e' | |
| 9133 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC CPDA -1 IRD LUK OPR 3C', [ LastUpdate Date]='201 6-07-27 11 :17:06.000 ', [LastUp dateUser]= ' RED A CTED ' WHERE [B loodProduc tGuid]='66 0c6b29-e18 7-471d-ad1 5-6b89f4e0 f099' | |
| 9134 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLT AFR NaCit IRD LUKOPR 4C' , [LastUpd ateDate]=' 2016-07-27 11:17:06. 000', [Las tUpdateUse r]=' RED A CTED ' WHERE [B loodProduc tGuid]='4f b7e2b2-49e 3-414b-b4d 8-6ba14d02 9635' | |
| 9135 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLT AFR ACD-A>PAS- C IRD 2C', [LastUpda teDate]='2 016-07-27 11:17:06.0 00', [Last UpdateUser ]=' RED A CTED ' WHERE [B loodProduc tGuid]='b7 b41ac3-173 6-4bdb-ba0 6-6bc0b7de 57a2' | |
| 9136 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLT AFR ACD-A 6C', [LastUpda teDate]='2 016-07-27 11:17:06.0 00', [Last UpdateUser ]=' RED A CTED ' WHERE [B loodProduc tGuid]='c6 5c872f-12a 6-4376-9b7 5-6bccf6bb daed' | |
| 9137 | UPDATE [db o].[BloodP roduct] SE T [Product Name]='Aph eresis FRE SH FROZEN PLASMA|NaC itrate/XX/ <=-65C|Irr adiated|4t h containe r|Quar:>=1 12d/retest ed', [Prod uctShortNa me]='FFP A FR NaCit I RD 4C QUAR ', [LastUp dateDate]= '2016-07-2 7 11:17:06 .000', [La stUpdateUs er]=' RED A CTED ' WHERE [B loodProduc tGuid]='d7 1d60e4-659 6-4b06-921 a-6bcdc5d1 e3c5' | |
| 9138 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC CPD IRD 3C', [ RetireDate ]='2015-04 -07 00:00: 00.000', [ LastUpdate Date]='201 6-07-27 11 :17:06.000 ', [LastUp dateUser]= ' RED A CTED ' WHERE [B loodProduc tGuid]='e1 fad4b6-2a5 2-40d3-9bb 3-6bdddce7 3d99' | |
| 9139 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLT AFR ACD-A 3C', [LastUpda teDate]='2 016-07-27 11:17:06.0 00', [Last UpdateUser ]=' RED A CTED ' WHERE [B loodProduc tGuid]='1f 5598de-5f3 0-4051-9a5 d-6be2be4c b890' | |
| 9140 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC CP2D >AS3 5C', [LastUpdat eDate]='20 16-07-27 1 1:17:06.00 0', [LastU pdateUser] =' RED A CTED ' WHERE [B loodProduc tGuid]='4e cbb442-ea4 7-4b75-a02 7-6be6d826 bcbe' | |
| 9141 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC Wash None OPN IRD 7C', [ LastUpdate Date]='201 6-07-27 11 :17:06.000 ', [LastUp dateUser]= ' RED A CTED ' WHERE [B loodProduc tGuid]='be fb59e8-c58 0-43d9-b0f f-6c393996 4e3e' | |
| 9142 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLT AFR Wash NS OP N LUKOPR 3 C', [LastU pdateDate] ='2016-07- 27 11:17:0 6.000', [L astUpdateU ser]=' RED A CTED ' WHERE [B loodProduc tGuid]='28 268463-2ed b-424c-b1e 4-6c3cf101 311c' | |
| 9143 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLASMA A FR Thaw No ne IRD 5C' , [LastUpd ateDate]=' 2016-07-27 11:17:06. 000', [Las tUpdateUse r]=' RED A CTED ' WHERE [B loodProduc tGuid]='05 de88ef-6e8 a-4922-97b 0-6c3dc783 71bb' | |
| 9144 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC AFR ACD-A>AS1 OPN IRD LU KOPR 1C', [LastUpdat eDate]='20 16-07-27 1 1:17:06.00 0', [LastU pdateUser] =' RED A CTED ' WHERE [B loodProduc tGuid]='b4 28e9fc-448 a-4b26-b78 1-6c5af159 ee6d' | |
| 9145 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC Deg Rej None O PN IRD LUK OPR 5C', [ LastUpdate Date]='201 6-07-27 11 :17:06.000 ', [LastUp dateUser]= ' RED A CTED ' WHERE [B loodProduc tGuid]='bc f9e5ae-4e3 b-4297-a41 1-6c8a18ee 8672' | |
| 9146 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC AFR CPDA-1 IRD 1C', [Las tUpdateDat e]='2016-0 7-27 11:17 :06.000', [LastUpdat eUser]=' RED A CTED ' WHERE [B loodProduc tGuid]='3f 84e459-5ad c-4610-bea 2-6c910534 d808' | |
| 9147 | UPDATE [db o].[BloodP roduct] SE T [Product Name]='POO LED GRANUL OCYTES|CPD /450mL/rt| Irradiated |7 units', [ProductS hortName]= 'GRAN Pool CPD IRD 7 U', [LastU pdateDate] ='2016-07- 27 11:17:0 6.000', [L astUpdateU ser]=' RED A CTED ' WHERE [B loodProduc tGuid]='c2 95f8d3-57a e-42f9-92a 7-6c972fe8 735b' | |
| 9148 | UPDATE [db o].[BloodP roduct] SE T [Product Name]='Fro zen Rejuve nated RED BLOOD CELL S|None/450 mL/<=-120C |Open', [L astUpdateD ate]='2016 -07-27 11: 17:06.000' , [LastUpd ateUser]=' RED A CTED ' WHERE [B loodProduc tGuid]='1c 00cfa9-7d1 6-4660-a01 3-6c9b5fac 524f' | |
| 9149 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLT AFR PAS-E LUKO PR SUPRed 1C Ribo', [LastUpdat eDate]='20 16-07-27 1 1:17:06.00 0', [LastU pdateUser] =' RED A CTED ' WHERE [B loodProduc tGuid]='e8 4b9a66-bd7 4-44cd-912 e-6cb2d578 c3b7' | |
| 9150 | UPDATE [db o].[BloodP roduct] SE T [Product Name]='Aph eresis FRE SH FROZEN PLASMA|ACD -B/XX/<=-2 5C|<200 mL |Quar:>=6m /retested' , [LastUpd ateDate]=' 2016-07-27 11:17:06. 000', [Las tUpdateUse r]=' RED A CTED ' WHERE [B loodProduc tGuid]='32 0ce080-690 2-43df-bc7 e-6cd47836 bb89' | |
| 9151 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLT AFR ACD-B OPN PLS Red 1C NA', [Last UpdateDate ]='2016-07 -27 11:17: 06.000', [ LastUpdate User]=' RED A CTED ' WHERE [B loodProduc tGuid]='e8 6f677b-9b0 7-4e83-bb6 6-6cd6e868 c429' | |
| 9152 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC AFR Froz None OPN 2C', [ LastUpdate Date]='201 6-07-27 11 :17:06.000 ', [LastUp dateUser]= ' RED A CTED ' WHERE [B loodProduc tGuid]='4c 6a4600-701 6-4671-af5 4-6cdf85d1 0fde' | |
| 9153 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC AFR ACD-A OPN LUKOPR 2C' , [LastUpd ateDate]=' 2016-07-27 11:17:06. 000', [Las tUpdateUse r]=' RED A CTED ' WHERE [B loodProduc tGuid]='cf 480dc4-f6e f-4d67-928 c-6cef5a9e 7ef9' | |
| 9154 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLT AFR Wash None OPN IRD 1C ', [LastUp dateDate]= '2016-07-2 7 11:17:06 .000', [La stUpdateUs er]=' RED A CTED ' WHERE [B loodProduc tGuid]='a4 ea5847-223 2-4ca0-b3e 2-6cffa449 6dee' | |
| 9155 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLT AFR PAS-D LUKO PR 3C', [L astUpdateD ate]='2016 -07-27 11: 17:06.000' , [LastUpd ateUser]=' RED A CTED ' WHERE [B loodProduc tGuid]='a6 b8489f-dea 1-42e2-87e c-6d09d1b0 1133' | |
| 9156 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC AFR CP2D>AS3 L UKOPR 1C', [LastUpda teDate]='2 016-07-27 11:17:06.0 00', [Last UpdateUser ]=' RED A CTED ' WHERE [B loodProduc tGuid]='49 a9a493-b00 0-4c20-8e0 0-6d0ac28c a6dc' | |
| 9157 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC CPDA -1 IRD 8C' , [RetireD ate]='2015 -04-07 00: 00:00.000' , [LastUpd ateDate]=' 2016-07-27 11:17:06. 000', [Las tUpdateUse r]=' RED A CTED ' WHERE [B loodProduc tGuid]='43 eac84b-a90 0-4009-8c0 c-6d152a1c 6ed6' | |
| 9158 | UPDATE [db o].[BloodP roduct] SE T [Product Name]='Aph eresis FRE SH FROZEN PLASMA|ACD -A/XX/<=-6 5C', [Last UpdateDate ]='2016-07 -27 11:17: 06.000', [ LastUpdate User]=' RED A CTED ' WHERE [B loodProduc tGuid]='96 7aba28-cfd 9-4665-989 a-6d1554b4 5cb8' | |
| 9159 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC AFR CP2D>AS3 L UKOPR 3C', [LastUpda teDate]='2 016-07-27 11:17:06.0 00', [Last UpdateUser ]=' RED A CTED ' WHERE [B loodProduc tGuid]='8f ba04ac-be7 0-4b3b-809 2-6d16ac30 861e' | |
| 9160 | UPDATE [db o].[BloodP roduct] SE T [Product Name]='Fro zen Aphere sis RED BL OOD CELLS| Gly40%/XX/ <=-65C|Ope n|ResLeu:< 1E6|1st co ntainer', [ProductSh ortName]=' RBC AFR Fr oz Gly40% OPN LUKOPR 1C', [Las tUpdateDat e]='2016-0 7-27 11:17 :06.000', [LastUpdat eUser]=' RED A CTED ' WHERE [B loodProduc tGuid]='36 a1d208-58a f-4339-b5f a-6d29c2fa ee2a' | |
| 9161 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLT AFR Wash PAS-C LUKOPR 2C Psoraln', [LastUpda teDate]='2 016-07-27 11:17:06.0 00', [Last UpdateUser ]=' RED A CTED ' WHERE [B loodProduc tGuid]='9d 54fd17-df5 e-49d0-a9d 3-6d2bd5f9 f464' | |
| 9162 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLASMA N one 8C', [ LastUpdate Date]='201 6-07-27 11 :17:06.000 ', [LastUp dateUser]= ' RED A CTED ' WHERE [B loodProduc tGuid]='12 c0f2fc-01e 1-4999-9a0 4-6d31829f b3e1' | |
| 9163 | UPDATE [db o].[BloodP roduct] SE T [Product Name]='Aph eresis CRY OPRECIPITA TE|ACD-A/X X/<=-25C', [LastUpda teDate]='2 016-07-27 11:17:06.0 00', [Last UpdateUser ]=' RED A CTED ' WHERE [B loodProduc tGuid]='65 0248d2-d6f c-46d2-9ac 8-6d362899 7237' | |
| 9164 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC Deg Rej None O PN LUKOPR 2C', [Last UpdateDate ]='2016-07 -27 11:17: 06.000', [ LastUpdate User]=' RED A CTED ' WHERE [B loodProduc tGuid]='78 728826-20f e-4db0-abc c-6d3a36e8 9b09' | |
| 9165 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='FFP Thaw CPD IRD 3 C', [LastU pdateDate] ='2016-07- 27 11:17:0 6.000', [L astUpdateU ser]=' RED A CTED ' WHERE [B loodProduc tGuid]='e7 747a12-743 1-4f0c-b61 1-6d3bfde8 104f' | |
| 9166 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC AFR CP2D>AS3 I RD LUKOPR 1C', [Last UpdateDate ]='2016-07 -27 11:17: 06.000', [ LastUpdate User]=' RED A CTED ' WHERE [B loodProduc tGuid]='8e 26d3a5-e47 a-479e-ad5 7-6d5f69f4 7759' | |
| 9167 | UPDATE [db o].[BloodP roduct] SE T [Product Name]='Aph eresis FRE SH FROZEN PLASMA|NaC itrate/XX/ <=-25C|For mnf:injec table|Froz en <=6h', [LastUpdat eDate]='20 16-07-27 1 1:17:06.00 0', [LastU pdateUser] =' RED A CTED ' WHERE [B loodProduc tGuid]='bd 28eeeb-0d5 a-4bf7-907 5-6d816b72 38ae' | |
| 9168 | UPDATE [db o].[BloodP roduct] SE T [Product Name]='PLA SMA|CPD/XX /<=-25C|Fo r mnf:inje ctable|Fro zen <=24h' , [LastUpd ateDate]=' 2016-07-27 11:17:06. 000', [Las tUpdateUse r]=' RED A CTED ' WHERE [B loodProduc tGuid]='8c 61331f-2f0 f-4502-990 8-6d905b6c 63bd' | |
| 9169 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC Deg None IRD 5 C', [LastU pdateDate] ='2016-07- 27 11:17:0 6.000', [L astUpdateU ser]=' RED A CTED ' WHERE [B loodProduc tGuid]='60 01d5cf-89d 4-441a-823 a-6da600a4 df3a' | |
| 9170 | UPDATE [db o].[BloodP roduct] SE T [Product Name]='FRE SH FROZEN PLASMA|CPD /XX/<=-65C |2nd conta iner|Quar: >=112d/ret ested', [P roductShor tName]='FF P CPD 2C Q UAR', [Las tUpdateDat e]='2016-0 7-27 11:17 :06.000', [LastUpdat eUser]=' RED A CTED ' WHERE [B loodProduc tGuid]='14 a18236-3dd 1-4f39-a46 6-6de50996 1115' | |
| 9171 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLT AFR ACD-A IRD LUKOPR PLS Red/SAL A dd 1C', [L astUpdateD ate]='2016 -07-27 11: 17:06.000' , [LastUpd ateUser]=' RED A CTED ' WHERE [B loodProduc tGuid]='27 4f7798-e42 9-4219-9a0 f-6dea0686 da6b' | |
| 9172 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC CPDA -1 6C', [L astUpdateD ate]='2016 -07-27 11: 17:06.000' , [LastUpd ateUser]=' RED A CTED ' WHERE [B loodProduc tGuid]='99 deaa37-ddf f-4101-b20 6-6df1228a a62e' | |
| 9173 | UPDATE [db o].[BloodP roduct] SE T [Product Name]='Fro zen POOLED PLATELETS |DMSO/XX/< =-65C|ResL eu:<1E6|4 units', [L astUpdateD ate]='2016 -07-27 11: 17:06.000' , [LastUpd ateUser]=' RED A CTED ' WHERE [B loodProduc tGuid]='a5 eb4aa5-97a f-45a7-bec 1-6df47ec4 a33e' | |
| 9174 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='FFP AFR Thaw NaCit 3C QUAR', [LastUpda teDate]='2 016-07-27 11:17:06.0 00', [Last UpdateUser ]=' RED A CTED ' WHERE [B loodProduc tGuid]='cc fbb195-853 c-4867-8ac b-6dfb5e1d d499' | |
| 9175 | UPDATE [db o].[BloodP roduct] SE T [Product Name]='Aph eresis FRE SH FROZEN PLASMA|CPD -50/XX/<=- 65C|Irradi ated|ResLe u:<1E6|2nd container ', [Produc tShortName ]='FFP AFR CPD-50 IR D LUKOPR 2 C', [LastU pdateDate] ='2016-07- 27 11:17:0 6.000', [L astUpdateU ser]=' RED A CTED ' WHERE [B loodProduc tGuid]='1f da0674-f85 f-4b8b-879 f-6dfc84cf 55f5' | |
| 9176 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC AFR CP2D IRD L UKOPR SR 1 C', [LastU pdateDate] ='2016-07- 27 11:17:0 6.000', [L astUpdateU ser]=' RED A CTED ' WHERE [B loodProduc tGuid]='f4 f66935-70d 7-40e4-87a 9-6e0249fd b71f' | |
| 9177 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLT AFR NaCit 1CNA ', [LastUp dateDate]= '2016-07-2 7 11:17:06 .000', [La stUpdateUs er]=' RED A CTED ' WHERE [B loodProduc tGuid]='95 449a46-02a 6-413c-87c 5-6e12844f 51b4' | |
| 9178 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='FFP AFR None IRD Q UAR 2C', [ LastUpdate Date]='201 6-07-27 11 :17:06.000 ', [LastUp dateUser]= ' RED A CTED ' WHERE [B loodProduc tGuid]='9f 92e55c-ab2 6-4d02-93a 0-6e22fa90 bee0' | |
| 9179 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC AFR Wash None OPN IRD 2C ', [LastUp dateDate]= '2016-07-2 7 11:17:06 .000', [La stUpdateUs er]=' RED A CTED ' WHERE [B loodProduc tGuid]='5d 7b12c4-e20 1-4079-a00 7-6e2d587c 60eb' | |
| 9180 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC AFR Deg Rej No ne OPN 2C' , [LastUpd ateDate]=' 2016-07-27 11:17:06. 000', [Las tUpdateUse r]=' RED A CTED ' WHERE [B loodProduc tGuid]='7f b143b2-05d f-4311-a7e 4-6e35d60c 437e' | |
| 9181 | UPDATE [db o].[BloodP roduct] SE T [Product Name]='Aph eresis FRE SH FROZEN PLASMA|NaC itrate/XX/ <=-65C|Aph r not auto mated', [L astUpdateD ate]='2016 -07-27 11: 17:06.000' , [LastUpd ateUser]=' RED A CTED ' WHERE [B loodProduc tGuid]='2b 61b737-c1c e-4f26-b9f f-6e5b0e26 423a' | |
| 9182 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC AFR Deg None O PN 2C', [L astUpdateD ate]='2016 -07-27 11: 17:06.000' , [LastUpd ateUser]=' RED A CTED ' WHERE [B loodProduc tGuid]='48 631dc8-79a d-43ed-ba0 1-6e61a2e7 a286' | |
| 9183 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC AFR ACD-A>AS1 7C', [Last UpdateDate ]='2016-07 -27 11:17: 06.000', [ LastUpdate User]=' RED A CTED ' WHERE [B loodProduc tGuid]='85 9ecb9b-2a7 5-4026-bad 2-6e81ecc5 bac7' | |
| 9184 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC AFR ACD-A>AS3 OPN IRD 1C ', [LastUp dateDate]= '2016-07-2 7 11:17:06 .000', [La stUpdateUs er]=' RED A CTED ' WHERE [B loodProduc tGuid]='b7 b3b319-70d 3-4826-985 5-6e8ff7de 3a90' | |
| 9185 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLT AFR Thaw DMSO OPN IRD PA 4C', [Las tUpdateDat e]='2016-0 7-27 11:17 :06.000', [LastUpdat eUser]=' RED A CTED ' WHERE [B loodProduc tGuid]='bf 76e9dc-d30 c-4fb1-b80 1-6e956d32 6788' | |
| 9186 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLT AFR ACD-A PLS Red 3C', [ LastUpdate Date]='201 6-07-27 11 :17:06.000 ', [LastUp dateUser]= ' RED A CTED ' WHERE [B loodProduc tGuid]='65 854a9d-4d6 c-4db9-a01 a-6ebe79f6 56e9' | |
| 9187 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLT AFR Wash NS LU KOPR SUPRe d 2C', [La stUpdateDa te]='2016- 07-27 11:1 7:06.000', [LastUpda teUser]=' RED A CTED ' WHERE [B loodProduc tGuid]='f1 e25236-1fd 4-4cb9-a07 9-6ecdb61d b395' | |
| 9188 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='FFP Thaw None 7C', [LastUpda teDate]='2 016-07-27 11:17:06.0 00', [Last UpdateUser ]=' RED A CTED ' WHERE [B loodProduc tGuid]='39 2851cd-122 7-4665-995 b-6ece15fe 3231' | |
| 9189 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC AFR Froz None OPN LUKOPR 4C', [Las tUpdateDat e]='2016-0 7-27 11:17 :06.000', [LastUpdat eUser]=' RED A CTED ' WHERE [B loodProduc tGuid]='22 d400a0-609 b-4624-8e4 7-6ece54e9 8ea7' | |
| 9190 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLT AFR ACD-A LUKO PR 6C BacM tr', [Last UpdateDate ]='2016-07 -27 11:17: 06.000', [ LastUpdate User]=' RED A CTED ' WHERE [B loodProduc tGuid]='2a 2ab50d-8f9 8-494b-9f5 0-6f156540 cb3c' | |
| 9191 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC AFR Deg None O PN IRD LUK OPR 1C', [ LastUpdate Date]='201 6-07-27 11 :17:06.000 ', [LastUp dateUser]= ' RED A CTED ' WHERE [B loodProduc tGuid]='e2 249747-2ac f-4fd2-8b4 7-6f1973fc 07b6' | |
| 9192 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLT AFR NaCit NMT OPN 4C', [ LastUpdate Date]='201 6-07-27 11 :17:06.000 ', [LastUp dateUser]= ' RED A CTED ' WHERE [B loodProduc tGuid]='24 506144-dc7 5-4a05-960 b-6f271f85 df16' | |
| 9193 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLT AFR NaCit IRD 1C', [Last UpdateDate ]='2016-07 -27 11:17: 06.000', [ LastUpdate User]=' RED A CTED ' WHERE [B loodProduc tGuid]='40 eced93-e58 6-4887-b57 e-6f2a2910 20dc' | |
| 9194 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC CPD> AS5 LUKOPR 5C', [Las tUpdateDat e]='2016-0 7-27 11:17 :06.000', [LastUpdat eUser]=' RED A CTED ' WHERE [B loodProduc tGuid]='79 14d0d7-0eb 3-45f9-b7a 6-6f316b18 da8c' | |
| 9195 | UPDATE [db o].[BloodP roduct] SE T [Product Name]='Aph eresis FRE SH FROZEN PLASMA|ACD -A/XX/<=-6 5C|Irradia ted|5th co ntainer|Qu ar:>=112d/ retested', [ProductS hortName]= 'FFP AFR A CD-A IRD 5 C QUAR', [ LastUpdate Date]='201 6-07-27 11 :17:06.000 ', [LastUp dateUser]= ' RED A CTED ' WHERE [B loodProduc tGuid]='90 5685fb-a9b 7-461a-a17 f-6f47b0d8 a34b' | |
| 9196 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC AFR CP2D>AS3 O PN IRD 2C' , [LastUpd ateDate]=' 2016-07-27 11:17:06. 000', [Las tUpdateUse r]=' RED A CTED ' WHERE [B loodProduc tGuid]='a5 74be03-7ee 1-422d-8ea e-6f66d120 33f2' | |
| 9197 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLT AFR ACD-A>PAS- F LUKOPR 1 C', [LastU pdateDate] ='2016-07- 27 11:17:0 6.000', [L astUpdateU ser]=' RED A CTED ' WHERE [B loodProduc tGuid]='b7 3ed00f-3a7 f-49d3-889 e-6f715769 bc79' | |
| 9198 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC CP2D IRD LUKOP R 6C', [La stUpdateDa te]='2016- 07-27 11:1 7:06.000', [LastUpda teUser]=' RED A CTED ' WHERE [B loodProduc tGuid]='03 feabc4-24f e-4370-a81 f-6f7e9fd9 0e21' | |
| 9199 | UPDATE [db o].[BloodP roduct] SE T [Product Name]='Fro zen RED BL OOD CELLS| Gly40%/400 mL/<=-65C' , [LastUpd ateDate]=' 2016-07-27 11:17:06. 000', [Las tUpdateUse r]=' RED A CTED ' WHERE [B loodProduc tGuid]='10 29b180-8c2 6-49f2-803 c-6fb4993c 454f' | |
| 9200 | UPDATE [db o].[BloodP roduct] SE T [Product Name]='Aph eresis FRE SH FROZEN PLASMA|NaC itrate/XX/ <=-65C|Irr adiated|Ap hr not aut omated', [ LastUpdate Date]='201 6-07-27 11 :17:06.000 ', [LastUp dateUser]= ' RED A CTED ' WHERE [B loodProduc tGuid]='ef f659cf-f44 5-46fc-b4b a-6fc6df26 7065' | |
| 9201 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC AFR CP2D IRD S R/PA 1C', [LastUpdat eDate]='20 16-07-27 1 1:17:06.00 0', [LastU pdateUser] =' RED A CTED ' WHERE [B loodProduc tGuid]='cd dd2a67-98f d-4789-b24 a-6fc93647 b2a6' | |
| 9202 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC AFR CP2D>AS3 L UKOPR SR/P A 2C', [La stUpdateDa te]='2016- 07-27 11:1 7:06.000', [LastUpda teUser]=' RED A CTED ' WHERE [B loodProduc tGuid]='68 71f574-a6f d-48ff-a85 4-6fe1f3c3 fe27' | |
| 9203 | UPDATE [db o].[BloodP roduct] SE T [Product Name]='Aph eresis FRE SH FROZEN PLASMA|ACD -B/XX/<=-6 5C|Irradia ted|>=400m L<600mL', [LastUpdat eDate]='20 16-07-27 1 1:17:06.00 0', [LastU pdateUser] =' RED A CTED ' WHERE [B loodProduc tGuid]='f5 26acd0-db6 f-45c3-805 0-6ff376d5 c534' | |
| 9204 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLT AFR ACD-B IRD LUKOPR 4C' , [LastUpd ateDate]=' 2016-07-27 11:17:06. 000', [Las tUpdateUse r]=' RED A CTED ' WHERE [B loodProduc tGuid]='c9 eeee1c-add 2-4ce5-80a 6-6ffb1962 f30f' | |
| 9205 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC Deg Rej None O PN IRD LUK OPR 6C', [ LastUpdate Date]='201 6-07-27 11 :17:06.000 ', [LastUp dateUser]= ' RED A CTED ' WHERE [B loodProduc tGuid]='06 476fca-bc0 d-44b8-a5f c-70263073 70ff' | |
| 9206 | UPDATE [db o].[BloodP roduct] SE T [Product Name]='Fro zen Aphere sis RED BL OOD CELLS| Gly40%/XX/ <=-80C|Ope n|ResLeu:< 1E6|1st co ntainer', [ProductSh ortName]=' RBC AFR Fr oz Gly40% OPN LUKOPR 1C', [Las tUpdateDat e]='2016-0 7-27 11:17 :06.000', [LastUpdat eUser]=' RED A CTED ' WHERE [B loodProduc tGuid]='50 bcb853-79e c-4c73-821 8-70303389 015c' | |
| 9207 | UPDATE [db o].[BloodP roduct] SE T [Product Name]='FRE SH FROZEN PLASMA|CPD A-1/XX/<=- 65C|Irradi ated|Quar: >=6m/retes ted', [Las tUpdateDat e]='2016-0 7-27 11:17 :06.000', [LastUpdat eUser]=' RED A CTED ' WHERE [B loodProduc tGuid]='cc 9ee733-848 0-41eb-b49 d-70370b9d f3ef' | |
| 9208 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC AFR Deg None O PN IRD 8C' , [LastUpd ateDate]=' 2016-07-27 11:17:06. 000', [Las tUpdateUse r]=' RED A CTED ' WHERE [B loodProduc tGuid]='e0 9ad06a-472 9-4fb2-bd9 5-7045dd0d e804' | |
| 9209 | UPDATE [db o].[BloodP roduct] SE T [Product Name]='FRE SH FROZEN PLASMA|CPD A-1/350mL/ <=-30C|Fro zen <=6h', [LastUpda teDate]='2 016-07-27 11:17:06.0 00', [Last UpdateUser ]=' RED A CTED ' WHERE [B loodProduc tGuid]='77 6c4830-a0e 7-401d-857 5-706ba985 73b1' | |
| 9210 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC Froz Rej Gly40 % OPN 2C', [LastUpda teDate]='2 016-07-27 11:17:06.0 00', [Last UpdateUser ]=' RED A CTED ' WHERE [B loodProduc tGuid]='f4 61ae73-161 9-4cec-b33 e-706d5c4e 513c' | |
| 9211 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC CPDA -1 LUKOPR 3C', [Reti reDate]='2 015-04-07 00:00:00.0 00', [Last UpdateDate ]='2016-07 -27 11:17: 06.000', [ LastUpdate User]=' RED A CTED ' WHERE [B loodProduc tGuid]='0a bd651d-b13 e-462e-b68 f-706e9620 77a9' | |
| 9212 | UPDATE [db o].[BloodP roduct] SE T [Product Name]='Aph eresis FRE SH FROZEN PLASMA|ACD -A/XX/<=-6 5C|Not for tx or mnf |Fin Con:N S|Aphr not automated ', [LastUp dateDate]= '2016-07-2 7 11:17:06 .000', [La stUpdateUs er]=' RED A CTED ' WHERE [B loodProduc tGuid]='df c9b6f8-a25 9-4181-939 6-708f6b16 8f27' | |
| 9213 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC AFR CPDA-1 IRD LUKOPR PA 2C', [Las tUpdateDat e]='2016-0 7-27 11:17 :06.000', [LastUpdat eUser]=' RED A CTED ' WHERE [B loodProduc tGuid]='9f cd84f8-2e3 6-4fe1-988 8-709ea07d 2bde' | |
| 9214 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC AFR Deg None O PN IRD LUK OPR 5C', [ LastUpdate Date]='201 6-07-27 11 :17:06.000 ', [LastUp dateUser]= ' RED A CTED ' WHERE [B loodProduc tGuid]='93 5c2053-db6 4-4e6b-89b a-709f09ea 8602' | |
| 9215 | UPDATE [db o].[BloodP roduct] SE T [Product Name]='PLA SMA|CPD/45 0mL/<=-30C |ResLeu:<1 E6|Cryo re duced|Quar :>=62d/ret ested', [L astUpdateD ate]='2016 -07-27 11: 17:06.000' , [LastUpd ateUser]=' RED A CTED ' WHERE [B loodProduc tGuid]='37 d28181-b2f 6-4265-b8f f-70a833e6 57c4' | |
| 9216 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC CPDA -1 LUKOPR 2C', [Reti reDate]='2 015-04-07 00:00:00.0 00', [Last UpdateDate ]='2016-07 -27 11:17: 06.000', [ LastUpdate User]=' RED A CTED ' WHERE [B loodProduc tGuid]='6e 464e8d-681 4-4ebe-8c0 d-70b6362f 9cf9' | |
| 9217 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLT AFR ACD-A LUKO PR 2C BacM tr', [Last UpdateDate ]='2016-07 -27 11:17: 06.000', [ LastUpdate User]=' RED A CTED ' WHERE [B loodProduc tGuid]='74 5757a1-de1 f-44bf-93a 2-70bd8422 7915' | |
| 9218 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC AFR CP2D>AS3 S R 2C', [La stUpdateDa te]='2016- 07-27 11:1 7:06.000', [LastUpda teUser]=' RED A CTED ' WHERE [B loodProduc tGuid]='b0 7bbd81-a5c 8-409c-a38 0-70be7659 ca52' | |
| 9219 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLT AFR NaCit LUKO PR 4C', [L astUpdateD ate]='2016 -07-27 11: 17:06.000' , [LastUpd ateUser]=' RED A CTED ' WHERE [B loodProduc tGuid]='96 93f210-df9 5-4bfc-8f9 d-70c2c395 0ce9' | |
| 9220 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC AFR CP2D>AS3 O PN IRD LUK OPR ALB Ad d 2C', [La stUpdateDa te]='2016- 07-27 11:1 7:06.000', [LastUpda teUser]=' RED A CTED ' WHERE [B loodProduc tGuid]='b6 88b513-76b 8-408d-aab f-70d2276d b319' | |
| 9221 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC CPDA -1 IRD LUK OPR 8C', [ LastUpdate Date]='201 6-07-27 11 :17:06.000 ', [LastUp dateUser]= ' RED A CTED ' WHERE [B loodProduc tGuid]='a0 75978c-f7c 1-4551-85d 5-7116fe3f 896e' | |
| 9222 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLT AFR Thaw DMSO OPN LUKOPR SR/PA 2C' , [LastUpd ateDate]=' 2016-07-27 11:17:06. 000', [Las tUpdateUse r]=' RED A CTED ' WHERE [B loodProduc tGuid]='4f 0b42ed-a01 9-436e-9d1 a-71377cf5 4982' | |
| 9223 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLT AFR ACD-A OPN IRD LUKOPR PLS Red 1 C', [LastU pdateDate] ='2016-07- 27 11:17:0 6.000', [L astUpdateU ser]=' RED A CTED ' WHERE [B loodProduc tGuid]='55 4d5f00-8ef 9-4b50-9a5 6-71736a40 6317' | |
| 9224 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLASMA A FR Liq ACD -A 1C', [L astUpdateD ate]='2016 -07-27 11: 17:06.000' , [LastUpd ateUser]=' RED A CTED ' WHERE [B loodProduc tGuid]='4c a9027f-140 6-4149-bc5 c-71756b2c f209' | |
| 9225 | UPDATE [db o].[BloodP roduct] SE T [Product Name]='Aph eresis FRE SH FROZEN PLASMA|ACD -A/XX/<=-6 5C|Irradia ted|Aphr n ot automat ed', [Last UpdateDate ]='2016-07 -27 11:17: 06.000', [ LastUpdate User]=' RED A CTED ' WHERE [B loodProduc tGuid]='b7 39ccc4-55a 3-4d5d-a05 6-7192ec13 975c' | |
| 9226 | UPDATE [db o].[BloodP roduct] SE T [Product Name]='Aph eresis FRE SH FROZEN PLASMA|ACD -A/XX/<=-6 5C|Irradia ted|ResLeu :<5E6', [L astUpdateD ate]='2016 -07-27 11: 17:06.000' , [LastUpd ateUser]=' RED A CTED ' WHERE [B loodProduc tGuid]='69 a4eab3-6aa 6-4191-931 0-71962e28 52b5' | |
| 9227 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC AFR ACD-A>AS1 MNFI IRD L UKOPR 1C', [LastUpda teDate]='2 016-07-27 11:17:06.0 00', [Last UpdateUser ]=' RED A CTED ' WHERE [B loodProduc tGuid]='7a 0e512d-d18 1-4f73-932 2-71a8b004 ecca' | |
| 9228 | UPDATE [db o].[BloodP roduct] SE T [RetireD ate]='2015 -03-06 00: 00:00.000' , [LastUpd ateDate]=' 2016-07-27 11:17:06. 000', [Las tUpdateUse r]=' RED A CTED ' WHERE [B loodProduc tGuid]='f7 ad5c8a-28c 9-421d-81f c-71ad0ac5 78e3' | |
| 9229 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='FFP AFR None IRD 7 C', [LastU pdateDate] ='2016-07- 27 11:17:0 6.000', [L astUpdateU ser]=' RED A CTED ' WHERE [B loodProduc tGuid]='84 1f597f-670 b-4e34-aa9 e-71adc4a0 8be9' | |
| 9230 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC AFR Deg Rej No ne OPN 2C' , [LastUpd ateDate]=' 2016-07-27 11:17:06. 000', [Las tUpdateUse r]=' RED A CTED ' WHERE [B loodProduc tGuid]='70 207a2d-e0e 6-422c-a4c f-71b91a10 a6c9' | |
| 9231 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='FFP AFR None IRD L UKOPR 4C', [LastUpda teDate]='2 016-07-27 11:17:06.0 00', [Last UpdateUser ]=' RED A CTED ' WHERE [B loodProduc tGuid]='97 d6b1f4-13d 4-4e0d-bcc 9-71bb000f 9d3f' | |
| 9232 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC CP2D >AS3 6C', [LastUpdat eDate]='20 16-07-27 1 1:17:06.00 0', [LastU pdateUser] =' RED A CTED ' WHERE [B loodProduc tGuid]='0c 4f26e0-ee3 7-4ed8-87e b-71bf88e4 3485' | |
| 9233 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='WB CP2D IRD LUKOPR 5C', [Las tUpdateDat e]='2016-0 7-27 11:17 :06.000', [LastUpdat eUser]=' RED A CTED ' WHERE [B loodProduc tGuid]='76 9a01bb-a93 1-4221-8d8 a-71c7b6ad 220c' | |
| 9234 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC AFR CP2D NMT 2 C', [LastU pdateDate] ='2016-07- 27 11:17:0 6.000', [L astUpdateU ser]=' RED A CTED ' WHERE [B loodProduc tGuid]='48 0e44f6-c93 0-47cd-a59 4-72033f5d a812' | |
| 9235 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='WB CPD I RD LUKOPR 7C', [Last UpdateDate ]='2016-07 -27 11:17: 06.000', [ LastUpdate User]=' RED A CTED ' WHERE [B loodProduc tGuid]='2d 21d941-28e a-4560-885 d-721f5bad 2386' | |
| 9236 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC AFR Wash None OPN LUKOPR 3C', [Las tUpdateDat e]='2016-0 7-27 11:17 :06.000', [LastUpdat eUser]=' RED A CTED ' WHERE [B loodProduc tGuid]='da 8ba88a-c4d 2-4fa3-bbd 2-727c288d e1c9' | |
| 9237 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC CPD> AS1 IRD 6C ', [LastUp dateDate]= '2016-07-2 7 11:17:06 .000', [La stUpdateUs er]=' RED A CTED ' WHERE [B loodProduc tGuid]='17 a9d4ae-b36 1-4ca1-b7b a-727ff8bd 2abf' | |
| 9238 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLT AFR NS LUKOPR 1C', [Last UpdateDate ]='2016-07 -27 11:17: 06.000', [ LastUpdate User]=' RED A CTED ' WHERE [B loodProduc tGuid]='65 3a5925-7b2 f-4d57-8dc 6-72881c7a 1296' | |
| 9239 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC AFR ACD-A LUKO PR SR/PA 2 C', [LastU pdateDate] ='2016-07- 27 11:17:0 6.000', [L astUpdateU ser]=' RED A CTED ' WHERE [B loodProduc tGuid]='52 9f54ea-c75 8-4474-84a 7-72a0921d 0be8' | |
| 9240 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC Froz None OPN IRD 1C', [ LastUpdate Date]='201 6-07-27 11 :17:06.000 ', [LastUp dateUser]= ' RED A CTED ' WHERE [B loodProduc tGuid]='34 56bfc7-3a9 9-49e0-925 4-72a4dac1 64c3' | |
| 9241 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC AFR ACD-A OPN 2C', [Last UpdateDate ]='2016-07 -27 11:17: 06.000', [ LastUpdate User]=' RED A CTED ' WHERE [B loodProduc tGuid]='8d 2cf5c3-693 5-4ff8-b54 5-72aafcb4 f1d6' | |
| 9242 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC AFR CP2D>AS3 N MT 1C', [L astUpdateD ate]='2016 -07-27 11: 17:06.000' , [LastUpd ateUser]=' RED A CTED ' WHERE [B loodProduc tGuid]='98 3002cf-dee 7-434b-b0d c-72b13fac e293' | |
| 9243 | UPDATE [db o].[BloodP roduct] SE T [Product Name]='Aph eresis FRE SH FROZEN PLASMA|ACD -A/XX/<=-6 5C|Irradia ted|4th co ntainer|Qu ar:>=112d/ retested', [ProductS hortName]= 'FFP AFR A CD-A IRD 4 C QUAR', [ LastUpdate Date]='201 6-07-27 11 :17:06.000 ', [LastUp dateUser]= ' RED A CTED ' WHERE [B loodProduc tGuid]='90 edf8f5-367 6-4a33-ab6 2-72c58da4 550d' | |
| 9244 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLT AFR PAS-E LUKO PR SUPRed 4C', [Last UpdateDate ]='2016-07 -27 11:17: 06.000', [ LastUpdate User]=' RED A CTED ' WHERE [B loodProduc tGuid]='8b d8dfac-de4 0-4966-8b7 5-72d6f80c e043' | |
| 9245 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLT AFR NS IRD LUK OPR 1C', [ LastUpdate Date]='201 6-07-27 11 :17:06.000 ', [LastUp dateUser]= ' RED A CTED ' WHERE [B loodProduc tGuid]='8b 64863d-5c8 2-476c-9df 6-730d76c2 d047' | |
| 9246 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLT AFR ACD-A IRD 3C', [Last UpdateDate ]='2016-07 -27 11:17: 06.000', [ LastUpdate User]=' RED A CTED ' WHERE [B loodProduc tGuid]='7f 507519-6d0 d-495f-ad9 5-7317318c bae9' | |
| 9247 | UPDATE [db o].[BloodP roduct] SE T [Product Name]='Aph eresis FRE SH FROZEN PLASMA|ACD -A/XX/<=-6 5C|>=200mL <400mL|Qua r:>=6m/ret ested', [L astUpdateD ate]='2016 -07-27 11: 17:06.000' , [LastUpd ateUser]=' RED A CTED ' WHERE [B loodProduc tGuid]='4c 62108d-b31 1-4f04-9e0 5-733cf8f5 2976' | |
| 9248 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC AFR CP2D>AS3 4 C', [LastU pdateDate] ='2016-07- 27 11:17:0 6.000', [L astUpdateU ser]=' RED A CTED ' WHERE [B loodProduc tGuid]='4e ba6620-b15 f-4ad9-af0 f-7343f207 672f' | |
| 9249 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC AFR Froz None OPN 2C', [ LastUpdate Date]='201 6-07-27 11 :17:06.000 ', [LastUp dateUser]= ' RED A CTED ' WHERE [B loodProduc tGuid]='d1 886ac8-323 9-45fd-bc7 b-73442b26 e716' | |
| 9250 | UPDATE [db o].[BloodP roduct] SE T [Product Name]='Aph eresis FRE SH FROZEN PLASMA|ACD -B/XX/<=-2 5C|>=400mL <600mL|Qua r:>=6m/ret ested', [L astUpdateD ate]='2016 -07-27 11: 17:06.000' , [LastUpd ateUser]=' RED A CTED ' WHERE [B loodProduc tGuid]='81 6129c6-a0b c-440d-bc3 1-7349ee39 34da' | |
| 9251 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLASMA A FR Liq ACD -A IRD LUK OPR 2C', [ LastUpdate Date]='201 6-07-27 11 :17:06.000 ', [LastUp dateUser]= ' RED A CTED ' WHERE [B loodProduc tGuid]='a4 399b7b-b73 e-4118-af4 3-7353ca2d 53e2' | |
| 9252 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='WB CPD I RD 4C', [L astUpdateD ate]='2016 -07-27 11: 17:06.000' , [LastUpd ateUser]=' RED A CTED ' WHERE [B loodProduc tGuid]='0e b5f2a4-73f 8-472e-b2e 9-7372297e 880b' | |
| 9253 | UPDATE [db o].[BloodP roduct] SE T [Product Name]='Aph eresis FRE SH FROZEN PLASMA|ACD -B/XX/<=-2 5C|Not for tx or mnf |Fin Con:N S|Aphr not automated |Quar:>=6m /retested' , [LastUpd ateDate]=' 2016-07-27 11:17:06. 000', [Las tUpdateUse r]=' RED A CTED ' WHERE [B loodProduc tGuid]='5c bf1ae1-08c 9-4ede-a0b 1-7375338c cc45' | |
| 9254 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC AFR ACD-A>AS1 LUKOPR SUP Red 1C', [ LastUpdate Date]='201 6-07-27 11 :17:06.000 ', [LastUp dateUser]= ' RED A CTED ' WHERE [B loodProduc tGuid]='c0 9bf8d6-75b 3-44c3-ae4 6-7395a00a a230' | |
| 9255 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLT AFR NaCit OPN IRD PLS Re d 4C', [La stUpdateDa te]='2016- 07-27 11:1 7:06.000', [LastUpda teUser]=' RED A CTED ' WHERE [B loodProduc tGuid]='6a 73d3ad-9fb 4-4a19-893 9-7396c159 792e' | |
| 9256 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC AFR CP2D OPN I RD LUKOPR SR 1C', [L astUpdateD ate]='2016 -07-27 11: 17:06.000' , [LastUpd ateUser]=' RED A CTED ' WHERE [B loodProduc tGuid]='0e 93da69-5f8 9-4e67-b12 9-739bfb7b c8c5' | |
| 9257 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLASMA A FR Thaw No ne IRD 4C' , [LastUpd ateDate]=' 2016-07-27 11:17:06. 000', [Las tUpdateUse r]=' RED A CTED ' WHERE [B loodProduc tGuid]='f1 63b672-623 e-48b2-855 0-739c2e6c bc13' | |
| 9258 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLT AFR ACD-A IRD LUKOPR 6C BacMtr', [ LastUpdate Date]='201 6-07-27 11 :17:06.000 ', [LastUp dateUser]= ' RED A CTED ' WHERE [B loodProduc tGuid]='8b cf8e8f-c91 c-4d1c-918 a-739f5a61 bc0b' | |
| 9259 | UPDATE [db o].[BloodP roduct] SE T [Product Name]='Aph eresis FRE SH FROZEN PLASMA|ACD -A/XX/<=-6 5C|Irradia ted|5th co ntainer', [ProductSh ortName]=' FFP AFR AC D-A IRD 5C ', [LastUp dateDate]= '2016-07-2 7 11:17:06 .000', [La stUpdateUs er]=' RED A CTED ' WHERE [B loodProduc tGuid]='e8 74028e-e2c e-43d4-bd4 0-73ad01f5 1d51' | |
| 9260 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC CPD LUKOPR 3C' , [LastUpd ateDate]=' 2016-07-27 11:17:06. 000', [Las tUpdateUse r]=' RED A CTED ' WHERE [B loodProduc tGuid]='41 cfda4f-fe1 4-4961-9e9 5-73aeefb4 24d8' | |
| 9261 | UPDATE [db o].[BloodP roduct] SE T [Product Name]='Aph eresis FRE SH FROZEN PLASMA|ACD -B/XX/<=-2 5C|Irradia ted|>=600m L', [LastU pdateDate] ='2016-07- 27 11:17:0 6.000', [L astUpdateU ser]=' RED A CTED ' WHERE [B loodProduc tGuid]='8e e982b3-778 6-4378-a24 8-73b23f03 62a5' | |
| 9262 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='FFP Thaw None 7C', [LastUpda teDate]='2 016-07-27 11:17:06.0 00', [Last UpdateUser ]=' RED A CTED ' WHERE [B loodProduc tGuid]='7e 9fb19b-607 f-48fc-96b 1-73b7255c 3d01' | |
| 9263 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC AFR Deg None O PN 4C', [L astUpdateD ate]='2016 -07-27 11: 17:06.000' , [LastUpd ateUser]=' RED A CTED ' WHERE [B loodProduc tGuid]='5e a8f42b-18d 5-472e-941 6-73bdf406 bdc3' | |
| 9264 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='FFP Thaw None 4C', [LastUpda teDate]='2 016-07-27 11:17:06.0 00', [Last UpdateUser ]=' RED A CTED ' WHERE [B loodProduc tGuid]='2c d4656d-b71 8-45d7-b34 0-73d41985 8b9d' | |
| 9265 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLT AFR ACD-B OPN IRD 1CNA', [LastUpda teDate]='2 016-07-27 11:17:06.0 00', [Last UpdateUser ]=' RED A CTED ' WHERE [B loodProduc tGuid]='2a fd69be-5f0 4-4f14-afa a-73dcb8ed 620a' | |
| 9266 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLT AFR Thaw DMSO OPN IRD LU KOPR 2C', [LastUpdat eDate]='20 16-07-27 1 1:17:06.00 0', [LastU pdateUser] =' RED A CTED ' WHERE [B loodProduc tGuid]='dd 1e983e-46e 1-409a-a6a 7-73ebdbba f191' | |
| 9267 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC AFR ACD-A>AS3 IRD 6C', [ LastUpdate Date]='201 6-07-27 11 :17:06.000 ', [LastUp dateUser]= ' RED A CTED ' WHERE [B loodProduc tGuid]='0c 453a5a-dcb 5-4cef-b32 8-74147d7e 23b8' | |
| 9268 | UPDATE [db o].[BloodP roduct] SE T [Product Name]='Aph eresis FRE SH FROZEN PLASMA|ACD -B/XX/<=-6 5C|Aphr no t automate d|Quar:>=6 m/retested ', [LastUp dateDate]= '2016-07-2 7 11:17:06 .000', [La stUpdateUs er]=' RED A CTED ' WHERE [B loodProduc tGuid]='59 a60483-dbc a-4747-ac4 b-7419be54 4f1a' | |
| 9269 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC AFR Deg None O PN 6C', [L astUpdateD ate]='2016 -07-27 11: 17:06.000' , [LastUpd ateUser]=' RED A CTED ' WHERE [B loodProduc tGuid]='c0 40909b-80c 3-434e-ad2 f-74230519 b84f' | |
| 9270 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLT AFR ACD-A MNFI 2CNA', [L astUpdateD ate]='2016 -07-27 11: 17:06.000' , [LastUpd ateUser]=' RED A CTED ' WHERE [B loodProduc tGuid]='0b e66e35-93a 6-46b5-881 b-742d253d b79d' | |
| 9271 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLASMA A FR Liq ACD -A LUKOPR 1C', [Last UpdateDate ]='2016-07 -27 11:17: 06.000', [ LastUpdate User]=' RED A CTED ' WHERE [B loodProduc tGuid]='c7 072b97-6f6 7-4d4b-b2f 3-7430a3fc 5f03' | |
| 9272 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='WB CPD I RD LUKOPR 5C', [Last UpdateDate ]='2016-07 -27 11:17: 06.000', [ LastUpdate User]=' RED A CTED ' WHERE [B loodProduc tGuid]='d7 845c76-334 1-40e0-8fc 2-7430c3f0 cc29' | |
| 9273 | UPDATE [db o].[BloodP roduct] SE T [Product Name]='FRE SH FROZEN PLASMA|CPD A-1/XX/<=- 25C|Quar:> =6m/retest ed', [Last UpdateDate ]='2016-07 -27 11:17: 06.000', [ LastUpdate User]=' RED A CTED ' WHERE [B loodProduc tGuid]='f7 442148-54d 3-4f6c-88c 4-7437bbad 20a7' | |
| 9274 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC AFR CPDA-1 IRD 7C', [Las tUpdateDat e]='2016-0 7-27 11:17 :06.000', [LastUpdat eUser]=' RED A CTED ' WHERE [B loodProduc tGuid]='f6 589d35-94b 1-4827-804 b-74420791 68eb' | |
| 9275 | UPDATE [db o].[BloodP roduct] SE T [Product Name]='Aph eresis FRE SH FROZEN PLASMA|ACD -A/XX/<=-6 5C|Irradia ted|1st co ntainer|Qu ar:>=112d/ retested', [ProductS hortName]= 'FFP AFR A CD-A IRD 1 C QUAR', [ LastUpdate Date]='201 6-07-27 11 :17:06.000 ', [LastUp dateUser]= ' RED A CTED ' WHERE [B loodProduc tGuid]='af b8da63-4e1 a-4cda-850 1-7468c488 7207' | |
| 9276 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLT AFR NaCit OPN IRD PLS Re d 1C', [La stUpdateDa te]='2016- 07-27 11:1 7:06.000', [LastUpda teUser]=' RED A CTED ' WHERE [B loodProduc tGuid]='96 ec13e8-ee9 9-4321-9f0 9-746fcdd4 c128' | |
| 9277 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLT AFR ACD-B PLS Red 2CNA', [LastUpda teDate]='2 016-07-27 11:17:06.0 00', [Last UpdateUser ]=' RED A CTED ' WHERE [B loodProduc tGuid]='09 42ff99-0b6 e-4b0e-832 c-7479cdae 045d' | |
| 9278 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLT AFR ACD-B IRD PLS Red 2C NA', [Last UpdateDate ]='2016-07 -27 11:17: 06.000', [ LastUpdate User]=' RED A CTED ' WHERE [B loodProduc tGuid]='4f 0e9e7a-219 e-43e2-ba0 4-748be110 261d' | |
| 9279 | UPDATE [db o].[BloodP roduct] SE T [Product Name]='FRE SH FROZEN PLASMA|CPD A-1/450mL/ <=-25C|For mnf:nonin jectable|F rozen <=8h ', [LastUp dateDate]= '2016-07-2 7 11:17:06 .000', [La stUpdateUs er]=' RED A CTED ' WHERE [B loodProduc tGuid]='58 de1729-3be 6-4797-9d7 8-748e4079 cf73' | |
| 9280 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC AFR CP2D>AS3 M NFI 2C', [ LastUpdate Date]='201 6-07-27 11 :17:06.000 ', [LastUp dateUser]= ' RED A CTED ' WHERE [B loodProduc tGuid]='2e 365bfb-c31 8-49c4-a31 d-749702fc 936a' | |
| 9281 | UPDATE [db o].[BloodP roduct] SE T [Product Name]='Fro zen Aphere sis PLATEL ETS|DMSO/X X/<=-65C|O pen', [Las tUpdateDat e]='2016-0 7-27 11:17 :06.000', [LastUpdat eUser]=' RED A CTED ' WHERE [B loodProduc tGuid]='ff a7a1be-d64 e-42c4-a79 e-749a3838 485a' | |
| 9282 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLT AFR ACD-A IRD 2C Ribo', [LastUpdat eDate]='20 16-07-27 1 1:17:06.00 0', [LastU pdateUser] =' RED A CTED ' WHERE [B loodProduc tGuid]='79 d82b66-2d9 d-4ea1-a55 0-749cf371 c1ce' | |
| 9283 | UPDATE [db o].[BloodP roduct] SE T [Product Name]='FRE SH FROZEN PLASMA|CPD /XX/<=-65C |Not for t x or mnf', [LastUpda teDate]='2 016-07-27 11:17:06.0 00', [Last UpdateUser ]=' RED A CTED ' WHERE [B loodProduc tGuid]='01 78eb66-21e 4-4cd0-826 8-749da5e2 9a69' | |
| 9284 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC CP2D >AS3 IRD L UKOPR 2C', [LastUpda teDate]='2 016-07-27 11:17:06.0 00', [Last UpdateUser ]=' RED A CTED ' WHERE [B loodProduc tGuid]='55 ef4ee7-dd3 9-4019-94a a-74ac9ef3 85c8' | |
| 9285 | UPDATE [db o].[BloodP roduct] SE T [Product Name]='Aph eresis FRE SH FROZEN PLASMA|ACD -B/XX/<=-2 5C|>=600mL ', [LastUp dateDate]= '2016-07-2 7 11:17:06 .000', [La stUpdateUs er]=' RED A CTED ' WHERE [B loodProduc tGuid]='81 880b6f-675 1-4c3e-8c8 e-74b1ff22 ed85' | |
| 9286 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLT AFR Thaw DMSO OPN IRD 2C ', [LastUp dateDate]= '2016-07-2 7 11:17:06 .000', [La stUpdateUs er]=' RED A CTED ' WHERE [B loodProduc tGuid]='e9 e44395-9ae 5-4800-9e5 6-74c92d69 c82d' | |
| 9287 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLT AFR PAS-B LUKO PR 2C', [L astUpdateD ate]='2016 -07-27 11: 17:06.000' , [LastUpd ateUser]=' RED A CTED ' WHERE [B loodProduc tGuid]='10 0d6e4b-10a 0-4ef3-b76 d-74e21b5c ccf7' | |
| 9288 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLT AFR Wash NS LU KOPR 3C', [LastUpdat eDate]='20 16-07-27 1 1:17:06.00 0', [LastU pdateUser] =' RED A CTED ' WHERE [B loodProduc tGuid]='fa 8c4443-3d1 d-4fc2-acf 7-74f75d76 0f06' | |
| 9289 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC AFR ACD-A>AS3 LUKOPR 2C' , [LastUpd ateDate]=' 2016-07-27 11:17:06. 000', [Las tUpdateUse r]=' RED A CTED ' WHERE [B loodProduc tGuid]='ce 909619-088 f-4ab4-a42 6-751dc01d 6c70' | |
| 9290 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='FFP AFR Thaw ACD-A IRD 3C', [LastUpdat eDate]='20 16-07-27 1 1:17:06.00 0', [LastU pdateUser] =' RED A CTED ' WHERE [B loodProduc tGuid]='08 0a492f-e8d d-48d8-a57 d-753be696 f9a2' | |
| 9291 | UPDATE [db o].[BloodP roduct] SE T [Product Name]='Tha wed PLASMA |CPD/450mL /<=-25C|Re sLeu:<1E6| Frozen <=6 h', [LastU pdateDate] ='2016-07- 27 11:17:0 6.000', [L astUpdateU ser]=' RED A CTED ' WHERE [B loodProduc tGuid]='3e c6abb0-bf2 3-466a-af6 f-75405ef2 f31e' | |
| 9292 | UPDATE [db o].[BloodP roduct] SE T [Product Name]='Aph eresis FRE SH FROZEN PLASMA|NaC itrate/XX/ <=-30C|Irr adiated|Re sLeu:<1E6| >=600mL|Fr ozen <=6h' , [LastUpd ateDate]=' 2016-07-27 11:17:06. 000', [Las tUpdateUse r]=' RED A CTED ' WHERE [B loodProduc tGuid]='2f f25e2e-2e2 b-43dc-996 9-7543b83f 3e53' | |
| 9293 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLT AFR ACD-A LUKO PR 1CNA', [LastUpdat eDate]='20 16-07-27 1 1:17:06.00 0', [LastU pdateUser] =' RED A CTED ' WHERE [B loodProduc tGuid]='c9 25edd5-bbe b-4356-b49 1-7547e85e 75b6' | |
| 9294 | UPDATE [db o].[BloodP roduct] SE T [Product Name]='FRE SH FROZEN PLASMA|NS/ XX/<=-30C| Irradiated |ResLeu:<1 E6|Quar: n ationally defined', [LastUpdat eDate]='20 16-07-27 1 1:17:06.00 0', [LastU pdateUser] =' RED A CTED ' WHERE [B loodProduc tGuid]='cb 16d7d6-c15 e-4c47-b99 f-754b7fbe 10fb' | |
| 9295 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLT AFR ACD-A LUKO PR 4C BacM tr', [Last UpdateDate ]='2016-07 -27 11:17: 06.000', [ LastUpdate User]=' RED A CTED ' WHERE [B loodProduc tGuid]='6a 30ef82-924 f-4083-8c7 5-7556ef7d 24b4' | |
| 9296 | UPDATE [db o].[BloodP roduct] SE T [Product Name]='Aph eresis FRE SH FROZEN PLASMA|ACD -A/XX/<=-6 5C|Not for tx or mnf |Aphr not automated' , [LastUpd ateDate]=' 2016-07-27 11:17:06. 000', [Las tUpdateUse r]=' RED A CTED ' WHERE [B loodProduc tGuid]='f6 bc5d13-b86 9-4b08-99e 0-75581d12 6b08' | |
| 9297 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC AFR Deg None O PN IRD LUK OPR 2C', [ LastUpdate Date]='201 6-07-27 11 :17:06.000 ', [LastUp dateUser]= ' RED A CTED ' WHERE [B loodProduc tGuid]='e0 258f0e-55e 8-4097-bcb 1-75647794 7574' | |
| 9298 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLT AFR ACD-A OPN LUKOPR PLS Red 2C', [LastUpdat eDate]='20 16-07-27 1 1:17:06.00 0', [LastU pdateUser] =' RED A CTED ' WHERE [B loodProduc tGuid]='17 861d3d-172 e-45b0-af1 4-7571c7e5 0782' | |
| 9299 | UPDATE [db o].[BloodP roduct] SE T [Product Name]='Fro zen Aphere sis PLATEL ETS|DMSO/X X/<=-65C|I rradiated| ResLeu:<5E 6', [LastU pdateDate] ='2016-07- 27 11:17:0 6.000', [L astUpdateU ser]=' RED A CTED ' WHERE [B loodProduc tGuid]='6f d81e01-587 c-4f90-9eb d-758b4dd8 a800' | |
| 9300 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC AFR ACD-A>AS3 IRD 8C', [ LastUpdate Date]='201 6-07-27 11 :17:06.000 ', [LastUp dateUser]= ' RED A CTED ' WHERE [B loodProduc tGuid]='7f 635d3c-8f2 d-4d16-806 5-759d473a 6b67' | |
| 9301 | UPDATE [db o].[BloodP roduct] SE T [Product Name]='Aph eresis FRE SH FROZEN PLASMA|ACD -B/XX/<=-2 5C|Fin Con :NS|Aphr n ot automat ed|Quar:>= 6m/reteste d', [LastU pdateDate] ='2016-07- 27 11:17:0 6.000', [L astUpdateU ser]=' RED A CTED ' WHERE [B loodProduc tGuid]='1b 777e04-287 1-4f8e-a32 5-75cb2fc2 779e' | |
| 9302 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLT AFR PAS-E IRD LUKOPR SUP Red 1C', [ LastUpdate Date]='201 6-07-27 11 :17:06.000 ', [LastUp dateUser]= ' RED A CTED ' WHERE [B loodProduc tGuid]='aa 810d1c-b26 a-48b2-870 9-75cf946f d54b' | |
| 9303 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC AFR CPD>AS1 OP N LUKOPR 2 C', [LastU pdateDate] ='2016-07- 27 11:17:0 6.000', [L astUpdateU ser]=' RED A CTED ' WHERE [B loodProduc tGuid]='6a db8373-cd0 1-4281-9b8 1-75e01576 9aa5' | |
| 9304 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC CP2D >AS3 3C', [LastUpdat eDate]='20 16-07-27 1 1:17:06.00 0', [LastU pdateUser] =' RED A CTED ' WHERE [B loodProduc tGuid]='80 526153-cd6 4-478c-987 8-75f26ebe 51d3' | |
| 9305 | UPDATE [db o].[BloodP roduct] SE T [Product Name]='Fro zen RED BL OOD CELLS| None/500mL /<=-65C|Op en', [Last UpdateDate ]='2016-07 -27 11:17: 06.000', [ LastUpdate User]=' RED A CTED ' WHERE [B loodProduc tGuid]='a2 b9cf78-465 7-4b56-996 f-760c39d9 14f4' | |
| 9306 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLT AFR ACD-A OPN IRD PLS Re d 2C', [La stUpdateDa te]='2016- 07-27 11:1 7:06.000', [LastUpda teUser]=' RED A CTED ' WHERE [B loodProduc tGuid]='72 5ba79b-313 8-4629-a84 3-7612223e d3c4' | |
| 9307 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC Froz Gly40% OP N IRD LUKO PR 2C', [L astUpdateD ate]='2016 -07-27 11: 17:06.000' , [LastUpd ateUser]=' RED A CTED ' WHERE [B loodProduc tGuid]='ea 8286c5-0cc 2-4abd-9a6 5-76304c38 619c' | |
| 9308 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLT AFR ACD-A NMT 2C', [Last UpdateDate ]='2016-07 -27 11:17: 06.000', [ LastUpdate User]=' RED A CTED ' WHERE [B loodProduc tGuid]='a1 88c903-506 4-405c-887 b-763b28d3 7133' | |
| 9309 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLT AFR ACD-A LUKO PR 3C BacM tr', [Last UpdateDate ]='2016-07 -27 11:17: 06.000', [ LastUpdate User]=' RED A CTED ' WHERE [B loodProduc tGuid]='33 8e3fdb-c9c 6-41aa-92d d-763ddee6 f067' | |
| 9310 | UPDATE [db o].[BloodP roduct] SE T [Product Name]='Fro zen RED BL OOD CELLS| Gly40%/450 mL/<=-65C| Open|Irrad iated|ResL eu:<1E6,WB filtr', [ LastUpdate Date]='201 6-07-27 11 :17:06.000 ', [LastUp dateUser]= ' RED A CTED ' WHERE [B loodProduc tGuid]='06 1e142c-740 4-4cd3-905 3-763fa193 b46a' | |
| 9311 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLT AFR ACD-A LUKO PR 8C', [L astUpdateD ate]='2016 -07-27 11: 17:06.000' , [LastUpd ateUser]=' RED A CTED ' WHERE [B loodProduc tGuid]='41 fcd77d-ea6 5-4313-8cb 0-7644dacd b858' | |
| 9312 | UPDATE [db o].[BloodP roduct] SE T [Product Name]='FRE SH FROZEN PLASMA|CPD A-1/XX/<=- 30C|Irradi ated', [La stUpdateDa te]='2016- 07-27 11:1 7:06.000', [LastUpda teUser]=' RED A CTED ' WHERE [B loodProduc tGuid]='58 5bdf2f-418 f-4075-8b9 f-764e839f 6781' | |
| 9313 | UPDATE [db o].[BloodP roduct] SE T [Product Name]='Aph eresis FRE SH FROZEN PLASMA|NaC itrate/XX/ <=-30C|Res Leu:<1E6|> =200mL<400 mL|Frozen <=18h|3rd container' , [Product ShortName] ='FFP AFR NaCit LUKO PR 3C', [L astUpdateD ate]='2016 -07-27 11: 17:06.000' , [LastUpd ateUser]=' RED A CTED ' WHERE [B loodProduc tGuid]='0e c2211a-9cd 4-4789-b5d a-765da5f5 be39' | |
| 9314 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC Wash None OPN LUKOPR 4C' , [LastUpd ateDate]=' 2016-07-27 11:17:06. 000', [Las tUpdateUse r]=' RED A CTED ' WHERE [B loodProduc tGuid]='cc bc0ffd-4fa 2-44b3-8a6 2-765f1bc3 85b0' | |
| 9315 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC AFR ACD-A>AS3 LUKOPR 5C' , [LastUpd ateDate]=' 2016-07-27 11:17:06. 000', [Las tUpdateUse r]=' RED A CTED ' WHERE [B loodProduc tGuid]='2d 74586a-419 6-4996-9d0 b-766a2746 b059' | |
| 9316 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLT AFR ACD-A LUKO PR 1C BacT est', [Las tUpdateDat e]='2016-0 7-27 11:17 :06.000', [LastUpdat eUser]=' RED A CTED ' WHERE [B loodProduc tGuid]='12 56ee6d-5fb 6-4f9c-b82 d-7687de83 07dc' | |
| 9317 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='FFP CPD IRD 3C QUA R', [LastU pdateDate] ='2016-07- 27 11:17:0 6.000', [L astUpdateU ser]=' RED A CTED ' WHERE [B loodProduc tGuid]='5f 6ff6ca-7bd 5-47dc-b2e 0-7688e7cd 5f0f' | |
| 9318 | UPDATE [db o].[BloodP roduct] SE T [Product Name]='Aph eresis FRE SH FROZEN PLASMA|ACD -A/XX/<=-6 5C|Irradia ted|3rd co ntainer', [ProductSh ortName]=' FFP AFR AC D-A IRD 3C ', [LastUp dateDate]= '2016-07-2 7 11:17:06 .000', [La stUpdateUs er]=' RED A CTED ' WHERE [B loodProduc tGuid]='5d fae1b0-064 7-4ae6-b5d 1-768fe4e6 f777' | |
| 9319 | UPDATE [db o].[BloodP roduct] SE T [Product Name]='Fro zen POOLED PLATELETS |DMSO/XX/< =-80C|Open |ResLeu:<1 E6|7 units ', [LastUp dateDate]= '2016-07-2 7 11:17:06 .000', [La stUpdateUs er]=' RED A CTED ' WHERE [B loodProduc tGuid]='a0 c74c8d-cd8 8-481f-9d5 a-769990f9 8709' | |
| 9320 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLT AFR Wash PAS-E LUKOPR 4C ', [LastUp dateDate]= '2016-07-2 7 11:17:06 .000', [La stUpdateUs er]=' RED A CTED ' WHERE [B loodProduc tGuid]='4a b5a83d-f5a f-43a4-bb6 4-76bbe996 60da' | |
| 9321 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLT AFR ACD-A IRD LUKOPR 3C BacMtr', [ LastUpdate Date]='201 6-07-27 11 :17:06.000 ', [LastUp dateUser]= ' RED A CTED ' WHERE [B loodProduc tGuid]='8b b3ac49-a9d c-4f94-a90 7-76c591d7 a860' | |
| 9322 | UPDATE [db o].[BloodP roduct] SE T [Product Name]='Fro zen Aphere sis RED BL OOD CELLS| None/XX/<= -65C|1st c ontainer', [ProductS hortName]= 'RBC AFR F roz None 1 C', [LastU pdateDate] ='2016-07- 27 11:17:0 6.000', [L astUpdateU ser]=' RED A CTED ' WHERE [B loodProduc tGuid]='e5 e62b63-0a3 5-4205-930 3-76d9675b 3b9f' | |
| 9323 | UPDATE [db o].[BloodP roduct] SE T [Product Name]='Aph eresis FRE SH FROZEN PLASMA|ACD -B/XX/<=-3 0C|Irradia ted|<200 m L', [LastU pdateDate] ='2016-07- 27 11:17:0 6.000', [L astUpdateU ser]=' RED A CTED ' WHERE [B loodProduc tGuid]='05 07ba4c-45d 1-4538-86d 0-771cc8f5 dfe6' | |
| 9324 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='FFP AFR Thaw None IRD LUKOPR 4C', [Las tUpdateDat e]='2016-0 7-27 11:17 :06.000', [LastUpdat eUser]=' RED A CTED ' WHERE [B loodProduc tGuid]='67 0e872f-a40 d-45ac-95f 9-7720af96 5744' | |
| 9325 | UPDATE [db o].[BloodP roduct] SE T [Product Name]='Fro zen RED BL OOD CELLS| None/XX/<= -65C|Irrad iated|ResL eu:<5E6', [LastUpdat eDate]='20 16-07-27 1 1:17:06.00 0', [LastU pdateUser] =' RED A CTED ' WHERE [B loodProduc tGuid]='07 0a8b7b-8aa c-4c4a-91e c-77393b30 2564' | |
| 9326 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLT AFR NS LUKOPR 1C', [Last UpdateDate ]='2016-07 -27 11:17: 06.000', [ LastUpdate User]=' RED A CTED ' WHERE [B loodProduc tGuid]='25 4f3ff1-950 e-4c8f-9c7 2-774fb25b 4969' | |
| 9327 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC AFR CPDA-1 OPN IRD LUKOP R SR 2C', [LastUpdat eDate]='20 16-07-27 1 1:17:06.00 0', [LastU pdateUser] =' RED A CTED ' WHERE [B loodProduc tGuid]='be 2d2d71-f2c b-493d-835 4-7755a775 c384' | |
| 9328 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='FFP AFR None IRD 2 C', [LastU pdateDate] ='2016-07- 27 11:17:0 6.000', [L astUpdateU ser]=' RED A CTED ' WHERE [B loodProduc tGuid]='dd 5fbccb-564 d-4d35-9a2 7-7786d811 2f2b' | |
| 9329 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC CPDA -1 IRD 8C' , [LastUpd ateDate]=' 2016-07-27 11:17:06. 000', [Las tUpdateUse r]=' RED A CTED ' WHERE [B loodProduc tGuid]='a4 f20256-7fb 5-4ff6-806 4-778e0f80 dec0' | |
| 9330 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='FFP AFR Thaw CP2D IRD 1C', [ LastUpdate Date]='201 6-07-27 11 :17:06.000 ', [LastUp dateUser]= ' RED A CTED ' WHERE [B loodProduc tGuid]='d1 25b704-f31 d-4b4c-a4d d-7791695f 6244' | |
| 9331 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC CPDA -1 3C', [R etireDate] ='2015-04- 07 00:00:0 0.000', [L astUpdateD ate]='2016 -07-27 11: 17:06.000' , [LastUpd ateUser]=' RED A CTED ' WHERE [B loodProduc tGuid]='a7 d294ed-11c 7-42d7-8ef f-7794571d 57e8' | |
| 9332 | UPDATE [db o].[BloodP roduct] SE T [Product Name]='FRE SH FROZEN PLASMA|CPD A-1/450mL/ <=-25C|For mnf:injec table|Froz en <=8h|Qu ar:>=112d/ retested', [LastUpda teDate]='2 016-07-27 11:17:06.0 00', [Last UpdateUser ]=' RED A CTED ' WHERE [B loodProduc tGuid]='29 6c565c-b14 c-4f3f-8b3 b-7799ff0d aeae' | |
| 9333 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLT AFR ACD-A NMT LUKOPR 1C' , [LastUpd ateDate]=' 2016-07-27 11:17:06. 000', [Las tUpdateUse r]=' RED A CTED ' WHERE [B loodProduc tGuid]='2a 958b0e-274 4-4807-988 1-77a53da7 7ad9' | |
| 9334 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLT AFR NS OPN IRD PLS Red 2 C', [LastU pdateDate] ='2016-07- 27 11:17:0 6.000', [L astUpdateU ser]=' RED A CTED ' WHERE [B loodProduc tGuid]='dc 1de370-523 e-4322-9a3 5-77bb1b54 d487' | |
| 9335 | UPDATE [db o].[BloodP roduct] SE T [Product Name]='Aph eresis FRE SH FROZEN PLASMA|ACD -B/XX/<=-2 5C|Not for tx or mnf |Fin Con:N S|Quar:>=6 m/retested ', [LastUp dateDate]= '2016-07-2 7 11:17:06 .000', [La stUpdateUs er]=' RED A CTED ' WHERE [B loodProduc tGuid]='e0 e4ab2b-5e1 c-4181-85d d-77c83b07 944c' | |
| 9336 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLT AFR ACD-B IRD PLS Red 2C ', [LastUp dateDate]= '2016-07-2 7 11:17:06 .000', [La stUpdateUs er]=' RED A CTED ' WHERE [B loodProduc tGuid]='b0 4b7d63-607 4-4bfe-906 a-77d6a546 c6f7' | |
| 9337 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='FFP AFR None 3C', [LastUpdat eDate]='20 16-07-27 1 1:17:06.00 0', [LastU pdateUser] =' RED A CTED ' WHERE [B loodProduc tGuid]='3f 9881ec-dc1 4-452a-a44 7-77e0682d f6e2' | |
| 9338 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLT AFR PAS-B IRD LUKOPR SUP Red 1C', [ LastUpdate Date]='201 6-07-27 11 :17:06.000 ', [LastUp dateUser]= ' RED A CTED ' WHERE [B loodProduc tGuid]='39 b7f594-e39 f-475c-980 a-77fd793f c0d0' | |
| 9339 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLASMA A FR Liq 0.5 CPD LUKOP R 1C', [La stUpdateDa te]='2016- 07-27 11:1 7:06.000', [LastUpda teUser]=' RED A CTED ' WHERE [B loodProduc tGuid]='73 1169c8-d50 f-4bc9-836 4-7800f18a 79b9' | |
| 9340 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLT AFR NS PLS Red 2C', [Las tUpdateDat e]='2016-0 7-27 11:17 :06.000', [LastUpdat eUser]=' RED A CTED ' WHERE [B loodProduc tGuid]='5d a6efeb-8ea a-4b69-a43 c-7801597f 98a0' | |
| 9341 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC AFR Deg AS3 OP N IRD LUKO PR 2C', [L astUpdateD ate]='2016 -07-27 11: 17:06.000' , [LastUpd ateUser]=' RED A CTED ' WHERE [B loodProduc tGuid]='34 8943d8-9c9 d-445e-9a7 a-78205f46 6a4d' | |
| 9342 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC AFR Wash None OPN IRD 2C ', [LastUp dateDate]= '2016-07-2 7 11:17:06 .000', [La stUpdateUs er]=' RED A CTED ' WHERE [B loodProduc tGuid]='07 a382f0-f42 4-4b21-ba5 0-7831ec3e ee20' | |
| 9343 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC AFR Deg Rej No ne OPN IRD 1C', [Las tUpdateDat e]='2016-0 7-27 11:17 :06.000', [LastUpdat eUser]=' RED A CTED ' WHERE [B loodProduc tGuid]='ae d49465-841 0-4968-88c 6-78635ca6 3a6b' | |
| 9344 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLT AFR PAS-E LUKO PR 4C BacT est', [Las tUpdateDat e]='2016-0 7-27 11:17 :06.000', [LastUpdat eUser]=' RED A CTED ' WHERE [B loodProduc tGuid]='03 dea0fa-5fb b-4127-8bb d-78753296 f181' | |
| 9345 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='FFP AFR Thaw ACD-A IRD 1C QU AR', [Last UpdateDate ]='2016-07 -27 11:17: 06.000', [ LastUpdate User]=' RED A CTED ' WHERE [B loodProduc tGuid]='bf 023cd6-474 9-4683-bb7 6-7886d8a6 38f2' | |
| 9346 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLASMA A FR Thaw Na Cit 3C', [ LastUpdate Date]='201 6-07-27 11 :17:06.000 ', [LastUp dateUser]= ' RED A CTED ' WHERE [B loodProduc tGuid]='0a fbf503-004 9-428a-84a f-78acd999 a295' | |
| 9347 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC AFR ACD-A OPN SR 2C', [L astUpdateD ate]='2016 -07-27 11: 17:06.000' , [LastUpd ateUser]=' RED A CTED ' WHERE [B loodProduc tGuid]='df a508d2-076 2-4ebc-b53 5-78b456f6 0bcc' | |
| 9348 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='FFP AFR NaCit IRD 1C', [Last UpdateDate ]='2016-07 -27 11:17: 06.000', [ LastUpdate User]=' RED A CTED ' WHERE [B loodProduc tGuid]='e3 e0d245-95a 3-4ac4-859 6-78bb48b0 d965' | |
| 9349 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC AFR CP2D>AS3 L UKOPR 2C', [LastUpda teDate]='2 016-07-27 11:17:06.0 00', [Last UpdateUser ]=' RED A CTED ' WHERE [B loodProduc tGuid]='2a 5e9e0f-6a5 f-4222-a2f b-78c93eec a050' | |
| 9350 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='FFP AFR Thaw NaCit IRD LUKOP R 2C QUAR' , [LastUpd ateDate]=' 2016-07-27 11:17:06. 000', [Las tUpdateUse r]=' RED A CTED ' WHERE [B loodProduc tGuid]='9c ba165f-390 b-422e-8ca 0-78d758d6 c64c' | |
| 9351 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC AFR CP2D>AS3 O PN LUKOPR 2C', [Last UpdateDate ]='2016-07 -27 11:17: 06.000', [ LastUpdate User]=' RED A CTED ' WHERE [B loodProduc tGuid]='bd 12229a-761 e-4810-a07 b-78fbc47b ace0' | |
| 9352 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC AFR ACD-A>AS1 2C', [Last UpdateDate ]='2016-07 -27 11:17: 06.000', [ LastUpdate User]=' RED A CTED ' WHERE [B loodProduc tGuid]='24 37b15f-ae3 b-48b1-bce 7-78ffdb14 c0f6' | |
| 9353 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC CPD> AS5 LUKOPR 2C', [Las tUpdateDat e]='2016-0 7-27 11:17 :06.000', [LastUpdat eUser]=' RED A CTED ' WHERE [B loodProduc tGuid]='e3 c6306a-6ae 6-4793-88f e-791aac80 b692' | |
| 9354 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC CP2D IRD 2C', [LastUpdat eDate]='20 16-07-27 1 1:17:06.00 0', [LastU pdateUser] =' RED A CTED ' WHERE [B loodProduc tGuid]='5a e93d72-658 7-4c8b-854 5-7920386a 3295' | |
| 9355 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='FFP None 5C', [Las tUpdateDat e]='2016-0 7-27 11:17 :06.000', [LastUpdat eUser]=' RED A CTED ' WHERE [B loodProduc tGuid]='10 ceadda-948 a-4476-9e2 6-7950fd65 5c03' | |
| 9356 | UPDATE [db o].[BloodP roduct] SE T [Product Name]='Aph eresis FRE SH FROZEN PLASMA|NaC itrate/XX/ <=-30C|Res Leu:<1E6|Q uar:>=4m/r etested', [LastUpdat eDate]='20 16-07-27 1 1:17:06.00 0', [LastU pdateUser] =' RED A CTED ' WHERE [B loodProduc tGuid]='7a 75346f-19f 9-4d10-8d8 4-7957ef64 2a99' | |
| 9357 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='WB CPD I RD 6C', [L astUpdateD ate]='2016 -07-27 11: 17:06.000' , [LastUpd ateUser]=' RED A CTED ' WHERE [B loodProduc tGuid]='70 1d5ea5-891 7-4e5b-b1a f-795862b7 ebb4' | |
| 9358 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLT AFR ACD-A PLS Red 4C', [ LastUpdate Date]='201 6-07-27 11 :17:06.000 ', [LastUp dateUser]= ' RED A CTED ' WHERE [B loodProduc tGuid]='3b d09bc7-ecc 5-473d-a41 3-79638833 6f65' | |
| 9359 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC AFR ACD-A>AS1 LUKOPR SUP Red 2C', [ LastUpdate Date]='201 6-07-27 11 :17:06.000 ', [LastUp dateUser]= ' RED A CTED ' WHERE [B loodProduc tGuid]='99 4d3a6a-70e 1-41e5-bfe b-7963b37b 1d74' | |
| 9360 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLT AFR NaCit OPN LUKOPR PLS Red 1CNA' , [LastUpd ateDate]=' 2016-07-27 11:17:06. 000', [Las tUpdateUse r]=' RED A CTED ' WHERE [B loodProduc tGuid]='db 49023f-721 1-48a5-849 7-79885624 04d9' | |
| 9361 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='FFP AFR Thaw 0.5 C PD IRD LUK OPR 2C', [ LastUpdate Date]='201 6-07-27 11 :17:06.000 ', [LastUp dateUser]= ' RED A CTED ' WHERE [B loodProduc tGuid]='ee 318c38-dda 3-470d-b67 4-799ab598 cd55' | |
| 9362 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC AFR CP2D>AS3 O PN LUKOPR SR 1C', [L astUpdateD ate]='2016 -07-27 11: 17:06.000' , [LastUpd ateUser]=' RED A CTED ' WHERE [B loodProduc tGuid]='a7 61399b-56b 4-46b3-b24 1-79c50aef ddf6' | |
| 9363 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC AFR CP2D>AS3 L UKOPR 2C', [LastUpda teDate]='2 016-07-27 11:17:06.0 00', [Last UpdateUser ]=' RED A CTED ' WHERE [B loodProduc tGuid]='bf d7a58f-ece 4-4717-bff a-79c8c41e be58' | |
| 9364 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC AFR ACD-A IRD SR 2C', [L astUpdateD ate]='2016 -07-27 11: 17:06.000' , [LastUpd ateUser]=' RED A CTED ' WHERE [B loodProduc tGuid]='50 542f78-ad6 c-4cb4-92b 4-79d08f65 3adc' | |
| 9365 | UPDATE [db o].[BloodP roduct] SE T [Product Name]='Fro zen POOLED PLATELETS |DMSO/XX/< =-80C|Open |ResLeu:<1 E6|6 units ', [LastUp dateDate]= '2016-07-2 7 11:17:06 .000', [La stUpdateUs er]=' RED A CTED ' WHERE [B loodProduc tGuid]='d7 c23d53-c94 3-40d6-ba0 6-79ea3156 80a0' | |
| 9366 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLASMA A FR ACD-A I RD 4C', [L astUpdateD ate]='2016 -07-27 11: 17:06.000' , [LastUpd ateUser]=' RED A CTED ' WHERE [B loodProduc tGuid]='b6 70b84e-ae8 a-4fa9-b0f b-79f45fbe 2665' | |
| 9367 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC Froz None OPN LUKOPR 5C' , [LastUpd ateDate]=' 2016-07-27 11:17:06. 000', [Las tUpdateUse r]=' RED A CTED ' WHERE [B loodProduc tGuid]='57 643325-53e d-4cb3-af4 5-7a0202e2 38ad' | |
| 9368 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='FFP AFR Thaw None IRD 6C', [ LastUpdate Date]='201 6-07-27 11 :17:06.000 ', [LastUp dateUser]= ' RED A CTED ' WHERE [B loodProduc tGuid]='73 c28ed8-774 e-4251-99b 7-7a137a16 b7bb' | |
| 9369 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='FFP AFR Thaw None IRD LUKOPR 2C', [Las tUpdateDat e]='2016-0 7-27 11:17 :06.000', [LastUpdat eUser]=' RED A CTED ' WHERE [B loodProduc tGuid]='0e 9e22cd-6bd e-43ca-bda 9-7a195d9a 2e62' | |
| 9370 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='FFP AFR None 8C', [LastUpdat eDate]='20 16-07-27 1 1:17:06.00 0', [LastU pdateUser] =' RED A CTED ' WHERE [B loodProduc tGuid]='06 e7ffdc-958 7-4644-b63 a-7a2455e0 722e' | |
| 9371 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC Wash None OPN IRD LUKOPR 2C', [Las tUpdateDat e]='2016-0 7-27 11:17 :06.000', [LastUpdat eUser]=' RED A CTED ' WHERE [B loodProduc tGuid]='a2 436f48-9d4 6-4170-96d 9-7a29aa28 ad72' | |
| 9372 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC CPD LUKOPR 2C' , [RetireD ate]='2015 -04-07 00: 00:00.000' , [LastUpd ateDate]=' 2016-07-27 11:17:06. 000', [Las tUpdateUse r]=' RED A CTED ' WHERE [B loodProduc tGuid]='51 7245e2-1a5 3-469d-b12 1-7a37e74e dd5d' | |
| 9373 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC AFR ACD-A>AS1 IRD LUKOPR 3C', [Las tUpdateDat e]='2016-0 7-27 11:17 :06.000', [LastUpdat eUser]=' RED A CTED ' WHERE [B loodProduc tGuid]='af d269fa-caf c-47cd-b2b 1-7a3abf56 4701' | |
| 9374 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLASMA A FR Thaw No ne IRD 8C' , [LastUpd ateDate]=' 2016-07-27 11:17:06. 000', [Las tUpdateUse r]=' RED A CTED ' WHERE [B loodProduc tGuid]='20 4a1b13-d4a 0-43ea-939 0-7a403070 c1c7' | |
| 9375 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLT AFR NaCit OPN IRD LUKOPR PLS Red 2 CNA', [Las tUpdateDat e]='2016-0 7-27 11:17 :06.000', [LastUpdat eUser]=' RED A CTED ' WHERE [B loodProduc tGuid]='5f 3ad4e0-74f c-4254-a06 b-7a4351f9 4e91' | |
| 9376 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='WB CPDA- 1 3C', [La stUpdateDa te]='2016- 07-27 11:1 7:06.000', [LastUpda teUser]=' RED A CTED ' WHERE [B loodProduc tGuid]='49 11163e-506 2-416b-be2 2-7a435a0d b49a' | |
| 9377 | UPDATE [db o].[BloodP roduct] SE T [Product Name]='Fro zen RED BL OOD CELLS| None/XX/<= -65C|ResLe u:<5E6', [ LastUpdate Date]='201 6-07-27 11 :17:06.000 ', [LastUp dateUser]= ' RED A CTED ' WHERE [B loodProduc tGuid]='71 7932b8-410 9-488a-96c 0-7a45c2e0 a2aa' | |
| 9378 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC AFR ACD-A>AS3 1C', [Last UpdateDate ]='2016-07 -27 11:17: 06.000', [ LastUpdate User]=' RED A CTED ' WHERE [B loodProduc tGuid]='9c f5a74d-842 5-45bb-a7e 6-7a4979d1 f435' | |
| 9379 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC AFR ACD-A>AS3 IRD LUKOPR SUPRed 2C ', [LastUp dateDate]= '2016-07-2 7 11:17:06 .000', [La stUpdateUs er]=' RED A CTED ' WHERE [B loodProduc tGuid]='3f 0af384-de3 9-4069-ad7 8-7a655576 4342' | |
| 9380 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC CPD> AS1 LUKOPR 5C', [Las tUpdateDat e]='2016-0 7-27 11:17 :06.000', [LastUpdat eUser]=' RED A CTED ' WHERE [B loodProduc tGuid]='b2 b341b2-bbf 7-42a7-942 f-7a7d1734 a6ab' | |
| 9381 | UPDATE [db o].[BloodP roduct] SE T [Product Name]='Fro zen Aphere sis RED BL OOD CELLS| Gly40%/XX/ <=-65C|Ope n|Irradiat ed|ResLeu: <5E6|1st c ontainer', [ProductS hortName]= 'RBC AFR F roz Gly40% OPN IRD L UKOPR 1C', [LastUpda teDate]='2 016-07-27 11:17:06.0 00', [Last UpdateUser ]=' RED A CTED ' WHERE [B loodProduc tGuid]='6f 58bde2-b55 0-4edb-8e3 a-7a8fb946 7d00' | |
| 9382 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC Wash None OPN 7C', [Last UpdateDate ]='2016-07 -27 11:17: 06.000', [ LastUpdate User]=' RED A CTED ' WHERE [B loodProduc tGuid]='57 451d50-9b1 d-4cd1-b47 e-7a9d599e 7115' | |
| 9383 | UPDATE [db o].[BloodP roduct] SE T [Product Name]='Aph eresis FRE SH FROZEN PLASMA|ACD -A/XX/<=-3 0C|ResLeu: <1E6|>=200 mL<400mL|Q uar:>=90d/ retested', [LastUpda teDate]='2 016-07-27 11:17:06.0 00', [Last UpdateUser ]=' RED A CTED ' WHERE [B loodProduc tGuid]='2d a08ad0-92d a-4e80-ad5 f-7aa535c8 6901' | |
| 9384 | UPDATE [db o].[BloodP roduct] SE T [Product Name]='Fro zen Aphere sis RED BL OOD CELLS| None/XX/<= -65C|Open| Irradiated |ResLeu:<5 E6|1st con tainer', [ ProductSho rtName]='R BC AFR Fro z None OPN IRD LUKOP R 1C', [La stUpdateDa te]='2016- 07-27 11:1 7:06.000', [LastUpda teUser]=' RED A CTED ' WHERE [B loodProduc tGuid]='ea 6074fe-0a2 5-42a9-89e 7-7aadc532 cb77' | |
| 9385 | UPDATE [db o].[BloodP roduct] SE T [Product Name]='FRE SH FROZEN PLASMA|CPD /450mL/<=- 25C|Frozen <=15h|Rib oflavin-tr eated', [L astUpdateD ate]='2016 -07-27 11: 17:06.000' , [LastUpd ateUser]=' RED A CTED ' WHERE [B loodProduc tGuid]='c9 302e77-e2f f-4030-af2 8-7ac62a9d 98db' | |
| 9386 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLT AFR ACD-A LUKO PR 2C BacM tr', [Last UpdateDate ]='2016-07 -27 11:17: 06.000', [ LastUpdate User]=' RED A CTED ' WHERE [B loodProduc tGuid]='2d 362873-cf2 a-4b15-965 6-7ace9cd5 16a4' | |
| 9387 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='FFP AFR None IRD Q UAR 6C', [ LastUpdate Date]='201 6-07-27 11 :17:06.000 ', [LastUp dateUser]= ' RED A CTED ' WHERE [B loodProduc tGuid]='72 498521-10a 6-44be-bd2 2-7ad5ed34 baba' | |
| 9388 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLT AFR ACD-B LUKO PR PLS Red 4C', [Las tUpdateDat e]='2016-0 7-27 11:17 :06.000', [LastUpdat eUser]=' RED A CTED ' WHERE [B loodProduc tGuid]='af 63749f-619 e-4b8d-adb 0-7adc1b51 2c5f' | |
| 9389 | UPDATE [db o].[BloodP roduct] SE T [Product Name]='PLA SMA|CPD/45 0mL/<=-30C |<200 mL|F rozen <=18 h|Methylen e blue-tre ated', [La stUpdateDa te]='2016- 07-27 11:1 7:06.000', [LastUpda teUser]=' RED A CTED ' WHERE [B loodProduc tGuid]='19 50b7fc-2fe b-461a-8cd f-7afb1638 70d9' | |
| 9390 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC AFR ACD-A>AS1 LUKOPR 3C' , [LastUpd ateDate]=' 2016-07-27 11:17:06. 000', [Las tUpdateUse r]=' RED A CTED ' WHERE [B loodProduc tGuid]='0b 534f4b-037 f-4cef-a2e 6-7b0e87c3 190e' | |
| 9391 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='FFP AFR ACD-A 4C Q UAR', [Las tUpdateDat e]='2016-0 7-27 11:17 :06.000', [LastUpdat eUser]=' RED A CTED ' WHERE [B loodProduc tGuid]='02 40f466-ea9 2-49b0-a12 9-7b2bb77c c59d' | |
| 9392 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC CPD IRD 7C', [ RetireDate ]='2015-04 -07 00:00: 00.000', [ LastUpdate Date]='201 6-07-27 11 :17:06.000 ', [LastUp dateUser]= ' RED A CTED ' WHERE [B loodProduc tGuid]='6f 32d163-44f 3-4a26-a3b e-7b82d8bf 0f81' | |
| 9393 | UPDATE [db o].[BloodP roduct] SE T [Product Name]='Aph eresis FRE SH FROZEN PLASMA|NaC itrate/XX/ <=-65C|Irr adiated|Fi n Con:NS', [LastUpda teDate]='2 016-07-27 11:17:06.0 00', [Last UpdateUser ]=' RED A CTED ' WHERE [B loodProduc tGuid]='8e 57aba7-b87 9-4bc5-843 4-7b8d0d57 ac94' | |
| 9394 | UPDATE [db o].[BloodP roduct] SE T [Product Name]='Aph eresis FRE SH FROZEN PLASMA|NaC itrate/XX/ <=-65C|Irr adiated|>= 200mL<400m L|Quar:>=6 m/retested ', [LastUp dateDate]= '2016-07-2 7 11:17:06 .000', [La stUpdateUs er]=' RED A CTED ' WHERE [B loodProduc tGuid]='49 ac7763-975 e-4ab3-bbe 0-7bc173f0 cde5' | |
| 9395 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLT AFR Wash PAS-C LUKOPR 3C Psoraln', [LastUpda teDate]='2 016-07-27 11:17:06.0 00', [Last UpdateUser ]=' RED A CTED ' WHERE [B loodProduc tGuid]='bd 22de49-825 5-4607-b5a d-7bc3f74b c15a' | |
| 9396 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC AFR ACD-A>AS1 4C', [Last UpdateDate ]='2016-07 -27 11:17: 06.000', [ LastUpdate User]=' RED A CTED ' WHERE [B loodProduc tGuid]='2b ff0af9-d9f 3-4882-903 b-7bdbf0b7 4ff5' | |
| 9397 | UPDATE [db o].[BloodP roduct] SE T [Product Name]='Fro zen Aphere sis PLATEL ETS|DMSO/X X/<=-65C|O pen|ResLeu :<5E6|2nd container' , [Product ShortName] ='PLT AFR Froz DMSO OPN LUKOPR 2C', [Las tUpdateDat e]='2016-0 7-27 11:17 :06.000', [LastUpdat eUser]=' RED A CTED ' WHERE [B loodProduc tGuid]='7b 292c64-e6e c-4f2b-938 0-7c372958 2efe' | |
| 9398 | UPDATE [db o].[BloodP roduct] SE T [Product Name]='Aph eresis FRE SH FROZEN PLASMA|NaC itrate/XX/ <=-65C|2nd container ', [Produc tShortName ]='FFP AFR NaCit 2C' , [LastUpd ateDate]=' 2016-07-27 11:17:06. 000', [Las tUpdateUse r]=' RED A CTED ' WHERE [B loodProduc tGuid]='86 ba713f-bc9 5-403c-bfd 0-7c373011 737e' | |
| 9399 | UPDATE [db o].[BloodP roduct] SE T [Product Name]='Fro zen Rejuve nated Aphe resis RED BLOOD CELL S|None/XX/ <=-65C|Ope n|ResLeu:< 5E6|1st co ntainer', [ProductSh ortName]=' RBC AFR Fr oz Rej Non e OPN LUKO PR 1C', [L astUpdateD ate]='2016 -07-27 11: 17:06.000' , [LastUpd ateUser]=' RED A CTED ' WHERE [B loodProduc tGuid]='cc fb5c4f-4b9 9-4f66-852 d-7c4138af bb20' | |
| 9400 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC Deg Rej None O PN IRD 3C' , [LastUpd ateDate]=' 2016-07-27 11:17:06. 000', [Las tUpdateUse r]=' RED A CTED ' WHERE [B loodProduc tGuid]='17 80b055-a91 d-4499-817 3-7c58664d 6c68' | |
| 9401 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLT AFR Wash NS LU KOPR 1C', [LastUpdat eDate]='20 16-07-27 1 1:17:06.00 0', [LastU pdateUser] =' RED A CTED ' WHERE [B loodProduc tGuid]='dc 2b04e5-3a4 c-4460-82b e-7c59de67 e3b8' | |
| 9402 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC AFR ACD-A>AS1 IRD LUKOPR 1C', [Las tUpdateDat e]='2016-0 7-27 11:17 :06.000', [LastUpdat eUser]=' RED A CTED ' WHERE [B loodProduc tGuid]='fc adfe2f-a77 7-4cdc-83e 4-7c6102c5 ce1e' | |
| 9403 | UPDATE [db o].[BloodP roduct] SE T [Product Name]='FRE SH FROZEN PLASMA|0.5 CPD/XX/<= -25C|Not f or tx or m nf|Quar:>= 6m/reteste d', [LastU pdateDate] ='2016-07- 27 11:17:0 6.000', [L astUpdateU ser]=' RED A CTED ' WHERE [B loodProduc tGuid]='80 359482-210 9-4bd5-a3b 9-7c6692b8 fac1' | |
| 9404 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLT AFR ACD-A IRD 2CNA', [La stUpdateDa te]='2016- 07-27 11:1 7:06.000', [LastUpda teUser]=' RED A CTED ' WHERE [B loodProduc tGuid]='8c 52401c-2b0 a-4ac3-82b 9-7c684959 28b4' | |
| 9405 | UPDATE [db o].[BloodP roduct] SE T [Product Name]='FRE SH FROZEN PLASMA|CPD A-1/XX/<=- 65C|Irradi ated|3rd c ontainer|Q uar:>=112d /retested' , [Product ShortName] ='FFP CPDA -1 IRD 3C QUAR', [La stUpdateDa te]='2016- 07-27 11:1 7:06.000', [LastUpda teUser]=' RED A CTED ' WHERE [B loodProduc tGuid]='1d eaed29-91f 2-47fd-a0f b-7c6c981d 1ab7' | |
| 9406 | UPDATE [db o].[BloodP roduct] SE T [Product Name]='FRE SH FROZEN PLASMA|CPD A-1/XX/<=- 65C|Quar:> =6m/retest ed', [Last UpdateDate ]='2016-07 -27 11:17: 06.000', [ LastUpdate User]=' RED A CTED ' WHERE [B loodProduc tGuid]='34 86836f-762 6-4e4f-bfd 6-7c7b4ebd 8bef' | |
| 9407 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC AFR ACD-A OPN IRD 1C', [ LastUpdate Date]='201 6-07-27 11 :17:06.000 ', [LastUp dateUser]= ' RED A CTED ' WHERE [B loodProduc tGuid]='2f e99f2f-493 f-4399-90c e-7c7c02ed a35b' | |
| 9408 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLT AFR NS IRD LUK OPR 1C', [ LastUpdate Date]='201 6-07-27 11 :17:06.000 ', [LastUp dateUser]= ' RED A CTED ' WHERE [B loodProduc tGuid]='0a 391ccc-9fc 6-4c91-b24 2-7c80a625 acb7' | |
| 9409 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLT AFR ACD-B MNFN I OPN 2CNA ', [LastUp dateDate]= '2016-07-2 7 11:17:06 .000', [La stUpdateUs er]=' RED A CTED ' WHERE [B loodProduc tGuid]='ea 887a74-8ff 4-4508-9c2 9-7c840910 d11e' | |
| 9410 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLT AFR NaCit LUKO PR PLS Red 1C', [Las tUpdateDat e]='2016-0 7-27 11:17 :06.000', [LastUpdat eUser]=' RED A CTED ' WHERE [B loodProduc tGuid]='ac c30840-505 6-4d81-96d 6-7c856094 d5fc' | |
| 9411 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLT AFR ACD-A IRD LUKOPR 4C' , [LastUpd ateDate]=' 2016-07-27 11:17:06. 000', [Las tUpdateUse r]=' RED A CTED ' WHERE [B loodProduc tGuid]='33 b4ffae-2da d-4a77-955 8-7c8ceb6a 1501' | |
| 9412 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC Froz None OPN IRD LUKOPR 1C', [Las tUpdateDat e]='2016-0 7-27 11:17 :06.000', [LastUpdat eUser]=' RED A CTED ' WHERE [B loodProduc tGuid]='d6 f4feaf-226 7-4d0f-808 c-7c9ad4a5 9551' | |
| 9413 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='FFP Thaw CPDA-1 3C ', [LastUp dateDate]= '2016-07-2 7 11:17:06 .000', [La stUpdateUs er]=' RED A CTED ' WHERE [B loodProduc tGuid]='a9 eacebf-cea e-4ce3-bd7 a-7c9c25b3 e944' | |
| 9414 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC CPD IRD LUKOPR 5C', [Ret ireDate]=' 2015-04-07 00:00:00. 000', [Las tUpdateDat e]='2016-0 7-27 11:17 :06.000', [LastUpdat eUser]=' RED A CTED ' WHERE [B loodProduc tGuid]='21 6b5f32-192 9-42cd-9c2 f-7c9d5064 909c' | |
| 9415 | UPDATE [db o].[BloodP roduct] SE T [Product Name]='Aph eresis FRE SH FROZEN PLASMA|NaC itrate/XX/ <=-25C|Fro zen <=6h|R iboflavin- treated', [LastUpdat eDate]='20 16-07-27 1 1:17:06.00 0', [LastU pdateUser] =' RED A CTED ' WHERE [B loodProduc tGuid]='4c a4fe3c-ad6 8-4953-a07 4-7cab3192 9df7' | |
| 9416 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLT AFR NaCit LUKO PR PLS Red 3C', [Las tUpdateDat e]='2016-0 7-27 11:17 :06.000', [LastUpdat eUser]=' RED A CTED ' WHERE [B loodProduc tGuid]='fc 6e06da-573 b-4b43-a8a 6-7cc67789 1cbb' | |
| 9417 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC AFR CP2D>AS3 M NFI LUKOPR 2C', [Las tUpdateDat e]='2016-0 7-27 11:17 :06.000', [LastUpdat eUser]=' RED A CTED ' WHERE [B loodProduc tGuid]='fa 757f41-574 8-45e7-9bd b-7ce64f56 86f6' | |
| 9418 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLT AFR ACD-A IRD PLS Red/PA 1C', [Las tUpdateDat e]='2016-0 7-27 11:17 :06.000', [LastUpdat eUser]=' RED A CTED ' WHERE [B loodProduc tGuid]='0e bf5df5-b73 0-4521-9ae a-7d0509be 02b8' | |
| 9419 | UPDATE [db o].[BloodP roduct] SE T [Product Name]='Aph eresis FRE SH FROZEN PLASMA|ACD -B/XX/<=-2 5C|Not for tx or mnf |Fin Con:N S|Aphr not automated ', [LastUp dateDate]= '2016-07-2 7 11:17:06 .000', [La stUpdateUs er]=' RED A CTED ' WHERE [B loodProduc tGuid]='df 7ecd17-cf7 9-40df-b8d f-7d0a763b cb35' | |
| 9420 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC CPD 5C', [Last UpdateDate ]='2016-07 -27 11:17: 06.000', [ LastUpdate User]=' RED A CTED ' WHERE [B loodProduc tGuid]='76 f6eb30-02a c-4470-a69 6-7d113246 7c83' | |
| 9421 | UPDATE [db o].[BloodP roduct] SE T [Product Name]='Fro zen RED BL OOD CELLS| Gly35%/450 mL/<=-65C' , [LastUpd ateDate]=' 2016-07-27 11:17:06. 000', [Las tUpdateUse r]=' RED A CTED ' WHERE [B loodProduc tGuid]='ce 3b170e-f83 f-4602-849 b-7d16d78c 4e22' | |
| 9422 | UPDATE [db o].[BloodP roduct] SE T [Product Name]='Aph eresis FRE SH FROZEN PLASMA|ACD -A/XX/<=-6 5C|Irradia ted|<200 m L', [LastU pdateDate] ='2016-07- 27 11:17:0 6.000', [L astUpdateU ser]=' RED A CTED ' WHERE [B loodProduc tGuid]='4f da635f-edd c-4415-878 f-7d19df84 6388' | |
| 9423 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLT AFR ACD-A IRD LUKOPR 2C' , [LastUpd ateDate]=' 2016-07-27 11:17:06. 000', [Las tUpdateUse r]=' RED A CTED ' WHERE [B loodProduc tGuid]='f4 0a15fd-10b 2-4c13-a8f 9-7d1dcc16 6113' | |
| 9424 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLT AFR ACD-A IRD LUKOPR 4C BacMtr', [ LastUpdate Date]='201 6-07-27 11 :17:06.000 ', [LastUp dateUser]= ' RED A CTED ' WHERE [B loodProduc tGuid]='d0 05eb3f-383 6-4628-b1c 2-7d20e332 9501' | |
| 9425 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLT AFR Wash None OPN IRD 2C NA', [Last UpdateDate ]='2016-07 -27 11:17: 06.000', [ LastUpdate User]=' RED A CTED ' WHERE [B loodProduc tGuid]='7f 5e6c6d-cd8 b-4d9e-89c 3-7d2356fd 331a' | |
| 9426 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC AFR Wash None OPN IRD LU KOPR 3C', [LastUpdat eDate]='20 16-07-27 1 1:17:06.00 0', [LastU pdateUser] =' RED A CTED ' WHERE [B loodProduc tGuid]='64 562dba-754 e-4126-b8a 4-7d2686d7 0988' | |
| 9427 | UPDATE [db o].[BloodP roduct] SE T [Product Name]='Aph eresis FRE SH FROZEN PLASMA|ACD -B/XX/<=-6 5C|Irradia ted|>=400m L<600mL|Qu ar:>=6m/re tested', [ LastUpdate Date]='201 6-07-27 11 :17:06.000 ', [LastUp dateUser]= ' RED A CTED ' WHERE [B loodProduc tGuid]='e2 0e860c-888 b-4dd5-be5 5-7d2d67d1 769d' | |
| 9428 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='FFP AFR ACD-A 1C Q UAR', [Las tUpdateDat e]='2016-0 7-27 11:17 :06.000', [LastUpdat eUser]=' RED A CTED ' WHERE [B loodProduc tGuid]='8b 020238-552 0-471f-8fb 8-7d35ab59 5a72' | |
| 9429 | UPDATE [db o].[BloodP roduct] SE T [Product Name]='Aph eresis FRE SH FROZEN PLASMA|ACD -A/XX/<=-6 5C|Irradia ted|Fin Co n:NS', [La stUpdateDa te]='2016- 07-27 11:1 7:06.000', [LastUpda teUser]=' RED A CTED ' WHERE [B loodProduc tGuid]='70 0e0623-7bf b-40a8-b4e b-7d38e9b1 4caf' | |
| 9430 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC AFR CP2D>AS3 O PN SR 2C', [LastUpda teDate]='2 016-07-27 11:17:06.0 00', [Last UpdateUser ]=' RED A CTED ' WHERE [B loodProduc tGuid]='1c a7cabd-acf 3-4847-ab4 1-7d41d9c7 57a3' | |
| 9431 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLT AFR Wash NS IR D LUKOPR 2 C', [LastU pdateDate] ='2016-07- 27 11:17:0 6.000', [L astUpdateU ser]=' RED A CTED ' WHERE [B loodProduc tGuid]='bc f5b025-d2b 7-49ee-a3a c-7d4612f3 e92b' | |
| 9432 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLT AFR Wash NS LU KOPR 2C', [LastUpdat eDate]='20 16-07-27 1 1:17:06.00 0', [LastU pdateUser] =' RED A CTED ' WHERE [B loodProduc tGuid]='f0 35cb96-a7e 1-4b9b-87a 8-7d4f8fb3 fc48' | |
| 9433 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLT AFR Wash None IRD LUKOPR 1C', [Las tUpdateDat e]='2016-0 7-27 11:17 :06.000', [LastUpdat eUser]=' RED A CTED ' WHERE [B loodProduc tGuid]='63 032cf2-b09 2-4c0e-9d6 1-7d50b3d4 3d92' | |
| 9434 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC AFR Froz None OPN LUKOPR 3C', [Las tUpdateDat e]='2016-0 7-27 11:17 :06.000', [LastUpdat eUser]=' RED A CTED ' WHERE [B loodProduc tGuid]='86 25664c-218 8-4774-998 2-7d5259b0 a80b' | |
| 9435 | UPDATE [db o].[BloodP roduct] SE T [Product Name]='Aph eresis FRE SH FROZEN PLASMA|ACD -A/XX/<=-6 5C|Irradia ted|Fin Co n:NS|Aphr not automa ted|Quar:> =6m/retest ed', [Last UpdateDate ]='2016-07 -27 11:17: 06.000', [ LastUpdate User]=' RED A CTED ' WHERE [B loodProduc tGuid]='14 eb34b2-0b4 6-4b5f-8fb 6-7d5b55f9 3b0e' | |
| 9436 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC AFR ACD-A>AS3 IRD 1C', [ LastUpdate Date]='201 6-07-27 11 :17:06.000 ', [LastUp dateUser]= ' RED A CTED ' WHERE [B loodProduc tGuid]='a2 2b5b19-f06 6-445f-8ba 0-7d7e2058 8bb1' | |
| 9437 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC AFR Deg None O PN LUKOPR 6C', [Last UpdateDate ]='2016-07 -27 11:17: 06.000', [ LastUpdate User]=' RED A CTED ' WHERE [B loodProduc tGuid]='12 c996c2-4f0 5-439d-b15 9-7d89143c 5c33' | |
| 9438 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLT AFR ACD-B OPN PLS Red 1C ', [LastUp dateDate]= '2016-07-2 7 11:17:06 .000', [La stUpdateUs er]=' RED A CTED ' WHERE [B loodProduc tGuid]='19 a8e320-a13 d-4fa6-a82 1-7dc3bc2d 081a' | |
| 9439 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC Rej None OPN I RD 2C', [L astUpdateD ate]='2016 -07-27 11: 17:06.000' , [LastUpd ateUser]=' RED A CTED ' WHERE [B loodProduc tGuid]='ae 8dcb14-d58 c-40e6-ade 4-7dcc97a1 4002' | |
| 9440 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLT AFR NS OPN IRD LUKOPR 3C ', [LastUp dateDate]= '2016-07-2 7 11:17:06 .000', [La stUpdateUs er]=' RED A CTED ' WHERE [B loodProduc tGuid]='3a 283665-84c 1-4dff-b2b 9-7de36ef3 8f61' | |
| 9441 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC AFR CP2D>AS3 O PN LUKOPR PA 2C', [L astUpdateD ate]='2016 -07-27 11: 17:06.000' , [LastUpd ateUser]=' RED A CTED ' WHERE [B loodProduc tGuid]='5e de15b8-1cb 0-4f84-937 4-7ded6210 38f4' | |
| 9442 | UPDATE [db o].[BloodP roduct] SE T [Product Name]='Fro zen Aphere sis PLATEL ETS|DMSO/X X/<=-65C|O pen|1st co ntainer:no t auto', [ ProductSho rtName]='P LT AFR Fro z DMSO OPN 1CNA', [L astUpdateD ate]='2016 -07-27 11: 17:06.000' , [LastUpd ateUser]=' RED A CTED ' WHERE [B loodProduc tGuid]='63 403c61-368 d-4e62-bfc 2-7df382b5 f9ae' | |
| 9443 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='FFP AFR Thaw NaCit 6C QUAR', [LastUpda teDate]='2 016-07-27 11:17:06.0 00', [Last UpdateUser ]=' RED A CTED ' WHERE [B loodProduc tGuid]='b4 92d2b5-982 6-4af5-ba7 d-7e09c527 c43b' | |
| 9444 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC CPDA -1 LUKOPR 6C', [Reti reDate]='2 015-04-07 00:00:00.0 00', [Last UpdateDate ]='2016-07 -27 11:17: 06.000', [ LastUpdate User]=' RED A CTED ' WHERE [B loodProduc tGuid]='9b 3c20d3-6de d-4bb7-9ec e-7e1460ac 46f5' | |
| 9445 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLT AFR ACD-A OPN IRD PLS Re d 1C', [La stUpdateDa te]='2016- 07-27 11:1 7:06.000', [LastUpda teUser]=' RED A CTED ' WHERE [B loodProduc tGuid]='2f 3daaf6-8e0 e-42c3-91d 9-7e2a9d52 f497' | |
| 9446 | UPDATE [db o].[BloodP roduct] SE T [Product Name]='Fro zen RED BL OOD CELLS| Gly40%/400 mL/<=-65C| Open', [La stUpdateDa te]='2016- 07-27 11:1 7:06.000', [LastUpda teUser]=' RED A CTED ' WHERE [B loodProduc tGuid]='d8 4654e9-edc a-4938-a8b 2-7e4a3836 efc9' | |
| 9447 | UPDATE [db o].[BloodP roduct] SE T [Product Name]='FRE SH FROZEN PLASMA|CPD /450mL/<=- 30C|ResLeu :<1E6|Meth ylene blue -treated', [LastUpda teDate]='2 016-07-27 11:17:06.0 00', [Last UpdateUser ]=' RED A CTED ' WHERE [B loodProduc tGuid]='43 3f7d00-386 b-4708-ac2 9-7e4c2de7 4401' | |
| 9448 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC AFR CP2D IRD S R 1C', [La stUpdateDa te]='2016- 07-27 11:1 7:06.000', [LastUpda teUser]=' RED A CTED ' WHERE [B loodProduc tGuid]='d8 3ed327-df7 9-4150-af4 5-7e4cfab7 29cc' | |
| 9449 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC AFR CP2D>AS3 I RD SR 2C', [LastUpda teDate]='2 016-07-27 11:17:06.0 00', [Last UpdateUser ]=' RED A CTED ' WHERE [B loodProduc tGuid]='02 57c68d-7d7 c-4d94-8ab c-7e4dfb7c aeed' | |
| 9450 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC AFR CPD>AS1 OP N LUKOPR S R 2C', [La stUpdateDa te]='2016- 07-27 11:1 7:06.000', [LastUpda teUser]=' RED A CTED ' WHERE [B loodProduc tGuid]='c1 164507-6de 7-4b79-bab 7-7e64c547 2197' | |
| 9451 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC AFR Deg None O PN LUKOPR 4C', [Last UpdateDate ]='2016-07 -27 11:17: 06.000', [ LastUpdate User]=' RED A CTED ' WHERE [B loodProduc tGuid]='fa 7bd40d-fc3 5-48f6-8ba b-7e7d5380 6739' | |
| 9452 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC CPDA -1 LUKOPR 1C', [Last UpdateDate ]='2016-07 -27 11:17: 06.000', [ LastUpdate User]=' RED A CTED ' WHERE [B loodProduc tGuid]='6f dd735e-8c8 0-4a5f-840 a-7ebf7713 be58' | |
| 9453 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLT AFR ACD-A>PAS- C LUKOPR 3 C Pedi', [ LastUpdate Date]='201 6-07-27 11 :17:06.000 ', [LastUp dateUser]= ' RED A CTED ' WHERE [B loodProduc tGuid]='50 9ce998-3f0 2-4498-b57 4-7ec51047 4df1' | |
| 9454 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLT AFR NS LUKOPR 3C', [Last UpdateDate ]='2016-07 -27 11:17: 06.000', [ LastUpdate User]=' RED A CTED ' WHERE [B loodProduc tGuid]='fd 1a8e3e-a0e 9-424c-bee 4-7ec570e9 121d' | |
| 9455 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLT AFR ACD-A IRD LUKOPR 4C BacMtr', [ LastUpdate Date]='201 6-07-27 11 :17:06.000 ', [LastUp dateUser]= ' RED A CTED ' WHERE [B loodProduc tGuid]='b1 9df7dc-667 6-48a8-afa 9-7ec67ded cbee' | |
| 9456 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC AFR Wash None IRD LUKOPR 1C', [Las tUpdateDat e]='2016-0 7-27 11:17 :06.000', [LastUpdat eUser]=' RED A CTED ' WHERE [B loodProduc tGuid]='fa 1d1dd7-9d9 c-460c-bba 0-7ec7fd71 a7f9' | |
| 9457 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='FFP AFR NaCit IRD 5C QUAR', [LastUpdat eDate]='20 16-07-27 1 1:17:06.00 0', [LastU pdateUser] =' RED A CTED ' WHERE [B loodProduc tGuid]='ac 34fd39-7b6 d-45ca-8d0 d-7ecfc8dd 7781' | |
| 9458 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC CPD> AS5 IRD LU KOPR 1C', [LastUpdat eDate]='20 16-07-27 1 1:17:06.00 0', [LastU pdateUser] =' RED A CTED ' WHERE [B loodProduc tGuid]='8b d7c970-14b e-43fb-848 2-7edaaf49 a99b' | |
| 9459 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC CPD> AS5 IRD 3C ', [LastUp dateDate]= '2016-07-2 7 11:17:06 .000', [La stUpdateUs er]=' RED A CTED ' WHERE [B loodProduc tGuid]='75 e4c79f-736 0-494c-b71 a-7ee7b3fd 11c8' | |
| 9460 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLT AFR ACD-A>PAS- D IRD LUKO PR 3C BacM tr', [Last UpdateDate ]='2016-07 -27 11:17: 06.000', [ LastUpdate User]=' RED A CTED ' WHERE [B loodProduc tGuid]='6c bb36ad-819 b-460a-9e1 6-7f18872d 520d' | |
| 9461 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC Deg None 5C', [LastUpdat eDate]='20 16-07-27 1 1:17:06.00 0', [LastU pdateUser] =' RED A CTED ' WHERE [B loodProduc tGuid]='16 a2f7c9-ac4 c-4629-988 3-7f351884 95a9' | |
| 9462 | UPDATE [db o].[BloodP roduct] SE T [Product Name]='Fro zen RED BL OOD CELLS| None/XX/<= -65C|Irrad iated|ResL eu:<1E6,WB filtr', [ LastUpdate Date]='201 6-07-27 11 :17:06.000 ', [LastUp dateUser]= ' RED A CTED ' WHERE [B loodProduc tGuid]='4e d5100f-f29 6-46d3-afa 2-7f586f1c 1afa' | |
| 9463 | UPDATE [db o].[BloodP roduct] SE T [Product Name]='Fro zen Rejuve nated Aphe resis RED BLOOD CELL S|None/XX/ <=-65C|Ope n|Irradiat ed|ResLeu: <5E6', [La stUpdateDa te]='2016- 07-27 11:1 7:06.000', [LastUpda teUser]=' RED A CTED ' WHERE [B loodProduc tGuid]='21 e315d2-924 1-41c9-9a7 7-7f592e4f ff2c' | |
| 9464 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC AFR ACD-A>AS1 OPN LUKOPR 2C', [Las tUpdateDat e]='2016-0 7-27 11:17 :06.000', [LastUpdat eUser]=' RED A CTED ' WHERE [B loodProduc tGuid]='34 32b89c-969 0-4a73-bfc 4-7f61345a 6f44' | |
| 9465 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC AFR CPDA-1 5C' , [LastUpd ateDate]=' 2016-07-27 11:17:06. 000', [Las tUpdateUse r]=' RED A CTED ' WHERE [B loodProduc tGuid]='0e 1773d6-acd 6-4625-8e8 0-7f6cd93b 570f' | |
| 9466 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='FFP None 5C', [Las tUpdateDat e]='2016-0 7-27 11:17 :06.000', [LastUpdat eUser]=' RED A CTED ' WHERE [B loodProduc tGuid]='46 112c71-a3a 1-481a-a7f b-7f772d75 54a7' | |
| 9467 | UPDATE [db o].[BloodP roduct] SE T [Product Name]='FRE SH FROZEN PLASMA|0.5 CPD/XX/<= -30C|Quar: >=6m/retes ted', [Las tUpdateDat e]='2016-0 7-27 11:17 :06.000', [LastUpdat eUser]=' RED A CTED ' WHERE [B loodProduc tGuid]='32 da055d-469 a-4333-b2e 9-7f798cc8 1bc5' | |
| 9468 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC AFR CPD>AS1 LU KOPR SR 2C ', [LastUp dateDate]= '2016-07-2 7 11:17:06 .000', [La stUpdateUs er]=' RED A CTED ' WHERE [B loodProduc tGuid]='91 3e0798-c5d 0-40eb-89d 6-7f821dce a26f' | |
| 9469 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='WB CPDA- 1 IRD LUKO PR 7C', [L astUpdateD ate]='2016 -07-27 11: 17:06.000' , [LastUpd ateUser]=' RED A CTED ' WHERE [B loodProduc tGuid]='ea 4e7812-7f1 5-46c1-a80 b-7f8984e7 d2b3' | |
| 9470 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLT AFR ACD-A LUKO PR 5C', [L astUpdateD ate]='2016 -07-27 11: 17:06.000' , [LastUpd ateUser]=' RED A CTED ' WHERE [B loodProduc tGuid]='ac db0daa-11a 1-4342-bb9 c-7f89ef78 64b7' | |
| 9471 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='FFP Thaw CPD IRD 1 C', [LastU pdateDate] ='2016-07- 27 11:17:0 6.000', [L astUpdateU ser]=' RED A CTED ' WHERE [B loodProduc tGuid]='cb 87be2a-1ef 6-4ff3-a83 0-7fa6fda6 b025' | |
| 9472 | UPDATE [db o].[BloodP roduct] SE T [Product Name]='FRE SH FROZEN PLASMA|CPD /XX/<=-30C |Frozen <= 24h', [Las tUpdateDat e]='2016-0 7-27 11:17 :06.000', [LastUpdat eUser]=' RED A CTED ' WHERE [B loodProduc tGuid]='57 a2ca8a-533 a-4479-929 2-7fd42d62 0d36' | |
| 9473 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC AFR Rej None O PN LUKOPR 2C', [Last UpdateDate ]='2016-07 -27 11:17: 06.000', [ LastUpdate User]=' RED A CTED ' WHERE [B loodProduc tGuid]='b0 b8dc35-be1 1-4dee-804 0-7fdfc580 f035' | |
| 9474 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC AFR CPDA-1 MNF I 2C', [La stUpdateDa te]='2016- 07-27 11:1 7:06.000', [LastUpda teUser]=' RED A CTED ' WHERE [B loodProduc tGuid]='03 6841a1-4d7 1-4f6d-8e9 7-7fe24b16 32dd' | |
| 9475 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC AFR ACD-A>AS1 IRD LUKOPR 2C', [Las tUpdateDat e]='2016-0 7-27 11:17 :06.000', [LastUpdat eUser]=' RED A CTED ' WHERE [B loodProduc tGuid]='14 836aa0-848 2-4f03-8b1 9-7fe8bb40 4d33' | |
| 9476 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC Deg None IRD L UKOPR 2C', [LastUpda teDate]='2 016-07-27 11:17:06.0 00', [Last UpdateUser ]=' RED A CTED ' WHERE [B loodProduc tGuid]='db 4a070f-63c 8-453e-bb5 1-7ffdcfe8 751d' | |
| 9477 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='FFP AFR Thaw NaCit 5C', [Las tUpdateDat e]='2016-0 7-27 11:17 :06.000', [LastUpdat eUser]=' RED A CTED ' WHERE [B loodProduc tGuid]='ba 314d06-39c 9-48d1-887 d-8008d8d5 c70e' | |
| 9478 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLT AFR Wash None IRD LUKOPR 2C', [Las tUpdateDat e]='2016-0 7-27 11:17 :06.000', [LastUpdat eUser]=' RED A CTED ' WHERE [B loodProduc tGuid]='3f 8ea6bd-9b9 f-46a4-a34 7-8010fe32 c8a6' | |
| 9479 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC CPDA -1 LUKOPR 1C', [Last UpdateDate ]='2016-07 -27 11:17: 06.000', [ LastUpdate User]=' RED A CTED ' WHERE [B loodProduc tGuid]='17 0ec478-3a7 4-478f-841 3-801d270f 9a42' | |
| 9480 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLT AFR PAS-D IRD LUKOPR 2C BacMtr', [ LastUpdate Date]='201 6-07-27 11 :17:06.000 ', [LastUp dateUser]= ' RED A CTED ' WHERE [B loodProduc tGuid]='37 d1dc6e-112 9-4528-ad8 4-8027570c e513' | |
| 9481 | UPDATE [db o].[BloodP roduct] SE T [Product Name]='Fro zen RED BL OOD CELLS| Gly40%/450 mL/<=-65C| Not for tx or mnf|Op en', [Last UpdateDate ]='2016-07 -27 11:17: 06.000', [ LastUpdate User]=' RED A CTED ' WHERE [B loodProduc tGuid]='6f 26f529-e7a 7-441d-bff 8-80348737 b1ad' | |
| 9482 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLASMA A FR Thaw AC D-A OPN 3C ', [LastUp dateDate]= '2016-07-2 7 11:17:06 .000', [La stUpdateUs er]=' RED A CTED ' WHERE [B loodProduc tGuid]='4e 6faaef-4d8 e-42fb-93a 1-80425a4f 0b86' | |
| 9483 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC AFR CP2D>AS3 5 C', [LastU pdateDate] ='2016-07- 27 11:17:0 6.000', [L astUpdateU ser]=' RED A CTED ' WHERE [B loodProduc tGuid]='72 97e2a7-f6c 1-467a-856 5-804c7039 55e7' | |
| 9484 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='FFP Thaw CPDA-1 3C QUAR', [L astUpdateD ate]='2016 -07-27 11: 17:06.000' , [LastUpd ateUser]=' RED A CTED ' WHERE [B loodProduc tGuid]='52 91a930-f4c 9-457a-bee 5-804d4f2e 4033' | |
| 9485 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLASMA A FR None 7C ', [LastUp dateDate]= '2016-07-2 7 11:17:06 .000', [La stUpdateUs er]=' RED A CTED ' WHERE [B loodProduc tGuid]='9c 8d190f-334 b-4e73-b9f a-805318ac fd54' | |
| 9486 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLT AFR Wash None OPN IRD LU KOPR 4C', [LastUpdat eDate]='20 16-07-27 1 1:17:06.00 0', [LastU pdateUser] =' RED A CTED ' WHERE [B loodProduc tGuid]='e0 aa2bcb-6a6 3-4ab4-a96 c-805c3285 e778' | |
| 9487 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC AFR Deg None O PN LUKOPR 2C', [Last UpdateDate ]='2016-07 -27 11:17: 06.000', [ LastUpdate User]=' RED A CTED ' WHERE [B loodProduc tGuid]='9e 678813-fc7 a-4a1c-83c 7-8074dcea 40a2' | |
| 9488 | UPDATE [db o].[BloodP roduct] SE T [Product Name]='Aph eresis FRE SH FROZEN PLASMA|ACD -A/XX/<=-6 5C|2nd con tainer', [ ProductSho rtName]='F FP AFR ACD -A 2C', [L astUpdateD ate]='2016 -07-27 11: 17:06.000' , [LastUpd ateUser]=' RED A CTED ' WHERE [B loodProduc tGuid]='dd 40bca0-a29 d-461f-8b8 5-80904e93 355b' | |
| 9489 | UPDATE [db o].[BloodP roduct] SE T [Product Name]='Fro zen POOLED PLATELETS |DMSO/XX/< =-30C|Open |ResLeu:<1 E6|Buffy c oat plts p rep|Psoral en-treated ', [LastUp dateDate]= '2016-07-2 7 11:17:06 .000', [La stUpdateUs er]=' RED A CTED ' WHERE [B loodProduc tGuid]='50 14a256-022 3-4991-9d9 b-80963604 2796' | |
| 9490 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC Deg None LUKOP R 5C', [La stUpdateDa te]='2016- 07-27 11:1 7:06.000', [LastUpda teUser]=' RED A CTED ' WHERE [B loodProduc tGuid]='9f 80e863-96e 3-4a8d-956 f-80ad9cfc 992a' | |
| 9491 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLT AFR PAS-B IRD LUKOPR 4C' , [LastUpd ateDate]=' 2016-07-27 11:17:06. 000', [Las tUpdateUse r]=' RED A CTED ' WHERE [B loodProduc tGuid]='5e 137f5f-f02 5-4ac1-a40 b-80bebee7 09f5' | |
| 9492 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLT AFR ACD-A OPN PLS Red 1C NA', [Last UpdateDate ]='2016-07 -27 11:17: 06.000', [ LastUpdate User]=' RED A CTED ' WHERE [B loodProduc tGuid]='ce b231db-d92 1-48be-834 7-80f2e5b4 8eba' | |
| 9493 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='FFP AFR None IRD 5 C', [LastU pdateDate] ='2016-07- 27 11:17:0 6.000', [L astUpdateU ser]=' RED A CTED ' WHERE [B loodProduc tGuid]='88 afd288-733 e-469a-9e8 9-80ff8c08 9b77' | |
| 9494 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLT AFR PAS-D LUKO PR 2C', [L astUpdateD ate]='2016 -07-27 11: 17:06.000' , [LastUpd ateUser]=' RED A CTED ' WHERE [B loodProduc tGuid]='57 3c55d3-c78 0-43ab-90d 7-810ed9f4 8511' | |
| 9495 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='FFP AFR Thaw CP2D 1C', [Last UpdateDate ]='2016-07 -27 11:17: 06.000', [ LastUpdate User]=' RED A CTED ' WHERE [B loodProduc tGuid]='95 1dd55e-ef0 0-4601-b1b f-81390b85 1fb7' | |
| 9496 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLT AFR PAS-D LUKO PR 1C BacT est', [Las tUpdateDat e]='2016-0 7-27 11:17 :06.000', [LastUpdat eUser]=' RED A CTED ' WHERE [B loodProduc tGuid]='13 b67ec8-640 9-4f42-920 b-8154461d 3784' | |
| 9497 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='FFP CPDA -1 IRD 3C QUAR', [La stUpdateDa te]='2016- 07-27 11:1 7:06.000', [LastUpda teUser]=' RED A CTED ' WHERE [B loodProduc tGuid]='73 8aaa6c-224 b-4346-840 4-817e6ab5 770d' | |
| 9498 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLT AFR ACD-A>PAS- D LUKOPR 2 C BacMtr', [LastUpda teDate]='2 016-07-27 11:17:06.0 00', [Last UpdateUser ]=' RED A CTED ' WHERE [B loodProduc tGuid]='0d bfdea5-b11 1-4b5b-ab4 2-8181cde8 f972' | |
| 9499 | UPDATE [db o].[BloodP roduct] SE T [Product Name]='Aph eresis FRE SH FROZEN PLASMA|NaC itrate/XX/ <=-65C|Fin Con:NS', [LastUpdat eDate]='20 16-07-27 1 1:17:06.00 0', [LastU pdateUser] =' RED A CTED ' WHERE [B loodProduc tGuid]='b0 2908d3-456 f-464e-844 d-81888e3d 4b31' | |
| 9500 | UPDATE [db o].[BloodP roduct] SE T [Product Name]='Aph eresis FRE SH FROZEN PLASMA|ACD -B/XX/<=-6 5C|>=400mL <600mL', [ LastUpdate Date]='201 6-07-27 11 :17:06.000 ', [LastUp dateUser]= ' RED A CTED ' WHERE [B loodProduc tGuid]='de 714c35-691 2-4153-9d7 2-81951b43 d28a' | |
| 9501 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC CP2D >AS3 LUKOP R 3C', [La stUpdateDa te]='2016- 07-27 11:1 7:06.000', [LastUpda teUser]=' RED A CTED ' WHERE [B loodProduc tGuid]='ee f0210b-ed0 2-413a-938 b-81952ff9 1d00' | |
| 9502 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC AFR CPDA-1 IRD 6C', [Las tUpdateDat e]='2016-0 7-27 11:17 :06.000', [LastUpdat eUser]=' RED A CTED ' WHERE [B loodProduc tGuid]='95 33a4ac-e46 9-4291-ae0 0-819b0fac 5ee8' | |
| 9503 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLT AFR NaCit LUKO PR PLS Red 1CNA', [L astUpdateD ate]='2016 -07-27 11: 17:06.000' , [LastUpd ateUser]=' RED A CTED ' WHERE [B loodProduc tGuid]='f4 9d7f2d-54a 0-4be9-9de d-81b63e0b 840b' | |
| 9504 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLT AFR Wash None OPN IRD LU KOPR 1C', [LastUpdat eDate]='20 16-07-27 1 1:17:06.00 0', [LastU pdateUser] =' RED A CTED ' WHERE [B loodProduc tGuid]='fd 8c9a4e-a21 5-47c0-9f9 2-81ccd206 1c76' | |
| 9505 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLT AFR PAS-E LUKO PR SUPRed 4C Psoraln ', [LastUp dateDate]= '2016-07-2 7 11:17:06 .000', [La stUpdateUs er]=' RED A CTED ' WHERE [B loodProduc tGuid]='c3 761b1c-181 7-4721-924 0-81d69a55 0aa0' | |
| 9506 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC AFR Froz None OPN LUKOPR 8C', [Las tUpdateDat e]='2016-0 7-27 11:17 :06.000', [LastUpdat eUser]=' RED A CTED ' WHERE [B loodProduc tGuid]='03 368624-2b1 d-4970-80f a-81f8ee0f ef09' | |
| 9507 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLT AFR ACD-A MNFN I 3C', [La stUpdateDa te]='2016- 07-27 11:1 7:06.000', [LastUpda teUser]=' RED A CTED ' WHERE [B loodProduc tGuid]='3a e94336-67a 1-4676-907 5-81f9f710 b0f5' | |
| 9508 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC CPD> AS1 IRD 5C ', [LastUp dateDate]= '2016-07-2 7 11:17:06 .000', [La stUpdateUs er]=' RED A CTED ' WHERE [B loodProduc tGuid]='ca 593f51-e18 9-4e25-a3f 1-8212d209 a26b' | |
| 9509 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLT AFR PAS-E LUKO PR SUPRed 1C', [Last UpdateDate ]='2016-07 -27 11:17: 06.000', [ LastUpdate User]=' RED A CTED ' WHERE [B loodProduc tGuid]='81 609445-bd2 4-412d-a30 7-8215d581 55b8' | |
| 9510 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC AFR CP2D>AS3 L UKOPR 1C', [LastUpda teDate]='2 016-07-27 11:17:06.0 00', [Last UpdateUser ]=' RED A CTED ' WHERE [B loodProduc tGuid]='3f ac34bd-b21 5-4d5d-b93 f-821685ff b078' | |
| 9511 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLT AFR Wash PAS-E LUKOPR 4C Psoraln', [LastUpda teDate]='2 016-07-27 11:17:06.0 00', [Last UpdateUser ]=' RED A CTED ' WHERE [B loodProduc tGuid]='3c f222e7-5f9 0-467b-9a9 a-82208e24 0427' | |
| 9512 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC AFR Wash None LUKOPR SR/ SD-PA 1C', [LastUpda teDate]='2 016-07-27 11:17:06.0 00', [Last UpdateUser ]=' RED A CTED ' WHERE [B loodProduc tGuid]='2f 5d262c-3c9 1-4aef-b7a 4-822135f3 1256' | |
| 9513 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLASMA A FR Liq CPD -50 MNFI L UKOPR 1C', [LastUpda teDate]='2 016-07-27 11:17:06.0 00', [Last UpdateUser ]=' RED A CTED ' WHERE [B loodProduc tGuid]='9a e4069d-389 b-4b73-af2 7-8222fe23 6545' | |
| 9514 | UPDATE [db o].[BloodP roduct] SE T [Product Name]='Fro zen Rejuve nated RED BLOOD CELL S|None/XX/ <=-65C|Ope n|ResLeu:< 5E6', [Las tUpdateDat e]='2016-0 7-27 11:17 :06.000', [LastUpdat eUser]=' RED A CTED ' WHERE [B loodProduc tGuid]='e9 6c33c1-6b8 7-44f4-801 e-82291d31 7927' | |
| 9515 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLT AFR ACD-A 8C', [LastUpda teDate]='2 016-07-27 11:17:06.0 00', [Last UpdateUser ]=' RED A CTED ' WHERE [B loodProduc tGuid]='a9 793f19-619 9-4e90-8cb 2-8237342c b586' | |
| 9516 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC AFR CPD>AS1 IR D 2C', [La stUpdateDa te]='2016- 07-27 11:1 7:06.000', [LastUpda teUser]=' RED A CTED ' WHERE [B loodProduc tGuid]='2e 390961-028 4-438e-984 a-82963532 fd71' | |
| 9517 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='WB CPDA- 1 2C', [La stUpdateDa te]='2016- 07-27 11:1 7:06.000', [LastUpda teUser]=' RED A CTED ' WHERE [B loodProduc tGuid]='a0 ac0f8a-bbf 2-46ad-901 5-829bb607 3a53' | |
| 9518 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC AFR CP2D>AS3 I RD LUKOPR 2C', [Last UpdateDate ]='2016-07 -27 11:17: 06.000', [ LastUpdate User]=' RED A CTED ' WHERE [B loodProduc tGuid]='dd 1825cd-268 c-41f3-af6 6-82a0d10b 3e00' | |
| 9519 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC CPD> AS5 IRD 1C ', [LastUp dateDate]= '2016-07-2 7 11:17:06 .000', [La stUpdateUs er]=' RED A CTED ' WHERE [B loodProduc tGuid]='10 d18b5f-dc4 e-4765-9dd 3-82a7b4a7 e93e' | |
| 9520 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC AFR CP2D>AS3 I RD LUKOPR SR 2C', [L astUpdateD ate]='2016 -07-27 11: 17:06.000' , [LastUpd ateUser]=' RED A CTED ' WHERE [B loodProduc tGuid]='8d 07731d-e97 5-457f-a4f b-82d8ee1b 79b9' | |
| 9521 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='FFP AFR Thaw None 4C', [Last UpdateDate ]='2016-07 -27 11:17: 06.000', [ LastUpdate User]=' RED A CTED ' WHERE [B loodProduc tGuid]='3b 6d5d75-cda 2-44e4-a7f b-82da72b0 9f52' | |
| 9522 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC CPD IRD LUKOPR 1C', [Las tUpdateDat e]='2016-0 7-27 11:17 :06.000', [LastUpdat eUser]=' RED A CTED ' WHERE [B loodProduc tGuid]='7d 0e7b85-69c f-495b-9b4 b-8311269b 2cc3' | |
| 9523 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLT AFR ACD-A LUKO PR PLS Red 3C', [Las tUpdateDat e]='2016-0 7-27 11:17 :06.000', [LastUpdat eUser]=' RED A CTED ' WHERE [B loodProduc tGuid]='66 a9da61-a9a 6-4a50-9d3 7-831c94f4 9196' | |
| 9524 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC AFR CP2D>AS3 O PN LUKOPR SR/PA 2C', [LastUpda teDate]='2 016-07-27 11:17:06.0 00', [Last UpdateUser ]=' RED A CTED ' WHERE [B loodProduc tGuid]='23 f2fcf3-dcf 7-406a-9e6 4-832e6dff ab4f' | |
| 9525 | UPDATE [db o].[BloodP roduct] SE T [Product Name]='Fro zen Aphere sis PLATEL ETS|DMSO/X X/<=-65C|N ot for tx or mnf|Ope n|4th cont ainer', [P roductShor tName]='PL T AFR Froz DMSO NMT OPN 4C', [ LastUpdate Date]='201 6-07-27 11 :17:06.000 ', [LastUp dateUser]= ' RED A CTED ' WHERE [B loodProduc tGuid]='41 5c9bea-df3 9-40d1-8d9 b-833110bc cbb0' | |
| 9526 | UPDATE [db o].[BloodP roduct] SE T [Product Name]='POO LED CRYOPR ECIPITATE| None/XX/<= -30C|Open' , [LastUpd ateDate]=' 2016-07-27 11:17:06. 000', [Las tUpdateUse r]=' RED A CTED ' WHERE [B loodProduc tGuid]='49 75e3e9-30e 1-4ae1-93e 8-833142bb f8d9' | |
| 9527 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLT AFR PAS-B LUKO PR 1C BacM tr', [Last UpdateDate ]='2016-07 -27 11:17: 06.000', [ LastUpdate User]=' RED A CTED ' WHERE [B loodProduc tGuid]='9c 5f1fc5-81b 0-45f8-a2a 0-834fe8e6 e1f7' | |
| 9528 | UPDATE [db o].[BloodP roduct] SE T [Product Name]='Aph eresis FRE SH FROZEN PLASMA|NaC itrate/XX/ <=-65C|>=6 00mL', [La stUpdateDa te]='2016- 07-27 11:1 7:06.000', [LastUpda teUser]=' RED A CTED ' WHERE [B loodProduc tGuid]='26 f58b4f-652 7-4d5f-b08 7-8350418b 84b0' | |
| 9529 | UPDATE [db o].[BloodP roduct] SE T [Product Name]='Aph eresis FRE SH FROZEN PLASMA|ACD -B/XX/<=-3 0C|Irradia ted|Quar:> =6m/retest ed', [Last UpdateDate ]='2016-07 -27 11:17: 06.000', [ LastUpdate User]=' RED A CTED ' WHERE [B loodProduc tGuid]='62 fcc3f0-dfe 5-4eaf-832 3-83647f57 8c16' | |
| 9530 | UPDATE [db o].[BloodP roduct] SE T [Product Name]='Fro zen Aphere sis RED BL OOD CELLS| Gly40%/XX/ <=-65C|Ope n|ResLeu:< 1E6|2nd co ntainer', [ProductSh ortName]=' RBC AFR Fr oz Gly40% OPN LUKOPR 2C', [Las tUpdateDat e]='2016-0 7-27 11:17 :06.000', [LastUpdat eUser]=' RED A CTED ' WHERE [B loodProduc tGuid]='49 bd8c34-624 f-4f33-b8e 7-83739b03 ee99' | |
| 9531 | UPDATE [db o].[BloodP roduct] SE T [Product Name]='FRE SH FROZEN PLASMA|CPD A-1/450mL/ <=-25C|Fro zen <=8h', [LastUpda teDate]='2 016-07-27 11:17:06.0 00', [Last UpdateUser ]=' RED A CTED ' WHERE [B loodProduc tGuid]='a7 7273d1-a6d 4-436a-bb0 e-8394d256 d77c' | |
| 9532 | UPDATE [db o].[BloodP roduct] SE T [Product Name]='Aph eresis FRE SH FROZEN PLASMA|NaC itrate/XX/ <=-65C|4th container |Quar:>=11 2d/reteste d', [Produ ctShortNam e]='FFP AF R NaCit 4C QUAR', [L astUpdateD ate]='2016 -07-27 11: 17:06.000' , [LastUpd ateUser]=' RED A CTED ' WHERE [B loodProduc tGuid]='63 0ae365-189 3-4513-957 c-83a2b4fb 1754' | |
| 9533 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC Froz Rej None OPN IRD 8C ', [LastUp dateDate]= '2016-07-2 7 11:17:06 .000', [La stUpdateUs er]=' RED A CTED ' WHERE [B loodProduc tGuid]='13 490ada-9f1 5-4899-b86 c-83b85f95 de3b' | |
| 9534 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='FFP AFR ACD-A 6C', [LastUpda teDate]='2 016-07-27 11:17:06.0 00', [Last UpdateUser ]=' RED A CTED ' WHERE [B loodProduc tGuid]='2e a783b0-92a 7-4627-877 b-83be9f6f 04e1' | |
| 9535 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='FFP AFR None IRD L UKOPR 7C', [LastUpda teDate]='2 016-07-27 11:17:06.0 00', [Last UpdateUser ]=' RED A CTED ' WHERE [B loodProduc tGuid]='f0 e9f395-577 f-45bd-982 8-83bf29b3 8717' | |
| 9536 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC Deg None IRD L UKOPR 7C', [LastUpda teDate]='2 016-07-27 11:17:06.0 00', [Last UpdateUser ]=' RED A CTED ' WHERE [B loodProduc tGuid]='eb 23d726-cfa a-4209-a29 1-83c3b6b5 6ecc' | |
| 9537 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLT AFR Wash None IRD LUKOPR 3C', [Las tUpdateDat e]='2016-0 7-27 11:17 :06.000', [LastUpdat eUser]=' RED A CTED ' WHERE [B loodProduc tGuid]='99 cd2589-8d3 7-43cd-ade 8-83d80846 fac8' | |
| 9538 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='WB CPDA- 1 IRD 8C', [LastUpda teDate]='2 016-07-27 11:17:06.0 00', [Last UpdateUser ]=' RED A CTED ' WHERE [B loodProduc tGuid]='8d 4c9c08-91b f-41a9-9b0 2-83e9da06 1be6' | |
| 9539 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC AFR CPDA-1 8C' , [LastUpd ateDate]=' 2016-07-27 11:17:06. 000', [Las tUpdateUse r]=' RED A CTED ' WHERE [B loodProduc tGuid]='da c527e9-8d6 d-4dd7-846 9-841ac57d 1098' | |
| 9540 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLT AFR NaCit NMT 1CNA', [La stUpdateDa te]='2016- 07-27 11:1 7:06.000', [LastUpda teUser]=' RED A CTED ' WHERE [B loodProduc tGuid]='e5 bb5058-f7f d-482e-977 3-842c3955 7a9e' | |
| 9541 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC AFR ACD-A OPN IRD LUKOPR SR/PA 1C' , [LastUpd ateDate]=' 2016-07-27 11:17:06. 000', [Las tUpdateUse r]=' RED A CTED ' WHERE [B loodProduc tGuid]='9d 34ce90-850 5-40e0-bb9 3-843fbb68 879e' | |
| 9542 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLT AFR NaCit NMT 1C', [Last UpdateDate ]='2016-07 -27 11:17: 06.000', [ LastUpdate User]=' RED A CTED ' WHERE [B loodProduc tGuid]='77 a44e41-7b0 d-4878-ad4 f-847520db d5a1' | |
| 9543 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC AFR CPDA-1 LUK OPR 6C', [ LastUpdate Date]='201 6-07-27 11 :17:06.000 ', [LastUp dateUser]= ' RED A CTED ' WHERE [B loodProduc tGuid]='4b d8c53f-382 6-44ec-b92 1-84876810 f432' | |
| 9544 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC AFR ACD-A>AS3 NMT 2C', [ LastUpdate Date]='201 6-07-27 11 :17:06.000 ', [LastUp dateUser]= ' RED A CTED ' WHERE [B loodProduc tGuid]='15 5e7b8a-a49 8-45d4-831 5-8493ada3 818e' | |
| 9545 | UPDATE [db o].[BloodP roduct] SE T [Product Name]='FRE SH FROZEN PLASMA|CPD /450mL/<=- 25C|Frozen <=8h', [L astUpdateD ate]='2016 -07-27 11: 17:06.000' , [LastUpd ateUser]=' RED A CTED ' WHERE [B loodProduc tGuid]='8a be4492-487 c-4c2b-b08 d-84963ad2 8387' | |
| 9546 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC AFR ACD-A>AS3 OPN IRD 2C ', [LastUp dateDate]= '2016-07-2 7 11:17:06 .000', [La stUpdateUs er]=' RED A CTED ' WHERE [B loodProduc tGuid]='fc e2eca7-f3c 5-438b-a72 e-84a7f9a2 856f' | |
| 9547 | UPDATE [db o].[BloodP roduct] SE T [Product Name]='Fro zen RED BL OOD CELLS| Gly40%/200 mL/<=-65C' , [LastUpd ateDate]=' 2016-07-27 11:17:06. 000', [Las tUpdateUse r]=' RED A CTED ' WHERE [B loodProduc tGuid]='84 0ea45f-e1b b-41cc-aab d-84a8e7b3 79e8' | |
| 9548 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLT AFR Wash None OPN IRD LU KOPR 3C', [LastUpdat eDate]='20 16-07-27 1 1:17:06.00 0', [LastU pdateUser] =' RED A CTED ' WHERE [B loodProduc tGuid]='de d0ba85-94d 2-4e95-810 e-84d2bf0b f511' | |
| 9549 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLT AFR NaCit IRD PLS Red 2C NA', [Last UpdateDate ]='2016-07 -27 11:17: 06.000', [ LastUpdate User]=' RED A CTED ' WHERE [B loodProduc tGuid]='0f 21f071-4bb c-4a20-a93 0-84e92e1d fda8' | |
| 9550 | UPDATE [db o].[BloodP roduct] SE T [Product Name]='FRE SH FROZEN PLASMA|CPD /450mL/<=- 25C|ResLeu :<1E6|Quar :>=4m/rete sted', [La stUpdateDa te]='2016- 07-27 11:1 7:06.000', [LastUpda teUser]=' RED A CTED ' WHERE [B loodProduc tGuid]='49 f33087-148 6-40c2-823 5-84f5e039 d9f9' | |
| 9551 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLT AFR ACD-B IRD 2C', [Last UpdateDate ]='2016-07 -27 11:17: 06.000', [ LastUpdate User]=' RED A CTED ' WHERE [B loodProduc tGuid]='9e a1a82d-deb 1-4510-901 e-8505190b 009f' | |
| 9552 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC Wash None OPN 4C', [Last UpdateDate ]='2016-07 -27 11:17: 06.000', [ LastUpdate User]=' RED A CTED ' WHERE [B loodProduc tGuid]='5e a91963-e14 9-4454-9c0 b-8507da00 c207' | |
| 9553 | UPDATE [db o].[BloodP roduct] SE T [Product Name]='Fro zen Aphere sis RED BL OOD CELLS| Gly40%/XX/ <=-80C|Res Leu:<1E6|2 nd contain er', [Prod uctShortNa me]='RBC A FR Froz Gl y40% LUKOP R 2C', [La stUpdateDa te]='2016- 07-27 11:1 7:06.000', [LastUpda teUser]=' RED A CTED ' WHERE [B loodProduc tGuid]='c8 6f1e4d-eed d-4a3f-bac d-8536eec8 e6c3' | |
| 9554 | UPDATE [db o].[BloodP roduct] SE T [Product Name]='Aph eresis FRE SH FROZEN PLASMA|ACD -A/XX/<=-2 5C|For mnf :injectabl e|Frozen < =24h', [La stUpdateDa te]='2016- 07-27 11:1 7:06.000', [LastUpda teUser]=' RED A CTED ' WHERE [B loodProduc tGuid]='6c d00817-0ec f-4ab9-bf2 2-855006be 6a78' | |
| 9555 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLT AFR PAS-E LUKO PR 2C BacM tr', [Last UpdateDate ]='2016-07 -27 11:17: 06.000', [ LastUpdate User]=' RED A CTED ' WHERE [B loodProduc tGuid]='7f 40e3b5-240 4-4714-8a6 2-85599dd5 5fe1' | |
| 9556 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC AFR Deg Rej No ne OPN IRD LUKOPR 1C ', [LastUp dateDate]= '2016-07-2 7 11:17:06 .000', [La stUpdateUs er]=' RED A CTED ' WHERE [B loodProduc tGuid]='7c e28fa7-644 2-4e0f-b5e 7-857ad308 0329' | |
| 9557 | UPDATE [db o].[BloodP roduct] SE T [Product Name]='FRE SH FROZEN PLASMA|CP2 D/XX/<=-65 C|Irradiat ed|Quar:>= 6m/reteste d', [LastU pdateDate] ='2016-07- 27 11:17:0 6.000', [L astUpdateU ser]=' RED A CTED ' WHERE [B loodProduc tGuid]='93 50c9ce-fbf 1-4233-833 4-858c7793 7f02' | |
| 9558 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC AFR CP2D>AS3 I RD LUKOPR SR/PA 2C', [LastUpda teDate]='2 016-07-27 11:17:06.0 00', [Last UpdateUser ]=' RED A CTED ' WHERE [B loodProduc tGuid]='86 295cca-933 2-4b79-836 1-858d5d30 8f2b' | |
| 9559 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='FFP AFR Thaw CPD-5 0 LUKOPR 2 C', [LastU pdateDate] ='2016-07- 27 11:17:0 6.000', [L astUpdateU ser]=' RED A CTED ' WHERE [B loodProduc tGuid]='ae 8f9cf9-462 9-4ada-927 d-859d77ab 19c3' | |
| 9560 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLASMA A FR None IR D 7C', [La stUpdateDa te]='2016- 07-27 11:1 7:06.000', [LastUpda teUser]=' RED A CTED ' WHERE [B loodProduc tGuid]='8f e02304-cda 2-487f-b49 8-85ac4ff8 15ef' | |
| 9561 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC AFR ACD-A>AS1 8C', [Last UpdateDate ]='2016-07 -27 11:17: 06.000', [ LastUpdate User]=' RED A CTED ' WHERE [B loodProduc tGuid]='6f 48c9f1-cea f-4f94-997 3-85b8c589 0904' | |
| 9562 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC AFR CP2D>AS3 M NFNI LUKOP R 1C', [La stUpdateDa te]='2016- 07-27 11:1 7:06.000', [LastUpda teUser]=' RED A CTED ' WHERE [B loodProduc tGuid]='e1 c6f1d3-aab e-49da-b12 5-85c1665c f577' | |
| 9563 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLASMA A FR Thaw AC D-A 2C', [ LastUpdate Date]='201 6-07-27 11 :17:06.000 ', [LastUp dateUser]= ' RED A CTED ' WHERE [B loodProduc tGuid]='88 0ab7ae-b59 6-4527-96d 1-85c4897e 5e79' | |
| 9564 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLT AFR PAS-C LUKO PR 2C Psor aln', [Las tUpdateDat e]='2016-0 7-27 11:17 :06.000', [LastUpdat eUser]=' RED A CTED ' WHERE [B loodProduc tGuid]='9d dcd7c6-812 b-4616-af2 7-85d0f28b 2c2f' | |
| 9565 | UPDATE [db o].[BloodP roduct] SE T [Product Name]='FRE SH FROZEN PLASMA|CPD /450mL/<=- 25C|Frozen <=8h|Quar :>=112d/re tested', [ LastUpdate Date]='201 6-07-27 11 :17:06.000 ', [LastUp dateUser]= ' RED A CTED ' WHERE [B loodProduc tGuid]='0a 465329-847 1-49e7-a78 b-85eac671 01b7' | |
| 9566 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC Deg None OPN I RD LUKOPR 1C', [Last UpdateDate ]='2016-07 -27 11:17: 06.000', [ LastUpdate User]=' RED A CTED ' WHERE [B loodProduc tGuid]='89 b22ff6-e36 1-43fb-889 9-85ebffce ee56' | |
| 9567 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLT AFR PAS-E LUKO PR 3C Psor aln', [Las tUpdateDat e]='2016-0 7-27 11:17 :06.000', [LastUpdat eUser]=' RED A CTED ' WHERE [B loodProduc tGuid]='63 9677df-0ca d-4984-9cb 1-85f4575c 6969' | |
| 9568 | UPDATE [db o].[BloodP roduct] SE T [Product Name]='Aph eresis FRE SH FROZEN PLASMA|NaC itrate/XX/ <=-65C|Irr adiated|2n d containe r|Quar:>=1 12d/retest ed', [Prod uctShortNa me]='FFP A FR NaCit I RD 2C QUAR ', [LastUp dateDate]= '2016-07-2 7 11:17:06 .000', [La stUpdateUs er]=' RED A CTED ' WHERE [B loodProduc tGuid]='16 532084-5a3 b-4582-955 6-85fcd736 31b8' | |
| 9569 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLT AFR Wash PAS-E LUKOPR 2C ', [LastUp dateDate]= '2016-07-2 7 11:17:06 .000', [La stUpdateUs er]=' RED A CTED ' WHERE [B loodProduc tGuid]='3f 92d441-b86 4-4c3d-882 9-861fbefe c54b' | |
| 9570 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC AFR Deg None O PN LUKOPR 2C', [Last UpdateDate ]='2016-07 -27 11:17: 06.000', [ LastUpdate User]=' RED A CTED ' WHERE [B loodProduc tGuid]='f6 801ee1-d2b 5-414c-b2b 8-86283e24 f844' | |
| 9571 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLT AFR Thaw DMSO OPN 1C', [ LastUpdate Date]='201 6-07-27 11 :17:06.000 ', [LastUp dateUser]= ' RED A CTED ' WHERE [B loodProduc tGuid]='6e b6b422-369 6-4aed-8cf 0-868c24c8 9e44' | |
| 9572 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLT AFR NaCit IRD 3C', [Last UpdateDate ]='2016-07 -27 11:17: 06.000', [ LastUpdate User]=' RED A CTED ' WHERE [B loodProduc tGuid]='f9 5e05f5-ebc 0-47a7-958 7-8695b82a 6271' | |
| 9573 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC AFR ACD-A>AS1 2C', [Last UpdateDate ]='2016-07 -27 11:17: 06.000', [ LastUpdate User]=' RED A CTED ' WHERE [B loodProduc tGuid]='ac 8a260d-f47 9-445e-ab8 6-86a83f38 cde0' | |
| 9574 | UPDATE [db o].[BloodP roduct] SE T [Product Name]='Aph eresis FRE SH FROZEN PLASMA|NaC itrate/XX/ <=-30C|Res Leu:<1E6|> =200mL<400 mL|Frozen <=6h|2nd c ontainer', [ProductS hortName]= 'FFP AFR N acit LUKOP R 2C', [La stUpdateDa te]='2016- 07-27 11:1 7:06.000', [LastUpda teUser]=' RED A CTED ' WHERE [B loodProduc tGuid]='cd 992988-61c a-4e1f-ba6 e-86afda92 1eca' | |
| 9575 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLT AFR Thaw DMSO OPN IRD PA 2C', [Las tUpdateDat e]='2016-0 7-27 11:17 :06.000', [LastUpdat eUser]=' RED A CTED ' WHERE [B loodProduc tGuid]='c1 b017fe-981 8-472a-95c 7-86b6bfaa 5f3f' | |
| 9576 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLT AFR ACD-A>PAS- C LUKOPR 4 C', [LastU pdateDate] ='2016-07- 27 11:17:0 6.000', [L astUpdateU ser]=' RED A CTED ' WHERE [B loodProduc tGuid]='c7 385db7-970 c-44f3-9d7 d-86dfe433 5752' | |
| 9577 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC AFR ACD-A>AS1 OPN 2C', [ LastUpdate Date]='201 6-07-27 11 :17:06.000 ', [LastUp dateUser]= ' RED A CTED ' WHERE [B loodProduc tGuid]='b6 a72faf-b4c 8-49c8-b34 3-86f2aa1d 6627' | |
| 9578 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='WB CPD L UKOPR 6C', [LastUpda teDate]='2 016-07-27 11:17:06.0 00', [Last UpdateUser ]=' RED A CTED ' WHERE [B loodProduc tGuid]='fc 850d0b-5ab 4-4b43-a16 3-86fbf9f9 d71a' | |
| 9579 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLT AFR ACD-A OPN IRD LUKOPR PLS Red 1 C', [LastU pdateDate] ='2016-07- 27 11:17:0 6.000', [L astUpdateU ser]=' RED A CTED ' WHERE [B loodProduc tGuid]='15 9e96f3-6ea f-49f2-bc4 9-870b12eb 435c' | |
| 9580 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='WB CP2D 2C', [Last UpdateDate ]='2016-07 -27 11:17: 06.000', [ LastUpdate User]=' RED A CTED ' WHERE [B loodProduc tGuid]='0f 62b616-3e7 3-4534-a55 4-872d6f01 110b' | |
| 9581 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC AFR ACD-A IRD 2C', [Last UpdateDate ]='2016-07 -27 11:17: 06.000', [ LastUpdate User]=' RED A CTED ' WHERE [B loodProduc tGuid]='97 8bb278-8d9 3-4b21-981 e-873c2c48 a53e' | |
| 9582 | UPDATE [db o].[BloodP roduct] SE T [Product Name]='Aph eresis FRE SH FROZEN PLASMA|ACD -A/XX/<=-3 0C|For mnf :injectabl e|>=200mL< 400mL', [L astUpdateD ate]='2016 -07-27 11: 17:06.000' , [LastUpd ateUser]=' RED A CTED ' WHERE [B loodProduc tGuid]='4a 8e3a48-ffc 7-412d-96c 4-87595f28 3ba5' | |
| 9583 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC CP2D IRD 5C', [LastUpdat eDate]='20 16-07-27 1 1:17:06.00 0', [LastU pdateUser] =' RED A CTED ' WHERE [B loodProduc tGuid]='95 e824d8-6f6 f-4366-a66 2-877695f5 008a' | |
| 9584 | UPDATE [db o].[BloodP roduct] SE T [Product Name]='Aph eresis FRE SH FROZEN PLASMA|ACD -A/XX/<=-6 5C|Irradia ted|>=200m L<400mL', [LastUpdat eDate]='20 16-07-27 1 1:17:06.00 0', [LastU pdateUser] =' RED A CTED ' WHERE [B loodProduc tGuid]='c7 bda07d-b8a 3-4b85-9fb 8-877e6530 0cba' | |
| 9585 | UPDATE [db o].[BloodP roduct] SE T [Product Name]='Aph eresis FRE SH FROZEN PLASMA|ACD -B/XX/<=-3 0C|Quar:>= 6m/reteste d', [LastU pdateDate] ='2016-07- 27 11:17:0 6.000', [L astUpdateU ser]=' RED A CTED ' WHERE [B loodProduc tGuid]='b2 c2890a-bc5 8-4340-a81 1-878955c4 e1e0' | |
| 9586 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC Deg Rej None O PN IRD SR 1C', [Last UpdateDate ]='2016-07 -27 11:17: 06.000', [ LastUpdate User]=' RED A CTED ' WHERE [B loodProduc tGuid]='bf b11ad2-1c6 5-4c62-973 6-87991ee8 1395' | |
| 9587 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC AFR Deg None O PN LUKOPR 4C', [Last UpdateDate ]='2016-07 -27 11:17: 06.000', [ LastUpdate User]=' RED A CTED ' WHERE [B loodProduc tGuid]='92 7a88d7-aba b-4686-abc 5-87b4c9ee 7e9e' | |
| 9588 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC AFR CPDA-1 2C' , [LastUpd ateDate]=' 2016-07-27 11:17:06. 000', [Las tUpdateUse r]=' RED A CTED ' WHERE [B loodProduc tGuid]='b8 7b0291-793 9-469a-ac1 4-87bf7c85 8757' | |
| 9589 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLT AFR PAS-D LUKO PR 1C BacM tr', [Last UpdateDate ]='2016-07 -27 11:17: 06.000', [ LastUpdate User]=' RED A CTED ' WHERE [B loodProduc tGuid]='eb e2d846-9f3 8-4495-a61 e-87ed3cd9 5cd3' | |
| 9590 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLT AFR ACD-A NMT 3C', [Last UpdateDate ]='2016-07 -27 11:17: 06.000', [ LastUpdate User]=' RED A CTED ' WHERE [B loodProduc tGuid]='1b cf9810-a12 8-441e-b5e 6-880f5b18 ab5c' | |
| 9591 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='FFP None IRD QUAR 5C', [Last UpdateDate ]='2016-07 -27 11:17: 06.000', [ LastUpdate User]=' RED A CTED ' WHERE [B loodProduc tGuid]='4b 835cc7-dad 0-4696-875 f-8818af6e 3397' | |
| 9592 | UPDATE [db o].[BloodP roduct] SE T [Product Name]='Fro zen Aphere sis PLATEL ETS|DMSO/X X/<=-65C|O pen|ResLeu :<5E6|1st container' , [Product ShortName] ='PLT AFR Froz DMSO OPN LUKOPR 1C', [Las tUpdateDat e]='2016-0 7-27 11:17 :06.000', [LastUpdat eUser]=' RED A CTED ' WHERE [B loodProduc tGuid]='6b 816a42-8cf 1-403f-955 a-881f8b5c 6a6b' | |
| 9593 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLT AFR None OPN L UKOPR PLS Red/ALB Ad d 3C', [La stUpdateDa te]='2016- 07-27 11:1 7:06.000', [LastUpda teUser]=' RED A CTED ' WHERE [B loodProduc tGuid]='ac f3ae2a-cd5 1-4a66-b34 c-8822b0d5 4d39' | |
| 9594 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='FFP AFR None IRD 2 C', [LastU pdateDate] ='2016-07- 27 11:17:0 6.000', [L astUpdateU ser]=' RED A CTED ' WHERE [B loodProduc tGuid]='d1 f4d7a8-d67 2-435e-b2c 1-8836d847 e0c6' | |
| 9595 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC AFR CP2D>AS3 L UKOPR 6C', [LastUpda teDate]='2 016-07-27 11:17:06.0 00', [Last UpdateUser ]=' RED A CTED ' WHERE [B loodProduc tGuid]='74 863ac0-125 7-4c23-a65 3-88576aae f14d' | |
| 9596 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLT AFR Thaw DMSO OPN IRD PA 3C', [Las tUpdateDat e]='2016-0 7-27 11:17 :06.000', [LastUpdat eUser]=' RED A CTED ' WHERE [B loodProduc tGuid]='85 e975f8-5b1 f-44f9-807 5-8857f46e 4a27' | |
| 9597 | UPDATE [db o].[BloodP roduct] SE T [Product Name]='Fro zen Aphere sis PLATEL ETS|DMSO/X X/<=-65C|O pen|4th co ntainer', [ProductSh ortName]=' PLT AFR Fr oz DMSO OP N 4C', [La stUpdateDa te]='2016- 07-27 11:1 7:06.000', [LastUpda teUser]=' RED A CTED ' WHERE [B loodProduc tGuid]='7d 48c69e-051 9-4fa6-bca e-885b1079 45b9' | |
| 9598 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='FFP AFR NaCit IRD 6C', [Last UpdateDate ]='2016-07 -27 11:17: 06.000', [ LastUpdate User]=' RED A CTED ' WHERE [B loodProduc tGuid]='d4 c77626-98c 8-499d-8e1 e-886a2424 6c61' | |
| 9599 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC Froz Rej None OPN 5C', [ LastUpdate Date]='201 6-07-27 11 :17:06.000 ', [LastUp dateUser]= ' RED A CTED ' WHERE [B loodProduc tGuid]='01 9d8886-a01 a-4508-812 c-88786b85 cb0a' | |
| 9600 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC AFR Wash None OPN IRD 4C ', [LastUp dateDate]= '2016-07-2 7 11:17:06 .000', [La stUpdateUs er]=' RED A CTED ' WHERE [B loodProduc tGuid]='71 d1e040-e46 8-4dc1-925 3-88831cd0 433e' | |
| 9601 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLT AFR Thaw DMSO OPN IRD 1C NA', [Last UpdateDate ]='2016-07 -27 11:17: 06.000', [ LastUpdate User]=' RED A CTED ' WHERE [B loodProduc tGuid]='20 481cf5-ad2 a-45a5-8c6 5-8883a759 165a' | |
| 9602 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC AFR Wash None IRD LUKOPR 1C', [Las tUpdateDat e]='2016-0 7-27 11:17 :06.000', [LastUpdat eUser]=' RED A CTED ' WHERE [B loodProduc tGuid]='3b f8b415-cd4 8-48a4-860 7-8887ddda 1f0f' | |
| 9603 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLT AFR PAS-C IRD LUKOPR 2C' , [LastUpd ateDate]=' 2016-07-27 11:17:06. 000', [Las tUpdateUse r]=' RED A CTED ' WHERE [B loodProduc tGuid]='15 30131f-28a 6-4f6a-83d 8-889347d6 45b8' | |
| 9604 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC CPDA -1 IRD 4C' , [RetireD ate]='2015 -04-07 00: 00:00.000' , [LastUpd ateDate]=' 2016-07-27 11:17:06. 000', [Las tUpdateUse r]=' RED A CTED ' WHERE [B loodProduc tGuid]='d4 c2b25b-731 6-46d9-b96 c-88a21528 1371' | |
| 9605 | UPDATE [db o].[BloodP roduct] SE T [Product Name]='Fro zen Aphere sis PLATEL ETS|DMSO/X X/<=-80C|O pen|Irradi ated|ResLe u:<5E6', [ LastUpdate Date]='201 6-07-27 11 :17:06.000 ', [LastUp dateUser]= ' RED A CTED ' WHERE [B loodProduc tGuid]='dc 5959c6-60d 5-4317-ad3 c-88c5f395 952f' | |
| 9606 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC AFR CP2D>AS3 O PN SR/PA 2 C', [LastU pdateDate] ='2016-07- 27 11:17:0 6.000', [L astUpdateU ser]=' RED A CTED ' WHERE [B loodProduc tGuid]='bb a86f43-08e b-40e7-867 3-88cae296 73b8' | |
| 9607 | UPDATE [db o].[BloodP roduct] SE T [Product Name]='Fro zen RED BL OOD CELLS| None/450mL /<=-65C|Op en', [Last UpdateDate ]='2016-07 -27 11:17: 06.000', [ LastUpdate User]=' RED A CTED ' WHERE [B loodProduc tGuid]='f1 ef65ae-ec2 d-43e7-8a8 9-88cc9791 7a0e' | |
| 9608 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='WB CPD L UKOPR 5C', [LastUpda teDate]='2 016-07-27 11:17:06.0 00', [Last UpdateUser ]=' RED A CTED ' WHERE [B loodProduc tGuid]='12 c47211-374 8-4864-aa1 e-88d2b451 50ed' | |
| 9609 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC AFR CP2D OPN I RD SR/PA 2 C', [LastU pdateDate] ='2016-07- 27 11:17:0 6.000', [L astUpdateU ser]=' RED A CTED ' WHERE [B loodProduc tGuid]='61 a9439c-262 3-453e-8a9 2-891282ca e895' | |
| 9610 | UPDATE [db o].[BloodP roduct] SE T [Product Name]='Fro zen Aphere sis RED BL OOD CELLS| None/XX/<= -65C|Irrad iated|ResL eu:<5E6', [LastUpdat eDate]='20 16-07-27 1 1:17:06.00 0', [LastU pdateUser] =' RED A CTED ' WHERE [B loodProduc tGuid]='52 cba171-837 7-456b-ab1 5-8915d6c5 5fec' | |
| 9611 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLT AFR PAS-C LUKO PR 3C', [L astUpdateD ate]='2016 -07-27 11: 17:06.000' , [LastUpd ateUser]=' RED A CTED ' WHERE [B loodProduc tGuid]='29 b1ac58-983 b-4b9e-9c7 3-891d55d8 caa5' | |
| 9612 | UPDATE [db o].[BloodP roduct] SE T [Product Name]='Aph eresis FRE SH FROZEN PLASMA|ACD -A/XX/<=-6 5C|Irradia ted|Aphr n ot automat ed|Quar:>= 6m/reteste d', [LastU pdateDate] ='2016-07- 27 11:17:0 6.000', [L astUpdateU ser]=' RED A CTED ' WHERE [B loodProduc tGuid]='05 db268f-630 8-4f18-866 a-89256db5 774a' | |
| 9613 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC AFR Deg None O PN IRD LUK OPR 6C', [ LastUpdate Date]='201 6-07-27 11 :17:06.000 ', [LastUp dateUser]= ' RED A CTED ' WHERE [B loodProduc tGuid]='ac 4eb8cb-695 b-4b76-a06 5-893d307d 4015' | |
| 9614 | UPDATE [db o].[BloodP roduct] SE T [Product Name]='Aph eresis FRE SH FROZEN PLASMA|NaC itrate/XX/ <=-65C|Fin Con:NS|Ap hr not aut omated', [ LastUpdate Date]='201 6-07-27 11 :17:06.000 ', [LastUp dateUser]= ' RED A CTED ' WHERE [B loodProduc tGuid]='1d 71d92e-0e3 6-4d5d-ad6 d-896c68b8 d012' | |
| 9615 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLT AFR Wash NS LU KOPR 1C', [LastUpdat eDate]='20 16-07-27 1 1:17:06.00 0', [LastU pdateUser] =' RED A CTED ' WHERE [B loodProduc tGuid]='6a ac8ddf-31e d-41d6-bc6 f-8985833d 5d1f' | |
| 9616 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC CPD> AS1 IRD 7C ', [LastUp dateDate]= '2016-07-2 7 11:17:06 .000', [La stUpdateUs er]=' RED A CTED ' WHERE [B loodProduc tGuid]='86 ac928d-5b3 1-4652-ace 3-898efb30 446e' | |
| 9617 | UPDATE [db o].[BloodP roduct] SE T [Product Name]='FRE SH FROZEN PLASMA|CPD /XX/<=-30C |ResLeu:<1 E6,WB filt r', [LastU pdateDate] ='2016-07- 27 11:17:0 6.000', [L astUpdateU ser]=' RED A CTED ' WHERE [B loodProduc tGuid]='e7 c5f3bd-d80 d-4041-999 5-899b08c6 78ec' | |
| 9618 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC AFR Wash None IRD LUKOPR SR/SD-PA 1C', [Last UpdateDate ]='2016-07 -27 11:17: 06.000', [ LastUpdate User]=' RED A CTED ' WHERE [B loodProduc tGuid]='72 a3ad0b-714 4-477f-809 1-89ae11dc 73d3' | |
| 9619 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLT AFR ACD-B LUKO PR PLS Red 2C', [Las tUpdateDat e]='2016-0 7-27 11:17 :06.000', [LastUpdat eUser]=' RED A CTED ' WHERE [B loodProduc tGuid]='60 2ada89-c03 b-4961-b12 5-89c48f54 6dde' | |
| 9620 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLASMA A FR ACD-A 1 C', [LastU pdateDate] ='2016-07- 27 11:17:0 6.000', [L astUpdateU ser]=' RED A CTED ' WHERE [B loodProduc tGuid]='28 c4b7e1-1ba a-421b-a05 9-89cd8eac 2d73' | |
| 9621 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC AFR Deg SAGM I RD LUKOPR 2C', [Last UpdateDate ]='2016-07 -27 11:17: 06.000', [ LastUpdate User]=' RED A CTED ' WHERE [B loodProduc tGuid]='fd 6d084f-f7d e-4b67-b32 f-89dc2f6c b5df' | |
| 9622 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC AFR Wash None OPN IRD LU KOPR 4C', [LastUpdat eDate]='20 16-07-27 1 1:17:06.00 0', [LastU pdateUser] =' RED A CTED ' WHERE [B loodProduc tGuid]='35 0bc9f1-04f 7-4ca3-a30 9-89e5cbd1 fe1d' | |
| 9623 | UPDATE [db o].[BloodP roduct] SE T [Product Name]='Aph eresis FRE SH FROZEN PLASMA|CPD -50/XX/<=- 65C|Irradi ated|ResLe u:<1E6|1st container ', [Produc tShortName ]='FFP AFR CPD-50 IR D LUKOPR 1 C', [LastU pdateDate] ='2016-07- 27 11:17:0 6.000', [L astUpdateU ser]=' RED A CTED ' WHERE [B loodProduc tGuid]='2d 57a7f8-643 1-4369-be6 e-89e6772c fb03' | |
| 9624 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC CP2D >AS3 7C', [LastUpdat eDate]='20 16-07-27 1 1:17:06.00 0', [LastU pdateUser] =' RED A CTED ' WHERE [B loodProduc tGuid]='b9 31cfa6-de4 2-46b9-9f3 7-89f78e0d 2caa' | |
| 9625 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC Froz None OPN 5C', [Last UpdateDate ]='2016-07 -27 11:17: 06.000', [ LastUpdate User]=' RED A CTED ' WHERE [B loodProduc tGuid]='f9 995263-2d4 4-4d12-b34 b-8a01717b f515' | |
| 9626 | UPDATE [db o].[BloodP roduct] SE T [Product Name]='Aph eresis FRE SH FROZEN PLASMA|NaC itrate/XX/ <=-30C|Res Leu:<5E6|M ethylene b lue-treate d', [LastU pdateDate] ='2016-07- 27 11:17:0 6.000', [L astUpdateU ser]=' RED A CTED ' WHERE [B loodProduc tGuid]='e7 2d380c-94e 2-40e8-b43 a-8a187f22 2d48' | |
| 9627 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC AFR CP2D>AS3 N MT LUKOPR 2C', [Last UpdateDate ]='2016-07 -27 11:17: 06.000', [ LastUpdate User]=' RED A CTED ' WHERE [B loodProduc tGuid]='c0 70d901-642 4-45d4-b73 3-8a29fe36 07de' | |
| 9628 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC CPD> AS5 IRD 6C ', [LastUp dateDate]= '2016-07-2 7 11:17:06 .000', [La stUpdateUs er]=' RED A CTED ' WHERE [B loodProduc tGuid]='3e 3d2516-0a6 d-405c-9f5 8-8a4c465a f6fd' | |
| 9629 | UPDATE [db o].[BloodP roduct] SE T [Product Name]='FRE SH FROZEN PLASMA|NS/ 450mL/<=-3 0C|Methyle ne blue-tr eated', [L astUpdateD ate]='2016 -07-27 11: 17:06.000' , [LastUpd ateUser]=' RED A CTED ' WHERE [B loodProduc tGuid]='dd b1e6f8-98d f-48f9-a00 7-8a55d4f2 1498' | |
| 9630 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC Deg Rej None O PN LUKOPR 2C', [Last UpdateDate ]='2016-07 -27 11:17: 06.000', [ LastUpdate User]=' RED A CTED ' WHERE [B loodProduc tGuid]='54 81eae5-8ee 5-454f-877 b-8a632b45 5a2e' | |
| 9631 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='FFP AFR ACD-A IRD 3C QUAR', [LastUpdat eDate]='20 16-07-27 1 1:17:06.00 0', [LastU pdateUser] =' RED A CTED ' WHERE [B loodProduc tGuid]='67 e4bd7a-187 3-4d51-bdb 1-8a63be9b adad' | |
| 9632 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC CP2D 8C', [Las tUpdateDat e]='2016-0 7-27 11:17 :06.000', [LastUpdat eUser]=' RED A CTED ' WHERE [B loodProduc tGuid]='8f c0d17a-884 6-4676-b18 b-8a6972ac 142a' | |
| 9633 | UPDATE [db o].[BloodP roduct] SE T [Product Name]='FRE SH FROZEN PLASMA|CPD /XX/<=-30C |ResLeu:<5 E6|Ribofla vin-treate d', [LastU pdateDate] ='2016-07- 27 11:17:0 6.000', [L astUpdateU ser]=' RED A CTED ' WHERE [B loodProduc tGuid]='c1 41e52a-8ee b-4f28-b5a c-8a71aa18 9fef' | |
| 9634 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='WB CP2D IRD LUKOPR 4C', [Las tUpdateDat e]='2016-0 7-27 11:17 :06.000', [LastUpdat eUser]=' RED A CTED ' WHERE [B loodProduc tGuid]='be 7df365-343 1-4dc4-8e1 c-8a85e104 e7e5' | |
| 9635 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLT AFR PAS-C IRD LUKOPR 2C' , [LastUpd ateDate]=' 2016-07-27 11:17:06. 000', [Las tUpdateUse r]=' RED A CTED ' WHERE [B loodProduc tGuid]='2c dc51a6-0f6 b-449e-aaf 3-8a8b1e58 38a1' | |
| 9636 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC AFR CP2D OPN I RD SR/PA 1 C', [LastU pdateDate] ='2016-07- 27 11:17:0 6.000', [L astUpdateU ser]=' RED A CTED ' WHERE [B loodProduc tGuid]='05 79f283-c88 3-48bd-ad8 6-8a95ed0c 73fc' | |
| 9637 | UPDATE [db o].[BloodP roduct] SE T [Product Name]='Aph eresis FRE SH FROZEN PLASMA|ACD -B/XX/<=-6 5C|Irradia ted|>=600m L', [LastU pdateDate] ='2016-07- 27 11:17:0 6.000', [L astUpdateU ser]=' RED A CTED ' WHERE [B loodProduc tGuid]='e7 e16d9e-a8c 1-4b2a-89e 2-8aa3580a 5669' | |
| 9638 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLASMA A FR Liq CPD -50 LUKOPR 2C Psoral n', [LastU pdateDate] ='2016-07- 27 11:17:0 6.000', [L astUpdateU ser]=' RED A CTED ' WHERE [B loodProduc tGuid]='93 93c727-8b3 c-4e18-b6f f-8aa64f19 9f71' | |
| 9639 | UPDATE [db o].[BloodP roduct] SE T [Product Name]='Aph eresis FRE SH FROZEN PLASMA|NaC itrate/XX/ <=-30C|Res Leu:<1E6|F rozen <=6h |1st conta iner', [Pr oductShort Name]='FFP AFR Nacit LUKOPR 1C ', [LastUp dateDate]= '2016-07-2 7 11:17:06 .000', [La stUpdateUs er]=' RED A CTED ' WHERE [B loodProduc tGuid]='79 b543b1-4da 9-43fb-852 6-8aec1490 e2c1' | |
| 9640 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='WB CP2D IRD 7C', [ LastUpdate Date]='201 6-07-27 11 :17:06.000 ', [LastUp dateUser]= ' RED A CTED ' WHERE [B loodProduc tGuid]='08 fb91b6-2f0 8-4e44-a5b f-8aede0d1 6881' | |
| 9641 | UPDATE [db o].[BloodP roduct] SE T [Product Name]='Fro zen Aphere sis PLATEL ETS|DMSO/X X/<=-65C|N ot for tx or mnf|Ope n|2nd cont ainer:not auto', [Pr oductShort Name]='PLT AFR Froz DMSO NMT O PN 2CNA', [LastUpdat eDate]='20 16-07-27 1 1:17:06.00 0', [LastU pdateUser] =' RED A CTED ' WHERE [B loodProduc tGuid]='b4 2264bc-d72 0-42e3-888 1-8af29745 720f' | |
| 9642 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC AFR Froz None OPN 2C', [ LastUpdate Date]='201 6-07-27 11 :17:06.000 ', [LastUp dateUser]= ' RED A CTED ' WHERE [B loodProduc tGuid]='17 ee8ef1-5cb a-4116-a49 9-8afcc031 3748' | |
| 9643 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLT AFR ACD-B IRD 1CNA', [La stUpdateDa te]='2016- 07-27 11:1 7:06.000', [LastUpda teUser]=' RED A CTED ' WHERE [B loodProduc tGuid]='2e 55b2df-d27 3-4e6c-8e5 4-8afdc41c ada9' | |
| 9644 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC Deg Rej None O PN LUKOPR 4C', [Last UpdateDate ]='2016-07 -27 11:17: 06.000', [ LastUpdate User]=' RED A CTED ' WHERE [B loodProduc tGuid]='6a 367d09-96d d-4947-9f6 e-8b1c3c5b 981c' | |
| 9645 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLT AFR NS IRD LUK OPR 3C', [ LastUpdate Date]='201 6-07-27 11 :17:06.000 ', [LastUp dateUser]= ' RED A CTED ' WHERE [B loodProduc tGuid]='67 8f37dd-34d b-40f9-b6a 7-8b4e1433 dae1' | |
| 9646 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC AFR Deg None O PN 5C', [L astUpdateD ate]='2016 -07-27 11: 17:06.000' , [LastUpd ateUser]=' RED A CTED ' WHERE [B loodProduc tGuid]='6c 7c4845-e53 5-4308-8e2 4-8ba6ad8a af3f' | |
| 9647 | UPDATE [db o].[BloodP roduct] SE T [Product Name]='FRE SH FROZEN PLASMA|CPD /XX/<=-30C |ResLeu:<5 E6|50mL|Me thylene bl ue-treated ', [LastUp dateDate]= '2016-07-2 7 11:17:06 .000', [La stUpdateUs er]=' RED A CTED ' WHERE [B loodProduc tGuid]='9d 292add-0fa 3-4b53-a28 4-8ba908b4 b61a' | |
| 9648 | UPDATE [db o].[BloodP roduct] SE T [Product Name]='Aph eresis FRE SH FROZEN PLASMA|ACD -B/XX/<=-6 5C', [Last UpdateDate ]='2016-07 -27 11:17: 06.000', [ LastUpdate User]=' RED A CTED ' WHERE [B loodProduc tGuid]='dd 278194-e3d 2-4eb7-9fe 2-8bbabe78 951e' | |
| 9649 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='FFP AFR None QUAR 1C', [Last UpdateDate ]='2016-07 -27 11:17: 06.000', [ LastUpdate User]=' RED A CTED ' WHERE [B loodProduc tGuid]='af 52811b-736 f-4b02-bfa f-8bc3e293 db33' | |
| 9650 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLT AFR ACD-A MNFN I LUKOPR 1 C', [LastU pdateDate] ='2016-07- 27 11:17:0 6.000', [L astUpdateU ser]=' RED A CTED ' WHERE [B loodProduc tGuid]='be f07d2b-fe1 e-4105-a15 3-8be5f28b d5db' | |
| 9651 | UPDATE [db o].[BloodP roduct] SE T [Product Name]='Aph eresis FRE SH FROZEN PLASMA|ACD -B/XX/<=-2 5C|Irradia ted|Quar:> =6m/retest ed', [Last UpdateDate ]='2016-07 -27 11:17: 06.000', [ LastUpdate User]=' RED A CTED ' WHERE [B loodProduc tGuid]='d4 770e87-c04 6-4d2a-855 5-8bf54d1c ce32' | |
| 9652 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC AFR ACD-A>AS3 IRD LUKOPR 1C', [Las tUpdateDat e]='2016-0 7-27 11:17 :06.000', [LastUpdat eUser]=' RED A CTED ' WHERE [B loodProduc tGuid]='bc fe8cd1-071 7-4ae2-8e4 a-8bfaee1d 05a4' | |
| 9653 | UPDATE [db o].[BloodP roduct] SE T [Product Name]='FRE SH FROZEN PLASMA|NS/ XX/<=-30C| For mnf:no ninjectabl e|ResLeu:< 1E6|Frozen <=24h', [ LastUpdate Date]='201 6-07-27 11 :17:06.000 ', [LastUp dateUser]= ' RED A CTED ' WHERE [B loodProduc tGuid]='a8 e56668-7e9 7-469a-bb4 4-8c1a53e2 e8b6' | |
| 9654 | UPDATE [db o].[BloodP roduct] SE T [Product Name]='Aph eresis FRE SH FROZEN PLASMA|ACD -B/XX/<=-6 5C|Irradia ted|Fin Co n:NS', [La stUpdateDa te]='2016- 07-27 11:1 7:06.000', [LastUpda teUser]=' RED A CTED ' WHERE [B loodProduc tGuid]='ec 7498c6-6e3 8-41e4-a62 7-8c388f3a 8a65' | |
| 9655 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLT AFR Froz None MNFNI LUKO PR 1C', [L astUpdateD ate]='2016 -07-27 11: 17:06.000' , [LastUpd ateUser]=' RED A CTED ' WHERE [B loodProduc tGuid]='5b 608937-6a3 8-4f29-a9f 7-8c3dd391 d499' | |
| 9656 | UPDATE [db o].[BloodP roduct] SE T [Product Name]='CRY OPRECIPITA TE|None/XX /<=-30C', [LastUpdat eDate]='20 16-07-27 1 1:17:06.00 0', [LastU pdateUser] =' RED A CTED ' WHERE [B loodProduc tGuid]='a9 5841f5-c49 8-45d6-a0f 1-8c40bb8a 8a5c' | |
| 9657 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLT AFR NaCit MNFN I 3C', [La stUpdateDa te]='2016- 07-27 11:1 7:06.000', [LastUpda teUser]=' RED A CTED ' WHERE [B loodProduc tGuid]='4f 856957-578 d-4a9b-9dc 0-8c439d70 44b4' | |
| 9658 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC CPDA -1 LUKOPR 6C', [Last UpdateDate ]='2016-07 -27 11:17: 06.000', [ LastUpdate User]=' RED A CTED ' WHERE [B loodProduc tGuid]='81 3cda0d-31d 8-484f-a00 2-8c472187 7599' | |
| 9659 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC AFR CP2D LUKOP R SR 1C', [LastUpdat eDate]='20 16-07-27 1 1:17:06.00 0', [LastU pdateUser] =' RED A CTED ' WHERE [B loodProduc tGuid]='c4 fd7d24-915 a-4c1b-bc6 c-8c500589 b7fa' | |
| 9660 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLT AFR ACD-A 2C B acMtr', [L astUpdateD ate]='2016 -07-27 11: 17:06.000' , [LastUpd ateUser]=' RED A CTED ' WHERE [B loodProduc tGuid]='0c d1bdd2-9af 5-4727-b35 7-8c658fb4 2d9a' | |
| 9661 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC Froz None OPN IRD 2C', [ LastUpdate Date]='201 6-07-27 11 :17:06.000 ', [LastUp dateUser]= ' RED A CTED ' WHERE [B loodProduc tGuid]='f7 ddd839-e20 4-4528-966 1-8c65efa5 0015' | |
| 9662 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLT AFR NaCit OPN IRD 2C', [ LastUpdate Date]='201 6-07-27 11 :17:06.000 ', [LastUp dateUser]= ' RED A CTED ' WHERE [B loodProduc tGuid]='6f fd8011-58e 7-46b2-86f a-8c9aa20d 48fd' | |
| 9663 | UPDATE [db o].[BloodP roduct] SE T [Product Name]='FRE SH FROZEN PLASMA|CPD /450mL/<=- 25C|ResLeu :<1E6', [L astUpdateD ate]='2016 -07-27 11: 17:06.000' , [LastUpd ateUser]=' RED A CTED ' WHERE [B loodProduc tGuid]='55 422c48-c3e 4-45b7-a24 e-8ca77539 d2de' | |
| 9664 | UPDATE [db o].[BloodP roduct] SE T [Product Name]='Fro zen Aphere sis RED BL OOD CELLS| None/XX/<= -65C|Irrad iated|2nd container' , [Product ShortName] ='RBC AFR Froz None IRD 2C', [ LastUpdate Date]='201 6-07-27 11 :17:06.000 ', [LastUp dateUser]= ' RED A CTED ' WHERE [B loodProduc tGuid]='0a d2eaf5-921 5-43b5-a72 1-8cb1484c f14d' | |
| 9665 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC AFR Deg None O PN IRD LUK OPR 7C', [ LastUpdate Date]='201 6-07-27 11 :17:06.000 ', [LastUp dateUser]= ' RED A CTED ' WHERE [B loodProduc tGuid]='60 38d765-48f 2-44ef-a18 0-8cb50363 7b78' | |
| 9666 | UPDATE [db o].[BloodP roduct] SE T [Product Name]='FRE SH FROZEN PLASMA|CPD /450mL/<=- 25C|For mn f:noninjec table|Froz en <=6h', [LastUpdat eDate]='20 16-07-27 1 1:17:06.00 0', [LastU pdateUser] =' RED A CTED ' WHERE [B loodProduc tGuid]='ca f8c12e-7dd e-495b-8c0 3-8cbb88db e67f' | |
| 9667 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='FFP AFR Thaw ACD-A 1C QUAR', [LastUpda teDate]='2 016-07-27 11:17:06.0 00', [Last UpdateUser ]=' RED A CTED ' WHERE [B loodProduc tGuid]='a5 f9f5ac-6fd 8-439e-a18 d-8cd22fbe 3671' | |
| 9668 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='FFP AFR None IRD Q UAR 5C', [ LastUpdate Date]='201 6-07-27 11 :17:06.000 ', [LastUp dateUser]= ' RED A CTED ' WHERE [B loodProduc tGuid]='e4 2485dc-6c2 6-4f95-b61 a-8ce49ec1 fb82' | |
| 9669 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLT AFR NS IRD LUK OPR 2C', [ LastUpdate Date]='201 6-07-27 11 :17:06.000 ', [LastUp dateUser]= ' RED A CTED ' WHERE [B loodProduc tGuid]='ff e9f496-71c e-4ff9-acd f-8d101e15 cdd3' | |
| 9670 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLT AFR ACD-A IRD LUKOPR PLS Red 4C', [LastUpdat eDate]='20 16-07-27 1 1:17:06.00 0', [LastU pdateUser] =' RED A CTED ' WHERE [B loodProduc tGuid]='9f 4b0674-d02 d-488e-af6 1-8d29a152 c0e2' | |
| 9671 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='FFP AFR Thaw None IRD 5C', [ LastUpdate Date]='201 6-07-27 11 :17:06.000 ', [LastUp dateUser]= ' RED A CTED ' WHERE [B loodProduc tGuid]='e1 3044e2-1ed 9-4a36-ae7 f-8d414dfe cbe6' | |
| 9672 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC AFR CPDA-1 2C' , [LastUpd ateDate]=' 2016-07-27 11:17:06. 000', [Las tUpdateUse r]=' RED A CTED ' WHERE [B loodProduc tGuid]='97 9ec52e-e12 6-430a-88e 2-8d5644c2 aa53' | |
| 9673 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='WB CP2D 1C', [Last UpdateDate ]='2016-07 -27 11:17: 06.000', [ LastUpdate User]=' RED A CTED ' WHERE [B loodProduc tGuid]='97 0d656e-0f5 d-4b55-a86 0-8d6d1447 838e' | |
| 9674 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLT AFR ACD-A IRD LUKOPR 3C BacMtr', [ LastUpdate Date]='201 6-07-27 11 :17:06.000 ', [LastUp dateUser]= ' RED A CTED ' WHERE [B loodProduc tGuid]='93 d5c8ca-290 4-45ab-b88 0-8d7aad71 050e' | |
| 9675 | UPDATE [db o].[BloodP roduct] SE T [Product Name]='FRE SH FROZEN PLASMA|NS/ XX/<=-30C| ResLeu:<1E 6|Quar: na tionally d efined', [ LastUpdate Date]='201 6-07-27 11 :17:06.000 ', [LastUp dateUser]= ' RED A CTED ' WHERE [B loodProduc tGuid]='0e 314fa7-b8d c-48e7-ad6 b-8d8666b7 a308' | |
| 9676 | UPDATE [db o].[BloodP roduct] SE T [Product Name]='POO LED CRYOPR ECIPITATE| None/XX/<= -30C', [La stUpdateDa te]='2016- 07-27 11:1 7:06.000', [LastUpda teUser]=' RED A CTED ' WHERE [B loodProduc tGuid]='3c aec97f-926 5-4755-80d 4-8d8c8f67 3856' | |
| 9677 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLT AFR ACD-A LUKO PR 1C BacM tr', [Last UpdateDate ]='2016-07 -27 11:17: 06.000', [ LastUpdate User]=' RED A CTED ' WHERE [B loodProduc tGuid]='5a 3df60d-be0 a-47b8-9df b-8d942f59 e32e' | |
| 9678 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLASMA A FR Thaw No ne 3C', [L astUpdateD ate]='2016 -07-27 11: 17:06.000' , [LastUpd ateUser]=' RED A CTED ' WHERE [B loodProduc tGuid]='62 1dee8b-d88 3-4996-b9f f-8da29cb6 164d' | |
| 9679 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='FFP AFR Thaw None IRD 1C', [ LastUpdate Date]='201 6-07-27 11 :17:06.000 ', [LastUp dateUser]= ' RED A CTED ' WHERE [B loodProduc tGuid]='b3 a3868e-a79 6-43e7-930 d-8da975dc 68b6' | |
| 9680 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLT AFR ACD-B MNFI 3C', [Las tUpdateDat e]='2016-0 7-27 11:17 :06.000', [LastUpdat eUser]=' RED A CTED ' WHERE [B loodProduc tGuid]='d3 75364f-f19 8-49d0-82a a-8db779cf b81c' | |
| 9681 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC CPDA -1 IRD 6C' , [RetireD ate]='2015 -04-07 00: 00:00.000' , [LastUpd ateDate]=' 2016-07-27 11:17:06. 000', [Las tUpdateUse r]=' RED A CTED ' WHERE [B loodProduc tGuid]='34 786c0e-2d7 1-4521-981 8-8dc5f2a3 e6e3' | |
| 9682 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC AFR CPDA-1 IRD LUKOPR 3C ', [LastUp dateDate]= '2016-07-2 7 11:17:06 .000', [La stUpdateUs er]=' RED A CTED ' WHERE [B loodProduc tGuid]='aa 03c396-8f7 5-450f-8dd f-8dd1668f 886f' | |
| 9683 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC AFR Wash AS3 L UKOPR 2C', [LastUpda teDate]='2 016-07-27 11:17:06.0 00', [Last UpdateUser ]=' RED A CTED ' WHERE [B loodProduc tGuid]='43 ba8743-519 c-465b-9ec 5-8de15c66 7254' | |
| 9684 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC CPD 7C', [Reti reDate]='2 015-04-07 00:00:00.0 00', [Last UpdateDate ]='2016-07 -27 11:17: 06.000', [ LastUpdate User]=' RED A CTED ' WHERE [B loodProduc tGuid]='d2 cc1423-04b f-4a77-bdd 6-8deb7489 57ec' | |
| 9685 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLT AFR Thaw DMSO IRD 2C', [ LastUpdate Date]='201 6-07-27 11 :17:06.000 ', [LastUp dateUser]= ' RED A CTED ' WHERE [B loodProduc tGuid]='86 146d09-40b 9-4c55-a61 0-8df7bb3c 0855' | |
| 9686 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLT AFR ACD-A 4C', [LastUpda teDate]='2 016-07-27 11:17:06.0 00', [Last UpdateUser ]=' RED A CTED ' WHERE [B loodProduc tGuid]='69 abeb79-146 f-4d56-a96 e-8e0ec0f6 7d6f' | |
| 9687 | UPDATE [db o].[BloodP roduct] SE T [Product Name]='Aph eresis FRE SH FROZEN PLASMA|NaC itrate/XX/ <=-65C|Irr adiated|5t h containe r|Quar:>=1 12d/retest ed', [Prod uctShortNa me]='FFP A FR NaCit I RD 5C QUAR ', [LastUp dateDate]= '2016-07-2 7 11:17:06 .000', [La stUpdateUs er]=' RED A CTED ' WHERE [B loodProduc tGuid]='04 7a2208-926 1-4002-b0e e-8e11367c 53a3' | |
| 9688 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLT AFR Wash PAS-E LUKOPR 1C ', [LastUp dateDate]= '2016-07-2 7 11:17:06 .000', [La stUpdateUs er]=' RED A CTED ' WHERE [B loodProduc tGuid]='30 35f499-0c7 0-4f19-81f b-8e128ae9 55aa' | |
| 9689 | UPDATE [db o].[BloodP roduct] SE T [Product Name]='Aph eresis FRE SH FROZEN PLASMA|NaC itrate/XX/ <=-65C|Irr adiated|Fi n Con:NS|Q uar:>=6m/r etested', [LastUpdat eDate]='20 16-07-27 1 1:17:06.00 0', [LastU pdateUser] =' RED A CTED ' WHERE [B loodProduc tGuid]='dc ff10d9-a82 c-4b48-843 3-8e1aa3a7 589b' | |
| 9690 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC AFR CPDA-1 IRD 3C', [Las tUpdateDat e]='2016-0 7-27 11:17 :06.000', [LastUpdat eUser]=' RED A CTED ' WHERE [B loodProduc tGuid]='42 737b8e-07c 0-4c5e-a82 2-8e4f1637 d5a0' | |
| 9691 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC AFR Wash None OPN 1C', [ LastUpdate Date]='201 6-07-27 11 :17:06.000 ', [LastUp dateUser]= ' RED A CTED ' WHERE [B loodProduc tGuid]='db 1ab59c-4a6 e-405d-b2d 0-8e5b0b7d d851' | |
| 9692 | UPDATE [db o].[BloodP roduct] SE T [Product Name]='POO LED GRANUL OCYTES|CPD /450mL/rt| Irradiated |8 units', [ProductS hortName]= 'GRAN Pool CPD IRD 8 U', [LastU pdateDate] ='2016-07- 27 11:17:0 6.000', [L astUpdateU ser]=' RED A CTED ' WHERE [B loodProduc tGuid]='e7 c132d9-824 d-44bc-a97 b-8e69650d 00cb' | |
| 9693 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC AFR CPDA-1 IRD 4C', [Las tUpdateDat e]='2016-0 7-27 11:17 :06.000', [LastUpdat eUser]=' RED A CTED ' WHERE [B loodProduc tGuid]='38 f9bf65-186 3-483f-b5d 2-8e969b18 6920' | |
| 9694 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='WB CP2D LUKOPR 7C' , [LastUpd ateDate]=' 2016-07-27 11:17:06. 000', [Las tUpdateUse r]=' RED A CTED ' WHERE [B loodProduc tGuid]='26 753e6b-559 b-4395-86b b-8ea6978b a72f' | |
| 9695 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLT AFR ACD-B MNFN I 1CNA', [ LastUpdate Date]='201 6-07-27 11 :17:06.000 ', [LastUp dateUser]= ' RED A CTED ' WHERE [B loodProduc tGuid]='f1 2c6397-24b 4-477d-ae4 4-8ea7bd90 742c' | |
| 9696 | UPDATE [db o].[BloodP roduct] SE T [Product Name]='Fro zen Aphere sis RED BL OOD CELLS| Gly40%/XX/ <=-65C|Irr adiated|Re sLeu:<1E6' , [LastUpd ateDate]=' 2016-07-27 11:17:06. 000', [Las tUpdateUse r]=' RED A CTED ' WHERE [B loodProduc tGuid]='75 d72c12-4e9 5-402c-94b 0-8ea7c066 eaf1' | |
| 9697 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC AFR CP2D>AS3 O PN 1C', [L astUpdateD ate]='2016 -07-27 11: 17:06.000' , [LastUpd ateUser]=' RED A CTED ' WHERE [B loodProduc tGuid]='e3 f41fb3-888 7-44fd-b5c 4-8ecc44ff 1c72' | |
| 9698 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='FFP None QUAR 7C', [LastUpda teDate]='2 016-07-27 11:17:06.0 00', [Last UpdateUser ]=' RED A CTED ' WHERE [B loodProduc tGuid]='8f 6c3c1e-bda 5-452b-b25 d-8ecc9d3b ca46' | |
| 9699 | UPDATE [db o].[BloodP roduct] SE T [Product Name]='Aph eresis FRE SH FROZEN PLASMA|CPD -50/XX/<=- 25C|ResLeu :<1E6|2nd container' , [Product ShortName] ='FFP AFR CPD-50 LUK OPR 2C', [ LastUpdate Date]='201 6-07-27 11 :17:06.000 ', [LastUp dateUser]= ' RED A CTED ' WHERE [B loodProduc tGuid]='d5 6c18c1-e3b f-4435-ac2 9-8ee8bdb1 3a87' | |
| 9700 | UPDATE [db o].[BloodP roduct] SE T [Product Name]='Aph eresis FRE SH FROZEN PLASMA|NaC itrate/XX/ <=-65C|>=6 00mL|Quar: >=6m/retes ted', [Las tUpdateDat e]='2016-0 7-27 11:17 :06.000', [LastUpdat eUser]=' RED A CTED ' WHERE [B loodProduc tGuid]='d1 723e73-1df a-4b35-a11 a-8ef516a9 754b' | |
| 9701 | UPDATE [db o].[BloodP roduct] SE T [Product Name]='FRE SH FROZEN PLASMA|CPD A-1/XX/<=- 65C', [Las tUpdateDat e]='2016-0 7-27 11:17 :06.000', [LastUpdat eUser]=' RED A CTED ' WHERE [B loodProduc tGuid]='1b 06194d-e25 8-4eb8-8e1 0-8ef63123 2e89' | |
| 9702 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='WB CPDA- 1 IRD 5C', [LastUpda teDate]='2 016-07-27 11:17:06.0 00', [Last UpdateUser ]=' RED A CTED ' WHERE [B loodProduc tGuid]='3c 754938-303 5-4126-89b 4-8ef66029 5f75' | |
| 9703 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='FFP AFR NaCit IRD 4C QUAR', [LastUpdat eDate]='20 16-07-27 1 1:17:06.00 0', [LastU pdateUser] =' RED A CTED ' WHERE [B loodProduc tGuid]='3e 57428d-e78 9-41c9-899 0-8efca23b ae51' | |
| 9704 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC CP2D >AS3 IRD L UKOPR 8C', [LastUpda teDate]='2 016-07-27 11:17:06.0 00', [Last UpdateUser ]=' RED A CTED ' WHERE [B loodProduc tGuid]='f3 bbf1ba-29f 4-4035-865 a-8f022cd3 a485' | |
| 9705 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLT AFR ACD-A OPN IRD 1C', [ LastUpdate Date]='201 6-07-27 11 :17:06.000 ', [LastUp dateUser]= ' RED A CTED ' WHERE [B loodProduc tGuid]='e5 17ffe4-f80 3-40bb-9a5 0-8f32df9a 71d4' | |
| 9706 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLT AFR ACD-A IRD PLS Red/PA 2C', [Las tUpdateDat e]='2016-0 7-27 11:17 :06.000', [LastUpdat eUser]=' RED A CTED ' WHERE [B loodProduc tGuid]='0a 876b13-e4f 4-4a11-901 f-8f43d3ef 915e' | |
| 9707 | UPDATE [db o].[BloodP roduct] SE T [Product Name]='Fro zen Aphere sis RED BL OOD CELLS| Gly40%/XX/ <=-65C|Ope n|Irradiat ed|1st con tainer', [ ProductSho rtName]='R BC AFR Fro z Gly40% O PN IRD 1C' , [LastUpd ateDate]=' 2016-07-27 11:17:06. 000', [Las tUpdateUse r]=' RED A CTED ' WHERE [B loodProduc tGuid]='4b 6b0a47-efb 5-4ee9-aba 0-8f46c5b7 c044' | |
| 9708 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC AFR Deg None O PN IRD LUK OPR 1C', [ LastUpdate Date]='201 6-07-27 11 :17:06.000 ', [LastUp dateUser]= ' RED A CTED ' WHERE [B loodProduc tGuid]='15 fde0ca-1fe a-4c8f-b65 1-8f4aa204 4eea' | |
| 9709 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLT AFR ACD-A IRD LUKOPR 3C Ribo', [La stUpdateDa te]='2016- 07-27 11:1 7:06.000', [LastUpda teUser]=' RED A CTED ' WHERE [B loodProduc tGuid]='ed be3875-a15 d-47c1-8e3 b-8f52e81e 9a17' | |
| 9710 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='WB CPDA- 1 IRD LUKO PR 3C', [L astUpdateD ate]='2016 -07-27 11: 17:06.000' , [LastUpd ateUser]=' RED A CTED ' WHERE [B loodProduc tGuid]='f8 32523a-469 4-43b4-9d1 8-8fa0b9f4 0b08' | |
| 9711 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLT AFR ACD-A 3C', [LastUpda teDate]='2 016-07-27 11:17:06.0 00', [Last UpdateUser ]=' RED A CTED ' WHERE [B loodProduc tGuid]='97 e7d8d4-68e 1-4138-afa d-8fa1446f caae' | |
| 9712 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC AFR SAGM LUKOP R SR/PA 1C ', [LastUp dateDate]= '2016-07-2 7 11:17:06 .000', [La stUpdateUs er]=' RED A CTED ' WHERE [B loodProduc tGuid]='5a f742e1-a84 c-4bf2-90e 3-8faab08b 81d7' | |
| 9713 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLT AFR ACD-B OPN IRD PLS Re d 4C', [La stUpdateDa te]='2016- 07-27 11:1 7:06.000', [LastUpda teUser]=' RED A CTED ' WHERE [B loodProduc tGuid]='95 8911db-d9e e-4847-a94 d-8fc07d5a 6da7' | |
| 9714 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLASMA A FR Thaw AC D-A 2C', [ LastUpdate Date]='201 6-07-27 11 :17:06.000 ', [LastUp dateUser]= ' RED A CTED ' WHERE [B loodProduc tGuid]='41 8485ab-9ff 9-487c-946 9-8ffb15b5 4abb' | |
| 9715 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLT AFR ACD-A OPN LUKOPR PLS Red 1C', [LastUpdat eDate]='20 16-07-27 1 1:17:06.00 0', [LastU pdateUser] =' RED A CTED ' WHERE [B loodProduc tGuid]='fb e33b4b-2fb 6-4fd5-81f 6-900c39bc 9a4d' | |
| 9716 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLT AFR NaCit PLS Red 2C', [ LastUpdate Date]='201 6-07-27 11 :17:06.000 ', [LastUp dateUser]= ' RED A CTED ' WHERE [B loodProduc tGuid]='b1 fa65e4-3ae b-4ce6-b66 d-90151aed badd' | |
| 9717 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC AFR Deg Rej No ne OPN LUK OPR 1C', [ LastUpdate Date]='201 6-07-27 11 :17:06.000 ', [LastUp dateUser]= ' RED A CTED ' WHERE [B loodProduc tGuid]='d3 22576e-e6b a-4ffa-b54 d-9023f8ad 0d4f' | |
| 9718 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC AFR Deg None O PN 2C', [L astUpdateD ate]='2016 -07-27 11: 17:06.000' , [LastUpd ateUser]=' RED A CTED ' WHERE [B loodProduc tGuid]='d5 1bfa2f-531 3-488e-ad1 5-902feeca 2a9a' | |
| 9719 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC AFR CP2D>AS3 O PN LUKOPR SR 2C', [L astUpdateD ate]='2016 -07-27 11: 17:06.000' , [LastUpd ateUser]=' RED A CTED ' WHERE [B loodProduc tGuid]='e6 338fdc-5c0 2-4f10-b6e f-9039a32b 5d10' | |
| 9720 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLT AFR Wash None OPN IRD LU KOPR 2C', [LastUpdat eDate]='20 16-07-27 1 1:17:06.00 0', [LastU pdateUser] =' RED A CTED ' WHERE [B loodProduc tGuid]='1d 71ac20-894 6-42f0-88a e-904b586b 5b28' | |
| 9721 | UPDATE [db o].[BloodP roduct] SE T [Product Name]='Aph eresis FRE SH FROZEN PLASMA|NaC itrate/XX/ <=-25C|Res Leu:<1E6|F rozen <=6h ', [LastUp dateDate]= '2016-07-2 7 11:17:06 .000', [La stUpdateUs er]=' RED A CTED ' WHERE [B loodProduc tGuid]='c2 24bb3e-11f 9-4353-81a 0-905865c5 ee87' | |
| 9722 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLT AFR ACD-A IRD LUKOPR 1C' , [LastUpd ateDate]=' 2016-07-27 11:17:06. 000', [Las tUpdateUse r]=' RED A CTED ' WHERE [B loodProduc tGuid]='4a ee6e3a-f30 9-44cf-8c3 7-9060d7e4 d8a3' | |
| 9723 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='FFP Thaw None 5C', [LastUpda teDate]='2 016-07-27 11:17:06.0 00', [Last UpdateUser ]=' RED A CTED ' WHERE [B loodProduc tGuid]='89 3588ae-938 d-4e9c-b88 e-9066a4ab 3117' | |
| 9724 | UPDATE [db o].[BloodP roduct] SE T [Product Name]='Aph eresis FRE SH FROZEN PLASMA|CPD -50/XX/<=- 30C|For mn f:injectab le|ResLeu: <1E6|2nd c ontainer', [ProductS hortName]= 'FFP AFR C PD-50 MNFI LUKOPR 2C ', [LastUp dateDate]= '2016-07-2 7 11:17:06 .000', [La stUpdateUs er]=' RED A CTED ' WHERE [B loodProduc tGuid]='13 7f196e-bed b-4452-a85 6-906e615c 5c4e' | |
| 9725 | UPDATE [db o].[BloodP roduct] SE T [Product Name]='Fro zen POOLED PLATELETS |DMSO/XX/< =-80C|For mnf:inject able|ResLe u:<1E6|Buf fy coat pl ts prep|4 units', [L astUpdateD ate]='2016 -07-27 11: 17:06.000' , [LastUpd ateUser]=' RED A CTED ' WHERE [B loodProduc tGuid]='21 27c349-733 7-4c22-b8a c-908d9cd1 4b7a' | |
| 9726 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC AFR Wash AS3 I RD LUKOPR 1C', [Last UpdateDate ]='2016-07 -27 11:17: 06.000', [ LastUpdate User]=' RED A CTED ' WHERE [B loodProduc tGuid]='77 d72b56-709 b-413a-b8f 7-909254d3 5715' | |
| 9727 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='FFP None IRD 4C', [LastUpdat eDate]='20 16-07-27 1 1:17:06.00 0', [LastU pdateUser] =' RED A CTED ' WHERE [B loodProduc tGuid]='ee 0fe0b2-1ba 1-497b-b3c 3-9094c163 c20e' | |
| 9728 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC AFR CP2D MNFI OPN 1C', [ LastUpdate Date]='201 6-07-27 11 :17:06.000 ', [LastUp dateUser]= ' RED A CTED ' WHERE [B loodProduc tGuid]='58 44a186-241 0-40ec-bd1 b-90ab35c5 c4cf' | |
| 9729 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLT AFR PAS-B IRD LUKOPR 2C BacTest', [LastUpdat eDate]='20 16-07-27 1 1:17:06.00 0', [LastU pdateUser] =' RED A CTED ' WHERE [B loodProduc tGuid]='aa 2b73ad-c83 e-4777-ae2 8-90b9c09a 9541' | |
| 9730 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLT AFR ACD-A PLS Red 1C', [ LastUpdate Date]='201 6-07-27 11 :17:06.000 ', [LastUp dateUser]= ' RED A CTED ' WHERE [B loodProduc tGuid]='3b dbf080-199 8-4eeb-a62 5-90c16df9 8401' | |
| 9731 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLT AFR Wash None OPN IRD LU KOPR 2C', [LastUpdat eDate]='20 16-07-27 1 1:17:06.00 0', [LastU pdateUser] =' RED A CTED ' WHERE [B loodProduc tGuid]='6f 1ff58e-23f 3-4ee8-919 4-90cf90b7 609f' | |
| 9732 | UPDATE [db o].[BloodP roduct] SE T [Product Name]='Aph eresis FRE SH FROZEN PLASMA|ACD -A/XX/<=-6 5C|6th con tainer', [ ProductSho rtName]='F FP AFR ACD -A 6C', [L astUpdateD ate]='2016 -07-27 11: 17:06.000' , [LastUpd ateUser]=' RED A CTED ' WHERE [B loodProduc tGuid]='6b d76b41-4ad b-4da9-bad 9-90e1cd67 f97e' | |
| 9733 | UPDATE [db o].[BloodP roduct] SE T [Product Name]='Aph eresis FRE SH FROZEN PLASMA|ACD -B/XX/<=-6 5C|Fin Con :NS|Quar:> =6m/retest ed', [Last UpdateDate ]='2016-07 -27 11:17: 06.000', [ LastUpdate User]=' RED A CTED ' WHERE [B loodProduc tGuid]='7c 73af5c-d8e 7-487e-851 a-90ea0115 f74d' | |
| 9734 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC AFR Deg None L UKOPR 2C', [LastUpda teDate]='2 016-07-27 11:17:06.0 00', [Last UpdateUser ]=' RED A CTED ' WHERE [B loodProduc tGuid]='4e f25e19-9ef 8-42cd-82c 2-90f5cd31 f953' | |
| 9735 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC AFR CPDA-1 LUK OPR SR 2C' , [LastUpd ateDate]=' 2016-07-27 11:17:06. 000', [Las tUpdateUse r]=' RED A CTED ' WHERE [B loodProduc tGuid]='95 47fd16-e27 5-4b42-97a 7-91182fe6 a609' | |
| 9736 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC AFR Wash None OPN LUKOPR 1C', [Las tUpdateDat e]='2016-0 7-27 11:17 :06.000', [LastUpdat eUser]=' RED A CTED ' WHERE [B loodProduc tGuid]='3f d75a2d-08e e-40fd-983 1-912f11ff cb9b' | |
| 9737 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='WB CPDA- 1 IRD 2C', [LastUpda teDate]='2 016-07-27 11:17:06.0 00', [Last UpdateUser ]=' RED A CTED ' WHERE [B loodProduc tGuid]='a2 aa3cc8-916 9-4381-96f 0-91475038 40f5' | |
| 9738 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC AFR Deg None O PN LUKOPR 8C', [Last UpdateDate ]='2016-07 -27 11:17: 06.000', [ LastUpdate User]=' RED A CTED ' WHERE [B loodProduc tGuid]='70 9ea564-2e7 5-44aa-ae7 f-917346e4 26a9' | |
| 9739 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLT AFR ACD-A LUKO PR PLS Red 2C', [Las tUpdateDat e]='2016-0 7-27 11:17 :06.000', [LastUpdat eUser]=' RED A CTED ' WHERE [B loodProduc tGuid]='26 b17275-8e0 1-4a41-b71 c-9187b57c 7d9b' | |
| 9740 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLT AFR ACD-B IRD 2CNA', [La stUpdateDa te]='2016- 07-27 11:1 7:06.000', [LastUpda teUser]=' RED A CTED ' WHERE [B loodProduc tGuid]='d3 f5b6b0-41a 5-4bd7-b22 c-91915750 6d1b' | |
| 9741 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC CPDA -1 IRD LUK OPR 1C', [ LastUpdate Date]='201 6-07-27 11 :17:06.000 ', [LastUp dateUser]= ' RED A CTED ' WHERE [B loodProduc tGuid]='fe e9a25e-4ed 6-4e40-896 4-91a5392b 2ced' | |
| 9742 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC AFR Froz None OPN LUKOPR 4C', [Las tUpdateDat e]='2016-0 7-27 11:17 :06.000', [LastUpdat eUser]=' RED A CTED ' WHERE [B loodProduc tGuid]='b4 25c93b-776 c-4acf-b36 9-91aa551d abfe' | |
| 9743 | UPDATE [db o].[BloodP roduct] SE T [Product Name]='Aph eresis FRE SH FROZEN PLASMA|ACD -B/XX/<=-3 0C|Irradia ted|Fin Co n:NS|Quar: >=6m/retes ted', [Las tUpdateDat e]='2016-0 7-27 11:17 :06.000', [LastUpdat eUser]=' RED A CTED ' WHERE [B loodProduc tGuid]='30 74df72-0f6 6-4b35-9c7 9-91b42d4e ab69' | |
| 9744 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLT AFR ACD-A LUKO PR 3C BacM tr', [Last UpdateDate ]='2016-07 -27 11:17: 06.000', [ LastUpdate User]=' RED A CTED ' WHERE [B loodProduc tGuid]='36 2f5218-af4 d-4ca0-b36 4-91c10cd5 b103' | |
| 9745 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLASMA A FR Thaw AC D-A OPN 1C ', [LastUp dateDate]= '2016-07-2 7 11:17:06 .000', [La stUpdateUs er]=' RED A CTED ' WHERE [B loodProduc tGuid]='74 f5e61a-bbf 1-475e-979 9-91cfa0d2 9287' | |
| 9746 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLT AFR ACD-A 4C', [LastUpda teDate]='2 016-07-27 11:17:06.0 00', [Last UpdateUser ]=' RED A CTED ' WHERE [B loodProduc tGuid]='90 695fb2-92b f-4c34-b72 4-91e13a0e a4f5' | |
| 9747 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC CPDA -1 LUKOPR 5C', [Last UpdateDate ]='2016-07 -27 11:17: 06.000', [ LastUpdate User]=' RED A CTED ' WHERE [B loodProduc tGuid]='51 57a8fb-a6f c-4c43-92d 9-91e56d37 e744' | |
| 9748 | UPDATE [db o].[BloodP roduct] SE T [Product Name]='Aph eresis FRE SH FROZEN PLASMA|ACD -A/XX/<=-3 0C|ResLeu: <1E6|>=400 mL<600mL|Q uar:>=62d/ retested', [LastUpda teDate]='2 016-07-27 11:17:06.0 00', [Last UpdateUser ]=' RED A CTED ' WHERE [B loodProduc tGuid]='7f 5d959f-987 a-4b8c-812 2-92000a8c 850a' | |
| 9749 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='FFP AFR None IRD 4 C', [LastU pdateDate] ='2016-07- 27 11:17:0 6.000', [L astUpdateU ser]=' RED A CTED ' WHERE [B loodProduc tGuid]='b1 462fb5-16b c-486f-a3d 9-92159bc8 968e' | |
| 9750 | UPDATE [db o].[BloodP roduct] SE T [Product Name]='Fro zen Aphere sis PLATEL ETS|DMSO/X X/<=-65C|N ot for tx or mnf|Ope n|3rd cont ainer', [P roductShor tName]='PL T AFR Froz DMSO NMT OPN 3C', [ LastUpdate Date]='201 6-07-27 11 :17:06.000 ', [LastUp dateUser]= ' RED A CTED ' WHERE [B loodProduc tGuid]='e7 8e445e-2b5 0-4197-81b 1-921dc141 691d' | |
| 9751 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC AFR CPDA-1 2C' , [LastUpd ateDate]=' 2016-07-27 11:17:06. 000', [Las tUpdateUse r]=' RED A CTED ' WHERE [B loodProduc tGuid]='e5 77be38-38f 6-4dab-911 2-92249745 f68b' | |
| 9752 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC AFR Deg Rej No ne OPN 1C' , [LastUpd ateDate]=' 2016-07-27 11:17:06. 000', [Las tUpdateUse r]=' RED A CTED ' WHERE [B loodProduc tGuid]='b6 53544d-444 1-498a-963 8-9237041b 3359' | |
| 9753 | UPDATE [db o].[BloodP roduct] SE T [Product Name]='Aph eresis PLA SMA|ACD-A/ XX/<=-30C| For mnf:in jectable|> =400mL<600 mL|Frozen >24h', [La stUpdateDa te]='2016- 07-27 11:1 7:06.000', [LastUpda teUser]=' RED A CTED ' WHERE [B loodProduc tGuid]='b3 afe139-989 f-4720-a83 7-92417b05 9170' | |
| 9754 | UPDATE [db o].[BloodP roduct] SE T [Product Name]='Aph eresis FRE SH FROZEN PLASMA|NS/ XX/<=-30C| ResLeu:<5E 6|>=200mL< 400mL', [L astUpdateD ate]='2016 -07-27 11: 17:06.000' , [LastUpd ateUser]=' RED A CTED ' WHERE [B loodProduc tGuid]='e5 613c48-d29 6-4cf2-8c8 5-92465d48 4a29' | |
| 9755 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLT AFR ACD-A LUKO PR 2C', [L astUpdateD ate]='2016 -07-27 11: 17:06.000' , [LastUpd ateUser]=' RED A CTED ' WHERE [B loodProduc tGuid]='53 b24ed2-5bb c-4e80-916 c-924c3ce9 2af4' | |
| 9756 | UPDATE [db o].[BloodP roduct] SE T [Product Name]='Aph eresis FRE SH FROZEN PLASMA|ACD -A/XX/<=-6 5C|Irradia ted|6th co ntainer|Qu ar:>=112d/ retested', [ProductS hortName]= 'FFP AFR A CD-A IRD 6 C QUAR', [ LastUpdate Date]='201 6-07-27 11 :17:06.000 ', [LastUp dateUser]= ' RED A CTED ' WHERE [B loodProduc tGuid]='02 79432f-6f7 b-40df-b04 6-9255e107 ce2a' | |
| 9757 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLT AFR ACD-B PLS Red 3C', [ LastUpdate Date]='201 6-07-27 11 :17:06.000 ', [LastUp dateUser]= ' RED A CTED ' WHERE [B loodProduc tGuid]='79 1e7060-fd0 7-426f-8e3 5-92562cfd 1bf7' | |
| 9758 | UPDATE [db o].[BloodP roduct] SE T [Product Name]='Fro zen Aphere sis PLATEL ETS|DMSO/X X/<=-65C|O pen|ResLeu :<5E6|3rd container' , [Product ShortName] ='PLT AFR Froz DMSO OPN LUKOPR 3C', [Las tUpdateDat e]='2016-0 7-27 11:17 :06.000', [LastUpdat eUser]=' RED A CTED ' WHERE [B loodProduc tGuid]='22 7f2bcd-fc9 2-4915-947 3-9262af7d 262a' | |
| 9759 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLASMA A FR Liq CPD -50 IRD LU KOPR 1C', [LastUpdat eDate]='20 16-07-27 1 1:17:06.00 0', [LastU pdateUser] =' RED A CTED ' WHERE [B loodProduc tGuid]='7d fa8aa3-1f4 e-4aa5-9d3 7-9284518c e6d6' | |
| 9760 | UPDATE [db o].[BloodP roduct] SE T [Product Name]='Aph eresis FRE SH FROZEN PLASMA|NaC itrate/XX/ <=-25C|Fro zen <=6h', [LastUpda teDate]='2 016-07-27 11:17:06.0 00', [Last UpdateUser ]=' RED A CTED ' WHERE [B loodProduc tGuid]='50 e6fb03-c84 2-46c1-b91 c-928eb6e2 b183' | |
| 9761 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLT AFR Wash PAS-E IRD LUKOP R 3C', [La stUpdateDa te]='2016- 07-27 11:1 7:06.000', [LastUpda teUser]=' RED A CTED ' WHERE [B loodProduc tGuid]='87 c9e999-56a b-4fb0-a6f c-929d736a c1c7' | |
| 9762 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLT AFR NaCit IRD LUKOPR PLS Red 1CNA' , [LastUpd ateDate]=' 2016-07-27 11:17:06. 000', [Las tUpdateUse r]=' RED A CTED ' WHERE [B loodProduc tGuid]='80 9912bb-e83 9-4b84-889 1-92a6ec37 e2d1' | |
| 9763 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='FFP AFR Thaw ACD-A 4C', [Las tUpdateDat e]='2016-0 7-27 11:17 :06.000', [LastUpdat eUser]=' RED A CTED ' WHERE [B loodProduc tGuid]='fb fa6ef2-f58 b-40c1-871 1-92acf324 7836' | |
| 9764 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLT AFR ACD-A LUKO PR 2C', [L astUpdateD ate]='2016 -07-27 11: 17:06.000' , [LastUpd ateUser]=' RED A CTED ' WHERE [B loodProduc tGuid]='9a cd55f6-32e e-4bf9-bc7 5-92b94082 66d4' | |
| 9765 | UPDATE [db o].[BloodP roduct] SE T [Product Name]='Fro zen Aphere sis PLATEL ETS|DMSO/X X/<=-65C|O pen|Irradi ated|ResLe u:<5E6|1st container ', [Produc tShortName ]='PLT AFR Froz DMSO OPN IRD L UKOPR 1C', [LastUpda teDate]='2 016-07-27 11:17:06.0 00', [Last UpdateUser ]=' RED A CTED ' WHERE [B loodProduc tGuid]='0a 6f44ac-913 7-44bf-be4 6-92c25006 a0e7' | |
| 9766 | UPDATE [db o].[BloodP roduct] SE T [Product Name]='Aph eresis FRE SH FROZEN PLASMA|ACD -A/XX/<=-3 0C|ResLeu: <1E6|>=600 mL|Quar:>= 90d/retest ed', [Last UpdateDate ]='2016-07 -27 11:17: 06.000', [ LastUpdate User]=' RED A CTED ' WHERE [B loodProduc tGuid]='29 2c8bcd-5e5 d-4d3c-924 8-92de12f7 c526' | |
| 9767 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLT AFR ACD-B OPN IRD LUKOPR PLS Red 2 CNA', [Las tUpdateDat e]='2016-0 7-27 11:17 :06.000', [LastUpdat eUser]=' RED A CTED ' WHERE [B loodProduc tGuid]='0c b2bb14-924 8-4c96-9aa 2-92f5fba0 2f35' | |
| 9768 | UPDATE [db o].[BloodP roduct] SE T [Product Name]='Fro zen POOLED PLATELETS |DMSO/XX/< =-80C|Open |5 units', [LastUpda teDate]='2 016-07-27 11:17:06.0 00', [Last UpdateUser ]=' RED A CTED ' WHERE [B loodProduc tGuid]='61 e01a98-a84 0-4996-adf b-92fca097 b7f3' | |
| 9769 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC AFR ACD-A OPN LUKOPR SR/ PA1C', [La stUpdateDa te]='2016- 07-27 11:1 7:06.000', [LastUpda teUser]=' RED A CTED ' WHERE [B loodProduc tGuid]='d9 7dd534-b73 9-421e-959 1-92fde198 9cfb' | |
| 9770 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC AFR Deg None L UKOPR 1C', [LastUpda teDate]='2 016-07-27 11:17:06.0 00', [Last UpdateUser ]=' RED A CTED ' WHERE [B loodProduc tGuid]='fd b46d66-6d9 8-4a79-b6f a-930afb3e 34db' | |
| 9771 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC AFR CP2D>AS3 I RD 1C', [L astUpdateD ate]='2016 -07-27 11: 17:06.000' , [LastUpd ateUser]=' RED A CTED ' WHERE [B loodProduc tGuid]='cb 48e972-41d d-45e2-b7c f-933ee248 34c3' | |
| 9772 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC AFR ACD-A>AS3 IRD 8C', [ LastUpdate Date]='201 6-07-27 11 :17:06.000 ', [LastUp dateUser]= ' RED A CTED ' WHERE [B loodProduc tGuid]='ed 7c38f3-645 c-49ef-913 d-93871ac5 176c' | |
| 9773 | UPDATE [db o].[BloodP roduct] SE T [Product Name]='Aph eresis FRE SH FROZEN PLASMA|CPD -50/XX/<=- 30C', [Las tUpdateDat e]='2016-0 7-27 11:17 :06.000', [LastUpdat eUser]=' RED A CTED ' WHERE [B loodProduc tGuid]='69 9826c6-cdd e-4610-8ec 8-93b2988c 11c0' | |
| 9774 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC AFR Froz None OPN IRD 2C ', [LastUp dateDate]= '2016-07-2 7 11:17:06 .000', [La stUpdateUs er]=' RED A CTED ' WHERE [B loodProduc tGuid]='91 38a23d-6bd d-4bbb-86a 9-93ea4155 bb20' | |
| 9775 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC Rej None OPN I RD LUKOPR 2C', [Last UpdateDate ]='2016-07 -27 11:17: 06.000', [ LastUpdate User]=' RED A CTED ' WHERE [B loodProduc tGuid]='61 0c8bbc-389 6-4f4d-bd1 3-93f526ad 72bf' | |
| 9776 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC AFR CP2D>AS3 L UKOPR 2C', [LastUpda teDate]='2 016-07-27 11:17:06.0 00', [Last UpdateUser ]=' RED A CTED ' WHERE [B loodProduc tGuid]='c9 89be85-92f 8-4e3e-b36 f-93fa9028 07a4' | |
| 9777 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC AFR Wash None OPN 3C', [ LastUpdate Date]='201 6-07-27 11 :17:06.000 ', [LastUp dateUser]= ' RED A CTED ' WHERE [B loodProduc tGuid]='3b b2b4f1-4ff 3-4c78-a8a 9-94647192 28eb' | |
| 9778 | UPDATE [db o].[BloodP roduct] SE T [Product Name]='FRE SH FROZEN PLASMA|CPD A-1/XX/<=- 25C|Not fo r tx or mn f', [LastU pdateDate] ='2016-07- 27 11:17:0 6.000', [L astUpdateU ser]=' RED A CTED ' WHERE [B loodProduc tGuid]='97 fc27e9-914 8-43cd-8e4 0-946b0c8d 3445' | |
| 9779 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLT AFR ACD-A IRD LUKOPR 1C' , [LastUpd ateDate]=' 2016-07-27 11:17:06. 000', [Las tUpdateUse r]=' RED A CTED ' WHERE [B loodProduc tGuid]='6d 9638eb-bd0 9-4f6b-a89 9-946fcfca 1144' | |
| 9780 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='FFP AFR None IRD Q UAR 6C', [ LastUpdate Date]='201 6-07-27 11 :17:06.000 ', [LastUp dateUser]= ' RED A CTED ' WHERE [B loodProduc tGuid]='95 3c4b00-08a 5-48ca-b4c 7-947b6eff b3a9' | |
| 9781 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC AFR Deg AS3 LU KOPR 1C', [LastUpdat eDate]='20 16-07-27 1 1:17:06.00 0', [LastU pdateUser] =' RED A CTED ' WHERE [B loodProduc tGuid]='0f 7af412-f83 3-4f46-a0a 2-94807218 87f4' | |
| 9782 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='FFP AFR Thaw NaCit IRD 5C QU AR', [Last UpdateDate ]='2016-07 -27 11:17: 06.000', [ LastUpdate User]=' RED A CTED ' WHERE [B loodProduc tGuid]='57 233239-f82 0-4d2a-b1f c-9485f301 9e11' | |
| 9783 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='FFP AFR Thaw None IRD LUKOPR 5C', [Las tUpdateDat e]='2016-0 7-27 11:17 :06.000', [LastUpdat eUser]=' RED A CTED ' WHERE [B loodProduc tGuid]='2a 579ec7-8c5 d-49bb-bee a-9487d021 2569' | |
| 9784 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLT AFR ACD-A OPN 2CNA', [La stUpdateDa te]='2016- 07-27 11:1 7:06.000', [LastUpda teUser]=' RED A CTED ' WHERE [B loodProduc tGuid]='ee cdbd05-caa 6-4fb2-b56 e-948cd3cf b198' | |
| 9785 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC AFR ACD-A>AS1 OPN IRD LU KOPR SUPRe d 1C', [La stUpdateDa te]='2016- 07-27 11:1 7:06.000', [LastUpda teUser]=' RED A CTED ' WHERE [B loodProduc tGuid]='ae 65ec70-697 c-486b-be4 6-9493039b 355e' | |
| 9786 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC AFR CP2D NMT O PN 2C', [L astUpdateD ate]='2016 -07-27 11: 17:06.000' , [LastUpd ateUser]=' RED A CTED ' WHERE [B loodProduc tGuid]='95 7d972f-ba8 9-4d11-ba1 3-94b212ec 3aef' | |
| 9787 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLT AFR ACD-A IRD LUKOPR 1C' , [LastUpd ateDate]=' 2016-07-27 11:17:06. 000', [Las tUpdateUse r]=' RED A CTED ' WHERE [B loodProduc tGuid]='bb d4dbe9-4ea 0-4bcf-8fd b-94b7f2ea 249c' | |
| 9788 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLT AFR ACD-A OPN IRD LUKOPR PLS Red/S AL Add 3C' , [LastUpd ateDate]=' 2016-07-27 11:17:06. 000', [Las tUpdateUse r]=' RED A CTED ' WHERE [B loodProduc tGuid]='25 de718e-bc3 4-42dc-b00 0-94d9339f 546f' | |
| 9789 | UPDATE [db o].[BloodP roduct] SE T [Product Name]='Aph eresis FRE SH FROZEN PLASMA|NaC itrate/XX/ <=-65C|Irr adiated|2n d containe r', [Produ ctShortNam e]='FFP AF R NaCit IR D 2C', [La stUpdateDa te]='2016- 07-27 11:1 7:06.000', [LastUpda teUser]=' RED A CTED ' WHERE [B loodProduc tGuid]='11 adad87-b98 1-4151-bb3 c-94e72ce6 6047' | |
| 9790 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLT AFR Wash None OPN IRD LU KOPR 1C', [LastUpdat eDate]='20 16-07-27 1 1:17:06.00 0', [LastU pdateUser] =' RED A CTED ' WHERE [B loodProduc tGuid]='b5 ae9a72-284 7-486b-9b5 e-94f48e0a f5a3' | |
| 9791 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='FFP None QUAR 5C', [LastUpda teDate]='2 016-07-27 11:17:06.0 00', [Last UpdateUser ]=' RED A CTED ' WHERE [B loodProduc tGuid]='3c 014544-efe 6-44c3-9d5 7-951b4990 3b78' | |
| 9792 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC AFR ACD-A>AS1 OPN IRD LU KOPR SAL A dd 1C', [L astUpdateD ate]='2016 -07-27 11: 17:06.000' , [LastUpd ateUser]=' RED A CTED ' WHERE [B loodProduc tGuid]='ae 444f46-525 9-45ee-9ef a-95375773 accd' | |
| 9793 | UPDATE [db o].[BloodP roduct] SE T [Product Name]='Fro zen Aphere sis RED BL OOD CELLS| Gly40%/XX/ <=-80C|Ope n|ResLeu:< 1E6|2nd co ntainer', [ProductSh ortName]=' RBC AFR Fr oz Gly40% OPN LUKOPR 2C', [Las tUpdateDat e]='2016-0 7-27 11:17 :06.000', [LastUpdat eUser]=' RED A CTED ' WHERE [B loodProduc tGuid]='b7 5eb2d7-4a4 f-4213-8e1 2-95431df3 934b' | |
| 9794 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='FFP AFR Thaw NaCit 3C', [Las tUpdateDat e]='2016-0 7-27 11:17 :06.000', [LastUpdat eUser]=' RED A CTED ' WHERE [B loodProduc tGuid]='54 a02163-73d 9-4a8e-8b4 1-955f40da dc66' | |
| 9795 | UPDATE [db o].[BloodP roduct] SE T [Product Name]='Aph eresis FRE SH FROZEN PLASMA|NaC itrate/XX/ <=-30C|Irr adiated|Re sLeu:<1E6| >=200mL<40 0mL|Frozen <=6h|1st container| Quar:>=4m/ retested', [ProductS hortName]= 'FFP AFR N aCit IRD L UKOPR 1C Q UAR', [Las tUpdateDat e]='2016-0 7-27 11:17 :06.000', [LastUpdat eUser]=' RED A CTED ' WHERE [B loodProduc tGuid]='9c 847f06-1e9 e-4e26-bda d-95902bee aaed' | |
| 9796 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLT AFR ACD-A 4C', [LastUpda teDate]='2 016-07-27 11:17:06.0 00', [Last UpdateUser ]=' RED A CTED ' WHERE [B loodProduc tGuid]='31 efe057-9a8 0-4e45-972 b-9593a51b c96f' | |
| 9797 | UPDATE [db o].[BloodP roduct] SE T [Product Name]='Aph eresis FRE SH FROZEN PLASMA|ACD -B/XX/<=-2 5C|>=600mL |Quar:>=6m /retested' , [LastUpd ateDate]=' 2016-07-27 11:17:06. 000', [Las tUpdateUse r]=' RED A CTED ' WHERE [B loodProduc tGuid]='6c d56ce8-e13 d-45b3-a38 6-9594b501 db99' | |
| 9798 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLT AFR NaCit OPN IRD LUKOPR 2CNA', [L astUpdateD ate]='2016 -07-27 11: 17:06.000' , [LastUpd ateUser]=' RED A CTED ' WHERE [B loodProduc tGuid]='af 88ede5-f30 e-4068-af4 0-95e4053e b7ec' | |
| 9799 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC AFR CP2D>AS3 4 C', [LastU pdateDate] ='2016-07- 27 11:17:0 6.000', [L astUpdateU ser]=' RED A CTED ' WHERE [B loodProduc tGuid]='09 92b3a8-1d5 1-4d54-b23 c-95e61a36 dc4b' | |
| 9800 | UPDATE [db o].[BloodP roduct] SE T [Product Name]='Aph eresis FRE SH FROZEN PLASMA|ACD -A/XX/<=-2 5C|ResLeu: <1E6|1st c ontainer', [ProductS hortName]= 'FFP AFR A CD-A LUKOP R 1C', [La stUpdateDa te]='2016- 07-27 11:1 7:06.000', [LastUpda teUser]=' RED A CTED ' WHERE [B loodProduc tGuid]='1a 6a5e9f-43d 2-4732-bdf c-95fa31b3 0173' | |
| 9801 | UPDATE [db o].[BloodP roduct] SE T [Product Name]='Aph eresis FRE SH FROZEN PLASMA|CPD -50/XX/<=- 25C|1st co ntainer|Ps oralen-tre ated', [Pr oductShort Name]='FFP AFR CPD-5 0 1C Psora ln', [Last UpdateDate ]='2016-07 -27 11:17: 06.000', [ LastUpdate User]=' RED A CTED ' WHERE [B loodProduc tGuid]='be a89edd-079 3-4441-bd0 2-96032626 a77a' | |
| 9802 | UPDATE [db o].[BloodP roduct] SE T [Product Name]='FRE SH FROZEN PLASMA|CPD A-1/450mL/ <=-25C|For mnf:injec table|Froz en <=8h', [LastUpdat eDate]='20 16-07-27 1 1:17:06.00 0', [LastU pdateUser] =' RED A CTED ' WHERE [B loodProduc tGuid]='c5 7f3f9a-752 1-41e1-a55 c-9607f5f0 584b' | |
| 9803 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC AFR CP2D SR/PA 2C', [Las tUpdateDat e]='2016-0 7-27 11:17 :06.000', [LastUpdat eUser]=' RED A CTED ' WHERE [B loodProduc tGuid]='75 cedcca-e11 c-44cf-b13 d-96092375 2182' | |
| 9804 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC CPD> AS5 4C', [ LastUpdate Date]='201 6-07-27 11 :17:06.000 ', [LastUp dateUser]= ' RED A CTED ' WHERE [B loodProduc tGuid]='7c 901e2d-e95 3-4c64-b3d f-96167564 08a8' | |
| 9805 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLASMA T haw None 1 C', [LastU pdateDate] ='2016-07- 27 11:17:0 6.000', [L astUpdateU ser]=' RED A CTED ' WHERE [B loodProduc tGuid]='d6 8ddc0a-a32 5-41a8-889 1-9623789f ae85' | |
| 9806 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='FFP AFR Thaw None 8C', [Last UpdateDate ]='2016-07 -27 11:17: 06.000', [ LastUpdate User]=' RED A CTED ' WHERE [B loodProduc tGuid]='0c 0fccbf-a89 f-424f-8dd a-96298336 c160' | |
| 9807 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLT AFR ACD-A LUKO PR 7C', [L astUpdateD ate]='2016 -07-27 11: 17:06.000' , [LastUpd ateUser]=' RED A CTED ' WHERE [B loodProduc tGuid]='3d 8e65da-64b 2-4ddb-a73 f-964d9b1d 8444' | |
| 9808 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='FFP AFR NaCit IRD 6C QUAR', [LastUpdat eDate]='20 16-07-27 1 1:17:06.00 0', [LastU pdateUser] =' RED A CTED ' WHERE [B loodProduc tGuid]='1e 2f7670-8d0 2-4370-ac6 9-9669f0ab ecd3' | |
| 9809 | UPDATE [db o].[BloodP roduct] SE T [Product Name]='Aph eresis FRE SH FROZEN PLASMA|ACD -B/XX/<=-3 0C|Not for tx or mnf ', [LastUp dateDate]= '2016-07-2 7 11:17:06 .000', [La stUpdateUs er]=' RED A CTED ' WHERE [B loodProduc tGuid]='a4 8acd4e-49b b-4294-98a 1-9676ee64 c106' | |
| 9810 | UPDATE [db o].[BloodP roduct] SE T [Product Name]='Aph eresis FRE SH FROZEN PLASMA|CPD -50/XX/<=- 25C|ResLeu :<1E6|1st container' , [Product ShortName] ='FFP AFR CPD-50 LUK OPR 1C', [ LastUpdate Date]='201 6-07-27 11 :17:06.000 ', [LastUp dateUser]= ' RED A CTED ' WHERE [B loodProduc tGuid]='58 87a7d8-501 9-4af8-800 f-968938e4 cfb9' | |
| 9811 | UPDATE [db o].[BloodP roduct] SE T [Product Name]='Fro zen RED BL OOD CELLS| None/250mL /<=-65C|Op en', [Last UpdateDate ]='2016-07 -27 11:17: 06.000', [ LastUpdate User]=' RED A CTED ' WHERE [B loodProduc tGuid]='50 715757-633 2-4bee-b29 3-96939c2b e343' | |
| 9812 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLT AFR ACD-A LUKO PR 8C BacM tr', [Last UpdateDate ]='2016-07 -27 11:17: 06.000', [ LastUpdate User]=' RED A CTED ' WHERE [B loodProduc tGuid]='19 bf0893-046 8-4385-8c9 5-96a1f758 b815' | |
| 9813 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC AFR CP2D>AS3 L UKOPR 1C', [LastUpda teDate]='2 016-07-27 11:17:06.0 00', [Last UpdateUser ]=' RED A CTED ' WHERE [B loodProduc tGuid]='aa 110c06-a42 8-4424-bc4 d-96b39b2f 7c8b' | |
| 9814 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC AFR ACD-A>AS1 IRD 6C', [ LastUpdate Date]='201 6-07-27 11 :17:06.000 ', [LastUp dateUser]= ' RED A CTED ' WHERE [B loodProduc tGuid]='d7 425d13-b48 0-4e67-9f2 b-96c196a4 6fdd' | |
| 9815 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='FFP AFR ACD-A IRD 3C', [Last UpdateDate ]='2016-07 -27 11:17: 06.000', [ LastUpdate User]=' RED A CTED ' WHERE [B loodProduc tGuid]='ea fb904c-c81 6-4878-b5f 4-97057e81 3794' | |
| 9816 | UPDATE [db o].[BloodP roduct] SE T [Product Name]='Fro zen Rejuve nated Aphe resis RED BLOOD CELL S|None/XX/ <=-65C|Ope n', [LastU pdateDate] ='2016-07- 27 11:17:0 6.000', [L astUpdateU ser]=' RED A CTED ' WHERE [B loodProduc tGuid]='5f 47b3ec-3bb d-4f38-bc8 5-97284f57 3f75' | |
| 9817 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC AFR ACD-A IRD LUKOPR SR/ PA 2C', [L astUpdateD ate]='2016 -07-27 11: 17:06.000' , [LastUpd ateUser]=' RED A CTED ' WHERE [B loodProduc tGuid]='60 4e6f70-61e 4-4d83-b47 4-974287a9 1b8f' | |
| 9818 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='WB CPD 1 C', [LastU pdateDate] ='2016-07- 27 11:17:0 6.000', [L astUpdateU ser]=' RED A CTED ' WHERE [B loodProduc tGuid]='e8 b132f7-6e0 1-4bf1-ad5 0-974afeab 153c' | |
| 9819 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLT AFR ACD-A IRD LUKOPR 2C' , [LastUpd ateDate]=' 2016-07-27 11:17:06. 000', [Las tUpdateUse r]=' RED A CTED ' WHERE [B loodProduc tGuid]='f6 00d833-1a4 a-48b3-af8 8-9756760e fabf' | |
| 9820 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLT AFR PAS-C LUKO PR SUPRed 3C Psoraln ', [LastUp dateDate]= '2016-07-2 7 11:17:06 .000', [La stUpdateUs er]=' RED A CTED ' WHERE [B loodProduc tGuid]='86 f6a460-c39 9-414f-83a 3-97614a7e c990' | |
| 9821 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLT AFR ACD-B OPN IRD PLS Re d 3C', [La stUpdateDa te]='2016- 07-27 11:1 7:06.000', [LastUpda teUser]=' RED A CTED ' WHERE [B loodProduc tGuid]='aa 055f0f-6e1 3-46c7-97c 2-9761541d e2b6' | |
| 9822 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLT AFR ACD-A 2CNA ', [LastUp dateDate]= '2016-07-2 7 11:17:06 .000', [La stUpdateUs er]=' RED A CTED ' WHERE [B loodProduc tGuid]='03 997a8e-a7a 3-4804-995 5-976a8a3e 93b6' | |
| 9823 | UPDATE [db o].[BloodP roduct] SE T [Product Name]='Aph eresis FRE SH FROZEN PLASMA|NS/ XX/<=-30C' , [LastUpd ateDate]=' 2016-07-27 11:17:06. 000', [Las tUpdateUse r]=' RED A CTED ' WHERE [B loodProduc tGuid]='ac 8f3c1c-f17 3-4485-880 e-9795a833 8a49' | |
| 9824 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='FFP AFR ACD-A 4C', [LastUpda teDate]='2 016-07-27 11:17:06.0 00', [Last UpdateUser ]=' RED A CTED ' WHERE [B loodProduc tGuid]='e7 f7a44e-be9 1-4bff-9fc 0-9796a732 8f22' | |
| 9825 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC AFR Wash None OPN 1C', [ LastUpdate Date]='201 6-07-27 11 :17:06.000 ', [LastUp dateUser]= ' RED A CTED ' WHERE [B loodProduc tGuid]='30 779567-082 3-4a12-9a7 d-97979691 74fc' | |
| 9826 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLT AFR ACD-A LUKO PR 2C Ribo ', [LastUp dateDate]= '2016-07-2 7 11:17:06 .000', [La stUpdateUs er]=' RED A CTED ' WHERE [B loodProduc tGuid]='89 89c84c-74b c-4982-a25 8-97a40783 847f' | |
| 9827 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='FFP AFR CP2D IRD 3 C', [LastU pdateDate] ='2016-07- 27 11:17:0 6.000', [L astUpdateU ser]=' RED A CTED ' WHERE [B loodProduc tGuid]='5d 6882cc-2c4 b-4544-b18 d-97a4be86 e611' | |
| 9828 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLT AFR ACD-A OPN LUKOPR PLS Red 2C', [LastUpdat eDate]='20 16-07-27 1 1:17:06.00 0', [LastU pdateUser] =' RED A CTED ' WHERE [B loodProduc tGuid]='9b 267ce0-ca2 2-4671-b95 1-97a83daa 1cc9' | |
| 9829 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='FFP CPDA -1 1C', [L astUpdateD ate]='2016 -07-27 11: 17:06.000' , [LastUpd ateUser]=' RED A CTED ' WHERE [B loodProduc tGuid]='29 e09539-b85 b-4867-9ea 4-97abfe98 7be8' | |
| 9830 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC AFR ACD-A>AS3 IRD 1C', [ LastUpdate Date]='201 6-07-27 11 :17:06.000 ', [LastUp dateUser]= ' RED A CTED ' WHERE [B loodProduc tGuid]='eb b3e7f4-afb 9-40a9-a31 b-97d8fc4b 86eb' | |
| 9831 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLASMA A FR Thaw AC D-A OPN 2C ', [LastUp dateDate]= '2016-07-2 7 11:17:06 .000', [La stUpdateUs er]=' RED A CTED ' WHERE [B loodProduc tGuid]='f0 2606e7-1bd 4-460e-89e 9-97dd301f a844' | |
| 9832 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC Deg None IRD L UKOPR 8C', [LastUpda teDate]='2 016-07-27 11:17:06.0 00', [Last UpdateUser ]=' RED A CTED ' WHERE [B loodProduc tGuid]='2c f213b4-265 5-4cfc-b1e 1-97dedf77 2ba1' | |
| 9833 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC Froz Rej None OPN 4C', [ LastUpdate Date]='201 6-07-27 11 :17:06.000 ', [LastUp dateUser]= ' RED A CTED ' WHERE [B loodProduc tGuid]='85 962fa6-1f4 b-43a6-a75 1-97e11772 96cb' | |
| 9834 | UPDATE [db o].[BloodP roduct] SE T [Product Name]='Aph eresis FRE SH FROZEN PLASMA|ACD -A/XX/<=-6 5C|2nd con tainer|Qua r:>=112d/r etested', [ProductSh ortName]=' FFP AFR AC D-A 2C QUA R', [LastU pdateDate] ='2016-07- 27 11:17:0 6.000', [L astUpdateU ser]=' RED A CTED ' WHERE [B loodProduc tGuid]='3d a147b5-895 7-4b92-af4 1-98084084 382e' | |
| 9835 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC CPDA -1 2C', [R etireDate] ='2015-04- 07 00:00:0 0.000', [L astUpdateD ate]='2016 -07-27 11: 17:06.000' , [LastUpd ateUser]=' RED A CTED ' WHERE [B loodProduc tGuid]='95 61a175-fc5 2-4c96-8d9 e-981f434d 2cb4' | |
| 9836 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLT AFR ACD-A IRD LUKOPR 3C' , [LastUpd ateDate]=' 2016-07-27 11:17:06. 000', [Las tUpdateUse r]=' RED A CTED ' WHERE [B loodProduc tGuid]='71 322598-6b1 d-40e5-944 c-9828873b 6e26' | |
| 9837 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC Deg None IRD L UKOPR 4C', [LastUpda teDate]='2 016-07-27 11:17:06.0 00', [Last UpdateUser ]=' RED A CTED ' WHERE [B loodProduc tGuid]='71 6d9c69-980 5-4d14-8d7 0-9831eea3 d2c9' | |
| 9838 | UPDATE [db o].[BloodP roduct] SE T [Product Name]='Aph eresis FRE SH FROZEN PLASMA|ACD -B/XX/<=-6 5C|Irradia ted|Fin Co n:NS|Aphr not automa ted|Quar:> =6m/retest ed', [Last UpdateDate ]='2016-07 -27 11:17: 06.000', [ LastUpdate User]=' RED A CTED ' WHERE [B loodProduc tGuid]='1d fa73a8-c7f c-4598-872 5-98352ddf e25f' | |
| 9839 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC AFR ACD-A>AS3 OPN LUKOPR PA 2C', [ LastUpdate Date]='201 6-07-27 11 :17:06.000 ', [LastUp dateUser]= ' RED A CTED ' WHERE [B loodProduc tGuid]='65 818514-1c3 e-43ca-b7d 2-984800fb 8a56' | |
| 9840 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='WB CP2D 3C', [Last UpdateDate ]='2016-07 -27 11:17: 06.000', [ LastUpdate User]=' RED A CTED ' WHERE [B loodProduc tGuid]='33 e07775-017 f-4953-baa 0-98560af0 44b2' | |
| 9841 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC Deg Rej None O PN IRD LUK OPR 4C', [ LastUpdate Date]='201 6-07-27 11 :17:06.000 ', [LastUp dateUser]= ' RED A CTED ' WHERE [B loodProduc tGuid]='b1 d7fc85-1c1 5-4acb-be2 2-986a32f5 1f50' | |
| 9842 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC CPD IRD 6C', [ RetireDate ]='2015-04 -07 00:00: 00.000', [ LastUpdate Date]='201 6-07-27 11 :17:06.000 ', [LastUp dateUser]= ' RED A CTED ' WHERE [B loodProduc tGuid]='01 a08784-04f c-4d57-a49 6-987c98c2 6f25' | |
| 9843 | UPDATE [db o].[BloodP roduct] SE T [Product Name]='Aph eresis FRE SH FROZEN PLASMA|ACD -B/XX/<=-6 5C|Not for tx or mnf |Fin Con:N S|Quar:>=6 m/retested ', [LastUp dateDate]= '2016-07-2 7 11:17:06 .000', [La stUpdateUs er]=' RED A CTED ' WHERE [B loodProduc tGuid]='ad fec4d7-3ff 2-4a52-ab0 0-98a1b058 db86' | |
| 9844 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLT AFR NaCit NMT 2C', [Last UpdateDate ]='2016-07 -27 11:17: 06.000', [ LastUpdate User]=' RED A CTED ' WHERE [B loodProduc tGuid]='3d 2ae287-986 d-4f2c-bcb 8-98b8ffeb 9f7c' | |
| 9845 | UPDATE [db o].[BloodP roduct] SE T [Product Name]='Aph eresis FRE SH FROZEN PLASMA|ACD -B/XX/<=-3 0C|Fin Con :NS|Aphr n ot automat ed|Quar:>= 6m/reteste d', [LastU pdateDate] ='2016-07- 27 11:17:0 6.000', [L astUpdateU ser]=' RED A CTED ' WHERE [B loodProduc tGuid]='fe 2a075e-22b 8-43e3-818 0-98cb926d 530c' | |
| 9846 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC AFR Deg None O PN IRD 1C' , [LastUpd ateDate]=' 2016-07-27 11:17:06. 000', [Las tUpdateUse r]=' RED A CTED ' WHERE [B loodProduc tGuid]='4a f80350-ff9 3-4349-892 4-98d8d4df b0af' | |
| 9847 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='FFP AFR None IRD 3 C', [LastU pdateDate] ='2016-07- 27 11:17:0 6.000', [L astUpdateU ser]=' RED A CTED ' WHERE [B loodProduc tGuid]='45 986b58-405 6-4b98-aa8 4-98da00a7 f643' | |
| 9848 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='FFP AFR Thaw ACD-A 2C', [Las tUpdateDat e]='2016-0 7-27 11:17 :06.000', [LastUpdat eUser]=' RED A CTED ' WHERE [B loodProduc tGuid]='18 d33287-f04 b-44fe-bd7 4-98efa0a8 2363' | |
| 9849 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLT AFR PAS-E IRD LUKOPR SUP Red 2C', [ LastUpdate Date]='201 6-07-27 11 :17:06.000 ', [LastUp dateUser]= ' RED A CTED ' WHERE [B loodProduc tGuid]='0d 5e2a34-4ea 0-4fe9-9e8 1-990e117d 5fb2' | |
| 9850 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLT AFR ACD-A LUKO PR PLS Red 1C', [Las tUpdateDat e]='2016-0 7-27 11:17 :06.000', [LastUpdat eUser]=' RED A CTED ' WHERE [B loodProduc tGuid]='bf f6119c-510 1-4521-b6e 3-991ea587 c579' | |
| 9851 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC CPDA -1 IRD 1C' , [LastUpd ateDate]=' 2016-07-27 11:17:06. 000', [Las tUpdateUse r]=' RED A CTED ' WHERE [B loodProduc tGuid]='69 c8ff5f-d3a 9-4aa1-81f 7-992a4399 21c5' | |
| 9852 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC AFR ACD-A>AS1 IRD LUKOPR 2C', [Las tUpdateDat e]='2016-0 7-27 11:17 :06.000', [LastUpdat eUser]=' RED A CTED ' WHERE [B loodProduc tGuid]='cc e4b601-7ed 7-4e99-af9 6-994b093b f582' | |
| 9853 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='FFP AFR Thaw None 8C', [Last UpdateDate ]='2016-07 -27 11:17: 06.000', [ LastUpdate User]=' RED A CTED ' WHERE [B loodProduc tGuid]='88 5ca279-cd9 4-4d74-9f8 6-995db84a 2915' | |
| 9854 | UPDATE [db o].[BloodP roduct] SE T [Product Name]='Aph eresis FRE SH FROZEN PLASMA|NaC itrate/XX/ <=-30C|Res Leu:<1E6|F rozen <=6h |2nd conta iner', [Pr oductShort Name]='FFP AFR Nacit LUKOPR 2C ', [LastUp dateDate]= '2016-07-2 7 11:17:06 .000', [La stUpdateUs er]=' RED A CTED ' WHERE [B loodProduc tGuid]='9f 860e7a-aec 2-4109-829 e-997807c2 b270' | |
| 9855 | UPDATE [db o].[BloodP roduct] SE T [Product Name]='POO LED FRESH FROZEN PLA SMA|CPD/XX /<=-25C|Fr ozen <=8h| 2 units|Ps oralen-tre ated', [Pr oductShort Name]='FFP Pool CPD 2U Psoraln ', [LastUp dateDate]= '2016-07-2 7 11:17:06 .000', [La stUpdateUs er]=' RED A CTED ' WHERE [B loodProduc tGuid]='45 620c60-a4b e-4191-a6a 4-99849882 2dbd' | |
| 9856 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC CPD IRD 8C', [ RetireDate ]='2015-04 -07 00:00: 00.000', [ LastUpdate Date]='201 6-07-27 11 :17:06.000 ', [LastUp dateUser]= ' RED A CTED ' WHERE [B loodProduc tGuid]='76 72774f-a89 6-4eb3-b51 e-9984ad07 29c4' | |
| 9857 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC CPD LUKOPR 2C' , [LastUpd ateDate]=' 2016-07-27 11:17:06. 000', [Las tUpdateUse r]=' RED A CTED ' WHERE [B loodProduc tGuid]='05 e3a4e2-cbf c-47e6-865 6-99abdbd7 fac5' | |
| 9858 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC CP2D IRD 3C', [LastUpdat eDate]='20 16-07-27 1 1:17:06.00 0', [LastU pdateUser] =' RED A CTED ' WHERE [B loodProduc tGuid]='e8 eea9eb-a99 3-4f75-a2f 7-99c4a949 606d' | |
| 9859 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='FFP AFR None IRD Q UAR 1C', [ LastUpdate Date]='201 6-07-27 11 :17:06.000 ', [LastUp dateUser]= ' RED A CTED ' WHERE [B loodProduc tGuid]='a0 6e3d0d-d70 9-49f3-b60 6-99c8b3c8 ebfc' | |
| 9860 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLT AFR Wash NS LU KOPR 1C', [LastUpdat eDate]='20 16-07-27 1 1:17:06.00 0', [LastU pdateUser] =' RED A CTED ' WHERE [B loodProduc tGuid]='fc eb5ad0-fd1 f-4cec-a78 f-99cd058d 80f6' | |
| 9861 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='FFP CPDA -1 IRD 1C QUAR', [La stUpdateDa te]='2016- 07-27 11:1 7:06.000', [LastUpda teUser]=' RED A CTED ' WHERE [B loodProduc tGuid]='39 1cfb8b-802 9-4784-9e0 6-99dcac90 dadf' | |
| 9862 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC CPD> AS1 IRD LU KOPR 3C', [LastUpdat eDate]='20 16-07-27 1 1:17:06.00 0', [LastU pdateUser] =' RED A CTED ' WHERE [B loodProduc tGuid]='83 abead1-0fe f-4b54-aa9 8-99e1456c 3d56' | |
| 9863 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLT AFR Thaw DMSO OPN LUKOPR PA 4C', [ LastUpdate Date]='201 6-07-27 11 :17:06.000 ', [LastUp dateUser]= ' RED A CTED ' WHERE [B loodProduc tGuid]='ea bd0dbd-e7c 6-4ae8-811 d-99e627be fa79' | |
| 9864 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='FFP AFR None IRD L UKOPR 6C', [LastUpda teDate]='2 016-07-27 11:17:06.0 00', [Last UpdateUser ]=' RED A CTED ' WHERE [B loodProduc tGuid]='fb 658605-d43 b-42b2-833 9-99e8373f 7457' | |
| 9865 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLT AFR NaCit OPN IRD LUKOPR 1CNA', [L astUpdateD ate]='2016 -07-27 11: 17:06.000' , [LastUpd ateUser]=' RED A CTED ' WHERE [B loodProduc tGuid]='91 4a3e43-f47 6-42f0-89b 7-99fe5455 7899' | |
| 9866 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLT AFR NS LUKOPR 3C', [Last UpdateDate ]='2016-07 -27 11:17: 06.000', [ LastUpdate User]=' RED A CTED ' WHERE [B loodProduc tGuid]='66 61db72-eaa a-4e90-b58 e-9a008532 f3d0' | |
| 9867 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC AFR Froz None OPN 5C', [ LastUpdate Date]='201 6-07-27 11 :17:06.000 ', [LastUp dateUser]= ' RED A CTED ' WHERE [B loodProduc tGuid]='61 36bc20-2cb 1-40ad-9b8 b-9a3771e6 c457' | |
| 9868 | UPDATE [db o].[BloodP roduct] SE T [Product Name]='Aph eresis FRE SH FROZEN PLASMA|ACD -A/XX/<=-6 5C|Irradia ted|Fin Co n:NS|Aphr not automa ted', [Las tUpdateDat e]='2016-0 7-27 11:17 :06.000', [LastUpdat eUser]=' RED A CTED ' WHERE [B loodProduc tGuid]='89 2f13be-e1e 3-4fee-ada 3-9a484fb9 9563' | |
| 9869 | UPDATE [db o].[BloodP roduct] SE T [Product Name]='Aph eresis FRE SH FROZEN PLASMA|CPD -50/XX/<=- 65C|Irradi ated|ResLe u:<1E6|Fro zen <=6h|2 nd contain er', [Prod uctShortNa me]='FFP A FR CPD-50 IRD LUKOPR 2C', [Las tUpdateDat e]='2016-0 7-27 11:17 :06.000', [LastUpdat eUser]=' RED A CTED ' WHERE [B loodProduc tGuid]='77 b2a2a3-a52 a-451e-81a f-9a54a02c 15f5' | |
| 9870 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='FFP AFR Thaw ACD-A 6C QUAR', [LastUpda teDate]='2 016-07-27 11:17:06.0 00', [Last UpdateUser ]=' RED A CTED ' WHERE [B loodProduc tGuid]='5c 41d5cf-9af 7-4552-9cc 5-9a779570 5c60' | |
| 9871 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='FFP AFR Thaw CP2D IRD 2C', [ LastUpdate Date]='201 6-07-27 11 :17:06.000 ', [LastUp dateUser]= ' RED A CTED ' WHERE [B loodProduc tGuid]='a0 4375ff-828 6-4c61-872 e-9a7bbe5e ad02' | |
| 9872 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLT AFR NS LUKOPR 1C', [Last UpdateDate ]='2016-07 -27 11:17: 06.000', [ LastUpdate User]=' RED A CTED ' WHERE [B loodProduc tGuid]='b1 d639ad-377 e-48f5-b48 2-9a81e55c 1d2c' | |
| 9873 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLT AFR Thaw DMSO OPN IRD LU KOPR 2CNA' , [LastUpd ateDate]=' 2016-07-27 11:17:06. 000', [Las tUpdateUse r]=' RED A CTED ' WHERE [B loodProduc tGuid]='c1 259dce-b46 5-4fbc-bd1 7-9a8d89ae 379b' | |
| 9874 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC AFR ACD-A>AS1 LUKOPR 8C' , [LastUpd ateDate]=' 2016-07-27 11:17:06. 000', [Las tUpdateUse r]=' RED A CTED ' WHERE [B loodProduc tGuid]='3a 72c686-ac0 d-4be2-99a 0-9aa1aa2f ca94' | |
| 9875 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLT AFR PAS-B IRD LUKOPR SUP Red 3C', [ LastUpdate Date]='201 6-07-27 11 :17:06.000 ', [LastUp dateUser]= ' RED A CTED ' WHERE [B loodProduc tGuid]='11 456e2d-bc9 4-48ef-971 0-9aa6fc98 7386' | |
| 9876 | UPDATE [db o].[BloodP roduct] SE T [Product Name]='Aph eresis FRE SH FROZEN PLASMA|NaC itrate/XX/ <=-30C|Res Leu:<1E6|F rozen <=6h ', [LastUp dateDate]= '2016-07-2 7 11:17:06 .000', [La stUpdateUs er]=' RED A CTED ' WHERE [B loodProduc tGuid]='83 24707b-3f2 a-4dd9-8db 8-9ab0288c d2eb' | |
| 9877 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLT AFR Thaw DMSO OPN IRD LU KOPR SR/PA 1C', [Las tUpdateDat e]='2016-0 7-27 11:17 :06.000', [LastUpdat eUser]=' RED A CTED ' WHERE [B loodProduc tGuid]='c4 7c7cc2-6c6 b-4366-860 c-9ac0b297 e208' | |
| 9878 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLT AFR ACD-A IRD LUKOPR 2C BacMtr', [ LastUpdate Date]='201 6-07-27 11 :17:06.000 ', [LastUp dateUser]= ' RED A CTED ' WHERE [B loodProduc tGuid]='26 84fb93-d4d a-4dd1-b96 4-9aca6488 9a08' | |
| 9879 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC AFR CPDA-1 OPN LUKOPR 2C ', [LastUp dateDate]= '2016-07-2 7 11:17:06 .000', [La stUpdateUs er]=' RED A CTED ' WHERE [B loodProduc tGuid]='c0 454595-7f6 0-4d4d-932 f-9ad67702 60f0' | |
| 9880 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC AFR Deg None O PN IRD LUK OPR 2C', [ LastUpdate Date]='201 6-07-27 11 :17:06.000 ', [LastUp dateUser]= ' RED A CTED ' WHERE [B loodProduc tGuid]='00 294712-bbc a-4b76-b92 9-9adff9c5 e09c' | |
| 9881 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLT AFR PAS-C IRD LUKOPR 3C' , [LastUpd ateDate]=' 2016-07-27 11:17:06. 000', [Las tUpdateUse r]=' RED A CTED ' WHERE [B loodProduc tGuid]='b8 e990a0-5dc 8-491d-bd0 a-9ae97d79 6ecf' | |
| 9882 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC AFR CPDA-1 LUK OPR 2C', [ LastUpdate Date]='201 6-07-27 11 :17:06.000 ', [LastUp dateUser]= ' RED A CTED ' WHERE [B loodProduc tGuid]='91 a0996a-00a 3-4c36-a8e d-9aeb06b7 1bf9' | |
| 9883 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='FFP None 6C', [Las tUpdateDat e]='2016-0 7-27 11:17 :06.000', [LastUpdat eUser]=' RED A CTED ' WHERE [B loodProduc tGuid]='70 941920-184 0-47e3-bca 9-9b0015fa 48b4' | |
| 9884 | UPDATE [db o].[BloodP roduct] SE T [Product Name]='Aph eresis FRE SH FROZEN PLASMA|ACD -A/XX/<=-3 0C|>=600mL |Frozen <= 6h|2nd con tainer', [ ProductSho rtName]='F FP AFR ACD -A LrgVol 2C', [Last UpdateDate ]='2016-07 -27 11:17: 06.000', [ LastUpdate User]=' RED A CTED ' WHERE [B loodProduc tGuid]='4e 614a0d-a04 5-4676-903 7-9b05f295 a889' | |
| 9885 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLT AFR Wash None OPN IRD LU KOPR 2C', [LastUpdat eDate]='20 16-07-27 1 1:17:06.00 0', [LastU pdateUser] =' RED A CTED ' WHERE [B loodProduc tGuid]='ba cad020-140 8-47c8-924 5-9b076d76 6837' | |
| 9886 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC Rej None OPN 2 C', [LastU pdateDate] ='2016-07- 27 11:17:0 6.000', [L astUpdateU ser]=' RED A CTED ' WHERE [B loodProduc tGuid]='b8 a7dd93-c92 9-4a0a-b00 8-9b1175bf ab92' | |
| 9887 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC AFR ACD-A>AS1 IRD 3C', [ LastUpdate Date]='201 6-07-27 11 :17:06.000 ', [LastUp dateUser]= ' RED A CTED ' WHERE [B loodProduc tGuid]='a6 50709f-8e8 1-4c01-a8f b-9b240768 a8d9' | |
| 9888 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLT AFR ACD-A IRD LUKOPR 1C BacTest', [LastUpdat eDate]='20 16-07-27 1 1:17:06.00 0', [LastU pdateUser] =' RED A CTED ' WHERE [B loodProduc tGuid]='53 7aa016-e77 a-456f-ba6 5-9b2d90bb 8319' | |
| 9889 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC AFR Deg Rej No ne OPN IRD LUKOPR 1C ', [LastUp dateDate]= '2016-07-2 7 11:17:06 .000', [La stUpdateUs er]=' RED A CTED ' WHERE [B loodProduc tGuid]='cb 42e861-2d7 a-4d1e-8ab 2-9b525dce 1d42' | |
| 9890 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLT AFR ACD-A NMT 1C', [Last UpdateDate ]='2016-07 -27 11:17: 06.000', [ LastUpdate User]=' RED A CTED ' WHERE [B loodProduc tGuid]='b5 06bdf6-142 f-4eaf-803 d-9b5386b3 8075' | |
| 9891 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC AFR ACD-A>AS3 NMT LUKOPR 1C', [Las tUpdateDat e]='2016-0 7-27 11:17 :06.000', [LastUpdat eUser]=' RED A CTED ' WHERE [B loodProduc tGuid]='bc 420f7c-0ee 2-4a76-ba2 d-9b718dc5 04e8' | |
| 9892 | UPDATE [db o].[BloodP roduct] SE T [Product Name]='POO LED PLASMA |CPD/450mL /<=-30C|Fo r mnf:inje ctable|Fro zen <=24h| 2 units', [ProductSh ortName]=' PLASMA Poo l CPD MNFI 2U', [Las tUpdateDat e]='2016-0 7-27 11:17 :06.000', [LastUpdat eUser]=' RED A CTED ' WHERE [B loodProduc tGuid]='27 c89c82-0f5 3-4633-a32 b-9b9a8cd8 bf06' | |
| 9893 | UPDATE [db o].[BloodP roduct] SE T [Product Name]='Fro zen POOLED SERUM|Non e/450mL/<= -30C|For m nf:injecta ble|Frozen >24h|3 un its', [Pro ductShortN ame]='SERU M Pool Fro z None MNF I 3U', [La stUpdateDa te]='2016- 07-27 11:1 7:06.000', [LastUpda teUser]=' RED A CTED ' WHERE [B loodProduc tGuid]='3f 873c3a-e47 7-486d-994 1-9bb21341 7186' | |
| 9894 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLT AFR ACD-B MNFN I 4C', [La stUpdateDa te]='2016- 07-27 11:1 7:06.000', [LastUpda teUser]=' RED A CTED ' WHERE [B loodProduc tGuid]='9e e8a2a1-8a8 4-472f-99d 5-9bb74c7a db1e' | |
| 9895 | UPDATE [db o].[BloodP roduct] SE T [Product Name]='Aph eresis FRE SH FROZEN PLASMA|NaC itrate/XX/ <=-65C|Irr adiated|Ap hr not aut omated|Qua r:>=6m/ret ested', [L astUpdateD ate]='2016 -07-27 11: 17:06.000' , [LastUpd ateUser]=' RED A CTED ' WHERE [B loodProduc tGuid]='45 7d67fc-320 4-4f1c-a84 2-9bbde0aa 2536' | |
| 9896 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLT AFR PAS-D IRD LUKOPR 1C BacMtr', [ LastUpdate Date]='201 6-07-27 11 :17:06.000 ', [LastUp dateUser]= ' RED A CTED ' WHERE [B loodProduc tGuid]='79 e068c7-4fb 7-48b1-b6b e-9bd7815b 6799' | |
| 9897 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC AFR CP2D>AS3 O PN IRD LUK OPR PA 1C' , [LastUpd ateDate]=' 2016-07-27 11:17:06. 000', [Las tUpdateUse r]=' RED A CTED ' WHERE [B loodProduc tGuid]='7d 12a058-15a 1-4eca-a42 1-9be40c5b 3bf7' | |
| 9898 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC AFR ACD-A>AS1 MNFI LUKOP R 1C', [La stUpdateDa te]='2016- 07-27 11:1 7:06.000', [LastUpda teUser]=' RED A CTED ' WHERE [B loodProduc tGuid]='d0 c40b8e-1ee 8-460f-b5c a-9be7e334 5f7e' | |
| 9899 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLASMA A FR Thaw No ne IRD 7C' , [LastUpd ateDate]=' 2016-07-27 11:17:06. 000', [Las tUpdateUse r]=' RED A CTED ' WHERE [B loodProduc tGuid]='91 979c3d-de8 6-4a4b-ad6 2-9c21bf24 a6c4' | |
| 9900 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='FFP AFR None IRD L UKOPR 1C', [LastUpda teDate]='2 016-07-27 11:17:06.0 00', [Last UpdateUser ]=' RED A CTED ' WHERE [B loodProduc tGuid]='5b a43481-faa 2-4295-aeb c-9c32d361 2356' | |
| 9901 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC AFR ACD-A>AS3 LUKOPR 7C' , [LastUpd ateDate]=' 2016-07-27 11:17:06. 000', [Las tUpdateUse r]=' RED A CTED ' WHERE [B loodProduc tGuid]='14 8416c2-9fd 2-4680-a1f c-9c6ae73e 1fff' | |
| 9902 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC Froz Rej Gly40 % OPN 1C', [LastUpda teDate]='2 016-07-27 11:17:06.0 00', [Last UpdateUser ]=' RED A CTED ' WHERE [B loodProduc tGuid]='50 191f0c-f40 7-4a62-887 2-9c6bfa8d 2920' | |
| 9903 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='WB CPD 3 C', [LastU pdateDate] ='2016-07- 27 11:17:0 6.000', [L astUpdateU ser]=' RED A CTED ' WHERE [B loodProduc tGuid]='22 83e002-833 4-4afd-a51 6-9c6fae33 4462' | |
| 9904 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC AFR ACD-A>AS1 2C', [Last UpdateDate ]='2016-07 -27 11:17: 06.000', [ LastUpdate User]=' RED A CTED ' WHERE [B loodProduc tGuid]='d1 2586a4-43b 0-4c96-925 2-9c824b40 a42f' | |
| 9905 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLT AFR NS IRD LUK OPR PLS Re d 2C', [La stUpdateDa te]='2016- 07-27 11:1 7:06.000', [LastUpda teUser]=' RED A CTED ' WHERE [B loodProduc tGuid]='d0 d11abe-dae 2-416f-9d9 5-9c866221 b984' | |
| 9906 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLT AFR NaCit 1C', [LastUpda teDate]='2 016-07-27 11:17:06.0 00', [Last UpdateUser ]=' RED A CTED ' WHERE [B loodProduc tGuid]='41 27fba0-5ab d-41ec-bd8 9-9c903a3a ed4c' | |
| 9907 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLT AFR ACD-A OPN PLS Red 2C ', [LastUp dateDate]= '2016-07-2 7 11:17:06 .000', [La stUpdateUs er]=' RED A CTED ' WHERE [B loodProduc tGuid]='a6 d37884-099 3-4ed6-8f3 d-9c93c57d 8928' | |
| 9908 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='FFP AFR None IRD 2 C', [LastU pdateDate] ='2016-07- 27 11:17:0 6.000', [L astUpdateU ser]=' RED A CTED ' WHERE [B loodProduc tGuid]='43 27948c-7ed e-48b3-9e5 f-9c9cb7d0 7d91' | |
| 9909 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLT AFR ACD-A IRD 2C BacMtr' , [LastUpd ateDate]=' 2016-07-27 11:17:06. 000', [Las tUpdateUse r]=' RED A CTED ' WHERE [B loodProduc tGuid]='b6 20aec8-91f c-421c-a77 b-9cace8dc 0695' | |
| 9910 | UPDATE [db o].[BloodP roduct] SE T [Product Name]='PLA SMA|CPDA-1 /XX/<=-25C |Cryo redu ced|Ribofl avin-treat ed', [Last UpdateDate ]='2016-07 -27 11:17: 06.000', [ LastUpdate User]=' RED A CTED ' WHERE [B loodProduc tGuid]='9d 53843b-607 8-4c90-b8c 7-9cad16cb 80b2' | |
| 9911 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC AFR Wash None OPN IRD 1C ', [LastUp dateDate]= '2016-07-2 7 11:17:06 .000', [La stUpdateUs er]=' RED A CTED ' WHERE [B loodProduc tGuid]='b1 5a68db-ba7 a-4feb-bcd 8-9cd29f86 c76c' | |
| 9912 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC AFR CP2D>AS3 I RD LUKOPR SR 2C', [L astUpdateD ate]='2016 -07-27 11: 17:06.000' , [LastUpd ateUser]=' RED A CTED ' WHERE [B loodProduc tGuid]='18 ba6405-7cf f-4c6d-998 b-9cd2e6fb 5832' | |
| 9913 | UPDATE [db o].[BloodP roduct] SE T [Product Name]='Fro zen Rejuve nated RED BLOOD CELL S|None/250 mL/<=-65C| Open|Irrad iated', [L astUpdateD ate]='2016 -07-27 11: 17:06.000' , [LastUpd ateUser]=' RED A CTED ' WHERE [B loodProduc tGuid]='ed 93a3ce-7fb e-4f7d-95b 7-9ce04d60 fb0d' | |
| 9914 | UPDATE [db o].[BloodP roduct] SE T [Product Name]='Aph eresis FRE SH FROZEN PLASMA|ACD -B/XX/<=-2 5C|>=200mL <400mL|Qua r:>=6m/ret ested', [L astUpdateD ate]='2016 -07-27 11: 17:06.000' , [LastUpd ateUser]=' RED A CTED ' WHERE [B loodProduc tGuid]='22 05992d-bf3 4-4a39-a2c 2-9cea4020 8856' | |
| 9915 | UPDATE [db o].[BloodP roduct] SE T [Product Name]='Aph eresis FRE SH FROZEN PLASMA|ACD -B/XX/<=-3 0C|Aphr no t automate d|Quar:>=6 m/retested ', [LastUp dateDate]= '2016-07-2 7 11:17:06 .000', [La stUpdateUs er]=' RED A CTED ' WHERE [B loodProduc tGuid]='46 0dff6a-bc8 4-47c8-bec 3-9d193bc3 3941' | |
| 9916 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC AFR Deg None O PN LUKOPR 5C', [Last UpdateDate ]='2016-07 -27 11:17: 06.000', [ LastUpdate User]=' RED A CTED ' WHERE [B loodProduc tGuid]='e6 7bd78a-b40 7-41a7-ad0 0-9d2b820a 6ca0' | |
| 9917 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC AFR CPDA-1 OPN LUKOPR 1C ', [LastUp dateDate]= '2016-07-2 7 11:17:06 .000', [La stUpdateUs er]=' RED A CTED ' WHERE [B loodProduc tGuid]='6f ccc55f-361 4-4a05-926 c-9d340676 9828' | |
| 9918 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC AFR Deg Rej No ne OPN LUK OPR 2C', [ LastUpdate Date]='201 6-07-27 11 :17:06.000 ', [LastUp dateUser]= ' RED A CTED ' WHERE [B loodProduc tGuid]='6a 4c5a10-94b 4-4014-bb1 3-9d43be8e 6432' | |
| 9919 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC CPD> AS1 LUKOPR 8C', [Las tUpdateDat e]='2016-0 7-27 11:17 :06.000', [LastUpdat eUser]=' RED A CTED ' WHERE [B loodProduc tGuid]='80 ec1b75-a12 e-46fc-81a 1-9d585a73 7a03' | |
| 9920 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLASMA A FR ACD-A I RD 4C', [L astUpdateD ate]='2016 -07-27 11: 17:06.000' , [LastUpd ateUser]=' RED A CTED ' WHERE [B loodProduc tGuid]='13 aa43d0-c0b 9-480e-aaa 2-9d63aecb 0ba1' | |
| 9921 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='WB CPDA- 1 4C', [La stUpdateDa te]='2016- 07-27 11:1 7:06.000', [LastUpda teUser]=' RED A CTED ' WHERE [B loodProduc tGuid]='bd 612e6a-a21 d-43b0-9ee 3-9d68cd37 4a0e' | |
| 9922 | UPDATE [db o].[BloodP roduct] SE T [Product Name]='FRE SH FROZEN PLASMA|CP2 D/XX/<=-65 C|Irradiat ed', [Last UpdateDate ]='2016-07 -27 11:17: 06.000', [ LastUpdate User]=' RED A CTED ' WHERE [B loodProduc tGuid]='d5 52aae7-279 c-41ff-a33 5-9d745cba 2393' | |
| 9923 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC Froz None OPN IRD LUKOPR 6C', [Las tUpdateDat e]='2016-0 7-27 11:17 :06.000', [LastUpdat eUser]=' RED A CTED ' WHERE [B loodProduc tGuid]='52 0ca0a9-409 7-459c-a2f 9-9d808ca8 a300' | |
| 9924 | UPDATE [db o].[BloodP roduct] SE T [Product Name]='Aph eresis FRE SH FROZEN PLASMA|NaC itrate/XX/ <=-65C|Not for tx or mnf|Fin C on:NS', [L astUpdateD ate]='2016 -07-27 11: 17:06.000' , [LastUpd ateUser]=' RED A CTED ' WHERE [B loodProduc tGuid]='9d 3bf5c1-d4d 6-44a8-ac8 3-9d998c8a 07c8' | |
| 9925 | UPDATE [db o].[BloodP roduct] SE T [Product Name]='Fro zen POOLED PLATELETS |DMSO/XX/< =-80C|ResL eu:<1E6|Bu ffy coat p lts prep|6 units', [ LastUpdate Date]='201 6-07-27 11 :17:06.000 ', [LastUp dateUser]= ' RED A CTED ' WHERE [B loodProduc tGuid]='ca 211458-ed8 f-4c39-a52 6-9e0997ff fa12' | |
| 9926 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC AFR Wash SAGM IRD LUKOPR 2C', [Las tUpdateDat e]='2016-0 7-27 11:17 :06.000', [LastUpdat eUser]=' RED A CTED ' WHERE [B loodProduc tGuid]='5c 00703a-9da 6-4eb6-86f b-9e09e447 31a6' | |
| 9927 | UPDATE [db o].[BloodP roduct] SE T [Product Name]='FRE SH FROZEN PLASMA|CPD /XX/<=-65C |Irradiate d|1st cont ainer', [P roductShor tName]='FF P CPD IRD 1C', [Last UpdateDate ]='2016-07 -27 11:17: 06.000', [ LastUpdate User]=' RED A CTED ' WHERE [B loodProduc tGuid]='2b 5e5236-3fa c-46ac-a1e 4-9e1406aa 93e8' | |
| 9928 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC AFR ACD-A>AS1 OPN LUKOPR SAL Add 2 C', [LastU pdateDate] ='2016-07- 27 11:17:0 6.000', [L astUpdateU ser]=' RED A CTED ' WHERE [B loodProduc tGuid]='78 cfdad1-421 f-4642-942 5-9e1d625d c4ab' | |
| 9929 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='WB CPDA- 1 IRD 4C', [LastUpda teDate]='2 016-07-27 11:17:06.0 00', [Last UpdateUser ]=' RED A CTED ' WHERE [B loodProduc tGuid]='b3 60929c-034 5-400d-938 f-9e28d5ae 2674' | |
| 9930 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC CPDA -1 IRD LUK OPR 2C', [ LastUpdate Date]='201 6-07-27 11 :17:06.000 ', [LastUp dateUser]= ' RED A CTED ' WHERE [B loodProduc tGuid]='da 8ed84b-354 a-4756-9e2 6-9e34628c 0451' | |
| 9931 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC AFR Froz None OPN 7C', [ LastUpdate Date]='201 6-07-27 11 :17:06.000 ', [LastUp dateUser]= ' RED A CTED ' WHERE [B loodProduc tGuid]='5e 2d5f93-c95 5-4375-b3e b-9e3d7f90 457d' | |
| 9932 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLT AFR ACD-B NMT OPN 2CNA', [LastUpda teDate]='2 016-07-27 11:17:06.0 00', [Last UpdateUser ]=' RED A CTED ' WHERE [B loodProduc tGuid]='10 da8778-8eb 6-4679-a5f 4-9e41d341 ce50' | |
| 9933 | UPDATE [db o].[BloodP roduct] SE T [Product Name]='Aph eresis FRE SH FROZEN PLASMA|ACD -B/XX/<=-3 0C|Not for tx or mnf |Fin Con:N S|Aphr not automated ', [LastUp dateDate]= '2016-07-2 7 11:17:06 .000', [La stUpdateUs er]=' RED A CTED ' WHERE [B loodProduc tGuid]='2d 28426c-5ba c-4a17-91d 2-9e466ec4 22e8' | |
| 9934 | UPDATE [db o].[BloodP roduct] SE T [Product Name]='FRE SH FROZEN PLASMA|CPD /XX/<=-65C |Irradiate d|3rd cont ainer|Quar :>=112d/re tested', [ ProductSho rtName]='F FP CPD IRD 3C QUAR', [LastUpda teDate]='2 016-07-27 11:17:06.0 00', [Last UpdateUser ]=' RED A CTED ' WHERE [B loodProduc tGuid]='25 2632de-877 c-4991-80e d-9e628d42 109d' | |
| 9935 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLT AFR ACD-B LUKO PR PLS Red 1C', [Las tUpdateDat e]='2016-0 7-27 11:17 :06.000', [LastUpdat eUser]=' RED A CTED ' WHERE [B loodProduc tGuid]='91 92654c-b7b a-49b8-b4c 0-9e761581 8517' | |
| 9936 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLT AFR ACD-A IRD LUKOPR 2CN A', [LastU pdateDate] ='2016-07- 27 11:17:0 6.000', [L astUpdateU ser]=' RED A CTED ' WHERE [B loodProduc tGuid]='8e bc8eef-3a8 4-4500-ab4 e-9e766ac8 cef1' | |
| 9937 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLT AFR ACD-B NMT OPN 2C', [ LastUpdate Date]='201 6-07-27 11 :17:06.000 ', [LastUp dateUser]= ' RED A CTED ' WHERE [B loodProduc tGuid]='ce 5a28f4-b65 8-4828-a2b 5-9ea0db3f 2121' | |
| 9938 | UPDATE [db o].[BloodP roduct] SE T [Product Name]='FRE SH FROZEN PLASMA|CPD /450mL/<=- 30C|Irradi ated|ResLe u:<1E6|Fro zen <=6h', [LastUpda teDate]='2 016-07-27 11:17:06.0 00', [Last UpdateUser ]=' RED A CTED ' WHERE [B loodProduc tGuid]='8e a1325c-f48 8-43d3-99c 8-9ea9f230 d4ec' | |
| 9939 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC AFR ACD-A>AS1 IRD 1C', [ LastUpdate Date]='201 6-07-27 11 :17:06.000 ', [LastUp dateUser]= ' RED A CTED ' WHERE [B loodProduc tGuid]='30 027d0c-5c7 b-4c48-9e8 8-9eb00e2e 891c' | |
| 9940 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC AFR CPDA-1 IRD LUKOPR 1C ', [LastUp dateDate]= '2016-07-2 7 11:17:06 .000', [La stUpdateUs er]=' RED A CTED ' WHERE [B loodProduc tGuid]='9b aa87d3-e38 c-4cdb-873 c-9eb3fccd 6711' | |
| 9941 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLT AFR Thaw DMSO OPN IRD LU KOPR 3C', [LastUpdat eDate]='20 16-07-27 1 1:17:06.00 0', [LastU pdateUser] =' RED A CTED ' WHERE [B loodProduc tGuid]='e7 62d43d-68a f-40c8-b2e 0-9ebaeb97 291a' | |
| 9942 | UPDATE [db o].[BloodP roduct] SE T [Product Name]='Aph eresis FRE SH FROZEN PLASMA|ACD -A/XX/<=-6 5C|1st con tainer|Qua r:>=112d/r etested', [ProductSh ortName]=' FFP AFR AC D-A 1C QUA R', [LastU pdateDate] ='2016-07- 27 11:17:0 6.000', [L astUpdateU ser]=' RED A CTED ' WHERE [B loodProduc tGuid]='73 d64176-4eb e-4041-bab b-9ebd2712 7a90' | |
| 9943 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC CPD> AS1 3C', [ LastUpdate Date]='201 6-07-27 11 :17:06.000 ', [LastUp dateUser]= ' RED A CTED ' WHERE [B loodProduc tGuid]='f3 45b024-f12 3-4344-b4b f-9ebef5da a5d1' | |
| 9944 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC AFR Wash None OPN IRD LU KOPR 2C', [LastUpdat eDate]='20 16-07-27 1 1:17:06.00 0', [LastU pdateUser] =' RED A CTED ' WHERE [B loodProduc tGuid]='e6 29fb11-5e8 e-4db9-8a0 2-9ec4ae21 d564' | |
| 9945 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLT AFR Wash None OPN IRD 3C ', [LastUp dateDate]= '2016-07-2 7 11:17:06 .000', [La stUpdateUs er]=' RED A CTED ' WHERE [B loodProduc tGuid]='36 456102-552 9-42ee-956 0-9ec617e7 34b7' | |
| 9946 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLT AFR ACD-B OPN IRD LUKOPR 4C', [Las tUpdateDat e]='2016-0 7-27 11:17 :06.000', [LastUpdat eUser]=' RED A CTED ' WHERE [B loodProduc tGuid]='d3 209577-908 2-4047-8f6 5-9ecd4493 389b' | |
| 9947 | UPDATE [db o].[BloodP roduct] SE T [Product Name]='Aph eresis FRE SH FROZEN PLASMA|CPD -50/XX/<=- 25C', [Las tUpdateDat e]='2016-0 7-27 11:17 :06.000', [LastUpdat eUser]=' RED A CTED ' WHERE [B loodProduc tGuid]='9e 0339f4-2c0 e-4b6d-a0a d-9ee1ce96 5d7c' | |
| 9948 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLASMA A FR Thaw Na Cit IRD 3C ', [LastUp dateDate]= '2016-07-2 7 11:17:06 .000', [La stUpdateUs er]=' RED A CTED ' WHERE [B loodProduc tGuid]='11 39dff5-8d7 4-472f-a47 e-9f14dc15 6e2d' | |
| 9949 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC CPD IRD LUKOPR 2C', [Ret ireDate]=' 2015-04-07 00:00:00. 000', [Las tUpdateDat e]='2016-0 7-27 11:17 :06.000', [LastUpdat eUser]=' RED A CTED ' WHERE [B loodProduc tGuid]='7b 91422e-8aa d-4d75-87d 6-9f16ed33 51e5' | |
| 9950 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC AFR CPDA-1 1C' , [LastUpd ateDate]=' 2016-07-27 11:17:06. 000', [Las tUpdateUse r]=' RED A CTED ' WHERE [B loodProduc tGuid]='6f ca4b5b-51a 5-406f-8a3 d-9f385367 7bdd' | |
| 9951 | UPDATE [db o].[BloodP roduct] SE T [Product Name]='Fro zen Aphere sis PLATEL ETS|DMSO/X X/<=-65C|O pen|Aphr n ot automat ed', [Last UpdateDate ]='2016-07 -27 11:17: 06.000', [ LastUpdate User]=' RED A CTED ' WHERE [B loodProduc tGuid]='66 1ffb72-a75 a-40e2-996 7-9f60441e da70' | |
| 9952 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLT AFR ACD-B OPN PLS Red 4C ', [LastUp dateDate]= '2016-07-2 7 11:17:06 .000', [La stUpdateUs er]=' RED A CTED ' WHERE [B loodProduc tGuid]='c6 848424-8c1 3-408c-bbe 4-9f63cbf0 eb3f' | |
| 9953 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLT AFR NaCit OPN LUKOPR PLS Red 2CNA' , [LastUpd ateDate]=' 2016-07-27 11:17:06. 000', [Las tUpdateUse r]=' RED A CTED ' WHERE [B loodProduc tGuid]='01 692e74-b54 1-491a-934 2-9f705612 cddf' | |
| 9954 | UPDATE [db o].[BloodP roduct] SE T [Product Name]='FRE SH FROZEN PLASMA|CPD /450mL/<=- 25C|Frozen <=18h', [ LastUpdate Date]='201 6-07-27 11 :17:06.000 ', [LastUp dateUser]= ' RED A CTED ' WHERE [B loodProduc tGuid]='70 f44788-8d5 6-4c68-8f4 b-9f89a0f8 154f' | |
| 9955 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC AFR CPDA-1 6C' , [LastUpd ateDate]=' 2016-07-27 11:17:06. 000', [Las tUpdateUse r]=' RED A CTED ' WHERE [B loodProduc tGuid]='88 e0535f-fe7 7-4e9e-9a3 0-9f946f56 082b' | |
| 9956 | UPDATE [db o].[BloodP roduct] SE T [RetireD ate]='2014 -10-20 00: 00:00.000' , [LastUpd ateDate]=' 2016-07-27 11:17:06. 000', [Las tUpdateUse r]=' RED A CTED ' WHERE [B loodProduc tGuid]='18 e1eace-da5 c-41ac-a90 1-9f9dab65 89d6' | |
| 9957 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC AFR ACD-A MNFN I OPN 2C', [LastUpda teDate]='2 016-07-27 11:17:06.0 00', [Last UpdateUser ]=' RED A CTED ' WHERE [B loodProduc tGuid]='f1 7f9a5a-e3c 6-4041-a99 b-9f9dfcdb bed6' | |
| 9958 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC Froz None OPN IRD 8C', [ LastUpdate Date]='201 6-07-27 11 :17:06.000 ', [LastUp dateUser]= ' RED A CTED ' WHERE [B loodProduc tGuid]='1f 76a1a6-aa6 7-400f-a53 2-9fadb30f 2584' | |
| 9959 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='FFP AFR ACD-A IRD 5C', [Last UpdateDate ]='2016-07 -27 11:17: 06.000', [ LastUpdate User]=' RED A CTED ' WHERE [B loodProduc tGuid]='38 525c45-600 b-4384-a73 0-9fbb3e20 0a50' | |
| 9960 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC CPD IRD LUKOPR 7C', [Ret ireDate]=' 2015-04-07 00:00:00. 000', [Las tUpdateDat e]='2016-0 7-27 11:17 :06.000', [LastUpdat eUser]=' RED A CTED ' WHERE [B loodProduc tGuid]='e6 4a1a55-100 f-443a-bc5 b-9fbc0a50 2f5d' | |
| 9961 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC Froz Rej None OPN IRD 7C ', [LastUp dateDate]= '2016-07-2 7 11:17:06 .000', [La stUpdateUs er]=' RED A CTED ' WHERE [B loodProduc tGuid]='0f 9fed78-cb0 6-48d7-b4d 4-9fe42a96 ab49' | |
| 9962 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='FFP CPD IRD 1C', [ LastUpdate Date]='201 6-07-27 11 :17:06.000 ', [LastUp dateUser]= ' RED A CTED ' WHERE [B loodProduc tGuid]='27 e0f56a-047 4-4547-bab b-9fec5d58 7733' | |
| 9963 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='FFP None 3C', [Las tUpdateDat e]='2016-0 7-27 11:17 :06.000', [LastUpdat eUser]=' RED A CTED ' WHERE [B loodProduc tGuid]='59 049522-c06 6-4e02-b9f a-9ffa8a1f 3cf2' | |
| 9964 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLT AFR Froz DMSO 2C', [Last UpdateDate ]='2016-07 -27 11:17: 06.000', [ LastUpdate User]=' RED A CTED ' WHERE [B loodProduc tGuid]='54 52e337-99a a-4609-aff 2-a00091c9 cfa6' | |
| 9965 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC AFR CP2D IRD 2 C', [LastU pdateDate] ='2016-07- 27 11:17:0 6.000', [L astUpdateU ser]=' RED A CTED ' WHERE [B loodProduc tGuid]='9a 9e43ac-eea 5-4169-b88 e-a0120828 7e12' | |
| 9966 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC CPD> AS5 IRD LU KOPR 4C', [LastUpdat eDate]='20 16-07-27 1 1:17:06.00 0', [LastU pdateUser] =' RED A CTED ' WHERE [B loodProduc tGuid]='a2 fffa5b-989 2-4af4-b27 9-a0194b2a 1477' | |
| 9967 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC AFR Deg None O PN PA 1C', [LastUpda teDate]='2 016-07-27 11:17:06.0 00', [Last UpdateUser ]=' RED A CTED ' WHERE [B loodProduc tGuid]='85 e81f6e-72e c-4628-a3f 0-a0195f43 bb82' | |
| 9968 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC AFR Wash None OPN IRD 2C ', [LastUp dateDate]= '2016-07-2 7 11:17:06 .000', [La stUpdateUs er]=' RED A CTED ' WHERE [B loodProduc tGuid]='5a 4d3905-f38 4-480c-992 5-a0211303 fddb' | |
| 9969 | UPDATE [db o].[BloodP roduct] SE T [Product Name]='Aph eresis FRE SH FROZEN PLASMA|ACD -B/XX/<=-3 0C|Irradia ted|Fin Co n:NS', [La stUpdateDa te]='2016- 07-27 11:1 7:06.000', [LastUpda teUser]=' RED A CTED ' WHERE [B loodProduc tGuid]='4f e0416f-30b 1-49fa-a9f f-a0272f74 48d6' | |
| 9970 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLT AFR Wash None LUKOPR 3C' , [LastUpd ateDate]=' 2016-07-27 11:17:06. 000', [Las tUpdateUse r]=' RED A CTED ' WHERE [B loodProduc tGuid]='ab 81fbdd-3f1 a-40a2-a5d a-a0278628 7b46' | |
| 9971 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='FFP AFR Thaw ACD-A LUKOPR 3C ', [LastUp dateDate]= '2016-07-2 7 11:17:06 .000', [La stUpdateUs er]=' RED A CTED ' WHERE [B loodProduc tGuid]='24 0a0d07-853 5-4f6b-8ed 6-a0390ba3 f621' | |
| 9972 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC Deg None LUKOP R 4C', [La stUpdateDa te]='2016- 07-27 11:1 7:06.000', [LastUpda teUser]=' RED A CTED ' WHERE [B loodProduc tGuid]='2a 1e1f39-2c4 3-42e3-94b d-a03f40e3 ae89' | |
| 9973 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC CP2D >AS3 IRD L UKOPR 6C', [LastUpda teDate]='2 016-07-27 11:17:06.0 00', [Last UpdateUser ]=' RED A CTED ' WHERE [B loodProduc tGuid]='bb 4f717a-d9b 8-45c0-97a 7-a041fce9 8313' | |
| 9974 | UPDATE [db o].[BloodP roduct] SE T [Product Name]='CRY OPRECIPITA TE|CPD/450 mL/<=-30C' , [LastUpd ateDate]=' 2016-07-27 11:17:06. 000', [Las tUpdateUse r]=' RED A CTED ' WHERE [B loodProduc tGuid]='ca 50f8ed-ee4 a-4928-b7d 1-a0539199 c5a7' | |
| 9975 | UPDATE [db o].[BloodP roduct] SE T [Product Name]='Fro zen RED BL OOD CELLS| Gly40%/XX/ <=-65C|Irr adiated|Re sLeu:<1E6' , [LastUpd ateDate]=' 2016-07-27 11:17:06. 000', [Las tUpdateUse r]=' RED A CTED ' WHERE [B loodProduc tGuid]='85 d2152a-ff1 5-4d38-a5c 4-a0592d7b 10c6' | |
| 9976 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLT AFR Thaw DMSO OPN IRD LU KOPR 1C', [LastUpdat eDate]='20 16-07-27 1 1:17:06.00 0', [LastU pdateUser] =' RED A CTED ' WHERE [B loodProduc tGuid]='98 e16a74-25f 4-4d56-8ff e-a070ad97 8876' | |
| 9977 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='FFP None 7C', [Las tUpdateDat e]='2016-0 7-27 11:17 :06.000', [LastUpdat eUser]=' RED A CTED ' WHERE [B loodProduc tGuid]='e5 32287f-1c5 d-4749-8eb 0-a07e9df9 9304' | |
| 9978 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC AFR ACD-A>AS3 IRD 2C', [ LastUpdate Date]='201 6-07-27 11 :17:06.000 ', [LastUp dateUser]= ' RED A CTED ' WHERE [B loodProduc tGuid]='4b 03c7ac-15e b-4215-bad 3-a08b7b6e 4380' | |
| 9979 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC CP2D IRD LUKOP R 3C', [La stUpdateDa te]='2016- 07-27 11:1 7:06.000', [LastUpda teUser]=' RED A CTED ' WHERE [B loodProduc tGuid]='f8 fb625f-0fd b-4551-8bf 7-a0914472 8f3f' | |
| 9980 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLT AFR ACD-A 3C', [LastUpda teDate]='2 016-07-27 11:17:06.0 00', [Last UpdateUser ]=' RED A CTED ' WHERE [B loodProduc tGuid]='91 f8e285-9bc c-450d-954 0-a0a708fc 7434' | |
| 9981 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC CPDA -1 IRD LUK OPR 4C', [ LastUpdate Date]='201 6-07-27 11 :17:06.000 ', [LastUp dateUser]= ' RED A CTED ' WHERE [B loodProduc tGuid]='be f6ace1-8a4 6-4fcd-ba9 7-a0a9542f 9d7b' | |
| 9982 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLT AFR ACD-A>PAS- D LUKOPR 1 C BacMtr', [LastUpda teDate]='2 016-07-27 11:17:06.0 00', [Last UpdateUser ]=' RED A CTED ' WHERE [B loodProduc tGuid]='d0 a1ae1f-33c 0-479f-aa6 e-a0cf85c6 d626' | |
| 9983 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC Froz None OPN IRD LUKOPR 8C', [Las tUpdateDat e]='2016-0 7-27 11:17 :06.000', [LastUpdat eUser]=' RED A CTED ' WHERE [B loodProduc tGuid]='e2 f70d47-367 b-4f84-895 c-a0f6d83a 7851' | |
| 9984 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC AFR Froz None OPN LUKOPR 2C', [Las tUpdateDat e]='2016-0 7-27 11:17 :06.000', [LastUpdat eUser]=' RED A CTED ' WHERE [B loodProduc tGuid]='dd 6d52aa-296 e-434a-a14 3-a1009269 121c' | |
| 9985 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='FFP AFR NaCit 6C', [LastUpda teDate]='2 016-07-27 11:17:06.0 00', [Last UpdateUser ]=' RED A CTED ' WHERE [B loodProduc tGuid]='eb f909ff-52c 6-4707-974 0-a106df18 3cc6' | |
| 9986 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC AFR ACD-A>AS1 IRD LUKOPR 7C', [Las tUpdateDat e]='2016-0 7-27 11:17 :06.000', [LastUpdat eUser]=' RED A CTED ' WHERE [B loodProduc tGuid]='e5 5cf62f-6f9 2-411b-b10 2-a11510e1 2032' | |
| 9987 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLT AFR ACD-A>PAS- C IRD LUKO PR 2C', [L astUpdateD ate]='2016 -07-27 11: 17:06.000' , [LastUpd ateUser]=' RED A CTED ' WHERE [B loodProduc tGuid]='f4 5e6b7a-2b1 3-445a-9c3 d-a12471ec 4322' | |
| 9988 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLT AFR ACD-A OPN IRD PLS Re d 3C', [La stUpdateDa te]='2016- 07-27 11:1 7:06.000', [LastUpda teUser]=' RED A CTED ' WHERE [B loodProduc tGuid]='99 6e60e8-c5b 2-4adb-9d6 c-a126d871 e90f' | |
| 9989 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLT AFR ACD-A 1C', [LastUpda teDate]='2 016-07-27 11:17:06.0 00', [Last UpdateUser ]=' RED A CTED ' WHERE [B loodProduc tGuid]='b4 a0f8b3-ce1 a-4625-b4e 5-a1277678 890c' | |
| 9990 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLT AFR PAS-E IRD LUKOPR 1C' , [LastUpd ateDate]=' 2016-07-27 11:17:06. 000', [Las tUpdateUse r]=' RED A CTED ' WHERE [B loodProduc tGuid]='86 da531d-4ad 1-47ec-bb1 3-a12d0694 c7ff' | |
| 9991 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC Deg None IRD 1 C', [LastU pdateDate] ='2016-07- 27 11:17:0 6.000', [L astUpdateU ser]=' RED A CTED ' WHERE [B loodProduc tGuid]='c3 5ab501-d60 5-43a8-b79 f-a13d55c7 29d0' | |
| 9992 | UPDATE [db o].[BloodP roduct] SE T [Product Name]='Aph eresis FRE SH FROZEN PLASMA|ACD -A/XX/<=-2 5C|For mnf :noninject able|Froze n <=6h', [ LastUpdate Date]='201 6-07-27 11 :17:06.000 ', [LastUp dateUser]= ' RED A CTED ' WHERE [B loodProduc tGuid]='79 cb096d-f83 8-463f-9d8 1-a1545ea7 398e' | |
| 9993 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC CPD> SAGM OPN I RD', [Last UpdateDate ]='2016-07 -27 11:17: 06.000', [ LastUpdate User]=' RED A CTED ' WHERE [B loodProduc tGuid]='78 6939d2-cd5 9-4b3b-a13 7-a15ab7be d011' | |
| 9994 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC AFR ACD-A OPN IRD LUKOPR 1C', [Las tUpdateDat e]='2016-0 7-27 11:17 :06.000', [LastUpdat eUser]=' RED A CTED ' WHERE [B loodProduc tGuid]='3c dfc506-a80 3-4376-8e9 9-a15b96f5 dab4' | |
| 9995 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='WB CPDA- 1 5C', [La stUpdateDa te]='2016- 07-27 11:1 7:06.000', [LastUpda teUser]=' RED A CTED ' WHERE [B loodProduc tGuid]='22 b2e089-e36 6-446b-89b 9-a163b100 6376' | |
| 9996 | UPDATE [db o].[BloodP roduct] SE T [Product Name]='Aph eresis FRE SH FROZEN PLASMA|ACD -B/XX/<=-3 0C', [Last UpdateDate ]='2016-07 -27 11:17: 06.000', [ LastUpdate User]=' RED A CTED ' WHERE [B loodProduc tGuid]='1b c064c4-2e5 5-43ac-986 e-a164f61b 2d5d' | |
| 9997 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLT AFR ACD-A MNFN I 2CNA', [ LastUpdate Date]='201 6-07-27 11 :17:06.000 ', [LastUp dateUser]= ' RED A CTED ' WHERE [B loodProduc tGuid]='d7 eb1d3d-e26 8-4d0b-969 3-a173c2fc 1bcc' | |
| 9998 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='FFP None 3C', [Las tUpdateDat e]='2016-0 7-27 11:17 :06.000', [LastUpdat eUser]=' RED A CTED ' WHERE [B loodProduc tGuid]='e6 258cd1-f44 7-447e-9d6 6-a1825ca6 9953' | |
| 9999 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC AFR SAGM IRD L UKOPR 2C', [LastUpda teDate]='2 016-07-27 11:17:06.0 00', [Last UpdateUser ]=' RED A CTED ' WHERE [B loodProduc tGuid]='3e 7a9127-f3f d-45c3-926 5-a1b4de6b 8ecb' | |
| 10000 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC AFR Deg None O PN LUKOPR 3C', [Last UpdateDate ]='2016-07 -27 11:17: 06.000', [ LastUpdate User]=' RED A CTED ' WHERE [B loodProduc tGuid]='4a fa5faf-80e 2-4ec4-ad1 e-a1ce2c0f b867' | |
| 10001 | UPDATE [db o].[BloodP roduct] SE T [Product Name]='PLA SMA|CPD/45 0mL/<=-30C |Cryo redu ced', [Las tUpdateDat e]='2016-0 7-27 11:17 :06.000', [LastUpdat eUser]=' RED A CTED ' WHERE [B loodProduc tGuid]='77 82ac14-45a a-44ae-b03 4-a1cf04a4 4489' | |
| 10002 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLT AFR Wash None NMT OPN 1C NA', [Last UpdateDate ]='2016-07 -27 11:17: 06.000', [ LastUpdate User]=' RED A CTED ' WHERE [B loodProduc tGuid]='13 06c9b1-fea c-4074-b38 6-a1ded47d 0949' | |
| 10003 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC AFR CP2D>AS3 I RD 3C', [L astUpdateD ate]='2016 -07-27 11: 17:06.000' , [LastUpd ateUser]=' RED A CTED ' WHERE [B loodProduc tGuid]='4d 6e806d-b25 8-4a9a-a8a 0-a1e255b4 9272' | |
| 10004 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLT AFR ACD-B IRD LUKOPR 3C' , [LastUpd ateDate]=' 2016-07-27 11:17:06. 000', [Las tUpdateUse r]=' RED A CTED ' WHERE [B loodProduc tGuid]='c0 1d1b95-af5 8-4d84-819 c-a1e436fe 22bb' | |
| 10005 | UPDATE [db o].[BloodP roduct] SE T [Product Name]='Aph eresis FRE SH FROZEN PLASMA|ACD -A/XX/<=-6 5C|3rd con tainer', [ ProductSho rtName]='F FP AFR ACD -A 3C', [L astUpdateD ate]='2016 -07-27 11: 17:06.000' , [LastUpd ateUser]=' RED A CTED ' WHERE [B loodProduc tGuid]='7e 62ca60-716 0-4069-946 3-a1fd5c8f ecac' | |
| 10006 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC AFR Deg SAGM L UKOPR 1C', [LastUpda teDate]='2 016-07-27 11:17:06.0 00', [Last UpdateUser ]=' RED A CTED ' WHERE [B loodProduc tGuid]='b9 ade354-5fb f-4b32-9d8 9-a210f185 beba' | |
| 10007 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='FFP None IRD 2C', [LastUpdat eDate]='20 16-07-27 1 1:17:06.00 0', [LastU pdateUser] =' RED A CTED ' WHERE [B loodProduc tGuid]='65 de1a31-611 5-4e58-950 e-a2186bd6 71be' | |
| 10008 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC AFR Wash None LUKOPR 1C' , [LastUpd ateDate]=' 2016-07-27 11:17:06. 000', [Las tUpdateUse r]=' RED A CTED ' WHERE [B loodProduc tGuid]='ec 0e17f2-a2d f-441e-abc b-a21a107e 2860' | |
| 10009 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLASMA A FR None IR D 2C', [La stUpdateDa te]='2016- 07-27 11:1 7:06.000', [LastUpda teUser]=' RED A CTED ' WHERE [B loodProduc tGuid]='31 1fddd8-c74 2-403a-be0 c-a21fd008 a896' | |
| 10010 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLT AFR ACD-B LUKO PR 3C', [L astUpdateD ate]='2016 -07-27 11: 17:06.000' , [LastUpd ateUser]=' RED A CTED ' WHERE [B loodProduc tGuid]='e6 5322b8-9eb 1-4eca-b15 f-a22ffe9c 755f' | |
| 10011 | UPDATE [db o].[BloodP roduct] SE T [Product Name]='Fro zen POOLED PLATELETS |DMSO/XX/< =-65C|ResL eu:<1E6|5 units', [L astUpdateD ate]='2016 -07-27 11: 17:06.000' , [LastUpd ateUser]=' RED A CTED ' WHERE [B loodProduc tGuid]='5f 9c658f-3fd 8-4b6e-915 0-a2366077 c34b' | |
| 10012 | UPDATE [db o].[BloodP roduct] SE T [Product Name]='Fro zen POOLED PLATELETS |DMSO/XX/< =-80C|Open |ResLeu:<1 E6|4 units ', [LastUp dateDate]= '2016-07-2 7 11:17:06 .000', [La stUpdateUs er]=' RED A CTED ' WHERE [B loodProduc tGuid]='2f 985a58-6c1 e-4972-824 2-a24c7166 dc67' | |
| 10013 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='WB CPDA- 1 LUKOPR 1 C', [LastU pdateDate] ='2016-07- 27 11:17:0 6.000', [L astUpdateU ser]=' RED A CTED ' WHERE [B loodProduc tGuid]='bf cbcfc1-c4f 8-4a6d-ac7 1-a25de3cc 6be4' | |
| 10014 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='FFP AFR CP2D 1C', [LastUpdat eDate]='20 16-07-27 1 1:17:06.00 0', [LastU pdateUser] =' RED A CTED ' WHERE [B loodProduc tGuid]='4f 97c474-2fe f-41a3-b15 4-a26ea1e7 9756' | |
| 10015 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLT AFR Wash None OPN 3C', [ LastUpdate Date]='201 6-07-27 11 :17:06.000 ', [LastUp dateUser]= ' RED A CTED ' WHERE [B loodProduc tGuid]='5b 167d66-f7e c-4056-984 a-a272b5d7 dfce' | |
| 10016 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC AFR Froz None OPN IRD 2C ', [LastUp dateDate]= '2016-07-2 7 11:17:06 .000', [La stUpdateUs er]=' RED A CTED ' WHERE [B loodProduc tGuid]='36 1ab527-3a1 f-4e22-ae0 0-a278d68f 1ebb' | |
| 10017 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLT AFR NaCit OPN PLS Red 1C NA', [Last UpdateDate ]='2016-07 -27 11:17: 06.000', [ LastUpdate User]=' RED A CTED ' WHERE [B loodProduc tGuid]='71 43cd98-6de 0-4796-8b3 2-a2865252 6821' | |
| 10018 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC AFR ACD-A OPN LUKOPR 1C' , [LastUpd ateDate]=' 2016-07-27 11:17:06. 000', [Las tUpdateUse r]=' RED A CTED ' WHERE [B loodProduc tGuid]='cc 88cccf-c1d d-4b2d-a17 2-a28a7704 14bb' | |
| 10019 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC Wash None OPN IRD 8C', [ LastUpdate Date]='201 6-07-27 11 :17:06.000 ', [LastUp dateUser]= ' RED A CTED ' WHERE [B loodProduc tGuid]='59 655719-e53 5-458e-97b 6-a290e234 f4da' | |
| 10020 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC AFR CP2D-AS3 1 C', [LastU pdateDate] ='2016-07- 27 11:17:0 6.000', [L astUpdateU ser]=' RED A CTED ' WHERE [B loodProduc tGuid]='9d 9c1371-66b 3-48ec-81b 9-a2a51377 d50b' | |
| 10021 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLT AFR PAS-C IRD LUKOPR 2C' , [LastUpd ateDate]=' 2016-07-27 11:17:06. 000', [Las tUpdateUse r]=' RED A CTED ' WHERE [B loodProduc tGuid]='a3 aeda62-5f8 d-49bf-b40 9-a2a7b8e2 1cc8' | |
| 10022 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLT AFR ACD-A PLS Red/PA 1C' , [LastUpd ateDate]=' 2016-07-27 11:17:06. 000', [Las tUpdateUse r]=' RED A CTED ' WHERE [B loodProduc tGuid]='84 76c0ff-264 c-4f14-b1c a-a2ab80ce 95f9' | |
| 10023 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC CPDA -1 LUKOPR 7C', [Reti reDate]='2 015-04-07 00:00:00.0 00', [Last UpdateDate ]='2016-07 -27 11:17: 06.000', [ LastUpdate User]=' RED A CTED ' WHERE [B loodProduc tGuid]='ea a7bc92-2bb 6-471d-9aa 3-a2acc45e f509' | |
| 10024 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='FFP AFR Thaw ACD-A LUKOPR 2C ', [LastUp dateDate]= '2016-07-2 7 11:17:06 .000', [La stUpdateUs er]=' RED A CTED ' WHERE [B loodProduc tGuid]='ea dd73ad-58f c-4cca-8cb 5-a2b33331 aac5' | |
| 10025 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLT AFR ACD-A LUKO PR 6C BacM tr', [Last UpdateDate ]='2016-07 -27 11:17: 06.000', [ LastUpdate User]=' RED A CTED ' WHERE [B loodProduc tGuid]='af 72d752-0f5 1-424f-b90 e-a2b3bdfe 51be' | |
| 10026 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLT AFR PAS-D IRD LUKOPR 2C' , [LastUpd ateDate]=' 2016-07-27 11:17:06. 000', [Las tUpdateUse r]=' RED A CTED ' WHERE [B loodProduc tGuid]='76 9ec36f-4d6 3-4f40-b3c 8-a2d64c9b 6757' | |
| 10027 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC AFR CP2D>AS3 I RD LUKOPR 2C', [Last UpdateDate ]='2016-07 -27 11:17: 06.000', [ LastUpdate User]=' RED A CTED ' WHERE [B loodProduc tGuid]='8a 65d3d2-e6e b-4eab-88c a-a2e89c77 e53c' | |
| 10028 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC AFR ACD-A>AS1 IRD LUKOPR SUPRed 1C ', [LastUp dateDate]= '2016-07-2 7 11:17:06 .000', [La stUpdateUs er]=' RED A CTED ' WHERE [B loodProduc tGuid]='8b 035051-640 6-4a5a-a6f 6-a31fcbd8 428f' | |
| 10029 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC AFR Wash None OPN IRD LU KOPR 2C', [LastUpdat eDate]='20 16-07-27 1 1:17:06.00 0', [LastU pdateUser] =' RED A CTED ' WHERE [B loodProduc tGuid]='08 888411-b47 f-4802-bf1 1-a32477c2 a8f4' | |
| 10030 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLT AFR PAS-B IRD LUKOPR 1C BacMtr', [ LastUpdate Date]='201 6-07-27 11 :17:06.000 ', [LastUp dateUser]= ' RED A CTED ' WHERE [B loodProduc tGuid]='29 94ac1e-10b 8-464d-bb3 4-a32f030c ac57' | |
| 10031 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLT AFR PAS-B IRD LUKOPR SUP Red 4C', [ LastUpdate Date]='201 6-07-27 11 :17:06.000 ', [LastUp dateUser]= ' RED A CTED ' WHERE [B loodProduc tGuid]='34 b348a1-250 1-45d6-80e a-a344e704 f022' | |
| 10032 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLT AFR PAS-E IRD LUKOPR SUP Red 3C', [ LastUpdate Date]='201 6-07-27 11 :17:06.000 ', [LastUp dateUser]= ' RED A CTED ' WHERE [B loodProduc tGuid]='03 543bbb-657 0-4de4-ad7 7-a3503515 bc70' | |
| 10033 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC AFR ACD-A>AS1 IRD 7C', [ LastUpdate Date]='201 6-07-27 11 :17:06.000 ', [LastUp dateUser]= ' RED A CTED ' WHERE [B loodProduc tGuid]='04 c44538-04e 0-4d30-99a 8-a362a33f a880' | |
| 10034 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC AFR ACD-A OPN LUKOPR SR 1C', [Last UpdateDate ]='2016-07 -27 11:17: 06.000', [ LastUpdate User]=' RED A CTED ' WHERE [B loodProduc tGuid]='41 f85d0a-fb7 f-4068-a38 e-a36e450a a3d4' | |
| 10035 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='FFP Thaw CPDA-1 IR D 1C', [La stUpdateDa te]='2016- 07-27 11:1 7:06.000', [LastUpda teUser]=' RED A CTED ' WHERE [B loodProduc tGuid]='d1 4eb95b-2c2 3-4997-a57 1-a37097bd ce67' | |
| 10036 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLT AFR ACD-A IRD 3C', [Last UpdateDate ]='2016-07 -27 11:17: 06.000', [ LastUpdate User]=' RED A CTED ' WHERE [B loodProduc tGuid]='1a c9c26e-a2a b-43a9-92e 2-a378e39d 71c4' | |
| 10037 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC AFR CPDA-1 LUK OPR 7C', [ LastUpdate Date]='201 6-07-27 11 :17:06.000 ', [LastUp dateUser]= ' RED A CTED ' WHERE [B loodProduc tGuid]='70 579117-28b c-440d-b05 6-a3863aaa 811e' | |
| 10038 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='WB CPD I RD 5C', [L astUpdateD ate]='2016 -07-27 11: 17:06.000' , [LastUpd ateUser]=' RED A CTED ' WHERE [B loodProduc tGuid]='f8 91673f-0c3 8-41bb-8df 6-a3995302 3b27' | |
| 10039 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC AFR Wash None IRD LUKOPR SR/Q-PA 2 C', [LastU pdateDate] ='2016-07- 27 11:17:0 6.000', [L astUpdateU ser]=' RED A CTED ' WHERE [B loodProduc tGuid]='63 95ce2a-ead f-48bd-b17 f-a39f7987 43cf' | |
| 10040 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLT AFR ACD-A>PAS- C IRD LUKO PR 2C Pedi ', [LastUp dateDate]= '2016-07-2 7 11:17:06 .000', [La stUpdateUs er]=' RED A CTED ' WHERE [B loodProduc tGuid]='b2 75e55e-2e7 e-4daf-bac 4-a3a013b4 d384' | |
| 10041 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC AFR ACD-A IRD LUKOPR SR/ PA 1C', [L astUpdateD ate]='2016 -07-27 11: 17:06.000' , [LastUpd ateUser]=' RED A CTED ' WHERE [B loodProduc tGuid]='a2 9ad18d-341 f-41fa-a5d 2-a3b6ae8c 9ff4' | |
| 10042 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLASMA A FR Thaw AC D-A 3C', [ LastUpdate Date]='201 6-07-27 11 :17:06.000 ', [LastUp dateUser]= ' RED A CTED ' WHERE [B loodProduc tGuid]='a0 86a52e-1dc 8-4b1a-b3d c-a3c7b68c c133' | |
| 10043 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLT AFR Thaw DMSO OPN IRD PA 1C', [Las tUpdateDat e]='2016-0 7-27 11:17 :06.000', [LastUpdat eUser]=' RED A CTED ' WHERE [B loodProduc tGuid]='20 8fa042-b85 5-44dd-821 3-a3eb2dc4 1af0' | |
| 10044 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLASMA A FR None IR D 6C', [La stUpdateDa te]='2016- 07-27 11:1 7:06.000', [LastUpda teUser]=' RED A CTED ' WHERE [B loodProduc tGuid]='4e 3c9ba8-6a7 3-4dda-a7e f-a3eddff7 7348' | |
| 10045 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='WB CPDA- 1 IRD LUKO PR 2C', [L astUpdateD ate]='2016 -07-27 11: 17:06.000' , [LastUpd ateUser]=' RED A CTED ' WHERE [B loodProduc tGuid]='72 2ccd7b-df9 2-4a33-b4e 7-a3f1ecd1 10d2' | |
| 10046 | UPDATE [db o].[BloodP roduct] SE T [Product Name]='Fro zen RED BL OOD CELLS| None/450mL /<=-65C|Op en|ResLeu: <5E6', [La stUpdateDa te]='2016- 07-27 11:1 7:06.000', [LastUpda teUser]=' RED A CTED ' WHERE [B loodProduc tGuid]='a5 8bef5d-8b6 a-49c7-be2 8-a40ea898 e2bc' | |
| 10047 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC CP2D IRD 7C', [LastUpdat eDate]='20 16-07-27 1 1:17:06.00 0', [LastU pdateUser] =' RED A CTED ' WHERE [B loodProduc tGuid]='54 29b2ac-1c8 9-4fb3-aa9 8-a41e5296 fc8f' | |
| 10048 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC Deg Rej None O PN IRD LUK OPR 3C', [ LastUpdate Date]='201 6-07-27 11 :17:06.000 ', [LastUp dateUser]= ' RED A CTED ' WHERE [B loodProduc tGuid]='6c 838688-465 9-4517-b40 2-a421824a 61f1' | |
| 10049 | UPDATE [db o].[BloodP roduct] SE T [Product Name]='FRE SH FROZEN PLASMA|CPD /450mL/<=- 65C|Irradi ated|ResLe u:<1E6|Fro zen <=6h', [LastUpda teDate]='2 016-07-27 11:17:06.0 00', [Last UpdateUser ]=' RED A CTED ' WHERE [B loodProduc tGuid]='46 59340a-974 3-413f-817 b-a45358e6 49d8' | |
| 10050 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC AFR CP2D>AS3 O PN IRD SR 2C', [Last UpdateDate ]='2016-07 -27 11:17: 06.000', [ LastUpdate User]=' RED A CTED ' WHERE [B loodProduc tGuid]='1d b316aa-670 d-475a-950 f-a45b4cc5 1faa' | |
| 10051 | UPDATE [db o].[BloodP roduct] SE T [Product Name]='Fro zen RED BL OOD CELLS| None/450mL /<=-120C|N ot for tx or mnf|Ope n', [LastU pdateDate] ='2016-07- 27 11:17:0 6.000', [L astUpdateU ser]=' RED A CTED ' WHERE [B loodProduc tGuid]='60 bb2eeb-65f f-4bb9-827 9-a475c838 176c' | |
| 10052 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC AFR ACD-A>AS3 IRD LUKOPR SR/PA 2C' , [LastUpd ateDate]=' 2016-07-27 11:17:06. 000', [Las tUpdateUse r]=' RED A CTED ' WHERE [B loodProduc tGuid]='d4 704289-b53 7-4983-8c3 3-a482fb28 1aa9' | |
| 10053 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLASMA A FR Thaw Na Cit IRD 1C ', [LastUp dateDate]= '2016-07-2 7 11:17:06 .000', [La stUpdateUs er]=' RED A CTED ' WHERE [B loodProduc tGuid]='ed fbbca6-fc5 3-4576-81e 2-a4837e08 ebce' | |
| 10054 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='WB CPDA- 1 LUKOPR 5 C', [LastU pdateDate] ='2016-07- 27 11:17:0 6.000', [L astUpdateU ser]=' RED A CTED ' WHERE [B loodProduc tGuid]='f3 7c92cb-24d 6-44ee-b83 4-a4940662 7358' | |
| 10055 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLT AFR ACD-A IRD LUKOPR 1C' , [LastUpd ateDate]=' 2016-07-27 11:17:06. 000', [Las tUpdateUse r]=' RED A CTED ' WHERE [B loodProduc tGuid]='08 b97899-17a 7-476b-a16 7-a4ae2cb4 c03a' | |
| 10056 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='WB CPDA- 1 IRD 3C', [LastUpda teDate]='2 016-07-27 11:17:06.0 00', [Last UpdateUser ]=' RED A CTED ' WHERE [B loodProduc tGuid]='f3 1dab7e-ca9 9-47c7-910 f-a4ba0d1d e77b' | |
| 10057 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLT AFR ACD-A LUKO PR PLS Red 1CNA', [L astUpdateD ate]='2016 -07-27 11: 17:06.000' , [LastUpd ateUser]=' RED A CTED ' WHERE [B loodProduc tGuid]='cc 68a689-b79 c-4c3e-809 e-a4c83478 1355' | |
| 10058 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLASMA A FR Thaw CP 2D 2C', [L astUpdateD ate]='2016 -07-27 11: 17:06.000' , [LastUpd ateUser]=' RED A CTED ' WHERE [B loodProduc tGuid]='4b d65f03-87b 8-44ed-9a8 9-a4e50d1b c0ab' | |
| 10059 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='WB CPD 2 C', [LastU pdateDate] ='2016-07- 27 11:17:0 6.000', [L astUpdateU ser]=' RED A CTED ' WHERE [B loodProduc tGuid]='95 19b87a-48d 7-48e8-860 b-a4f3b870 d754' | |
| 10060 | UPDATE [db o].[BloodP roduct] SE T [Product Name]='FRE SH FROZEN PLASMA|CPD A-1/XX/<=- 25C|Frozen <=15h|Rib oflavin-tr eated', [L astUpdateD ate]='2016 -07-27 11: 17:06.000' , [LastUpd ateUser]=' RED A CTED ' WHERE [B loodProduc tGuid]='17 173b52-39f 7-46df-92e c-a504a711 7888' | |
| 10061 | UPDATE [db o].[BloodP roduct] SE T [Product Name]='Aph eresis FRE SH FROZEN PLASMA|ACD -A/XX/<=-6 5C|Irradia ted|2nd co ntainer', [ProductSh ortName]=' FFP AFR AC D-A IRD 2C ', [LastUp dateDate]= '2016-07-2 7 11:17:06 .000', [La stUpdateUs er]=' RED A CTED ' WHERE [B loodProduc tGuid]='26 1251f3-7f0 7-4a7f-bbe b-a5092b29 dc23' | |
| 10062 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC Deg Rej None O PN LUKOPR 1C', [Last UpdateDate ]='2016-07 -27 11:17: 06.000', [ LastUpdate User]=' RED A CTED ' WHERE [B loodProduc tGuid]='1c 07ed49-fcb d-4495-8b1 f-a50cacf7 9b7a' | |
| 10063 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC AFR ACD-A>SAGM LUKOPR 1C ', [LastUp dateDate]= '2016-07-2 7 11:17:06 .000', [La stUpdateUs er]=' RED A CTED ' WHERE [B loodProduc tGuid]='8c 355cda-4ca 4-48b9-a32 0-a50f6f89 ae4c' | |
| 10064 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC Deg None IRD 7 C', [LastU pdateDate] ='2016-07- 27 11:17:0 6.000', [L astUpdateU ser]=' RED A CTED ' WHERE [B loodProduc tGuid]='2c 8727db-c6e 3-422e-bf1 3-a5164346 eeee' | |
| 10065 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC AFR Deg None O PN 6C', [L astUpdateD ate]='2016 -07-27 11: 17:06.000' , [LastUpd ateUser]=' RED A CTED ' WHERE [B loodProduc tGuid]='62 e1fac6-bad 5-4020-9e4 c-a520c74d 5934' | |
| 10066 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC AFR CPDA-1 IRD LUKOPR 2C ', [LastUp dateDate]= '2016-07-2 7 11:17:06 .000', [La stUpdateUs er]=' RED A CTED ' WHERE [B loodProduc tGuid]='5d e038b3-87d d-4128-b7f 8-a5368db3 1714' | |
| 10067 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC AFR Deg None O PN IRD 3C' , [LastUpd ateDate]=' 2016-07-27 11:17:06. 000', [Las tUpdateUse r]=' RED A CTED ' WHERE [B loodProduc tGuid]='67 b974b6-586 b-45f4-ae5 7-a54c4ede 1516' | |
| 10068 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC CPDA -1 LUKOPR 3C', [Last UpdateDate ]='2016-07 -27 11:17: 06.000', [ LastUpdate User]=' RED A CTED ' WHERE [B loodProduc tGuid]='a0 e50d45-9be 3-46c2-9c6 5-a56da526 0978' | |
| 10069 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLT AFR NaCit IRD LUKOPR 1CN A', [LastU pdateDate] ='2016-07- 27 11:17:0 6.000', [L astUpdateU ser]=' RED A CTED ' WHERE [B loodProduc tGuid]='e5 a7bd59-584 e-4c72-93d 2-a56dd90b f3e2' | |
| 10070 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLT AFR NaCit OPN IRD 1CNA', [LastUpda teDate]='2 016-07-27 11:17:06.0 00', [Last UpdateUser ]=' RED A CTED ' WHERE [B loodProduc tGuid]='ec 21d982-e0e a-4a60-b79 3-a57efd89 ec43' | |
| 10071 | UPDATE [db o].[BloodP roduct] SE T [Product Name]='Aph eresis FRE SH FROZEN PLASMA|NS/ XX/<=-30C| Irradiated |ResLeu:<1 E6|Quar: n ationally defined', [LastUpdat eDate]='20 16-07-27 1 1:17:06.00 0', [LastU pdateUser] =' RED A CTED ' WHERE [B loodProduc tGuid]='83 d754b6-f3d 7-4841-931 8-a57fc295 7743' | |
| 10072 | UPDATE [db o].[BloodP roduct] SE T [Product Name]='Aph eresis FRE SH FROZEN PLASMA|NS/ XX/<=-30C| For mnf:no ninjectabl e|ResLeu:< 1E6|Frozen <=2h', [L astUpdateD ate]='2016 -07-27 11: 17:06.000' , [LastUpd ateUser]=' RED A CTED ' WHERE [B loodProduc tGuid]='b9 dfcb17-ed4 f-4e5d-8b0 3-a58c1875 9b76' | |
| 10073 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLT AFR NaCit OPN 4C', [Last UpdateDate ]='2016-07 -27 11:17: 06.000', [ LastUpdate User]=' RED A CTED ' WHERE [B loodProduc tGuid]='72 088eab-684 0-42f2-9c6 f-a5ad4eea d94e' | |
| 10074 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLT AFR Thaw DMSO 2C', [Last UpdateDate ]='2016-07 -27 11:17: 06.000', [ LastUpdate User]=' RED A CTED ' WHERE [B loodProduc tGuid]='04 a0acb9-8c6 7-4720-a30 0-a5bd6093 68bf' | |
| 10075 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLT AFR PAS-B IRD LUKOPR SUP Red 2C', [ LastUpdate Date]='201 6-07-27 11 :17:06.000 ', [LastUp dateUser]= ' RED A CTED ' WHERE [B loodProduc tGuid]='12 7b328c-0a0 3-4b80-87c f-a5ce47a5 6391' | |
| 10076 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLT AFR ACD-A IRD LUKOPR 3C' , [LastUpd ateDate]=' 2016-07-27 11:17:06. 000', [Las tUpdateUse r]=' RED A CTED ' WHERE [B loodProduc tGuid]='15 019b6a-e81 f-4b52-bc7 1-a5d0507a cf0e' | |
| 10077 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC AFR ACD-A LUKO PR 1C', [L astUpdateD ate]='2016 -07-27 11: 17:06.000' , [LastUpd ateUser]=' RED A CTED ' WHERE [B loodProduc tGuid]='12 a84d9b-d70 f-4001-814 8-a5da9cf0 9200' | |
| 10078 | UPDATE [db o].[BloodP roduct] SE T [Product Name]='Aph eresis FRE SH FROZEN PLASMA|NaC itrate/XX/ <=-65C|Irr adiated|3r d containe r', [Produ ctShortNam e]='FFP AF R NaCit IR D 3C', [La stUpdateDa te]='2016- 07-27 11:1 7:06.000', [LastUpda teUser]=' RED A CTED ' WHERE [B loodProduc tGuid]='d8 add11c-bff 5-4937-98e 1-a5e3cb53 34e1' | |
| 10079 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC AFR Froz None OPN 1C', [ LastUpdate Date]='201 6-07-27 11 :17:06.000 ', [LastUp dateUser]= ' RED A CTED ' WHERE [B loodProduc tGuid]='50 3772ce-963 e-4b6b-b31 5-a5fadf7e 4613' | |
| 10080 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLT AFR Wash None OPN LUKOPR 2C', [Las tUpdateDat e]='2016-0 7-27 11:17 :06.000', [LastUpdat eUser]=' RED A CTED ' WHERE [B loodProduc tGuid]='e9 e3cfd9-947 3-477b-9a2 3-a5fedef0 2545' | |
| 10081 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC AFR CP2D>AS3 S R 2C', [La stUpdateDa te]='2016- 07-27 11:1 7:06.000', [LastUpda teUser]=' RED A CTED ' WHERE [B loodProduc tGuid]='a0 12bf9d-1ae 1-4d10-af3 2-a5ff4c2c 1afa' | |
| 10082 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLT AFR ACD-A NMT LUKOPR 2C' , [LastUpd ateDate]=' 2016-07-27 11:17:06. 000', [Las tUpdateUse r]=' RED A CTED ' WHERE [B loodProduc tGuid]='17 4ff07f-19e 1-4ee2-a0e 5-a6033e0e 90ec' | |
| 10083 | UPDATE [db o].[BloodP roduct] SE T [Product Name]='Aph eresis FRE SH FROZEN PLASMA|NaC itrate/XX/ <=-30C|Irr adiated|Re sLeu:<1E6| >=200mL<40 0mL|Frozen <=6h|Quar :>=4m/rete sted', [La stUpdateDa te]='2016- 07-27 11:1 7:06.000', [LastUpda teUser]=' RED A CTED ' WHERE [B loodProduc tGuid]='5f a8bfd8-5d9 0-4f3a-8f0 0-a61f80b8 ecee' | |
| 10084 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC CPD> AS5 IRD 4C ', [LastUp dateDate]= '2016-07-2 7 11:17:06 .000', [La stUpdateUs er]=' RED A CTED ' WHERE [B loodProduc tGuid]='87 4038a7-a69 b-471b-b58 0-a624f2f2 30f2' | |
| 10085 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='FFP AFR Thaw 0.5 C PD LUKOPR 2C', [Last UpdateDate ]='2016-07 -27 11:17: 06.000', [ LastUpdate User]=' RED A CTED ' WHERE [B loodProduc tGuid]='15 a61afc-fa3 c-407f-806 e-a6283886 7e22' | |
| 10086 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='FFP AFR None 2C', [LastUpdat eDate]='20 16-07-27 1 1:17:06.00 0', [LastU pdateUser] =' RED A CTED ' WHERE [B loodProduc tGuid]='0a cf5b91-98e a-4ac7-9c9 6-a62cd3fa 7ce4' | |
| 10087 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLT AFR ACD-A LUKO PR 2C', [L astUpdateD ate]='2016 -07-27 11: 17:06.000' , [LastUpd ateUser]=' RED A CTED ' WHERE [B loodProduc tGuid]='cf d4cd2a-2e7 5-4c76-99c f-a636549f 8a0e' | |
| 10088 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLT AFR NS IRD LUK OPR 1C', [ LastUpdate Date]='201 6-07-27 11 :17:06.000 ', [LastUp dateUser]= ' RED A CTED ' WHERE [B loodProduc tGuid]='96 b142c8-b26 5-4e48-971 8-a63e1da3 2b90' | |
| 10089 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLT AFR PAS-B LUKO PR 1C BacT est', [Las tUpdateDat e]='2016-0 7-27 11:17 :06.000', [LastUpdat eUser]=' RED A CTED ' WHERE [B loodProduc tGuid]='01 8aae74-f6e 1-446f-85a c-a6552bb5 1126' | |
| 10090 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLT AFR Wash NS IR D LUKOPR 3 C', [LastU pdateDate] ='2016-07- 27 11:17:0 6.000', [L astUpdateU ser]=' RED A CTED ' WHERE [B loodProduc tGuid]='93 865c59-ea6 5-46ab-ad7 b-a6654122 e87c' | |
| 10091 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC Wash None OPN LUKOPR 1C' , [LastUpd ateDate]=' 2016-07-27 11:17:06. 000', [Las tUpdateUse r]=' RED A CTED ' WHERE [B loodProduc tGuid]='7d c87539-e17 a-4a1f-b35 8-a667f5a7 c83d' | |
| 10092 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC AFR Deg None O PN LUKOPR 6C', [Last UpdateDate ]='2016-07 -27 11:17: 06.000', [ LastUpdate User]=' RED A CTED ' WHERE [B loodProduc tGuid]='89 af9665-0df 3-4a8b-bb4 b-a677a637 4c9f' | |
| 10093 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLT AFR PAS-B IRD LUKOPR 2C BacMtr', [ LastUpdate Date]='201 6-07-27 11 :17:06.000 ', [LastUp dateUser]= ' RED A CTED ' WHERE [B loodProduc tGuid]='06 33b0d7-a71 3-4df3-98a e-a67850f7 df02' | |
| 10094 | UPDATE [db o].[BloodP roduct] SE T [Product Name]='Aph eresis FRE SH FROZEN PLASMA|NaC itrate/XX/ <=-65C|Irr adiated|Fi n Con:NS|A phr not au tomated', [LastUpdat eDate]='20 16-07-27 1 1:17:06.00 0', [LastU pdateUser] =' RED A CTED ' WHERE [B loodProduc tGuid]='22 0d73f7-f24 8-4adf-9ef 3-a67dd24b fae3' | |
| 10095 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC AFR ACD-A>AS3 LUKOPR 3C' , [LastUpd ateDate]=' 2016-07-27 11:17:06. 000', [Las tUpdateUse r]=' RED A CTED ' WHERE [B loodProduc tGuid]='d4 dfe030-d4d 5-4682-857 b-a6893280 71e1' | |
| 10096 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC AFR CP2D>AS3 1 C', [LastU pdateDate] ='2016-07- 27 11:17:0 6.000', [L astUpdateU ser]=' RED A CTED ' WHERE [B loodProduc tGuid]='7e 7afa5b-851 c-4b9b-96e 4-a68ab0a2 cc14' | |
| 10097 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLT AFR NaCit 4C', [LastUpda teDate]='2 016-07-27 11:17:06.0 00', [Last UpdateUser ]=' RED A CTED ' WHERE [B loodProduc tGuid]='d9 f52aee-862 b-4d27-a47 8-a68cecd9 1974' | |
| 10098 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC AFR ACD-A>AS1 LUKOPR 7C' , [LastUpd ateDate]=' 2016-07-27 11:17:06. 000', [Las tUpdateUse r]=' RED A CTED ' WHERE [B loodProduc tGuid]='a4 a1dc83-b26 5-420e-848 a-a69983c2 754f' | |
| 10099 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC AFR CP2D>AS3 2 C', [LastU pdateDate] ='2016-07- 27 11:17:0 6.000', [L astUpdateU ser]=' RED A CTED ' WHERE [B loodProduc tGuid]='93 547e7b-18b 5-4c18-988 f-a69ac40b de73' | |
| 10100 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC CPDA -1 2C', [L astUpdateD ate]='2016 -07-27 11: 17:06.000' , [LastUpd ateUser]=' RED A CTED ' WHERE [B loodProduc tGuid]='81 732b74-2b1 d-43b4-9eb 0-a6a4d784 a13f' | |
| 10101 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='FFP CPDA -1 IRD 1C' , [LastUpd ateDate]=' 2016-07-27 11:17:06. 000', [Las tUpdateUse r]=' RED A CTED ' WHERE [B loodProduc tGuid]='92 67f493-bb0 6-4c6e-bb3 5-a6bb8475 3830' | |
| 10102 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC AFR ACD-A>AS1 OPN IRD LU KOPR ALB A dd 1C', [L astUpdateD ate]='2016 -07-27 11: 17:06.000' , [LastUpd ateUser]=' RED A CTED ' WHERE [B loodProduc tGuid]='99 df746a-a55 3-4192-bf8 a-a6cec3ca 3895' | |
| 10103 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLT AFR Wash None OPN LUKOPR 3C', [Las tUpdateDat e]='2016-0 7-27 11:17 :06.000', [LastUpdat eUser]=' RED A CTED ' WHERE [B loodProduc tGuid]='f5 06cc78-9c3 3-4838-803 e-a6daa91a bfff' | |
| 10104 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLT AFR ACD-A IRD LUKOPR 3C BacMtr', [ LastUpdate Date]='201 6-07-27 11 :17:06.000 ', [LastUp dateUser]= ' RED A CTED ' WHERE [B loodProduc tGuid]='b4 bf5cbe-3ab 5-469c-859 4-a6f09e54 c8f6' | |
| 10105 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLT AFR Froz ACD-A >PAS-C MNF NI LUKOPR 2C', [Last UpdateDate ]='2016-07 -27 11:17: 06.000', [ LastUpdate User]=' RED A CTED ' WHERE [B loodProduc tGuid]='5b e12244-7cc 8-4d84-970 1-a6ffbc48 fc7d' | |
| 10106 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='FFP None IRD QUAR 1C', [Last UpdateDate ]='2016-07 -27 11:17: 06.000', [ LastUpdate User]=' RED A CTED ' WHERE [B loodProduc tGuid]='1e 0677cc-fcf d-41b4-8b5 b-a70883c7 8e8d' | |
| 10107 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLT AFR ACD-A MNFN I 2C', [La stUpdateDa te]='2016- 07-27 11:1 7:06.000', [LastUpda teUser]=' RED A CTED ' WHERE [B loodProduc tGuid]='42 1c9668-359 9-4a22-a18 2-a745f311 4d39' | |
| 10108 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC AFR Deg None O PN IRD LUK OPR 6C', [ LastUpdate Date]='201 6-07-27 11 :17:06.000 ', [LastUp dateUser]= ' RED A CTED ' WHERE [B loodProduc tGuid]='c8 159167-fda 1-4d4f-a10 0-a75042cb a413' | |
| 10109 | UPDATE [db o].[BloodP roduct] SE T [Product Name]='Fro zen RED BL OOD CELLS| None/450mL /<=-65C|Op en|Irradia ted|ResLeu :<1E6,WB f iltr', [La stUpdateDa te]='2016- 07-27 11:1 7:06.000', [LastUpda teUser]=' RED A CTED ' WHERE [B loodProduc tGuid]='4c 462070-6e8 b-4796-b4a 3-a7622b4e 575f' | |
| 10110 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLT AFR ACD-A IRD LUKOPR 4C' , [LastUpd ateDate]=' 2016-07-27 11:17:06. 000', [Las tUpdateUse r]=' RED A CTED ' WHERE [B loodProduc tGuid]='25 d2d292-a70 3-40be-a37 f-a7647b5f c49b' | |
| 10111 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLT AFR ACD-A IRD LUKOPR 5C BacMtr', [ LastUpdate Date]='201 6-07-27 11 :17:06.000 ', [LastUp dateUser]= ' RED A CTED ' WHERE [B loodProduc tGuid]='c3 f25eb0-59d c-42c8-b47 b-a7665f7a aaa6' | |
| 10112 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLT AFR Wash None NMT OPN 3C ', [LastUp dateDate]= '2016-07-2 7 11:17:06 .000', [La stUpdateUs er]=' RED A CTED ' WHERE [B loodProduc tGuid]='50 510f87-af1 2-4300-a9d b-a76d71c9 9bb2' | |
| 10113 | UPDATE [db o].[BloodP roduct] SE T [Product Name]='Fro zen Aphere sis RED BL OOD CELLS| None/XX/<= -65C|Open| ResLeu:<5E 6', [LastU pdateDate] ='2016-07- 27 11:17:0 6.000', [L astUpdateU ser]=' RED A CTED ' WHERE [B loodProduc tGuid]='33 1bbec0-da1 7-48a4-9fe 8-a77315a3 b17c' | |
| 10114 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC AFR ACD-A OPN IRD SR 2C' , [LastUpd ateDate]=' 2016-07-27 11:17:06. 000', [Las tUpdateUse r]=' RED A CTED ' WHERE [B loodProduc tGuid]='fe 2a79fa-090 c-40a2-9c1 b-a7736a07 02f4' | |
| 10115 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLT AFR PAS-B LUKO PR 3C BacM tr', [Last UpdateDate ]='2016-07 -27 11:17: 06.000', [ LastUpdate User]=' RED A CTED ' WHERE [B loodProduc tGuid]='29 84c243-991 e-4f20-a98 8-a779bfd9 7c58' | |
| 10116 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC AFR CPD-50>SAG M IRD LUKO PR 2C', [L astUpdateD ate]='2016 -07-27 11: 17:06.000' , [LastUpd ateUser]=' RED A CTED ' WHERE [B loodProduc tGuid]='22 c4ad49-e7c f-4d04-b92 d-a780ae06 91be' | |
| 10117 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC AFR Wash None LUKOPR 2C' , [LastUpd ateDate]=' 2016-07-27 11:17:06. 000', [Las tUpdateUse r]=' RED A CTED ' WHERE [B loodProduc tGuid]='a5 436947-2e8 d-43d2-8d6 6-a78635a5 3906' | |
| 10118 | UPDATE [db o].[BloodP roduct] SE T [Product Name]='FRE SH FROZEN PLASMA|NS/ XX/<=-30C| ResLeu:<5E 6', [LastU pdateDate] ='2016-07- 27 11:17:0 6.000', [L astUpdateU ser]=' RED A CTED ' WHERE [B loodProduc tGuid]='bb f5dd95-9e6 8-4e54-b95 c-a7932984 f335' | |
| 10119 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC AFR ACD-A>AS3 IRD LUKOPR 5C', [Las tUpdateDat e]='2016-0 7-27 11:17 :06.000', [LastUpdat eUser]=' RED A CTED ' WHERE [B loodProduc tGuid]='0d e86ed0-4fb 7-40b7-8e7 6-a7b41de8 871c' | |
| 10120 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC AFR CPDA-1 3C' , [LastUpd ateDate]=' 2016-07-27 11:17:06. 000', [Las tUpdateUse r]=' RED A CTED ' WHERE [B loodProduc tGuid]='6e 6bb25b-39e 9-4894-a44 b-a7d5ae7f 430f' | |
| 10121 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLT AFR ACD-A>PAS- C IRD LUKO PR 1C', [L astUpdateD ate]='2016 -07-27 11: 17:06.000' , [LastUpd ateUser]=' RED A CTED ' WHERE [B loodProduc tGuid]='d0 7a4696-e43 f-49c2-8ba 3-a7e269fb d153' | |
| 10122 | UPDATE [db o].[BloodP roduct] SE T [Product Name]='Fro zen Rejuve nated Aphe resis RED BLOOD CELL S|None/XX/ <=-65C|Ope n|ResLeu:< 5E6|2nd co ntainer', [ProductSh ortName]=' RBC AFR Fr oz Rej Non e OPN LUKO PR 2C', [L astUpdateD ate]='2016 -07-27 11: 17:06.000' , [LastUpd ateUser]=' RED A CTED ' WHERE [B loodProduc tGuid]='04 893592-5e1 d-47b1-87a d-a7ff1c2f 9891' | |
| 10123 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC AFR Froz None OPN 8C', [ LastUpdate Date]='201 6-07-27 11 :17:06.000 ', [LastUp dateUser]= ' RED A CTED ' WHERE [B loodProduc tGuid]='04 fcfe0c-6d0 a-4333-93c 1-a7ff8079 d4c9' | |
| 10124 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLT AFR None OPN L UKOPR PLS Red/ALB Ad d 2C', [La stUpdateDa te]='2016- 07-27 11:1 7:06.000', [LastUpda teUser]=' RED A CTED ' WHERE [B loodProduc tGuid]='86 de7a6e-2d5 1-45b7-9e4 b-a801e17a 449c' | |
| 10125 | UPDATE [db o].[BloodP roduct] SE T [Product Name]='FRE SH FROZEN PLASMA|CPD A-1/450mL/ <=-30C|Met hylene blu e-treated' , [LastUpd ateDate]=' 2016-07-27 11:17:06. 000', [Las tUpdateUse r]=' RED A CTED ' WHERE [B loodProduc tGuid]='eb fb222d-56b f-4ce8-a3d b-a82103b8 105b' | |
| 10126 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC AFR ACD-A>AS1 OPN LUKOPR ALB Add 1 C', [LastU pdateDate] ='2016-07- 27 11:17:0 6.000', [L astUpdateU ser]=' RED A CTED ' WHERE [B loodProduc tGuid]='76 c90f1d-04e 1-4df3-a9f 8-a82634cc cbc4' | |
| 10127 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLASMA T haw None 6 C', [LastU pdateDate] ='2016-07- 27 11:17:0 6.000', [L astUpdateU ser]=' RED A CTED ' WHERE [B loodProduc tGuid]='08 065650-fbe e-4d67-9ca 6-a84db600 bfe5' | |
| 10128 | UPDATE [db o].[BloodP roduct] SE T [Product Name]='Fro zen Aphere sis PLATEL ETS|DMSO/X X/<=-65C|O pen|ResLeu :<1E6|1st container' , [Product ShortName] ='PLT AFR Froz DMSO OPN LUKOPR 1C', [Las tUpdateDat e]='2016-0 7-27 11:17 :06.000', [LastUpdat eUser]=' RED A CTED ' WHERE [B loodProduc tGuid]='cf ddfd2e-d14 e-4846-98a 8-a856f133 c35b' | |
| 10129 | UPDATE [db o].[BloodP roduct] SE T [Product Name]='Aph eresis FRE SH FROZEN PLASMA|ACD -A/XX/<=-3 0C|For mnf :injectabl e|ResLeu:< 1E6|>=600m L', [LastU pdateDate] ='2016-07- 27 11:17:0 6.000', [L astUpdateU ser]=' RED A CTED ' WHERE [B loodProduc tGuid]='3e 7f25a1-139 d-4795-83c 6-a86b89a2 e9a1' | |
| 10130 | UPDATE [db o].[BloodP roduct] SE T [Product Name]='PLA SMA|CPD/45 0mL/<=-30C |ResLeu:<1 E6|Cryo re duced', [L astUpdateD ate]='2016 -07-27 11: 17:06.000' , [LastUpd ateUser]=' RED A CTED ' WHERE [B loodProduc tGuid]='4b d51b93-b91 e-4130-9f6 4-a882c95a 7606' | |
| 10131 | UPDATE [db o].[BloodP roduct] SE T [Product Name]='Aph eresis FRE SH FROZEN PLASMA|ACD -A/XX/<=-6 5C|ResLeu: <5E6', [La stUpdateDa te]='2016- 07-27 11:1 7:06.000', [LastUpda teUser]=' RED A CTED ' WHERE [B loodProduc tGuid]='5c 9fb45f-b3c 5-4a4a-87d e-a899d025 66f8' | |
| 10132 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLT AFR PAS-B LUKO PR 2C BacT est', [Las tUpdateDat e]='2016-0 7-27 11:17 :06.000', [LastUpdat eUser]=' RED A CTED ' WHERE [B loodProduc tGuid]='4c bc5013-f0b d-48f1-85d 9-a8cffcbb 7c03' | |
| 10133 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLT AFR ACD-A OPN IRD LUKOPR PLS Red/A LB Add 3C' , [LastUpd ateDate]=' 2016-07-27 11:17:06. 000', [Las tUpdateUse r]=' RED A CTED ' WHERE [B loodProduc tGuid]='04 b583e0-652 7-4d82-97d 0-a8d341f4 c8e0' | |
| 10134 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='FFP AFR Thaw ACD-A IRD LUKOP R 1C', [La stUpdateDa te]='2016- 07-27 11:1 7:06.000', [LastUpda teUser]=' RED A CTED ' WHERE [B loodProduc tGuid]='e1 c1fac3-907 8-46e7-85e 2-a9234289 ba35' | |
| 10135 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLT AFR ACD-A OPN LUKOPR PLS Red 3C', [LastUpdat eDate]='20 16-07-27 1 1:17:06.00 0', [LastU pdateUser] =' RED A CTED ' WHERE [B loodProduc tGuid]='66 b577b3-3e9 3-4d00-9d2 7-a93ab98e 77fe' | |
| 10136 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLT AFR Thaw DMSO OPN 2C', [ LastUpdate Date]='201 6-07-27 11 :17:06.000 ', [LastUp dateUser]= ' RED A CTED ' WHERE [B loodProduc tGuid]='a2 be475f-b24 3-4b2a-8bc 4-a94dcc02 4e22' | |
| 10137 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC AFR Deg None O PN IRD LUK OPR 3C', [ LastUpdate Date]='201 6-07-27 11 :17:06.000 ', [LastUp dateUser]= ' RED A CTED ' WHERE [B loodProduc tGuid]='39 199341-57c 2-4e55-936 5-a9565486 9fb8' | |
| 10138 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC AFR ACD-A>AS3 IRD 1C', [ LastUpdate Date]='201 6-07-27 11 :17:06.000 ', [LastUp dateUser]= ' RED A CTED ' WHERE [B loodProduc tGuid]='d3 1474cc-ce9 b-4dde-bdf 3-a957f118 6fed' | |
| 10139 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC AFR ACD-A>AS1 OPN LUKOPR SR/PA 2C' , [LastUpd ateDate]=' 2016-07-27 11:17:06. 000', [Las tUpdateUse r]=' RED A CTED ' WHERE [B loodProduc tGuid]='63 f0177f-8bb 2-492a-958 5-a9600ae8 dc9c' | |
| 10140 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLT AFR PAS-E LUKO PR 2C BacT est', [Las tUpdateDat e]='2016-0 7-27 11:17 :06.000', [LastUpdat eUser]=' RED A CTED ' WHERE [B loodProduc tGuid]='07 0ff18c-339 6-4dc2-bb5 f-a98c982a b5da' | |
| 10141 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC AFR CP2D>AS3 L UKOPR 4C', [LastUpda teDate]='2 016-07-27 11:17:06.0 00', [Last UpdateUser ]=' RED A CTED ' WHERE [B loodProduc tGuid]='98 b37b66-973 a-4067-a29 0-a98f4817 10df' | |
| 10142 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLASMA A FR CP2D IR D 3C', [La stUpdateDa te]='2016- 07-27 11:1 7:06.000', [LastUpda teUser]=' RED A CTED ' WHERE [B loodProduc tGuid]='b7 c8d050-ddf 6-4987-a87 f-a9966dab d5ba' | |
| 10143 | UPDATE [db o].[BloodP roduct] SE T [Product Name]='Aph eresis FRE SH FROZEN PLASMA|ACD -B/XX/<=-2 5C|Irradia ted|>=200m L<400mL|Qu ar:>=6m/re tested', [ LastUpdate Date]='201 6-07-27 11 :17:06.000 ', [LastUp dateUser]= ' RED A CTED ' WHERE [B loodProduc tGuid]='b3 b6cff8-bf3 c-41f0-9db d-a9b9ef75 d484' | |
| 10144 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLT AFR PAS-D LUKO PR 4C', [L astUpdateD ate]='2016 -07-27 11: 17:06.000' , [LastUpd ateUser]=' RED A CTED ' WHERE [B loodProduc tGuid]='68 57b774-732 2-4d6f-89b 2-a9bc4409 1762' | |
| 10145 | UPDATE [db o].[BloodP roduct] SE T [Product Name]='Aph eresis FRE SH FROZEN PLASMA|NS/ XX/<=-30C| For mnf:no ninjectabl e|ResLeu:< 1E6|Frozen <=24h', [ LastUpdate Date]='201 6-07-27 11 :17:06.000 ', [LastUp dateUser]= ' RED A CTED ' WHERE [B loodProduc tGuid]='bf 7ccf8d-5af d-40e7-a98 7-a9c3336e eca6' | |
| 10146 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLT AFR ACD-A IRD PLS Red 4C ', [LastUp dateDate]= '2016-07-2 7 11:17:06 .000', [La stUpdateUs er]=' RED A CTED ' WHERE [B loodProduc tGuid]='93 fd2f3f-60e a-4bf0-b55 b-a9c6dabc 6a78' | |
| 10147 | UPDATE [db o].[BloodP roduct] SE T [Product Name]='FRE SH FROZEN PLASMA|CPD /450mL/<=- 25C|For mn f:injectab le|Frozen <=8h', [La stUpdateDa te]='2016- 07-27 11:1 7:06.000', [LastUpda teUser]=' RED A CTED ' WHERE [B loodProduc tGuid]='43 6aac2f-a0f 3-45df-b8d b-a9cbb7b3 7c7d' | |
| 10148 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='FFP AFR Thaw NaCit IRD 4C', [LastUpdat eDate]='20 16-07-27 1 1:17:06.00 0', [LastU pdateUser] =' RED A CTED ' WHERE [B loodProduc tGuid]='b4 cf3e2c-c0f 8-4631-916 7-a9f044fa 82e0' | |
| 10149 | UPDATE [db o].[BloodP roduct] SE T [Product Name]='Aph eresis FRE SH FROZEN PLASMA|ACD -B/XX/<=-6 5C|>=600mL ', [LastUp dateDate]= '2016-07-2 7 11:17:06 .000', [La stUpdateUs er]=' RED A CTED ' WHERE [B loodProduc tGuid]='b0 355af3-f0c d-4118-aaf a-aa02c73b c1d9' | |
| 10150 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC AFR Deg AS3 IR D LUKOPR 2 C', [LastU pdateDate] ='2016-07- 27 11:17:0 6.000', [L astUpdateU ser]=' RED A CTED ' WHERE [B loodProduc tGuid]='45 ebb88c-9b7 0-4f60-a08 3-aa2ba6f3 8ef2' | |
| 10151 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLT AFR ACD-A OPN IRD LUKOPR 3C Pedi', [LastUpda teDate]='2 016-07-27 11:17:06.0 00', [Last UpdateUser ]=' RED A CTED ' WHERE [B loodProduc tGuid]='dd 84a79d-6ed a-4cd6-9c0 a-aa47fec6 550d' | |
| 10152 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLT AFR NaCit MNFN I 2CNA', [ LastUpdate Date]='201 6-07-27 11 :17:06.000 ', [LastUp dateUser]= ' RED A CTED ' WHERE [B loodProduc tGuid]='b6 36cd06-e1d f-4d17-92a 8-aa4fbf01 ca10' | |
| 10153 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLT AFR ACD-B PLS Red 4C', [ LastUpdate Date]='201 6-07-27 11 :17:06.000 ', [LastUp dateUser]= ' RED A CTED ' WHERE [B loodProduc tGuid]='51 5ec447-faa 9-4484-a38 2-aa517b9c f75c' | |
| 10154 | UPDATE [db o].[BloodP roduct] SE T [Product Name]='FRE SH FROZEN PLASMA|CPD A-1/XX/<=- 25C|Irradi ated|Quar: >=6m/retes ted', [Las tUpdateDat e]='2016-0 7-27 11:17 :06.000', [LastUpdat eUser]=' RED A CTED ' WHERE [B loodProduc tGuid]='3f 8fb11d-5a6 5-447b-b82 d-aa682317 58b3' | |
| 10155 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLASMA N one 4C', [ LastUpdate Date]='201 6-07-27 11 :17:06.000 ', [LastUp dateUser]= ' RED A CTED ' WHERE [B loodProduc tGuid]='31 0dc721-bdd 8-4f33-b9d e-aa6ac6df 4af5' | |
| 10156 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC CP2D LUKOPR 8C ', [LastUp dateDate]= '2016-07-2 7 11:17:06 .000', [La stUpdateUs er]=' RED A CTED ' WHERE [B loodProduc tGuid]='a0 d25c8d-13b e-47ee-a65 c-aa760129 5610' | |
| 10157 | UPDATE [db o].[BloodP roduct] SE T [Product Name]='Aph eresis FRE SH FROZEN PLASMA|ACD -A/XX/<=-3 0C|ResLeu: <1E6|>=200 mL<400mL|F rozen <=18 h|2nd cont ainer', [P roductShor tName]='FF P AFR ACD- A LUKOPR 2 C', [LastU pdateDate] ='2016-07- 27 11:17:0 6.000', [L astUpdateU ser]=' RED A CTED ' WHERE [B loodProduc tGuid]='6b ebc89a-308 8-4302-b8d 7-aa7c0b96 7da6' | |
| 10158 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC AFR ACD-A>AS3 OPN IRD LU KOPR ALB A dd 1C', [L astUpdateD ate]='2016 -07-27 11: 17:06.000' , [LastUpd ateUser]=' RED A CTED ' WHERE [B loodProduc tGuid]='85 6842f9-862 6-460c-8a4 f-aa80493b 2683' | |
| 10159 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC AFR Froz None OPN 1C', [ LastUpdate Date]='201 6-07-27 11 :17:06.000 ', [LastUp dateUser]= ' RED A CTED ' WHERE [B loodProduc tGuid]='36 e6b16c-826 d-48e4-9dc c-aaa38873 1ff4' | |
| 10160 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC AFR ACD-A>AS3 OPN IRD LU KOPR ALB A dd 2C', [L astUpdateD ate]='2016 -07-27 11: 17:06.000' , [LastUpd ateUser]=' RED A CTED ' WHERE [B loodProduc tGuid]='11 c377dd-58f 0-42f0-bc5 b-aaa64566 5dd0' | |
| 10161 | UPDATE [db o].[BloodP roduct] SE T [Product Name]='FRE SH FROZEN PLASMA|CPD /XX/<=-65C |Not for t x or mnf|Q uar:>=6m/r etested', [LastUpdat eDate]='20 16-07-27 1 1:17:06.00 0', [LastU pdateUser] =' RED A CTED ' WHERE [B loodProduc tGuid]='15 245415-6e2 8-469c-a09 9-aaa8f8fa 620a' | |
| 10162 | UPDATE [db o].[BloodP roduct] SE T [Product Name]='Aph eresis FRE SH FROZEN PLASMA|ACD -A/XX/<=-6 5C|<200 mL |Quar:>=6m /retested' , [LastUpd ateDate]=' 2016-07-27 11:17:06. 000', [Las tUpdateUse r]=' RED A CTED ' WHERE [B loodProduc tGuid]='39 3a3721-4cd 4-4650-89a 3-aaba7965 d481' | |
| 10163 | UPDATE [db o].[BloodP roduct] SE T [Product Name]='Fro zen Rejuve nated Aphe resis RED BLOOD CELL S|None/XX/ <=-65C|Ope n|Irradiat ed|2nd con tainer', [ ProductSho rtName]='R BC AFR Fro z Rej None OPN IRD 2 C', [LastU pdateDate] ='2016-07- 27 11:17:0 6.000', [L astUpdateU ser]=' RED A CTED ' WHERE [B loodProduc tGuid]='40 30e7ed-76e c-45aa-819 f-aae1b203 a8f0' | |
| 10164 | UPDATE [db o].[BloodP roduct] SE T [Product Name]='Fro zen Aphere sis PLATEL ETS|DMSO/X X/<=-30C|O pen|ResLeu :<1E6|2nd container| Psoralen-t reated', [ ProductSho rtName]='P LT AFR Fro z DMSO OPN LUKOPR 2C Psoraln', [LastUpda teDate]='2 016-07-27 11:17:06.0 00', [Last UpdateUser ]=' RED A CTED ' WHERE [B loodProduc tGuid]='70 df6913-f78 2-4204-a5b 9-aae74d62 85b4' | |
| 10165 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC AFR ACD-A>AS1 IRD LUKOPR 1C', [Las tUpdateDat e]='2016-0 7-27 11:17 :06.000', [LastUpdat eUser]=' RED A CTED ' WHERE [B loodProduc tGuid]='4d 3cdec0-932 d-4214-858 3-aae95a45 fb31' | |
| 10166 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC CPDA -1 4C', [R etireDate] ='2015-04- 07 00:00:0 0.000', [L astUpdateD ate]='2016 -07-27 11: 17:06.000' , [LastUpd ateUser]=' RED A CTED ' WHERE [B loodProduc tGuid]='5d 5bf573-6c3 5-4d0c-9ef 6-ab0a95a8 1fa2' | |
| 10167 | UPDATE [db o].[BloodP roduct] SE T [Product Name]='Fro zen Rejuve nated RED BLOOD CELL S|None/450 mL/<=-120C |Not for t x or mnf|O pen', [Las tUpdateDat e]='2016-0 7-27 11:17 :06.000', [LastUpdat eUser]=' RED A CTED ' WHERE [B loodProduc tGuid]='79 2382a4-d6f 6-41a8-8fc 8-ab237160 8487' | |
| 10168 | UPDATE [db o].[BloodP roduct] SE T [Product Name]='Fro zen RED BL OOD CELLS| None/XX/<= -65C|Open| Irradiated |ResLeu:<5 E6', [Last UpdateDate ]='2016-07 -27 11:17: 06.000', [ LastUpdate User]=' RED A CTED ' WHERE [B loodProduc tGuid]='5a 6637ad-983 2-421e-afc 4-ab707e38 c407' | |
| 10169 | UPDATE [db o].[BloodP roduct] SE T [Product Name]='Aph eresis FRE SH FROZEN PLASMA|ACD -B/XX/<=-3 0C|Not for tx or mnf |Fin Con:N S|Aphr not automated |Quar:>=6m /retested' , [LastUpd ateDate]=' 2016-07-27 11:17:06. 000', [Las tUpdateUse r]=' RED A CTED ' WHERE [B loodProduc tGuid]='d1 b68519-7b8 d-4944-b2e 6-ab778c07 14f0' | |
| 10170 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC AFR Froz None OPN 8C', [ LastUpdate Date]='201 6-07-27 11 :17:06.000 ', [LastUp dateUser]= ' RED A CTED ' WHERE [B loodProduc tGuid]='84 0b41ea-7df b-436c-ab9 0-ab89ca5d 6930' | |
| 10171 | UPDATE [db o].[BloodP roduct] SE T [Product Name]='Fro zen Rejuve nated RED BLOOD CELL S|None/XX/ <=-65C|Ope n|Irradiat ed', [Last UpdateDate ]='2016-07 -27 11:17: 06.000', [ LastUpdate User]=' RED A CTED ' WHERE [B loodProduc tGuid]='94 901133-cb7 b-4686-87a e-ab8a8208 8385' | |
| 10172 | UPDATE [db o].[BloodP roduct] SE T [Product Name]='Fro zen POOLED PLATELETS |DMSO/XX/< =-80C|Open |Buffy coa t plts pre p|4 units' , [LastUpd ateDate]=' 2016-07-27 11:17:06. 000', [Las tUpdateUse r]=' RED A CTED ' WHERE [B loodProduc tGuid]='cf 5477a7-6fa d-4b32-a85 9-ab9b3e81 02a1' | |
| 10173 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC CPD LUKOPR 6C' , [LastUpd ateDate]=' 2016-07-27 11:17:06. 000', [Las tUpdateUse r]=' RED A CTED ' WHERE [B loodProduc tGuid]='f9 79dbb3-534 2-48e3-91d 1-abb0f56c 1a00' | |
| 10174 | UPDATE [db o].[BloodP roduct] SE T [Product Name]='Fro zen Aphere sis PLATEL ETS|DMSO/X X/<=-65C|O pen|ResLeu :<1E6', [L astUpdateD ate]='2016 -07-27 11: 17:06.000' , [LastUpd ateUser]=' RED A CTED ' WHERE [B loodProduc tGuid]='35 d7588a-824 9-43ea-bc0 c-abde4e91 9425' | |
| 10175 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='FFP AFR None LUKOP R 4C', [La stUpdateDa te]='2016- 07-27 11:1 7:06.000', [LastUpda teUser]=' RED A CTED ' WHERE [B loodProduc tGuid]='f2 9f50ad-048 4-4cf9-bef 3-abf6c26d ee28' | |
| 10176 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC CPD 4C', [Last UpdateDate ]='2016-07 -27 11:17: 06.000', [ LastUpdate User]=' RED A CTED ' WHERE [B loodProduc tGuid]='41 5c75b6-fdd 9-4caf-928 b-ac0d1ac1 adc3' | |
| 10177 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC CP2D 4C', [Las tUpdateDat e]='2016-0 7-27 11:17 :06.000', [LastUpdat eUser]=' RED A CTED ' WHERE [B loodProduc tGuid]='c4 ac6354-e89 3-4a71-a50 8-ac105797 6e72' | |
| 10178 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC AFR CP2D-AS3 I RD LUKOPR 1C', [Last UpdateDate ]='2016-07 -27 11:17: 06.000', [ LastUpdate User]=' RED A CTED ' WHERE [B loodProduc tGuid]='0a 16b675-31b f-4973-905 f-ac1737ac 6cd5' | |
| 10179 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLT AFR PAS-C LUKO PR 1C Psor aln', [Las tUpdateDat e]='2016-0 7-27 11:17 :06.000', [LastUpdat eUser]=' RED A CTED ' WHERE [B loodProduc tGuid]='de c26bdb-4c0 c-42f6-823 d-ac28c805 76f3' | |
| 10180 | UPDATE [db o].[BloodP roduct] SE T [Product Name]='Tha wed PLASMA |CPD/450mL /<=-25C|Ir radiated|R esLeu:<1E6 |Frozen <= 6h', [Last UpdateDate ]='2016-07 -27 11:17: 06.000', [ LastUpdate User]=' RED A CTED ' WHERE [B loodProduc tGuid]='42 f0dddb-f2c b-4dcd-a25 7-ac2a2a08 3777' | |
| 10181 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLT AFR Wash None OPN IRD LU KOPR 2C', [LastUpdat eDate]='20 16-07-27 1 1:17:06.00 0', [LastU pdateUser] =' RED A CTED ' WHERE [B loodProduc tGuid]='42 578a5e-3b7 e-4c5b-a29 7-ac2fe488 4c80' | |
| 10182 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLT AFR ACD-A MNFN I LUKOPR 3 C', [LastU pdateDate] ='2016-07- 27 11:17:0 6.000', [L astUpdateU ser]=' RED A CTED ' WHERE [B loodProduc tGuid]='f3 85b2fd-4d2 0-405e-b99 2-ac5da6ca e9c0' | |
| 10183 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='WB CP2D IRD LUKOPR 3C', [Las tUpdateDat e]='2016-0 7-27 11:17 :06.000', [LastUpdat eUser]=' RED A CTED ' WHERE [B loodProduc tGuid]='e0 ed8308-b82 5-40b1-b1a 2-ac77b5a3 3fad' | |
| 10184 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='FFP Thaw None 3C', [LastUpda teDate]='2 016-07-27 11:17:06.0 00', [Last UpdateUser ]=' RED A CTED ' WHERE [B loodProduc tGuid]='f3 99bf1e-f0a 3-4d31-8f2 1-ac7d57dc 28f9' | |
| 10185 | UPDATE [db o].[BloodP roduct] SE T [Product Name]='POO LED GRANUL OCYTES|CPD /450mL/rt| Irradiated |Plasma Re duced|4 un its', [Pro ductShortN ame]='GRAN Pool CPD IRD PLS Re d 4U', [La stUpdateDa te]='2016- 07-27 11:1 7:06.000', [LastUpda teUser]=' RED A CTED ' WHERE [B loodProduc tGuid]='23 be97ac-a34 a-4f02-8ad e-ac8f2f64 2d04' | |
| 10186 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLT AFR NS OPN PLS Red 3C', [LastUpdat eDate]='20 16-07-27 1 1:17:06.00 0', [LastU pdateUser] =' RED A CTED ' WHERE [B loodProduc tGuid]='e1 e1cd03-1cf 3-4e65-87c 5-aca951d2 266a' | |
| 10187 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLT AFR ACD-B OPN IRD LUKOPR PLS Red 1 C', [LastU pdateDate] ='2016-07- 27 11:17:0 6.000', [L astUpdateU ser]=' RED A CTED ' WHERE [B loodProduc tGuid]='1c 4ab25e-6cf 3-45a8-9b7 f-acb26568 5685' | |
| 10188 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='FFP CPD IRD 1C QUA R', [LastU pdateDate] ='2016-07- 27 11:17:0 6.000', [L astUpdateU ser]=' RED A CTED ' WHERE [B loodProduc tGuid]='22 23add1-127 2-4d23-ba1 e-acb3d464 e7fb' | |
| 10189 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLT AFR ACD-A MNFN I OPN 1CNA ', [LastUp dateDate]= '2016-07-2 7 11:17:06 .000', [La stUpdateUs er]=' RED A CTED ' WHERE [B loodProduc tGuid]='21 b76716-008 2-4183-8c3 c-acc16969 7097' | |
| 10190 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC AFR CP2D>AS3 I RD SR/PA 2 C', [LastU pdateDate] ='2016-07- 27 11:17:0 6.000', [L astUpdateU ser]=' RED A CTED ' WHERE [B loodProduc tGuid]='92 ad5cff-495 9-4095-8f2 a-ace17f55 7fe2' | |
| 10191 | UPDATE [db o].[BloodP roduct] SE T [Product Name]='Aph eresis FRE SH FROZEN PLASMA|ACD -B/XX/<=-2 5C|Irradia ted|<200 m L|Quar:>=6 m/retested ', [LastUp dateDate]= '2016-07-2 7 11:17:06 .000', [La stUpdateUs er]=' RED A CTED ' WHERE [B loodProduc tGuid]='13 51032f-2f8 9-43f1-87e 0-ace8c826 5240' | |
| 10192 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC CPD 8C', [Reti reDate]='2 015-04-07 00:00:00.0 00', [Last UpdateDate ]='2016-07 -27 11:17: 06.000', [ LastUpdate User]=' RED A CTED ' WHERE [B loodProduc tGuid]='9f 17038c-575 2-4a3a-ac0 3-acf7b09d d07f' | |
| 10193 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLT AFR ACD-A IRD LUKOPR 1C BacMtr', [ LastUpdate Date]='201 6-07-27 11 :17:06.000 ', [LastUp dateUser]= ' RED A CTED ' WHERE [B loodProduc tGuid]='89 52c799-7c6 5-4df2-bde 8-acf92226 e49d' | |
| 10194 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLT AFR PAS-C IRD LUKOPR 1C' , [LastUpd ateDate]=' 2016-07-27 11:17:06. 000', [Las tUpdateUse r]=' RED A CTED ' WHERE [B loodProduc tGuid]='3d 9a084d-b77 d-4648-924 d-acfe242e 5728' | |
| 10195 | UPDATE [db o].[BloodP roduct] SE T [Product Name]='Aph eresis FRE SH FROZEN PLASMA|ACD -B/XX/<=-3 0C|Irradia ted|Fin Co n:NS|Aphr not automa ted', [Las tUpdateDat e]='2016-0 7-27 11:17 :06.000', [LastUpdat eUser]=' RED A CTED ' WHERE [B loodProduc tGuid]='bf b2bf86-883 d-4fa1-8f0 d-ad1fddd5 c645' | |
| 10196 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC Deg Rej None O PN LUKOPR SR 2C', [L astUpdateD ate]='2016 -07-27 11: 17:06.000' , [LastUpd ateUser]=' RED A CTED ' WHERE [B loodProduc tGuid]='97 849743-1d2 a-45d2-879 f-ad225288 6f4c' | |
| 10197 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLT AFR ACD-A IRD PLS Red/PA 3C', [Las tUpdateDat e]='2016-0 7-27 11:17 :06.000', [LastUpdat eUser]=' RED A CTED ' WHERE [B loodProduc tGuid]='aa 7ce910-04b c-4795-b82 5-ad4c9485 0497' | |
| 10198 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='FFP CPDA -1 IRD 2C' , [LastUpd ateDate]=' 2016-07-27 11:17:06. 000', [Las tUpdateUse r]=' RED A CTED ' WHERE [B loodProduc tGuid]='cd 919ed6-28c 7-4f41-918 5-ad52b5da 10d1' | |
| 10199 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC AFR ACD-A>AS3 LUKOPR 4C' , [LastUpd ateDate]=' 2016-07-27 11:17:06. 000', [Las tUpdateUse r]=' RED A CTED ' WHERE [B loodProduc tGuid]='3f 3ce607-441 0-49f8-a7e c-ad5443c5 bc11' | |
| 10200 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLT AFR ACD-A OPN LUKOPR PLS Red 3C', [LastUpdat eDate]='20 16-07-27 1 1:17:06.00 0', [LastU pdateUser] =' RED A CTED ' WHERE [B loodProduc tGuid]='46 f905d6-585 2-470c-abe c-ad57b384 507d' | |
| 10201 | UPDATE [db o].[BloodP roduct] SE T [Product Name]='Aph eresis FRE SH FROZEN PLASMA|ACD -B/XX/<=-2 5C|Aphr no t automate d|Quar:>=6 m/retested ', [LastUp dateDate]= '2016-07-2 7 11:17:06 .000', [La stUpdateUs er]=' RED A CTED ' WHERE [B loodProduc tGuid]='65 ceecd9-3cd 7-40af-8d3 4-ad84c275 c672' | |
| 10202 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC CPD 6C', [Last UpdateDate ]='2016-07 -27 11:17: 06.000', [ LastUpdate User]=' RED A CTED ' WHERE [B loodProduc tGuid]='ca 844eef-fec 8-4512-8c6 0-ada28012 b1b2' | |
| 10203 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLT AFR ACD-A 2C', [LastUpda teDate]='2 016-07-27 11:17:06.0 00', [Last UpdateUser ]=' RED A CTED ' WHERE [B loodProduc tGuid]='c1 1740a4-0be 2-458a-aa1 b-ada31252 56db' | |
| 10204 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLASMA A FR Thaw AC D-A OPN 4C ', [LastUp dateDate]= '2016-07-2 7 11:17:06 .000', [La stUpdateUs er]=' RED A CTED ' WHERE [B loodProduc tGuid]='54 ff17a0-9ff a-4ea7-90e e-adb610c4 b12f' | |
| 10205 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC CPD LUKOPR 1C' , [LastUpd ateDate]=' 2016-07-27 11:17:06. 000', [Las tUpdateUse r]=' RED A CTED ' WHERE [B loodProduc tGuid]='d9 cc4d09-87a e-4e0b-bec f-adb7a09c 6614' | |
| 10206 | UPDATE [db o].[BloodP roduct] SE T [Product Name]='FRE SH FROZEN PLASMA|CPD /XX/<=-25C |Frozen <= 15h|Methyl ene blue-t reated', [ LastUpdate Date]='201 6-07-27 11 :17:06.000 ', [LastUp dateUser]= ' RED A CTED ' WHERE [B loodProduc tGuid]='aa bceade-620 5-44f1-91f 6-addbc3fb 5ed2' | |
| 10207 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLT AFR PAS-B IRD LUKOPR 1C BacTest', [LastUpdat eDate]='20 16-07-27 1 1:17:06.00 0', [LastU pdateUser] =' RED A CTED ' WHERE [B loodProduc tGuid]='9b f54aac-4c3 2-4750-83c 5-adede76a 988d' | |
| 10208 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC AFR ACD-A>AS1 7C', [Last UpdateDate ]='2016-07 -27 11:17: 06.000', [ LastUpdate User]=' RED A CTED ' WHERE [B loodProduc tGuid]='ad 4ce9f2-65c 4-42b7-8e5 c-ae0b9e30 a2a3' | |
| 10209 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLT AFR ACD-A IRD LUKOPR 8C BacMtr', [ LastUpdate Date]='201 6-07-27 11 :17:06.000 ', [LastUp dateUser]= ' RED A CTED ' WHERE [B loodProduc tGuid]='31 a6833e-5da 2-4f25-8a3 8-ae587344 2d21' | |
| 10210 | UPDATE [db o].[BloodP roduct] SE T [Product Name]='Aph eresis FRE SH FROZEN PLASMA|ACD -B/XX/<=-3 0C|Not for tx or mnf |Fin Con:N S', [LastU pdateDate] ='2016-07- 27 11:17:0 6.000', [L astUpdateU ser]=' RED A CTED ' WHERE [B loodProduc tGuid]='65 c0647a-530 c-42b9-ad4 a-ae5f93ec 72b1' | |
| 10211 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLT AFR ACD-B LUKO PR 4C', [L astUpdateD ate]='2016 -07-27 11: 17:06.000' , [LastUpd ateUser]=' RED A CTED ' WHERE [B loodProduc tGuid]='6e b655c3-833 6-4d88-8d6 7-ae66b069 9de4' | |
| 10212 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLT AFR ACD-B LUKO PR PLS Red 3C', [Las tUpdateDat e]='2016-0 7-27 11:17 :06.000', [LastUpdat eUser]=' RED A CTED ' WHERE [B loodProduc tGuid]='f5 700311-32e 1-4901-a0e 0-ae69d309 9432' | |
| 10213 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC AFR Wash None OPN IRD LU KOPR ALB A dd 1C', [L astUpdateD ate]='2016 -07-27 11: 17:06.000' , [LastUpd ateUser]=' RED A CTED ' WHERE [B loodProduc tGuid]='c4 5489c5-453 0-4d53-b00 a-ae69e57b e91a' | |
| 10214 | UPDATE [db o].[BloodP roduct] SE T [Product Name]='FRE SH FROZEN PLASMA|CPD /XX/<=-65C |3rd conta iner|Quar: >=112d/ret ested', [P roductShor tName]='FF P CPD 3C Q UAR', [Las tUpdateDat e]='2016-0 7-27 11:17 :06.000', [LastUpdat eUser]=' RED A CTED ' WHERE [B loodProduc tGuid]='9c d476d2-624 1-4222-bf7 f-ae6f8b01 7038' | |
| 10215 | UPDATE [db o].[BloodP roduct] SE T [Product Name]='Aph eresis FRE SH FROZEN PLASMA|ACD -B/XX/<=-3 0C|>=400mL <600mL', [ LastUpdate Date]='201 6-07-27 11 :17:06.000 ', [LastUp dateUser]= ' RED A CTED ' WHERE [B loodProduc tGuid]='92 be95a6-695 4-428b-af6 a-ae705c8d 73f1' | |
| 10216 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLT AFR ACD-A OPN IRD LUKOPR PLS Red 2 C', [LastU pdateDate] ='2016-07- 27 11:17:0 6.000', [L astUpdateU ser]=' RED A CTED ' WHERE [B loodProduc tGuid]='4c 499fda-27d 1-4ebb-9ea c-ae707ddb f578' | |
| 10217 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC CPD> AS1 IRD LU KOPR 1C', [LastUpdat eDate]='20 16-07-27 1 1:17:06.00 0', [LastU pdateUser] =' RED A CTED ' WHERE [B loodProduc tGuid]='43 f0c3c6-c19 0-498e-b3b e-ae72635e 50c5' | |
| 10218 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC AFR ACD-A 1C', [LastUpda teDate]='2 016-07-27 11:17:06.0 00', [Last UpdateUser ]=' RED A CTED ' WHERE [B loodProduc tGuid]='64 ad2874-1ef d-4a56-ae4 7-ae756790 d178' | |
| 10219 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='FFP AFR None 7C', [LastUpdat eDate]='20 16-07-27 1 1:17:06.00 0', [LastU pdateUser] =' RED A CTED ' WHERE [B loodProduc tGuid]='c8 011fd5-225 c-4328-8c6 2-ae891ad9 679e' | |
| 10220 | UPDATE [db o].[BloodP roduct] SE T [Product Name]='Aph eresis FRE SH FROZEN PLASMA|ACD -A/XX/<=-6 5C|Irradia ted|>=200m L<400mL|Qu ar:>=6m/re tested', [ LastUpdate Date]='201 6-07-27 11 :17:06.000 ', [LastUp dateUser]= ' RED A CTED ' WHERE [B loodProduc tGuid]='e9 a25268-365 d-43af-b92 0-ae8970a8 504f' | |
| 10221 | UPDATE [db o].[BloodP roduct] SE T [Product Name]='Aph eresis FRE SH FROZEN PLASMA|ACD -B/XX/<=-2 5C|Irradia ted|Fin Co n:NS|Aphr not automa ted|Quar:> =6m/retest ed', [Last UpdateDate ]='2016-07 -27 11:17: 06.000', [ LastUpdate User]=' RED A CTED ' WHERE [B loodProduc tGuid]='59 fac7ee-45d c-4d9e-a4b c-aeb64478 9cf9' | |
| 10222 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC CP2D >AS3 LUKOP R 7C', [La stUpdateDa te]='2016- 07-27 11:1 7:06.000', [LastUpda teUser]=' RED A CTED ' WHERE [B loodProduc tGuid]='4e 7991b0-bba d-4a50-955 9-aece0da0 4a9c' | |
| 10223 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLT AFR ACD-A OPN IRD LUKOPR PLS Red/A LB Add 1C' , [LastUpd ateDate]=' 2016-07-27 11:17:06. 000', [Las tUpdateUse r]=' RED A CTED ' WHERE [B loodProduc tGuid]='b7 b82f4b-2c4 2-4e06-8a6 d-aedff339 0c93' | |
| 10224 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC CPDA -1 7C', [L astUpdateD ate]='2016 -07-27 11: 17:06.000' , [LastUpd ateUser]=' RED A CTED ' WHERE [B loodProduc tGuid]='5e b6fd71-aab c-4de9-b72 e-af010e9d a8d5' | |
| 10225 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC AFR CP2D>AS3 N MT OPN 2C' , [LastUpd ateDate]=' 2016-07-27 11:17:06. 000', [Las tUpdateUse r]=' RED A CTED ' WHERE [B loodProduc tGuid]='0c 51a2de-c67 c-4c91-b95 6-af173d4a b735' | |
| 10226 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='FFP AFR Thaw CPD-5 0 LUKOPR 2 C Psoraln' , [LastUpd ateDate]=' 2016-07-27 11:17:06. 000', [Las tUpdateUse r]=' RED A CTED ' WHERE [B loodProduc tGuid]='b6 735782-bfd c-493c-8a6 f-af24dd4c 3881' | |
| 10227 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC CPDA -1 IRD LUK OPR 3C', [ RetireDate ]='2015-04 -07 00:00: 00.000', [ LastUpdate Date]='201 6-07-27 11 :17:06.000 ', [LastUp dateUser]= ' RED A CTED ' WHERE [B loodProduc tGuid]='f5 e8d6ea-b7e f-45cc-a96 a-af291800 a55a' | |
| 10228 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLASMA A FR Thaw AC D-A IRD 4C ', [LastUp dateDate]= '2016-07-2 7 11:17:06 .000', [La stUpdateUs er]=' RED A CTED ' WHERE [B loodProduc tGuid]='82 544b74-2f0 e-4cd4-8f8 e-af29deb9 e0ae' | |
| 10229 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC CPDA -1 IRD LUK OPR 6C', [ RetireDate ]='2015-04 -07 00:00: 00.000', [ LastUpdate Date]='201 6-07-27 11 :17:06.000 ', [LastUp dateUser]= ' RED A CTED ' WHERE [B loodProduc tGuid]='bc 9e1fa9-2ea f-4a6a-afe f-af380c96 9500' | |
| 10230 | UPDATE [db o].[BloodP roduct] SE T [Product Name]='FRE SH FROZEN PLASMA|CPD A-1/450mL/ <=-30C|Fro zen <=6h', [LastUpda teDate]='2 016-07-27 11:17:06.0 00', [Last UpdateUser ]=' RED A CTED ' WHERE [B loodProduc tGuid]='92 e0755e-1bf 2-47ca-b23 8-af43f1e1 dc4a' | |
| 10231 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLT AFR ACD-A>PAS- D IRD LUKO PR 1C BacM tr', [Last UpdateDate ]='2016-07 -27 11:17: 06.000', [ LastUpdate User]=' RED A CTED ' WHERE [B loodProduc tGuid]='d7 9d78d4-70b 1-4d1e-ad6 a-af559b93 b707' | |
| 10232 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='FFP AFR Thaw None IRD LUKOPR 5C', [Las tUpdateDat e]='2016-0 7-27 11:17 :06.000', [LastUpdat eUser]=' RED A CTED ' WHERE [B loodProduc tGuid]='99 5e9d39-8ec f-40fd-b58 f-af62d2d6 2439' | |
| 10233 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='FFP AFR ACD-A IRD 2C QUAR', [LastUpdat eDate]='20 16-07-27 1 1:17:06.00 0', [LastU pdateUser] =' RED A CTED ' WHERE [B loodProduc tGuid]='7f bb355a-77e c-4b1a-866 2-af97086e 42db' | |
| 10234 | UPDATE [db o].[BloodP roduct] SE T [Product Name]='Fro zen POOLED PLATELETS |DMSO/XX/< =-80C|ResL eu:<1E6|Bu ffy coat p lts prep|5 units', [ LastUpdate Date]='201 6-07-27 11 :17:06.000 ', [LastUp dateUser]= ' RED A CTED ' WHERE [B loodProduc tGuid]='25 2d239b-67c c-4dd6-afd a-afa56b5b e229' | |
| 10235 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLT AFR NS LUKOPR 2C', [Last UpdateDate ]='2016-07 -27 11:17: 06.000', [ LastUpdate User]=' RED A CTED ' WHERE [B loodProduc tGuid]='e2 47b85f-fe3 8-4978-b20 6-afcaaeb6 ae48' | |
| 10236 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLT AFR ACD-A MNFN I LUKOPR 2 C', [LastU pdateDate] ='2016-07- 27 11:17:0 6.000', [L astUpdateU ser]=' RED A CTED ' WHERE [B loodProduc tGuid]='d4 5fdc53-a0b b-474f-bcc a-afcf23e4 0867' | |
| 10237 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLT AFR Wash None OPN LUKOPR 2C', [Las tUpdateDat e]='2016-0 7-27 11:17 :06.000', [LastUpdat eUser]=' RED A CTED ' WHERE [B loodProduc tGuid]='84 f35c52-b92 0-4741-8a3 3-afd2dce4 bc4a' | |
| 10238 | UPDATE [db o].[BloodP roduct] SE T [Product Name]='Fro zen Aphere sis RED BL OOD CELLS| Gly40%/XX/ <=-65C|Ope n|1st cont ainer', [P roductShor tName]='RB C AFR Froz Gly40% OP N 1C', [La stUpdateDa te]='2016- 07-27 11:1 7:06.000', [LastUpda teUser]=' RED A CTED ' WHERE [B loodProduc tGuid]='c7 a04ac4-7a4 3-45a2-bea 7-afe2d06a 7d25' | |
| 10239 | UPDATE [db o].[BloodP roduct] SE T [Product Name]='Aph eresis FRE SH FROZEN PLASMA|CPD -50/XX/<=- 25C|2nd co ntainer|Ps oralen-tre ated', [Pr oductShort Name]='FFP AFR CPD-5 0 2C Psora ln', [Last UpdateDate ]='2016-07 -27 11:17: 06.000', [ LastUpdate User]=' RED A CTED ' WHERE [B loodProduc tGuid]='b1 6fae06-a2e 1-4ad1-9e9 0-afebe05e aef9' | |
| 10240 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLT AFR ACD-A MNFN I 2C', [La stUpdateDa te]='2016- 07-27 11:1 7:06.000', [LastUpda teUser]=' RED A CTED ' WHERE [B loodProduc tGuid]='7f 4d1be7-142 6-4668-b84 c-afff6670 58b1' | |
| 10241 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLT AFR NS IRD PLS Red 2C', [LastUpdat eDate]='20 16-07-27 1 1:17:06.00 0', [LastU pdateUser] =' RED A CTED ' WHERE [B loodProduc tGuid]='c8 fd2a08-166 a-4e9c-881 e-b0045b9c 148c' | |
| 10242 | UPDATE [db o].[BloodP roduct] SE T [Product Name]='Aph eresis FRE SH FROZEN PLASMA|ACD -A/XX/<=-6 5C|Fin Con :NS', [Las tUpdateDat e]='2016-0 7-27 11:17 :06.000', [LastUpdat eUser]=' RED A CTED ' WHERE [B loodProduc tGuid]='0f 9dc254-437 7-446b-af8 4-b006728f 6e9d' | |
| 10243 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC AFR Wash None OPN IRD LU KOPR PA 2C ', [LastUp dateDate]= '2016-07-2 7 11:17:06 .000', [La stUpdateUs er]=' RED A CTED ' WHERE [B loodProduc tGuid]='ba 987be3-6db 9-41cc-9af c-b00961a7 b7e5' | |
| 10244 | UPDATE [db o].[BloodP roduct] SE T [Product Name]='Aph eresis FRE SH FROZEN PLASMA|NaC itrate/XX/ <=-65C|5th container |Quar:>=11 2d/reteste d', [Produ ctShortNam e]='FFP AF R NaCit 5C QUAR', [L astUpdateD ate]='2016 -07-27 11: 17:06.000' , [LastUpd ateUser]=' RED A CTED ' WHERE [B loodProduc tGuid]='55 826e89-b3f 4-4ea8-a61 4-b00aeb03 4981' | |
| 10245 | UPDATE [db o].[BloodP roduct] SE T [Product Name]='PLA SMA|CPD/45 0mL/<=-25C |Frozen >2 4h', [Last UpdateDate ]='2016-07 -27 11:17: 06.000', [ LastUpdate User]=' RED A CTED ' WHERE [B loodProduc tGuid]='7a a5d34e-cf7 b-4957-a7f 2-b00c1b47 d801' | |
| 10246 | UPDATE [db o].[BloodP roduct] SE T [Product Name]='Aph eresis FRE SH FROZEN PLASMA|ACD -A/XX/<=-6 5C|>=400mL <600mL|Qua r:>=6m/ret ested', [L astUpdateD ate]='2016 -07-27 11: 17:06.000' , [LastUpd ateUser]=' RED A CTED ' WHERE [B loodProduc tGuid]='83 a9db89-df1 1-4f8c-a9c 7-b02c15b4 36b0' | |
| 10247 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='FFP AFR None QUAR 5C', [Last UpdateDate ]='2016-07 -27 11:17: 06.000', [ LastUpdate User]=' RED A CTED ' WHERE [B loodProduc tGuid]='53 ce0a4e-49f 0-441b-b48 6-b02e438a d2a0' | |
| 10248 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLT AFR ACD-A LUKO PR 3C', [L astUpdateD ate]='2016 -07-27 11: 17:06.000' , [LastUpd ateUser]=' RED A CTED ' WHERE [B loodProduc tGuid]='e5 a0e829-3c5 c-4b5a-9b8 0-b036e255 a83e' | |
| 10249 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='FFP AFR Thaw ACD-A IRD 6C', [LastUpdat eDate]='20 16-07-27 1 1:17:06.00 0', [LastU pdateUser] =' RED A CTED ' WHERE [B loodProduc tGuid]='45 82a2d6-a07 3-4dc2-aa2 8-b0557b43 99f3' | |
| 10250 | UPDATE [db o].[BloodP roduct] SE T [Product Name]='POO LED PLASMA |CPD/450mL /<=-25C|Fr ozen <=6h' , [LastUpd ateDate]=' 2016-07-27 11:17:06. 000', [Las tUpdateUse r]=' RED A CTED ' WHERE [B loodProduc tGuid]='32 9fcd8d-f2d 4-4121-b57 a-b05e48f2 aab1' | |
| 10251 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLASMA A FR Liq 0.5 CPD IRD L UKOPR 1C', [LastUpda teDate]='2 016-07-27 11:17:06.0 00', [Last UpdateUser ]=' RED A CTED ' WHERE [B loodProduc tGuid]='9c 7e7016-621 5-4cda-b39 4-b05f741a eeea' | |
| 10252 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLT AFR ACD-A PLS Red/PA 2C' , [LastUpd ateDate]=' 2016-07-27 11:17:06. 000', [Las tUpdateUse r]=' RED A CTED ' WHERE [B loodProduc tGuid]='b8 ae4e5f-f0d f-4d64-aab b-b06a31ca 50e6' | |
| 10253 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='FFP AFR None IRD Q UAR 2C', [ LastUpdate Date]='201 6-07-27 11 :17:06.000 ', [LastUp dateUser]= ' RED A CTED ' WHERE [B loodProduc tGuid]='23 593a8f-6d9 c-4cb3-aec e-b0759570 b192' | |
| 10254 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLT AFR ACD-A IRD LUKOPR 7C' , [LastUpd ateDate]=' 2016-07-27 11:17:06. 000', [Las tUpdateUse r]=' RED A CTED ' WHERE [B loodProduc tGuid]='51 b971e3-a49 2-45da-99d 0-b075cbd8 06d3' | |
| 10255 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLT AFR ACD-A LUKO PR PLS Red 1C', [Las tUpdateDat e]='2016-0 7-27 11:17 :06.000', [LastUpdat eUser]=' RED A CTED ' WHERE [B loodProduc tGuid]='bf 2f4ba2-870 2-4b90-a67 c-b08259ad c893' | |
| 10256 | UPDATE [db o].[BloodP roduct] SE T [Product Name]='Fro zen POOLED PLATELETS |DMSO/XX/< =-65C|2 un its', [Las tUpdateDat e]='2016-0 7-27 11:17 :06.000', [LastUpdat eUser]=' RED A CTED ' WHERE [B loodProduc tGuid]='e8 7c400f-563 1-4a72-b90 4-b08a9d82 89a0' | |
| 10257 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLT AFR ACD-A OPN IRD 2CNA', [LastUpda teDate]='2 016-07-27 11:17:06.0 00', [Last UpdateUser ]=' RED A CTED ' WHERE [B loodProduc tGuid]='1e 1f5aa8-90f 9-4d47-810 1-b0941dd9 e085' | |
| 10258 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC Rej None OPN 2 C', [LastU pdateDate] ='2016-07- 27 11:17:0 6.000', [L astUpdateU ser]=' RED A CTED ' WHERE [B loodProduc tGuid]='30 32e2b1-a78 0-4b1f-b53 1-b0a1112a e9bf' | |
| 10259 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC AFR ACD-A>AS3 1C', [Last UpdateDate ]='2016-07 -27 11:17: 06.000', [ LastUpdate User]=' RED A CTED ' WHERE [B loodProduc tGuid]='0c 8a7884-d41 a-41fb-b42 1-b0a331ce c185' | |
| 10260 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLT AFR ACD-A OPN IRD LUKOPR PLS Red 4 C', [LastU pdateDate] ='2016-07- 27 11:17:0 6.000', [L astUpdateU ser]=' RED A CTED ' WHERE [B loodProduc tGuid]='21 5817d1-f2f 3-4f9d-801 e-b0a76b34 9fd4' | |
| 10261 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC AFR CP2D NMT O PN 1C', [L astUpdateD ate]='2016 -07-27 11: 17:06.000' , [LastUpd ateUser]=' RED A CTED ' WHERE [B loodProduc tGuid]='16 f5f371-a01 0-4c4b-9f9 6-b0aa9543 d3d5' | |
| 10262 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLT AFR ACD-A LUKO PR 5C BacM tr', [Last UpdateDate ]='2016-07 -27 11:17: 06.000', [ LastUpdate User]=' RED A CTED ' WHERE [B loodProduc tGuid]='bc c2891b-59b a-4ba4-bf7 8-b0ac3348 c379' | |
| 10263 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC AFR Froz None OPN 3C', [ LastUpdate Date]='201 6-07-27 11 :17:06.000 ', [LastUp dateUser]= ' RED A CTED ' WHERE [B loodProduc tGuid]='a0 b2e420-2f7 0-4905-bb8 3-b0c24a9d d719' | |
| 10264 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLT AFR Wash PAS-C LUKOPR 4C Psoraln', [LastUpda teDate]='2 016-07-27 11:17:06.0 00', [Last UpdateUser ]=' RED A CTED ' WHERE [B loodProduc tGuid]='60 384ba0-27c d-486f-a69 a-b0c80ed3 c45f' | |
| 10265 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLASMA A FR Thaw CP 2D 3C', [L astUpdateD ate]='2016 -07-27 11: 17:06.000' , [LastUpd ateUser]=' RED A CTED ' WHERE [B loodProduc tGuid]='fc b63af4-295 4-4d5b-b07 f-b0cb4575 ab1d' | |
| 10266 | UPDATE [db o].[BloodP roduct] SE T [Product Name]='Aph eresis FRE SH FROZEN PLASMA|ACD -B/XX/<=-2 5C|Irradia ted|Aphr n ot automat ed', [Last UpdateDate ]='2016-07 -27 11:17: 06.000', [ LastUpdate User]=' RED A CTED ' WHERE [B loodProduc tGuid]='4b 4484be-3e5 1-4d59-836 f-b0dbd028 ca27' | |
| 10267 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC AFR ACD-A>AS3 6C', [Last UpdateDate ]='2016-07 -27 11:17: 06.000', [ LastUpdate User]=' RED A CTED ' WHERE [B loodProduc tGuid]='ef 956baf-5df 6-4681-a96 b-b0ea6ac9 24ba' | |
| 10268 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLASMA A FR ACD-A I RD 1C', [L astUpdateD ate]='2016 -07-27 11: 17:06.000' , [LastUpd ateUser]=' RED A CTED ' WHERE [B loodProduc tGuid]='70 9909b1-ab6 a-4a9d-863 7-b0ec8d43 7f0b' | |
| 10269 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLT AFR ACD-B IRD LUKOPR PLS Red 1CNA' , [LastUpd ateDate]=' 2016-07-27 11:17:06. 000', [Las tUpdateUse r]=' RED A CTED ' WHERE [B loodProduc tGuid]='8f c8e4a1-0a5 b-4e50-b9e 1-b0f417d7 1433' | |
| 10270 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='FFP AFR None LUKOP R 5C', [La stUpdateDa te]='2016- 07-27 11:1 7:06.000', [LastUpda teUser]=' RED A CTED ' WHERE [B loodProduc tGuid]='a0 0acc09-60a 8-477e-94c 0-b100b84e e11c' | |
| 10271 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLT AFR NS IRD 2C' , [LastUpd ateDate]=' 2016-07-27 11:17:06. 000', [Las tUpdateUse r]=' RED A CTED ' WHERE [B loodProduc tGuid]='6c 5b08da-9bb 6-4996-9c9 5-b10c7fb6 30b1' | |
| 10272 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC AFR Deg Rej No ne OPN LUK OPR 4C', [ LastUpdate Date]='201 6-07-27 11 :17:06.000 ', [LastUp dateUser]= ' RED A CTED ' WHERE [B loodProduc tGuid]='19 1f633a-f1d d-453f-8ba a-b10f0faf cba8' | |
| 10273 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC AFR Wash None LUKOPR SR/ Q-PA 2C', [LastUpdat eDate]='20 16-07-27 1 1:17:06.00 0', [LastU pdateUser] =' RED A CTED ' WHERE [B loodProduc tGuid]='b8 015003-94e 5-4063-93e a-b1143ba5 3b50' | |
| 10274 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='FFP AFR Thaw None IRD 3C', [ LastUpdate Date]='201 6-07-27 11 :17:06.000 ', [LastUp dateUser]= ' RED A CTED ' WHERE [B loodProduc tGuid]='42 c318a5-94e 4-4c58-bff c-b129f337 3f04' | |
| 10275 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLT AFR NaCit 2CNA ', [LastUp dateDate]= '2016-07-2 7 11:17:06 .000', [La stUpdateUs er]=' RED A CTED ' WHERE [B loodProduc tGuid]='37 9f237e-115 d-41a8-a1f 6-b12c17a7 8985' | |
| 10276 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLT AFR NaCit IRD 1CNA', [La stUpdateDa te]='2016- 07-27 11:1 7:06.000', [LastUpda teUser]=' RED A CTED ' WHERE [B loodProduc tGuid]='a4 8d74c5-673 3-461c-9aa 1-b152c7f4 6a21' | |
| 10277 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLT AFR ACD-A LUKO PR 5C', [L astUpdateD ate]='2016 -07-27 11: 17:06.000' , [LastUpd ateUser]=' RED A CTED ' WHERE [B loodProduc tGuid]='f5 6664c6-373 d-4a2b-891 3-b15df137 90f1' | |
| 10278 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='FFP AFR None QUAR 7C', [Last UpdateDate ]='2016-07 -27 11:17: 06.000', [ LastUpdate User]=' RED A CTED ' WHERE [B loodProduc tGuid]='09 c5654c-c5f 3-4b00-921 d-b1691782 6819' | |
| 10279 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC AFR CP2D>AS3 I RD LUKOPR SUPRed 1C' , [LastUpd ateDate]=' 2016-07-27 11:17:06. 000', [Las tUpdateUse r]=' RED A CTED ' WHERE [B loodProduc tGuid]='c9 5f0f58-63e b-472b-ac7 0-b1814fa3 2053' | |
| 10280 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLT AFR PAS-D LUKO PR 2C BacM tr', [Last UpdateDate ]='2016-07 -27 11:17: 06.000', [ LastUpdate User]=' RED A CTED ' WHERE [B loodProduc tGuid]='2f 334487-1c2 8-4698-a2e 1-b186553e f65b' | |
| 10281 | UPDATE [db o].[BloodP roduct] SE T [Product Name]='Fro zen Aphere sis RED BL OOD CELLS| Gly40%/XX/ <=-65C|Ope n|ResLeu:< 5E6', [Las tUpdateDat e]='2016-0 7-27 11:17 :06.000', [LastUpdat eUser]=' RED A CTED ' WHERE [B loodProduc tGuid]='84 b6a57f-ed2 a-4929-b66 e-b1987f73 7256' | |
| 10282 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLT AFR ACD-A IRD LUKOPR 4C' , [LastUpd ateDate]=' 2016-07-27 11:17:06. 000', [Las tUpdateUse r]=' RED A CTED ' WHERE [B loodProduc tGuid]='78 311f3a-972 5-4ffa-893 f-b1af845f 0bbc' | |
| 10283 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC AFR CP2D>AS3 N MT 2C', [L astUpdateD ate]='2016 -07-27 11: 17:06.000' , [LastUpd ateUser]=' RED A CTED ' WHERE [B loodProduc tGuid]='54 09760d-859 2-4e56-828 b-b1c0f0cf 660d' | |
| 10284 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC AFR CP2D>AS3 M NFNI 1C', [LastUpdat eDate]='20 16-07-27 1 1:17:06.00 0', [LastU pdateUser] =' RED A CTED ' WHERE [B loodProduc tGuid]='ed 3b746c-0a3 8-4459-a86 2-b1ca43dd 90db' | |
| 10285 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC AFR CPD>AS1 OP N IRD LUKO PR 2C', [L astUpdateD ate]='2016 -07-27 11: 17:06.000' , [LastUpd ateUser]=' RED A CTED ' WHERE [B loodProduc tGuid]='9b 708b3f-bf2 c-42c8-b74 c-b1cb9a4f d549' | |
| 10286 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC AFR CP2D>AS3 I RD LUKOPR 2C', [Last UpdateDate ]='2016-07 -27 11:17: 06.000', [ LastUpdate User]=' RED A CTED ' WHERE [B loodProduc tGuid]='c4 5873c6-534 b-4d60-a56 f-b1cf6e6b e061' | |
| 10287 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='FFP AFR Thaw None IRD LUKOPR 4C', [Las tUpdateDat e]='2016-0 7-27 11:17 :06.000', [LastUpdat eUser]=' RED A CTED ' WHERE [B loodProduc tGuid]='f0 2d0796-224 8-42cf-9dc f-b1fbd596 acd7' | |
| 10288 | UPDATE [db o].[BloodP roduct] SE T [Product Name]='Tha wed PLASMA |CPD/450mL /<=-25C|Ir radiated|F rozen <=6h ', [LastUp dateDate]= '2016-07-2 7 11:17:06 .000', [La stUpdateUs er]=' RED A CTED ' WHERE [B loodProduc tGuid]='20 55cd2e-1a7 5-4b1d-9c3 e-b20811ec 3b10' | |
| 10289 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLT AFR ACD-A 2C', [LastUpda teDate]='2 016-07-27 11:17:06.0 00', [Last UpdateUser ]=' RED A CTED ' WHERE [B loodProduc tGuid]='a9 3ea18b-ce7 f-495d-98f b-b2287090 330c' | |
| 10290 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC AFR CP2D-AS3 I RD 1C', [L astUpdateD ate]='2016 -07-27 11: 17:06.000' , [LastUpd ateUser]=' RED A CTED ' WHERE [B loodProduc tGuid]='2e 906a86-211 e-4e4d-afb b-b229a518 31c9' | |
| 10291 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLT AFR PAS-B LUKO PR 4C BacM tr', [Last UpdateDate ]='2016-07 -27 11:17: 06.000', [ LastUpdate User]=' RED A CTED ' WHERE [B loodProduc tGuid]='92 39761e-b19 5-4d88-a66 0-b2446e44 64fa' | |
| 10292 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLT AFR ACD-B IRD PLS Red 4C ', [LastUp dateDate]= '2016-07-2 7 11:17:06 .000', [La stUpdateUs er]=' RED A CTED ' WHERE [B loodProduc tGuid]='3c 0c2373-36e c-4417-beb f-b2471ee6 a835' | |
| 10293 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLASMA A FR CP2D 2C ', [LastUp dateDate]= '2016-07-2 7 11:17:06 .000', [La stUpdateUs er]=' RED A CTED ' WHERE [B loodProduc tGuid]='c9 795fe7-47c d-41f6-962 d-b256c27c 8cfd' | |
| 10294 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC AFR CP2D IRD L UKOPR SR 2 C', [LastU pdateDate] ='2016-07- 27 11:17:0 6.000', [L astUpdateU ser]=' RED A CTED ' WHERE [B loodProduc tGuid]='9f 1b71eb-a5e 5-488d-967 6-b25cdabb bcc4' | |
| 10295 | UPDATE [db o].[BloodP roduct] SE T [Product Name]='Fro zen Aphere sis RED BL OOD CELLS| Gly40%/XX/ <=-65C|Ope n|Irradiat ed|ResLeu: <5E6', [La stUpdateDa te]='2016- 07-27 11:1 7:06.000', [LastUpda teUser]=' RED A CTED ' WHERE [B loodProduc tGuid]='d4 5afd09-ab4 4-4a0a-a4a 8-b27f6aff ae8e' | |
| 10296 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC CPD> AS1 LUKOPR 4C', [Las tUpdateDat e]='2016-0 7-27 11:17 :06.000', [LastUpdat eUser]=' RED A CTED ' WHERE [B loodProduc tGuid]='d1 9d1fd1-f81 3-4c6b-8b7 5-b2826533 7d70' | |
| 10297 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLT AFR ACD-B IRD LUKOPR 2CN A', [LastU pdateDate] ='2016-07- 27 11:17:0 6.000', [L astUpdateU ser]=' RED A CTED ' WHERE [B loodProduc tGuid]='9c 6337de-fc6 f-40a4-bdb 6-b283823e e47f' | |
| 10298 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLT AFR ACD-A LUKO PR 6C BacM tr', [Last UpdateDate ]='2016-07 -27 11:17: 06.000', [ LastUpdate User]=' RED A CTED ' WHERE [B loodProduc tGuid]='a1 0f09f5-d70 7-493b-856 4-b28a60d4 f298' | |
| 10299 | UPDATE [db o].[BloodP roduct] SE T [Product Name]='Aph eresis FRE SH FROZEN PLASMA|ACD -A/XX/<=-2 5C', [Last UpdateDate ]='2016-07 -27 11:17: 06.000', [ LastUpdate User]=' RED A CTED ' WHERE [B loodProduc tGuid]='08 5f9d60-d69 6-4300-be6 4-b29fd1ef 733b' | |
| 10300 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLASMA A FR None IR D 8C', [La stUpdateDa te]='2016- 07-27 11:1 7:06.000', [LastUpda teUser]=' RED A CTED ' WHERE [B loodProduc tGuid]='28 9ea5dd-362 3-430b-a81 9-b2a76584 99dc' | |
| 10301 | UPDATE [db o].[BloodP roduct] SE T [Product Name]='Aph eresis FRE SH FROZEN PLASMA|ACD -A/XX/<=-6 5C|Irradia ted|<200 m L|Quar:>=6 m/retested ', [LastUp dateDate]= '2016-07-2 7 11:17:06 .000', [La stUpdateUs er]=' RED A CTED ' WHERE [B loodProduc tGuid]='ed dd5ac4-78f b-48f1-916 1-b2a7f40d 4954' | |
| 10302 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLT AFR ACD-B NMT 1CNA', [La stUpdateDa te]='2016- 07-27 11:1 7:06.000', [LastUpda teUser]=' RED A CTED ' WHERE [B loodProduc tGuid]='21 c12a1a-818 4-4d40-99c a-b2e0f81d 4b1a' | |
| 10303 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='FFP Thaw CPDA-1 1C ', [LastUp dateDate]= '2016-07-2 7 11:17:06 .000', [La stUpdateUs er]=' RED A CTED ' WHERE [B loodProduc tGuid]='09 96ac40-bec e-401a-857 f-b30448e2 0c52' | |
| 10304 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC AFR Deg None O PN IRD LUK OPR 4C', [ LastUpdate Date]='201 6-07-27 11 :17:06.000 ', [LastUp dateUser]= ' RED A CTED ' WHERE [B loodProduc tGuid]='b1 afb387-0b5 4-4e56-b91 e-b30c6248 c662' | |
| 10305 | UPDATE [db o].[BloodP roduct] SE T [Product Name]='Fro zen Rejuve nated RED BLOOD CELL S|None/XX/ <=-65C|Ope n|Irradiat ed|ResLeu: <5E6', [La stUpdateDa te]='2016- 07-27 11:1 7:06.000', [LastUpda teUser]=' RED A CTED ' WHERE [B loodProduc tGuid]='5e 8af5f0-d3a 9-4349-890 0-b31eeb42 c554' | |
| 10306 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='FFP AFR None 8C', [LastUpdat eDate]='20 16-07-27 1 1:17:06.00 0', [LastU pdateUser] =' RED A CTED ' WHERE [B loodProduc tGuid]='6d 545345-77a 5-47fa-ac8 9-b341f955 eb23' | |
| 10307 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLT AFR Froz DMSO 3C', [Last UpdateDate ]='2016-07 -27 11:17: 06.000', [ LastUpdate User]=' RED A CTED ' WHERE [B loodProduc tGuid]='5b ebe127-05c 1-4a80-b13 2-b35177cd acf1' | |
| 10308 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC AFR CPD>AS1 2C ', [LastUp dateDate]= '2016-07-2 7 11:17:06 .000', [La stUpdateUs er]=' RED A CTED ' WHERE [B loodProduc tGuid]='56 e08225-260 f-4017-aaf 8-b352fc8c 3369' | |
| 10309 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC CP2D LUKOPR 6C ', [LastUp dateDate]= '2016-07-2 7 11:17:06 .000', [La stUpdateUs er]=' RED A CTED ' WHERE [B loodProduc tGuid]='64 d7fc0e-6bf 9-4c35-9ab b-b3537b3c 9d96' | |
| 10310 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC AFR Deg Rej No ne OPN 3C' , [LastUpd ateDate]=' 2016-07-27 11:17:06. 000', [Las tUpdateUse r]=' RED A CTED ' WHERE [B loodProduc tGuid]='14 a0cfd5-098 4-4996-bab c-b3788445 9ced' | |
| 10311 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC AFR Rej None O PN LUKOPR 1C', [Last UpdateDate ]='2016-07 -27 11:17: 06.000', [ LastUpdate User]=' RED A CTED ' WHERE [B loodProduc tGuid]='59 0ab89c-3e4 f-4690-9fb 4-b37d6d68 383a' | |
| 10312 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='WB CPDA- 1 LUKOPR 8 C', [LastU pdateDate] ='2016-07- 27 11:17:0 6.000', [L astUpdateU ser]=' RED A CTED ' WHERE [B loodProduc tGuid]='30 562b5a-0d2 2-4f5a-98b f-b3a42f63 bef1' | |
| 10313 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC Froz Rej None OPN 3C', [ LastUpdate Date]='201 6-07-27 11 :17:06.000 ', [LastUp dateUser]= ' RED A CTED ' WHERE [B loodProduc tGuid]='3a c19c66-15d f-4efb-852 6-b3d276a7 0ad9' | |
| 10314 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLT AFR ACD-A>PAS- C LUKOPR 1 C Pedi', [ LastUpdate Date]='201 6-07-27 11 :17:06.000 ', [LastUp dateUser]= ' RED A CTED ' WHERE [B loodProduc tGuid]='75 b0ed4c-52f 6-4969-855 a-b3ecee88 a33d' | |
| 10315 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLT AFR PAS-C MNFI LUKOPR 1C ', [LastUp dateDate]= '2016-07-2 7 11:17:06 .000', [La stUpdateUs er]=' RED A CTED ' WHERE [B loodProduc tGuid]='cb 79c708-3c1 c-49d1-b6f a-b423a9f0 a1dc' | |
| 10316 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLASMA A FR Thaw AC D-A IRD 2C ', [LastUp dateDate]= '2016-07-2 7 11:17:06 .000', [La stUpdateUs er]=' RED A CTED ' WHERE [B loodProduc tGuid]='26 94b8b2-c45 9-47c2-996 9-b464abf1 75ef' | |
| 10317 | UPDATE [db o].[BloodP roduct] SE T [Product Name]='Aph eresis FRE SH FROZEN PLASMA|ACD -B/XX/<=-6 5C|Irradia ted|>=600m L|Quar:>=6 m/retested ', [LastUp dateDate]= '2016-07-2 7 11:17:06 .000', [La stUpdateUs er]=' RED A CTED ' WHERE [B loodProduc tGuid]='33 ccd329-420 c-41a3-a1b c-b46a4229 52b7' | |
| 10318 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC CPDA -1 IRD 5C' , [LastUpd ateDate]=' 2016-07-27 11:17:06. 000', [Las tUpdateUse r]=' RED A CTED ' WHERE [B loodProduc tGuid]='a0 200b4a-749 d-4779-a08 0-b49bb36e 4806' | |
| 10319 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLT AFR NaCit PLS Red 3C', [ LastUpdate Date]='201 6-07-27 11 :17:06.000 ', [LastUp dateUser]= ' RED A CTED ' WHERE [B loodProduc tGuid]='57 d8f341-b35 2-464e-8cc 7-b49c0329 8d00' | |
| 10320 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLT AFR ACD-A LUKO PR 3C BacM tr', [Last UpdateDate ]='2016-07 -27 11:17: 06.000', [ LastUpdate User]=' RED A CTED ' WHERE [B loodProduc tGuid]='f6 651068-afa 3-42ad-a34 d-b4ea4265 2ef4' | |
| 10321 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLASMA A FR None 4C ', [LastUp dateDate]= '2016-07-2 7 11:17:06 .000', [La stUpdateUs er]=' RED A CTED ' WHERE [B loodProduc tGuid]='7c 270a19-c6c 3-48a6-9c0 8-b50b1ebe 3e37' | |
| 10322 | UPDATE [db o].[BloodP roduct] SE T [Product Name]='Aph eresis FRE SH FROZEN PLASMA|NaC itrate/XX/ <=-65C|>=2 00mL<400mL |Quar:>=6m /retested' , [LastUpd ateDate]=' 2016-07-27 11:17:06. 000', [Las tUpdateUse r]=' RED A CTED ' WHERE [B loodProduc tGuid]='cd 3164b6-1da e-4a71-907 1-b512ea5f 23f3' | |
| 10323 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC AFR ACD-A>AS1 5C', [Last UpdateDate ]='2016-07 -27 11:17: 06.000', [ LastUpdate User]=' RED A CTED ' WHERE [B loodProduc tGuid]='2a f433d0-168 c-4887-b10 2-b51843fd 9bcc' | |
| 10324 | UPDATE [db o].[BloodP roduct] SE T [Product Name]='POO LED PLASMA |CPD/450mL /<=-30C|Fo r mnf:inje ctable|2 u nits', [Pr oductShort Name]='PLA SMA Pool C PD MNFI 2U ', [LastUp dateDate]= '2016-07-2 7 11:17:06 .000', [La stUpdateUs er]=' RED A CTED ' WHERE [B loodProduc tGuid]='ae 288e7e-2fe a-40b1-b3b 8-b5364ebc 6da1' | |
| 10325 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC AFR Froz None OPN LUKOPR 6C', [Las tUpdateDat e]='2016-0 7-27 11:17 :06.000', [LastUpdat eUser]=' RED A CTED ' WHERE [B loodProduc tGuid]='20 4bb781-a99 1-43db-901 0-b5515af7 d7c6' | |
| 10326 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLT AFR ACD-A LUKO PR 2C BacM tr', [Last UpdateDate ]='2016-07 -27 11:17: 06.000', [ LastUpdate User]=' RED A CTED ' WHERE [B loodProduc tGuid]='3d a523cd-69f 8-485e-9fd f-b56fda49 0eeb' | |
| 10327 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='FFP CPD 1C', [Last UpdateDate ]='2016-07 -27 11:17: 06.000', [ LastUpdate User]=' RED A CTED ' WHERE [B loodProduc tGuid]='df a9e3f1-1d8 8-4eeb-b4a a-b57f3f8a d0a7' | |
| 10328 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLT AFR ACD-A IRD 2C', [Last UpdateDate ]='2016-07 -27 11:17: 06.000', [ LastUpdate User]=' RED A CTED ' WHERE [B loodProduc tGuid]='d2 c9e08f-7d6 c-4a8b-a4d 5-b581123e 386f' | |
| 10329 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLASMA A FR Thaw Na Cit 6C', [ LastUpdate Date]='201 6-07-27 11 :17:06.000 ', [LastUp dateUser]= ' RED A CTED ' WHERE [B loodProduc tGuid]='09 ca4788-509 4-4110-ba0 1-b5aba7a4 6165' | |
| 10330 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='WB CPD 7 C', [LastU pdateDate] ='2016-07- 27 11:17:0 6.000', [L astUpdateU ser]=' RED A CTED ' WHERE [B loodProduc tGuid]='19 a94be8-0c7 d-4266-b13 7-b5c70b44 bf1a' | |
| 10331 | UPDATE [db o].[BloodP roduct] SE T [Product Name]='FRE SH FROZEN PLASMA|CPD /XX/<=-65C |Quar:>=6m /retested' , [LastUpd ateDate]=' 2016-07-27 11:17:06. 000', [Las tUpdateUse r]=' RED A CTED ' WHERE [B loodProduc tGuid]='82 d1b7e6-2d8 a-433e-a53 d-b5d07ef5 f017' | |
| 10332 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLT AFR ACD-A IRD LUKOPR 8C' , [LastUpd ateDate]=' 2016-07-27 11:17:06. 000', [Las tUpdateUse r]=' RED A CTED ' WHERE [B loodProduc tGuid]='5b 00a23e-d58 9-422b-aa2 a-b5dce274 a7be' | |
| 10333 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='WB CPDA- 1 IRD LUKO PR 1C', [L astUpdateD ate]='2016 -07-27 11: 17:06.000' , [LastUpd ateUser]=' RED A CTED ' WHERE [B loodProduc tGuid]='98 8b877c-1e4 1-4475-83a a-b5eaee1f 0977' | |
| 10334 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLT AFR NaCit IRD LUKOPR PLS Red 1C', [LastUpdat eDate]='20 16-07-27 1 1:17:06.00 0', [LastU pdateUser] =' RED A CTED ' WHERE [B loodProduc tGuid]='37 eaf440-df1 6-4d43-92c 4-b60b161c ebc4' | |
| 10335 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC CP2D IRD 6C', [LastUpdat eDate]='20 16-07-27 1 1:17:06.00 0', [LastU pdateUser] =' RED A CTED ' WHERE [B loodProduc tGuid]='fa 498ab5-612 7-492b-9d1 4-b64a97a0 1c67' | |
| 10336 | UPDATE [db o].[BloodP roduct] SE T [Product Name]='POO LED PLASMA |CPD/450mL /<=-30C|Fo r mnf:inje ctable|Fro zen <=6h|2 units', [ ProductSho rtName]='P LASMA Pool CPD MNFI 2U', [Last UpdateDate ]='2016-07 -27 11:17: 06.000', [ LastUpdate User]=' RED A CTED ' WHERE [B loodProduc tGuid]='34 301f1b-e71 d-42a6-930 3-b68f9b0e 77e2' | |
| 10337 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='FFP AFR Thaw None LUKOPR 1C' , [LastUpd ateDate]=' 2016-07-27 11:17:06. 000', [Las tUpdateUse r]=' RED A CTED ' WHERE [B loodProduc tGuid]='8d 3ed716-6e7 e-4062-b8e d-b695b78e ac97' | |
| 10338 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='WB CPDA- 1 LUKOPR 1 C', [LastU pdateDate] ='2016-07- 27 11:17:0 6.000', [L astUpdateU ser]=' RED A CTED ' WHERE [B loodProduc tGuid]='19 d9b00c-189 9-4026-b0e 6-b699e0ff 0fce' | |
| 10339 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC AFR CP2D OPN L UKOPR SR/P A 2C', [La stUpdateDa te]='2016- 07-27 11:1 7:06.000', [LastUpda teUser]=' RED A CTED ' WHERE [B loodProduc tGuid]='af d9036e-3b2 f-45f1-b7b f-b6ac455d 6e82' | |
| 10340 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC AFR CP2D>AS3 I RD SR/PA 1 C', [LastU pdateDate] ='2016-07- 27 11:17:0 6.000', [L astUpdateU ser]=' RED A CTED ' WHERE [B loodProduc tGuid]='49 72f452-775 c-4198-8cc d-b6ad435e 973f' | |
| 10341 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC CPD> AS5 LUKOPR 8C', [Las tUpdateDat e]='2016-0 7-27 11:17 :06.000', [LastUpdat eUser]=' RED A CTED ' WHERE [B loodProduc tGuid]='2a f0c3c2-cc1 b-4204-9b7 c-b6ae3198 3aa6' | |
| 10342 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC AFR Wash None OPN IRD 4C ', [LastUp dateDate]= '2016-07-2 7 11:17:06 .000', [La stUpdateUs er]=' RED A CTED ' WHERE [B loodProduc tGuid]='c6 dac27c-377 4-4d90-b9a 6-b6ba7a95 b4f7' | |
| 10343 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC AFR CP2D>AS3 L UKOPR SUPR ed 1C', [L astUpdateD ate]='2016 -07-27 11: 17:06.000' , [LastUpd ateUser]=' RED A CTED ' WHERE [B loodProduc tGuid]='80 53e90d-a55 f-4cd2-857 d-b6f522b8 5b2a' | |
| 10344 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC CPDA -1 3C', [L astUpdateD ate]='2016 -07-27 11: 17:06.000' , [LastUpd ateUser]=' RED A CTED ' WHERE [B loodProduc tGuid]='ba cf6c7e-140 c-4316-81e 0-b6fa5300 d4c0' | |
| 10345 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC CPDA -1 IRD LUK OPR 5C', [ LastUpdate Date]='201 6-07-27 11 :17:06.000 ', [LastUp dateUser]= ' RED A CTED ' WHERE [B loodProduc tGuid]='1f da9449-1ef 1-4624-aa4 f-b6fd8d15 fbe6' | |
| 10346 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='FFP CPDA -1 QUAR 3C ', [LastUp dateDate]= '2016-07-2 7 11:17:06 .000', [La stUpdateUs er]=' RED A CTED ' WHERE [B loodProduc tGuid]='2e 06c428-5cc d-44b4-9f1 1-b6ffe4da 973d' | |
| 10347 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='FFP AFR ACD-A LUKO PR 5C', [L astUpdateD ate]='2016 -07-27 11: 17:06.000' , [LastUpd ateUser]=' RED A CTED ' WHERE [B loodProduc tGuid]='e8 24c684-451 b-40ef-961 d-b703fc67 2e80' | |
| 10348 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC CPD> AS1 IRD LU KOPR 2C', [LastUpdat eDate]='20 16-07-27 1 1:17:06.00 0', [LastU pdateUser] =' RED A CTED ' WHERE [B loodProduc tGuid]='d6 f5c50f-e3d 5-4e36-af1 9-b71331be ea24' | |
| 10349 | UPDATE [db o].[BloodP roduct] SE T [Product Name]='Aph eresis FRE SH FROZEN PLASMA|NaC itrate/XX/ <=-65C|Not for tx or mnf|Fin C on:NS|Aphr not autom ated|Quar: >=6m/retes ted', [Las tUpdateDat e]='2016-0 7-27 11:17 :06.000', [LastUpdat eUser]=' RED A CTED ' WHERE [B loodProduc tGuid]='9e dca461-c90 7-44c8-bf6 e-b72d2f2d 4318' | |
| 10350 | UPDATE [db o].[BloodP roduct] SE T [Product Name]='Fro zen Aphere sis RED BL OOD CELLS| None/XX/<= -65C|Irrad iated|1st container' , [Product ShortName] ='RBC AFR Froz None IRD 1C', [ LastUpdate Date]='201 6-07-27 11 :17:06.000 ', [LastUp dateUser]= ' RED A CTED ' WHERE [B loodProduc tGuid]='75 a131f2-85c b-4ea0-96f 0-b741cbd7 519d' | |
| 10351 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC Rej None OPN I RD LUKOPR 2C', [Last UpdateDate ]='2016-07 -27 11:17: 06.000', [ LastUpdate User]=' RED A CTED ' WHERE [B loodProduc tGuid]='c6 4db419-720 8-4c08-bda f-b744509c f5c0' | |
| 10352 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLT AFR PAS-C LUKO PR 1C', [L astUpdateD ate]='2016 -07-27 11: 17:06.000' , [LastUpd ateUser]=' RED A CTED ' WHERE [B loodProduc tGuid]='a5 7eefbd-d6b 4-4c87-a0d 3-b7523038 c81f' | |
| 10353 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLT AFR ACD-A NMT 2C', [Last UpdateDate ]='2016-07 -27 11:17: 06.000', [ LastUpdate User]=' RED A CTED ' WHERE [B loodProduc tGuid]='a2 c0c516-37b 4-4f8a-9a1 e-b7576879 1ceb' | |
| 10354 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC AFR ACD-A OPN IRD SR/PA 1C', [Last UpdateDate ]='2016-07 -27 11:17: 06.000', [ LastUpdate User]=' RED A CTED ' WHERE [B loodProduc tGuid]='22 e5e51a-935 e-483e-b5e b-b7721abe 8340' | |
| 10355 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC AFR Froz None OPN 7C', [ LastUpdate Date]='201 6-07-27 11 :17:06.000 ', [LastUp dateUser]= ' RED A CTED ' WHERE [B loodProduc tGuid]='08 e9224f-7a6 4-40fb-8bf b-b78929ca a5fb' | |
| 10356 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLT AFR ACD-A 1C', [LastUpda teDate]='2 016-07-27 11:17:06.0 00', [Last UpdateUser ]=' RED A CTED ' WHERE [B loodProduc tGuid]='a1 c142b3-f53 7-4eb0-bb1 c-b78cf09b f1b7' | |
| 10357 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLT AFR ACD-B IRD LUKOPR PLS Red 2C', [LastUpdat eDate]='20 16-07-27 1 1:17:06.00 0', [LastU pdateUser] =' RED A CTED ' WHERE [B loodProduc tGuid]='d5 3887a5-ba1 2-49db-adf 8-b7981b5b ea06' | |
| 10358 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='FFP AFR Thaw None LUKOPR 3C' , [LastUpd ateDate]=' 2016-07-27 11:17:06. 000', [Las tUpdateUse r]=' RED A CTED ' WHERE [B loodProduc tGuid]='40 e2bceb-be3 f-40ee-96a 0-b79bc2dc 0cd3' | |
| 10359 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC CP2D IRD 8C', [LastUpdat eDate]='20 16-07-27 1 1:17:06.00 0', [LastU pdateUser] =' RED A CTED ' WHERE [B loodProduc tGuid]='07 7eb07d-bbf 5-4258-a89 0-b79e36f0 9d43' | |
| 10360 | UPDATE [db o].[BloodP roduct] SE T [Product Name]='Aph eresis FRE SH FROZEN PLASMA|ACD -B/XX/<=-2 5C|Not for tx or mnf |Quar:>=6m /retested' , [LastUpd ateDate]=' 2016-07-27 11:17:06. 000', [Las tUpdateUse r]=' RED A CTED ' WHERE [B loodProduc tGuid]='d3 fdaec2-7a8 f-42d4-b25 c-b7dc3a84 9e86' | |
| 10361 | UPDATE [db o].[BloodP roduct] SE T [Product Name]='Aph eresis FRE SH FROZEN PLASMA|ACD -A/XX/<=-3 0C|ResLeu: <1E6|>=400 mL<600mL', [LastUpda teDate]='2 016-07-27 11:17:06.0 00', [Last UpdateUser ]=' RED A CTED ' WHERE [B loodProduc tGuid]='21 a23093-bbd 8-4857-814 4-b7e57b13 0508' | |
| 10362 | UPDATE [db o].[BloodP roduct] SE T [Product Name]='Aph eresis FRE SH FROZEN PLASMA|ACD -A/XX/<=-6 5C|Irradia ted|>=600m L', [LastU pdateDate] ='2016-07- 27 11:17:0 6.000', [L astUpdateU ser]=' RED A CTED ' WHERE [B loodProduc tGuid]='ce 077d8f-848 f-472e-87e 7-b81ce8d8 ce36' | |
| 10363 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLASMA A FR None 2C ', [LastUp dateDate]= '2016-07-2 7 11:17:06 .000', [La stUpdateUs er]=' RED A CTED ' WHERE [B loodProduc tGuid]='d0 3d5eca-33f 9-4144-810 2-b841f689 b4e2' | |
| 10364 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC AFR ACD-A IRD LUKOPR SR 1C', [Last UpdateDate ]='2016-07 -27 11:17: 06.000', [ LastUpdate User]=' RED A CTED ' WHERE [B loodProduc tGuid]='76 3a1d4c-268 1-4c98-b6c e-b84699db 985e' | |
| 10365 | UPDATE [db o].[BloodP roduct] SE T [Product Name]='Fro zen POOLED PLATELETS |DMSO/XX/< =-65C|6 un its', [Las tUpdateDat e]='2016-0 7-27 11:17 :06.000', [LastUpdat eUser]=' RED A CTED ' WHERE [B loodProduc tGuid]='ae bc3319-9c0 1-4dca-9ad b-b85f1fcf f342' | |
| 10366 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC AFR CP2D>AS3 O PN IRD SR/ PA 2C', [L astUpdateD ate]='2016 -07-27 11: 17:06.000' , [LastUpd ateUser]=' RED A CTED ' WHERE [B loodProduc tGuid]='9c 4b907d-38e c-4445-afe 6-b8716db9 b461' | |
| 10367 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='WB CPD L UKOPR 7C', [LastUpda teDate]='2 016-07-27 11:17:06.0 00', [Last UpdateUser ]=' RED A CTED ' WHERE [B loodProduc tGuid]='95 a50161-036 5-485c-b9b 9-b8a3f1ab 3131' | |
| 10368 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLT AFR ACD-A OPN LUKOPR 3C Pedi', [La stUpdateDa te]='2016- 07-27 11:1 7:06.000', [LastUpda teUser]=' RED A CTED ' WHERE [B loodProduc tGuid]='e3 456a79-295 6-4e94-a63 3-b8afd2d1 4b74' | |
| 10369 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLT AFR ACD-B LUKO PR 1C', [L astUpdateD ate]='2016 -07-27 11: 17:06.000' , [LastUpd ateUser]=' RED A CTED ' WHERE [B loodProduc tGuid]='7b e56c5d-077 0-4b43-a37 f-b8c01b05 66b8' | |
| 10370 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLT AFR ACD-A LUKO PR 7C BacM tr', [Last UpdateDate ]='2016-07 -27 11:17: 06.000', [ LastUpdate User]=' RED A CTED ' WHERE [B loodProduc tGuid]='55 1c1144-fa9 b-482e-921 0-b8c53267 3f5a' | |
| 10371 | UPDATE [db o].[BloodP roduct] SE T [Product Name]='FRE SH FROZEN PLASMA|CPD /450mL/<=- 25C|Frozen <=24h', [ LastUpdate Date]='201 6-07-27 11 :17:06.000 ', [LastUp dateUser]= ' RED A CTED ' WHERE [B loodProduc tGuid]='39 5c8cfa-722 3-496b-b34 2-b8ced9b2 bcbe' | |
| 10372 | UPDATE [db o].[BloodP roduct] SE T [Product Name]='Aph eresis FRE SH FROZEN PLASMA|ACD -A/XX/<=-2 5C|Frozen <=6h|Quar: >=112d/ret ested', [L astUpdateD ate]='2016 -07-27 11: 17:06.000' , [LastUpd ateUser]=' RED A CTED ' WHERE [B loodProduc tGuid]='fe 3de465-bde 8-4ac1-81f 6-b8d987dd 2561' | |
| 10373 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC AFR Wash None OPN 2C', [ LastUpdate Date]='201 6-07-27 11 :17:06.000 ', [LastUp dateUser]= ' RED A CTED ' WHERE [B loodProduc tGuid]='ce 0df3de-66e e-4014-983 3-b8e48730 a6a0' | |
| 10374 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLT AFR PAS-E LUKO PR 1C Psor aln', [Las tUpdateDat e]='2016-0 7-27 11:17 :06.000', [LastUpdat eUser]=' RED A CTED ' WHERE [B loodProduc tGuid]='75 746a8a-6a1 5-4daf-992 a-b8f5f29b 7a36' | |
| 10375 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC CPD LUKOPR 3C' , [RetireD ate]='2015 -04-07 00: 00:00.000' , [LastUpd ateDate]=' 2016-07-27 11:17:06. 000', [Las tUpdateUse r]=' RED A CTED ' WHERE [B loodProduc tGuid]='9d 1615be-a5e f-4a8e-aba 6-b8feb9aa 6fc3' | |
| 10376 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='FFP AFR Thaw CPD-5 0 LUKOPR 1 C Psoraln' , [LastUpd ateDate]=' 2016-07-27 11:17:06. 000', [Las tUpdateUse r]=' RED A CTED ' WHERE [B loodProduc tGuid]='97 dcc505-7ea c-4952-9b9 3-b912b028 409d' | |
| 10377 | UPDATE [db o].[BloodP roduct] SE T [Product Name]='Aph eresis FRE SH FROZEN PLASMA|NaC itrate/XX/ <=-65C|Qua r:>=6m/ret ested', [L astUpdateD ate]='2016 -07-27 11: 17:06.000' , [LastUpd ateUser]=' RED A CTED ' WHERE [B loodProduc tGuid]='da 228981-31a 0-45f5-9e2 c-b92ccf1b 22c8' | |
| 10378 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC AFR ACD-A>AS1 MNFI 1C', [LastUpdat eDate]='20 16-07-27 1 1:17:06.00 0', [LastU pdateUser] =' RED A CTED ' WHERE [B loodProduc tGuid]='0c fea8df-8c4 7-48b2-b8b 1-b92f3209 0cf0' | |
| 10379 | UPDATE [db o].[BloodP roduct] SE T [Product Name]='Aph eresis FRE SH FROZEN PLASMA|CPD -50/XX/<=- 30C|For mn f:injectab le|Frozen <=2h', [La stUpdateDa te]='2016- 07-27 11:1 7:06.000', [LastUpda teUser]=' RED A CTED ' WHERE [B loodProduc tGuid]='71 fb98f9-af7 9-4aa6-975 a-b92ff2ab a250' | |
| 10380 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC CPDA -1 IRD LUK OPR 1C', [ RetireDate ]='2015-04 -07 00:00: 00.000', [ LastUpdate Date]='201 6-07-27 11 :17:06.000 ', [LastUp dateUser]= ' RED A CTED ' WHERE [B loodProduc tGuid]='c2 0b14a2-146 c-44fc-b48 4-b93f0337 2e79' | |
| 10381 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC AFR Deg Rej No ne OPN IRD LUKOPR 4C ', [LastUp dateDate]= '2016-07-2 7 11:17:06 .000', [La stUpdateUs er]=' RED A CTED ' WHERE [B loodProduc tGuid]='86 5db562-321 2-487f-b4c e-b9438551 c74e' | |
| 10382 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLT AFR Froz ACD-A MNFRNI LU KOPR 2C', [LastUpdat eDate]='20 16-07-27 1 1:17:06.00 0', [LastU pdateUser] =' RED A CTED ' WHERE [B loodProduc tGuid]='40 ccffa0-8e5 b-4d38-a38 4-b9669de5 a2fb' | |
| 10383 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC CP2D LUKOPR 4C ', [LastUp dateDate]= '2016-07-2 7 11:17:06 .000', [La stUpdateUs er]=' RED A CTED ' WHERE [B loodProduc tGuid]='2c 95be11-d59 8-48b5-a3a 7-b96bb2c9 d073' | |
| 10384 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLT AFR ACD-B IRD LUKOPR 1CN A', [LastU pdateDate] ='2016-07- 27 11:17:0 6.000', [L astUpdateU ser]=' RED A CTED ' WHERE [B loodProduc tGuid]='00 4517bf-156 9-4301-afa 7-b96e0231 4dc9' | |
| 10385 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='FFP CPD 3C QUAR', [LastUpdat eDate]='20 16-07-27 1 1:17:06.00 0', [LastU pdateUser] =' RED A CTED ' WHERE [B loodProduc tGuid]='3e f99c77-716 7-4691-bec a-b96fa474 3e53' | |
| 10386 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='FFP Thaw None IRD 6C', [Last UpdateDate ]='2016-07 -27 11:17: 06.000', [ LastUpdate User]=' RED A CTED ' WHERE [B loodProduc tGuid]='f9 fce48c-db2 6-4a03-b74 c-b98ab3f2 9f09' | |
| 10387 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC CPD> AS1 LUKOPR 3C', [Las tUpdateDat e]='2016-0 7-27 11:17 :06.000', [LastUpdat eUser]=' RED A CTED ' WHERE [B loodProduc tGuid]='5f f41fb5-a5c f-4a46-bbd b-b996f5d5 045b' | |
| 10388 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC AFR ACD-A>AS1 OPN LUKOPR SR/PA 1C' , [LastUpd ateDate]=' 2016-07-27 11:17:06. 000', [Las tUpdateUse r]=' RED A CTED ' WHERE [B loodProduc tGuid]='19 0dc063-705 9-4394-881 0-b9997809 7912' | |
| 10389 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLT AFR NaCit OPN IRD LUKOPR 1C', [Las tUpdateDat e]='2016-0 7-27 11:17 :06.000', [LastUpdat eUser]=' RED A CTED ' WHERE [B loodProduc tGuid]='27 44a47b-ce0 a-45d5-af6 9-b99f5fcd c0fc' | |
| 10390 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLT AFR Thaw DMSO OPN 4C', [ LastUpdate Date]='201 6-07-27 11 :17:06.000 ', [LastUp dateUser]= ' RED A CTED ' WHERE [B loodProduc tGuid]='e9 7977a8-b93 b-4922-bc7 e-b9a207e0 a882' | |
| 10391 | UPDATE [db o].[BloodP roduct] SE T [Product Name]='Aph eresis FRE SH FROZEN PLASMA|ACD -B/XX/<=-6 5C|Not for tx or mnf |Aphr not automated| Quar:>=6m/ retested', [LastUpda teDate]='2 016-07-27 11:17:06.0 00', [Last UpdateUser ]=' RED A CTED ' WHERE [B loodProduc tGuid]='35 88499e-907 b-4e91-911 2-b9a388bf afcb' | |
| 10392 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC AFR Rej None O PN 2C', [L astUpdateD ate]='2016 -07-27 11: 17:06.000' , [LastUpd ateUser]=' RED A CTED ' WHERE [B loodProduc tGuid]='5d 1370b4-ed2 7-499b-a31 6-b9c7b99a 303e' | |
| 10393 | UPDATE [db o].[BloodP roduct] SE T [Product Name]='Aph eresis FRE SH FROZEN PLASMA|ACD -B/XX/<=-6 5C|Not for tx or mnf |Fin Con:N S', [LastU pdateDate] ='2016-07- 27 11:17:0 6.000', [L astUpdateU ser]=' RED A CTED ' WHERE [B loodProduc tGuid]='28 bbf6cb-197 4-4631-bfd 2-b9da07e8 eeff' | |
| 10394 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLT AFR Wash None OPN 3C', [ LastUpdate Date]='201 6-07-27 11 :17:06.000 ', [LastUp dateUser]= ' RED A CTED ' WHERE [B loodProduc tGuid]='0b 1ba3b3-a2a c-4203-893 a-b9e60d00 82da' | |
| 10395 | UPDATE [db o].[BloodP roduct] SE T [Product Name]='Aph eresis FRE SH FROZEN PLASMA|NaC itrate/XX/ <=-25C|For mnf:nonin jectable|F rozen <=6h ', [LastUp dateDate]= '2016-07-2 7 11:17:06 .000', [La stUpdateUs er]=' RED A CTED ' WHERE [B loodProduc tGuid]='69 562e77-67d e-4c16-9f7 6-b9e7a865 a03e' | |
| 10396 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC AFR CPDA-1 IRD LUKOPR 5C ', [LastUp dateDate]= '2016-07-2 7 11:17:06 .000', [La stUpdateUs er]=' RED A CTED ' WHERE [B loodProduc tGuid]='be b9a33d-28a 5-49b0-a7e e-ba23d5b2 0125' | |
| 10397 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='FFP Thaw CPDA-1 IR D 2C', [La stUpdateDa te]='2016- 07-27 11:1 7:06.000', [LastUpda teUser]=' RED A CTED ' WHERE [B loodProduc tGuid]='d2 6b9fd2-7da a-4bd7-b76 7-ba2e3055 3bc5' | |
| 10398 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='FFP AFR None LUKOP R 7C', [La stUpdateDa te]='2016- 07-27 11:1 7:06.000', [LastUpda teUser]=' RED A CTED ' WHERE [B loodProduc tGuid]='2b 478fe8-951 3-4ee9-a9f 8-ba2f01f7 a627' | |
| 10399 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='FFP AFR None 1C', [LastUpdat eDate]='20 16-07-27 1 1:17:06.00 0', [LastU pdateUser] =' RED A CTED ' WHERE [B loodProduc tGuid]='04 e3688d-b99 c-47a0-b78 a-ba64820a 45b6' | |
| 10400 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLT AFR ACD-A>PAS- C 2C', [La stUpdateDa te]='2016- 07-27 11:1 7:06.000', [LastUpda teUser]=' RED A CTED ' WHERE [B loodProduc tGuid]='b4 c8632f-845 5-470b-965 4-ba692a29 f749' | |
| 10401 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC AFR CPDA-1 IRD 5C', [Las tUpdateDat e]='2016-0 7-27 11:17 :06.000', [LastUpdat eUser]=' RED A CTED ' WHERE [B loodProduc tGuid]='2b 6f4e4a-cac 6-4364-8af d-ba83340c 1695' | |
| 10402 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC AFR Deg Rej No ne OPN IRD LUKOPR 3C ', [LastUp dateDate]= '2016-07-2 7 11:17:06 .000', [La stUpdateUs er]=' RED A CTED ' WHERE [B loodProduc tGuid]='7f e26723-341 2-4028-a3b 7-bae19cb5 9484' | |
| 10403 | UPDATE [db o].[BloodP roduct] SE T [Product Name]='FRE SH FROZEN PLASMA|CPD A-1/XX/<=- 65C|2nd co ntainer|Qu ar:>=112d/ retested', [ProductS hortName]= 'FFP CPDA- 1 2C QUAR' , [LastUpd ateDate]=' 2016-07-27 11:17:06. 000', [Las tUpdateUse r]=' RED A CTED ' WHERE [B loodProduc tGuid]='47 078ada-48e 8-46e1-9d7 6-bae70d0e d4d3' | |
| 10404 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLT AFR Wash None OPN 1CNA', [LastUpda teDate]='2 016-07-27 11:17:06.0 00', [Last UpdateUser ]=' RED A CTED ' WHERE [B loodProduc tGuid]='a9 3de30c-bde 4-4f58-9a1 6-bb070491 262b' | |
| 10405 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='FFP AFR Thaw NaCit IRD 6C', [LastUpdat eDate]='20 16-07-27 1 1:17:06.00 0', [LastU pdateUser] =' RED A CTED ' WHERE [B loodProduc tGuid]='7a 993cfc-93b f-4e07-a69 b-bb234ad9 ecee' | |
| 10406 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC AFR Deg None O PN LUKOPR 7C', [Last UpdateDate ]='2016-07 -27 11:17: 06.000', [ LastUpdate User]=' RED A CTED ' WHERE [B loodProduc tGuid]='60 d57b88-a17 8-4a1d-802 b-bb3ce6f4 d1a2' | |
| 10407 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLT AFR ACD-A 1CNA ', [LastUp dateDate]= '2016-07-2 7 11:17:06 .000', [La stUpdateUs er]=' RED A CTED ' WHERE [B loodProduc tGuid]='9e 480fb3-8c3 9-436a-b5c 4-bb54a67d d3b4' | |
| 10408 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC AFR CP2D-AS3 L UKOPR 1C', [LastUpda teDate]='2 016-07-27 11:17:06.0 00', [Last UpdateUser ]=' RED A CTED ' WHERE [B loodProduc tGuid]='3e 5447ed-96f 1-43e4-a6b d-bb58d47e 203e' | |
| 10409 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLT AFR ACD-A IRD 1C', [Last UpdateDate ]='2016-07 -27 11:17: 06.000', [ LastUpdate User]=' RED A CTED ' WHERE [B loodProduc tGuid]='4c b4f9b3-72e 9-44eb-90d f-bb5cfe81 00d2' | |
| 10410 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLT AFR PAS-C MNFI LUKOPR 1C ', [LastUp dateDate]= '2016-07-2 7 11:17:06 .000', [La stUpdateUs er]=' RED A CTED ' WHERE [B loodProduc tGuid]='2f 41d463-8e0 1-41b8-af7 e-bb6747f8 eeb5' | |
| 10411 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='WB CPD I RD LUKOPR 8C', [Last UpdateDate ]='2016-07 -27 11:17: 06.000', [ LastUpdate User]=' RED A CTED ' WHERE [B loodProduc tGuid]='ee 032aee-ba4 5-4332-bc9 4-bba3a02c 2ce9' | |
| 10412 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='WB CPD L UKOPR 1C', [LastUpda teDate]='2 016-07-27 11:17:06.0 00', [Last UpdateUser ]=' RED A CTED ' WHERE [B loodProduc tGuid]='86 108c87-a87 6-4020-a8b d-bbb3332b de15' | |
| 10413 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLT AFR NaCit LUKO PR PLS Red 2C', [Las tUpdateDat e]='2016-0 7-27 11:17 :06.000', [LastUpdat eUser]=' RED A CTED ' WHERE [B loodProduc tGuid]='06 f1e348-d67 3-4f05-8f2 d-bbcad573 1286' | |
| 10414 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLT AFR ACD-A IRD 3C', [Last UpdateDate ]='2016-07 -27 11:17: 06.000', [ LastUpdate User]=' RED A CTED ' WHERE [B loodProduc tGuid]='9e c9f256-b3d 1-4e12-9d0 5-bbdbb479 66f5' | |
| 10415 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLASMA A FR Liq 0.5 CPD IRD L UKOPR 2C', [LastUpda teDate]='2 016-07-27 11:17:06.0 00', [Last UpdateUser ]=' RED A CTED ' WHERE [B loodProduc tGuid]='fd c9fe69-315 b-4362-afd 3-bbdfe187 b8a1' | |
| 10416 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='FFP AFR None QUAR 8C', [Last UpdateDate ]='2016-07 -27 11:17: 06.000', [ LastUpdate User]=' RED A CTED ' WHERE [B loodProduc tGuid]='9a d82e85-469 3-424a-80b 1-bbfcb172 3489' | |
| 10417 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC AFR ACD-A>AS3 MNFNI LUKO PR 2C', [L astUpdateD ate]='2016 -07-27 11: 17:06.000' , [LastUpd ateUser]=' RED A CTED ' WHERE [B loodProduc tGuid]='dd 1fac0c-099 9-4486-9ab 2-bc07d3cb 7620' | |
| 10418 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLASMA A FR Thaw AC D-A IRD 6C ', [LastUp dateDate]= '2016-07-2 7 11:17:06 .000', [La stUpdateUs er]=' RED A CTED ' WHERE [B loodProduc tGuid]='96 5d2e94-64a 6-4f66-bde 1-bc0a41bd 4733' | |
| 10419 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='FFP None QUAR 8C', [LastUpda teDate]='2 016-07-27 11:17:06.0 00', [Last UpdateUser ]=' RED A CTED ' WHERE [B loodProduc tGuid]='2c ddceb2-e25 9-4a15-a70 7-bc342b02 dfd8' | |
| 10420 | UPDATE [db o].[BloodP roduct] SE T [Product Name]='Aph eresis FRE SH FROZEN PLASMA|NaC itrate/XX/ <=-65C|Irr adiated|1s t containe r', [Produ ctShortNam e]='FFP AF R NaCit IR D 1C', [La stUpdateDa te]='2016- 07-27 11:1 7:06.000', [LastUpda teUser]=' RED A CTED ' WHERE [B loodProduc tGuid]='2c 2565dc-f7c f-4fb9-b74 7-bc57b930 874d' | |
| 10421 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC AFR CPDA-1 IRD 6C', [Las tUpdateDat e]='2016-0 7-27 11:17 :06.000', [LastUpdat eUser]=' RED A CTED ' WHERE [B loodProduc tGuid]='d1 ca4ce8-cab b-4c79-94c d-bc6ce268 f835' | |
| 10422 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC CPD> AS5 IRD 5C ', [LastUp dateDate]= '2016-07-2 7 11:17:06 .000', [La stUpdateUs er]=' RED A CTED ' WHERE [B loodProduc tGuid]='62 d3b321-402 9-452c-922 1-bc8abeb3 1b6d' | |
| 10423 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC AFR CPDA-1 5C' , [LastUpd ateDate]=' 2016-07-27 11:17:06. 000', [Las tUpdateUse r]=' RED A CTED ' WHERE [B loodProduc tGuid]='4e 0da6d2-560 1-40ae-b72 e-bcb67f87 fb21' | |
| 10424 | UPDATE [db o].[BloodP roduct] SE T [Product Name]='Aph eresis FRE SH FROZEN PLASMA|ACD -B/XX/<=-3 0C|Irradia ted|>=200m L<400mL|Qu ar:>=6m/re tested', [ LastUpdate Date]='201 6-07-27 11 :17:06.000 ', [LastUp dateUser]= ' RED A CTED ' WHERE [B loodProduc tGuid]='76 91ab2a-7fb 3-4c3d-b86 1-bcb89c09 106a' | |
| 10425 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLT AFR ACD-B OPN IRD 3C', [ LastUpdate Date]='201 6-07-27 11 :17:06.000 ', [LastUp dateUser]= ' RED A CTED ' WHERE [B loodProduc tGuid]='5f 8598e0-9c9 2-42fb-833 3-bcbdac4c 4ed5' | |
| 10426 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='FFP Thaw None IRD 3C', [Last UpdateDate ]='2016-07 -27 11:17: 06.000', [ LastUpdate User]=' RED A CTED ' WHERE [B loodProduc tGuid]='b4 4ebf1a-d3a 6-4791-bbe 9-bced6a28 233b' | |
| 10427 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLASMA A FR Thaw No ne 1C', [L astUpdateD ate]='2016 -07-27 11: 17:06.000' , [LastUpd ateUser]=' RED A CTED ' WHERE [B loodProduc tGuid]='99 d20d68-5cc 9-47b8-9d0 d-bcffdb3c 612b' | |
| 10428 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='FFP AFR None LUKOP R 3C', [La stUpdateDa te]='2016- 07-27 11:1 7:06.000', [LastUpda teUser]=' RED A CTED ' WHERE [B loodProduc tGuid]='a4 2df799-cf2 d-4259-b4f b-bd271f24 69c4' | |
| 10429 | UPDATE [db o].[BloodP roduct] SE T [Product Name]='Aph eresis FRE SH FROZEN PLASMA|NaC itrate/XX/ <=-30C|Res Leu:<1E6|> =200mL<400 mL|Frozen <=18h|1st container| Methylene blue-treat ed', [Prod uctShortNa me]='FFP A FR NaCit L UKOPR 1C M ethyl Blue ', [LastUp dateDate]= '2016-07-2 7 11:17:06 .000', [La stUpdateUs er]=' RED A CTED ' WHERE [B loodProduc tGuid]='4f 310059-c00 5-411f-b2a a-bd2a92a2 1eed' | |
| 10430 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC AFR CPDA-1 LUK OPR 1C', [ LastUpdate Date]='201 6-07-27 11 :17:06.000 ', [LastUp dateUser]= ' RED A CTED ' WHERE [B loodProduc tGuid]='1c 52a550-670 3-48ed-8aa 1-bd3c3a91 ce96' | |
| 10431 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC AFR Deg None O PN 7C', [L astUpdateD ate]='2016 -07-27 11: 17:06.000' , [LastUpd ateUser]=' RED A CTED ' WHERE [B loodProduc tGuid]='4f 0cfcfb-fbc 0-41de-915 6-bd403385 c39b' | |
| 10432 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLT AFR ACD-B IRD 3C', [Last UpdateDate ]='2016-07 -27 11:17: 06.000', [ LastUpdate User]=' RED A CTED ' WHERE [B loodProduc tGuid]='d9 ddae2e-300 3-4222-bd3 1-bd562138 e422' | |
| 10433 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC CPD LUKOPR 5C' , [LastUpd ateDate]=' 2016-07-27 11:17:06. 000', [Las tUpdateUse r]=' RED A CTED ' WHERE [B loodProduc tGuid]='29 76fb4f-cb1 8-4ea9-ac2 2-bd60bff6 e02b' | |
| 10434 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC AFR ACD-A>AS3 IRD 4C', [ LastUpdate Date]='201 6-07-27 11 :17:06.000 ', [LastUp dateUser]= ' RED A CTED ' WHERE [B loodProduc tGuid]='ca 663fe2-925 b-41e4-ac3 8-bd7af45a af35' | |
| 10435 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC AFR CP2D OPN I RD 2C', [L astUpdateD ate]='2016 -07-27 11: 17:06.000' , [LastUpd ateUser]=' RED A CTED ' WHERE [B loodProduc tGuid]='c1 da973f-8cd 4-4a51-949 c-bd7fbd67 6cd5' | |
| 10436 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='FFP AFR ACD-A 2C', [LastUpda teDate]='2 016-07-27 11:17:06.0 00', [Last UpdateUser ]=' RED A CTED ' WHERE [B loodProduc tGuid]='5a b45191-472 5-483c-96f e-bd91df24 a771' | |
| 10437 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC AFR CPDA-1 IRD LUKOPR PA 1C', [Las tUpdateDat e]='2016-0 7-27 11:17 :06.000', [LastUpdat eUser]=' RED A CTED ' WHERE [B loodProduc tGuid]='a0 ab1a2e-507 2-437a-9c7 b-bd9da007 bd1d' | |
| 10438 | UPDATE [db o].[BloodP roduct] SE T [Product Name]='Fro zen Aphere sis PLATEL ETS|DMSO/X X/<=-65C|O pen|Irradi ated|ResLe u:<5E6|3rd container ', [Produc tShortName ]='PLT AFR Froz DMSO OPN IRD L UKOPR 3C', [LastUpda teDate]='2 016-07-27 11:17:06.0 00', [Last UpdateUser ]=' RED A CTED ' WHERE [B loodProduc tGuid]='01 50b4bd-bba 2-4be5-be9 4-bdb3ead3 7ff9' | |
| 10439 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC AFR CP2D OPN I RD LUKOPR SR/PA 1C', [LastUpda teDate]='2 016-07-27 11:17:06.0 00', [Last UpdateUser ]=' RED A CTED ' WHERE [B loodProduc tGuid]='41 f2afdb-09c c-4454-b1c e-bde36ba7 faeb' | |
| 10440 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC Wash None OPN IRD 6C', [ LastUpdate Date]='201 6-07-27 11 :17:06.000 ', [LastUp dateUser]= ' RED A CTED ' WHERE [B loodProduc tGuid]='cd db33ea-812 f-4f26-911 f-bdea4cdc a30c' | |
| 10441 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLT AFR ACD-A IRD 7C', [Last UpdateDate ]='2016-07 -27 11:17: 06.000', [ LastUpdate User]=' RED A CTED ' WHERE [B loodProduc tGuid]='ee ac0321-41f 4-431a-8bc 6-be044980 5ad8' | |
| 10442 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLT AFR ACD-A OPN IRD 2C', [ LastUpdate Date]='201 6-07-27 11 :17:06.000 ', [LastUp dateUser]= ' RED A CTED ' WHERE [B loodProduc tGuid]='b6 9ae40f-13d d-4611-8aa 4-be0a6a2b 5021' | |
| 10443 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC CPDA -1 2C', [L astUpdateD ate]='2016 -07-27 11: 17:06.000' , [LastUpd ateUser]=' RED A CTED ' WHERE [B loodProduc tGuid]='41 ff3394-126 6-4bb0-86e 3-be0edaf1 8a50' | |
| 10444 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLT AFR ACD-A OPN IRD LUKOPR PLS Red/A LB Add 2C' , [LastUpd ateDate]=' 2016-07-27 11:17:06. 000', [Las tUpdateUse r]=' RED A CTED ' WHERE [B loodProduc tGuid]='5d 3cb176-9c0 a-49f1-a65 7-be1398b4 235e' | |
| 10445 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLT AFR Wash None NMT OPN 2C ', [LastUp dateDate]= '2016-07-2 7 11:17:06 .000', [La stUpdateUs er]=' RED A CTED ' WHERE [B loodProduc tGuid]='06 0d9201-333 a-43d6-bfb 5-be18e022 e610' | |
| 10446 | UPDATE [db o].[BloodP roduct] SE T [Product Name]='Fro zen POOLED PLATELETS |DMSO/XX/< =-80C|For mnf:inject able|ResLe u:<1E6|Buf fy coat pl ts prep|5 units', [L astUpdateD ate]='2016 -07-27 11: 17:06.000' , [LastUpd ateUser]=' RED A CTED ' WHERE [B loodProduc tGuid]='e4 15dcaa-af0 d-4258-b91 8-be217728 7b07' | |
| 10447 | UPDATE [db o].[BloodP roduct] SE T [Product Name]='FRE SH FROZEN PLASMA|CPD /450mL/<=- 65C|ResLeu :<1E6|Froz en <=6h', [LastUpdat eDate]='20 16-07-27 1 1:17:06.00 0', [LastU pdateUser] =' RED A CTED ' WHERE [B loodProduc tGuid]='7c b7ab29-f09 f-428c-9c4 4-be32841e 53e2' | |
| 10448 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC AFR ACD-A LUKO PR SR/PA 1 C', [LastU pdateDate] ='2016-07- 27 11:17:0 6.000', [L astUpdateU ser]=' RED A CTED ' WHERE [B loodProduc tGuid]='88 478402-016 a-4cba-a82 1-be34cd02 79b2' | |
| 10449 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='FFP Thaw None IRD 1C', [Last UpdateDate ]='2016-07 -27 11:17: 06.000', [ LastUpdate User]=' RED A CTED ' WHERE [B loodProduc tGuid]='ed 71d383-4b8 1-48d4-b1c e-be421223 26e8' | |
| 10450 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC Deg Rej None O PN 6C', [L astUpdateD ate]='2016 -07-27 11: 17:06.000' , [LastUpd ateUser]=' RED A CTED ' WHERE [B loodProduc tGuid]='f0 520546-e3f a-4d6e-9cd 7-be98eb6c 701e' | |
| 10451 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLT AFR PAS-E IRD LUKOPR 2C BacTest', [LastUpdat eDate]='20 16-07-27 1 1:17:06.00 0', [LastU pdateUser] =' RED A CTED ' WHERE [B loodProduc tGuid]='47 4a90c8-594 5-4317-967 8-bea7f600 e0ff' | |
| 10452 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLT AFR Thaw DMSO OPN 3C', [ LastUpdate Date]='201 6-07-27 11 :17:06.000 ', [LastUp dateUser]= ' RED A CTED ' WHERE [B loodProduc tGuid]='c4 410a0f-373 b-4c77-b1d 1-beb3c3f5 d4f5' | |
| 10453 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='FFP None IRD 6C', [LastUpdat eDate]='20 16-07-27 1 1:17:06.00 0', [LastU pdateUser] =' RED A CTED ' WHERE [B loodProduc tGuid]='52 fe2aac-d9d c-42f6-ba9 0-bebc232e 8ef3' | |
| 10454 | UPDATE [db o].[BloodP roduct] SE T [Product Name]='FRE SH FROZEN PLASMA|CPD /450mL/<=- 30C|Irradi ated|Froze n <=6h', [ LastUpdate Date]='201 6-07-27 11 :17:06.000 ', [LastUp dateUser]= ' RED A CTED ' WHERE [B loodProduc tGuid]='b0 02e6ca-1cc 3-4594-af8 0-bedfea52 4fc8' | |
| 10455 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLT AFR ACD-B MNFN I OPN 1CNA ', [LastUp dateDate]= '2016-07-2 7 11:17:06 .000', [La stUpdateUs er]=' RED A CTED ' WHERE [B loodProduc tGuid]='43 b7993d-1c3 d-4cf5-9d9 0-bee6601e d1a5' | |
| 10456 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLT AFR ACD-A LUKO PR 3C', [L astUpdateD ate]='2016 -07-27 11: 17:06.000' , [LastUpd ateUser]=' RED A CTED ' WHERE [B loodProduc tGuid]='09 910835-ffe 6-4915-911 6-bef6e43e 940b' | |
| 10457 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC AFR CP2D>AS3 I RD 4C', [L astUpdateD ate]='2016 -07-27 11: 17:06.000' , [LastUpd ateUser]=' RED A CTED ' WHERE [B loodProduc tGuid]='88 79f690-4a9 3-4829-ace 4-beff0f43 3126' | |
| 10458 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLT AFR NaCit IRD 4C', [Last UpdateDate ]='2016-07 -27 11:17: 06.000', [ LastUpdate User]=' RED A CTED ' WHERE [B loodProduc tGuid]='d0 08631d-d98 0-4307-84d 6-bf0a975c 9aa3' | |
| 10459 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC AFR ACD-A>AS3 7C', [Last UpdateDate ]='2016-07 -27 11:17: 06.000', [ LastUpdate User]=' RED A CTED ' WHERE [B loodProduc tGuid]='08 4f0d33-5a0 c-4436-a87 2-bf19354c 0ccc' | |
| 10460 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLT AFR NaCit NMT 2CNA', [La stUpdateDa te]='2016- 07-27 11:1 7:06.000', [LastUpda teUser]=' RED A CTED ' WHERE [B loodProduc tGuid]='ec be64a5-bd8 1-4453-bb2 4-bf1a1eba fa62' | |
| 10461 | UPDATE [db o].[BloodP roduct] SE T [Product Name]='Fro zen Aphere sis RED BL OOD CELLS| None/XX/<= -65C|Open| ResLeu:<5E 6|2nd cont ainer', [P roductShor tName]='RB C AFR Froz None OPN LUKOPR 2C' , [LastUpd ateDate]=' 2016-07-27 11:17:06. 000', [Las tUpdateUse r]=' RED A CTED ' WHERE [B loodProduc tGuid]='bc ed81ad-f4d 3-48e4-993 3-bf6c2823 db3f' | |
| 10462 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC AFR CP2D>AS3 I RD LUKOPR 7C', [Last UpdateDate ]='2016-07 -27 11:17: 06.000', [ LastUpdate User]=' RED A CTED ' WHERE [B loodProduc tGuid]='16 7edfe5-8bb 8-4723-b31 5-bf6e38d6 ced2' | |
| 10463 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLT AFR ACD-A OPN IRD LUKOPR 2C Pedi', [LastUpda teDate]='2 016-07-27 11:17:06.0 00', [Last UpdateUser ]=' RED A CTED ' WHERE [B loodProduc tGuid]='a8 d494ac-4fc e-4718-840 d-bf7331e2 f82c' | |
| 10464 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC Deg None IRD L UKOPR 3C', [LastUpda teDate]='2 016-07-27 11:17:06.0 00', [Last UpdateUser ]=' RED A CTED ' WHERE [B loodProduc tGuid]='11 6129f9-ffa 7-4a6f-984 0-bf8d8ea0 e1ac' | |
| 10465 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC Deg None IRD 3 C', [LastU pdateDate] ='2016-07- 27 11:17:0 6.000', [L astUpdateU ser]=' RED A CTED ' WHERE [B loodProduc tGuid]='09 fb04d7-e24 f-4d7b-a61 0-bf92b900 8cd9' | |
| 10466 | UPDATE [db o].[BloodP roduct] SE T [Product Name]='Aph eresis FRE SH FROZEN PLASMA|NaC itrate/XX/ <=-30C|Irr adiated|Re sLeu:<1E6| >=200mL<40 0mL|Frozen <=6h|2nd container' , [Product ShortName] ='FFP AFR Nacit IRD LUKOPR 2C' , [LastUpd ateDate]=' 2016-07-27 11:17:06. 000', [Las tUpdateUse r]=' RED A CTED ' WHERE [B loodProduc tGuid]='7c a6c4ee-b9d b-4062-afe 1-bf9cfa35 a0b1' | |
| 10467 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC Deg None 8C', [LastUpdat eDate]='20 16-07-27 1 1:17:06.00 0', [LastU pdateUser] =' RED A CTED ' WHERE [B loodProduc tGuid]='c2 838b43-a9e 3-42a2-9c7 a-bf9d432c d81a' | |
| 10468 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC CPDA -1 7C', [R etireDate] ='2015-04- 07 00:00:0 0.000', [L astUpdateD ate]='2016 -07-27 11: 17:06.000' , [LastUpd ateUser]=' RED A CTED ' WHERE [B loodProduc tGuid]='f1 22b570-cb4 d-4d72-ad9 1-bfba2396 f670' | |
| 10469 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC CPD IRD LUKOPR 3C', [Ret ireDate]=' 2015-04-07 00:00:00. 000', [Las tUpdateDat e]='2016-0 7-27 11:17 :06.000', [LastUpdat eUser]=' RED A CTED ' WHERE [B loodProduc tGuid]='1a 5ec54a-a54 4-47e7-87f a-bfd67c9f cd3d' | |
| 10470 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC AFR CPD>AS1 LU KOPR 2C', [LastUpdat eDate]='20 16-07-27 1 1:17:06.00 0', [LastU pdateUser] =' RED A CTED ' WHERE [B loodProduc tGuid]='ee d0db83-d77 2-4707-80f 4-bfdd7d98 8f5e' | |
| 10471 | UPDATE [db o].[BloodP roduct] SE T [Product Name]='Aph eresis FRE SH FROZEN PLASMA|ACD -A/XX/<=-6 5C|5th con tainer', [ ProductSho rtName]='F FP AFR ACD -A 5C', [L astUpdateD ate]='2016 -07-27 11: 17:06.000' , [LastUpd ateUser]=' RED A CTED ' WHERE [B loodProduc tGuid]='91 f7566e-158 c-4bb9-950 d-bfe144e6 2a55' | |
| 10472 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC AFR ACD-A>AS3 4C', [Last UpdateDate ]='2016-07 -27 11:17: 06.000', [ LastUpdate User]=' RED A CTED ' WHERE [B loodProduc tGuid]='b0 9e6012-289 b-4d71-87f 2-bfec6393 ace1' | |
| 10473 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC AFR ACD-A>AS1 OPN IRD 1C ', [LastUp dateDate]= '2016-07-2 7 11:17:06 .000', [La stUpdateUs er]=' RED A CTED ' WHERE [B loodProduc tGuid]='e1 b8b81e-10b 3-470e-8bb 9-c00e4e82 f7fc' | |
| 10474 | UPDATE [db o].[BloodP roduct] SE T [Product Name]='Aph eresis FRE SH FROZEN PLASMA|NaC itrate/XX/ <=-30C|Res Leu:<1E6|> =200mL<400 mL|Frozen <=18h|3rd container| Methylene blue-treat ed', [Prod uctShortNa me]='FFP A FR NaCit L UKOPR 3C M ethyl Blue ', [LastUp dateDate]= '2016-07-2 7 11:17:06 .000', [La stUpdateUs er]=' RED A CTED ' WHERE [B loodProduc tGuid]='a5 dfae92-3bf 6-4823-9c7 6-c013beb8 baa1' | |
| 10475 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC AFR Froz None OPN LUKOPR 2C', [Las tUpdateDat e]='2016-0 7-27 11:17 :06.000', [LastUpdat eUser]=' RED A CTED ' WHERE [B loodProduc tGuid]='6d 8363f7-d67 4-4357-88e e-c03ac9d1 7082' | |
| 10476 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLT AFR ACD-A IRD 4C', [Last UpdateDate ]='2016-07 -27 11:17: 06.000', [ LastUpdate User]=' RED A CTED ' WHERE [B loodProduc tGuid]='c0 7f1484-81c 5-4b0b-811 a-c03fa455 e663' | |
| 10477 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLASMA N one 1C', [ LastUpdate Date]='201 6-07-27 11 :17:06.000 ', [LastUp dateUser]= ' RED A CTED ' WHERE [B loodProduc tGuid]='95 776ada-4ce 9-4f95-bdf 8-c043ab1d 456f' | |
| 10478 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC AFR ACD-A>AS3 IRD LUKOPR 1C', [Las tUpdateDat e]='2016-0 7-27 11:17 :06.000', [LastUpdat eUser]=' RED A CTED ' WHERE [B loodProduc tGuid]='8d 149892-df6 b-47c5-bd9 1-c0476e0f 837b' | |
| 10479 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='FFP AFR None 5C', [LastUpdat eDate]='20 16-07-27 1 1:17:06.00 0', [LastU pdateUser] =' RED A CTED ' WHERE [B loodProduc tGuid]='bb 1569e3-898 4-4a80-b0a e-c06a0c75 773c' | |
| 10480 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='WB CPDA- 1 3C', [La stUpdateDa te]='2016- 07-27 11:1 7:06.000', [LastUpda teUser]=' RED A CTED ' WHERE [B loodProduc tGuid]='55 0a5fd1-436 b-4606-a47 9-c06e6b72 4b68' | |
| 10481 | UPDATE [db o].[BloodP roduct] SE T [Product Name]='CRY OPRECIPITA TE|CPD/450 mL/<=-25C| Riboflavin -treated', [LastUpda teDate]='2 016-07-27 11:17:06.0 00', [Last UpdateUser ]=' RED A CTED ' WHERE [B loodProduc tGuid]='a3 461abb-ea8 3-4de1-b5e a-c07c1494 5a85' | |
| 10482 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLT AFR PAS-C MNFI LUKOPR 3C ', [LastUp dateDate]= '2016-07-2 7 11:17:06 .000', [La stUpdateUs er]=' RED A CTED ' WHERE [B loodProduc tGuid]='a2 1ef749-721 e-40f4-803 d-c099e6ef 5c71' | |
| 10483 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC AFR CPD>AS1 OP N IRD SR 2 C', [LastU pdateDate] ='2016-07- 27 11:17:0 6.000', [L astUpdateU ser]=' RED A CTED ' WHERE [B loodProduc tGuid]='eb 19f4fd-145 0-422c-982 f-c0a21eda 009a' | |
| 10484 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC AFR Deg Rej No ne OPN IRD 3C', [Las tUpdateDat e]='2016-0 7-27 11:17 :06.000', [LastUpdat eUser]=' RED A CTED ' WHERE [B loodProduc tGuid]='83 92f0ae-10e b-4338-ad3 0-c0b6f722 ef69' | |
| 10485 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='FFP AFR Thaw ACD-A IRD 4C', [LastUpdat eDate]='20 16-07-27 1 1:17:06.00 0', [LastU pdateUser] =' RED A CTED ' WHERE [B loodProduc tGuid]='02 4e0933-a9c a-4b7d-9cc a-c0bbeaad e9e6' | |
| 10486 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLT AFR ACD-A IRD LUKOPR PLS Red 1CNA' , [LastUpd ateDate]=' 2016-07-27 11:17:06. 000', [Las tUpdateUse r]=' RED A CTED ' WHERE [B loodProduc tGuid]='90 b049ab-c7f 1-46fc-9c3 a-c0c20944 3f02' | |
| 10487 | UPDATE [db o].[BloodP roduct] SE T [Product Name]='Aph eresis FRE SH FROZEN PLASMA|NS/ XX/<=-30C| ResLeu:<1E 6|Quar: na tionally d efined', [ LastUpdate Date]='201 6-07-27 11 :17:06.000 ', [LastUp dateUser]= ' RED A CTED ' WHERE [B loodProduc tGuid]='74 c6f844-a16 6-44d5-a99 c-c0c9cfbb 614f' | |
| 10488 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='FFP Thaw CPDA-1 IR D 2C QUAR' , [LastUpd ateDate]=' 2016-07-27 11:17:06. 000', [Las tUpdateUse r]=' RED A CTED ' WHERE [B loodProduc tGuid]='c7 d7eccb-72f 8-481f-a60 0-c0d1f7ee 7837' | |
| 10489 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC AFR ACD-A OPN LUKOPR SR 2C', [Last UpdateDate ]='2016-07 -27 11:17: 06.000', [ LastUpdate User]=' RED A CTED ' WHERE [B loodProduc tGuid]='2d 96e941-de1 6-4941-a34 f-c0d85d93 7775' | |
| 10490 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC AFR ACD-A>AS3 IRD LUKOPR 5C', [Las tUpdateDat e]='2016-0 7-27 11:17 :06.000', [LastUpdat eUser]=' RED A CTED ' WHERE [B loodProduc tGuid]='7a 1bd1ea-503 4-4632-9a7 0-c0d8e44d 246e' | |
| 10491 | UPDATE [db o].[BloodP roduct] SE T [Product Name]='Aph eresis FRE SH FROZEN PLASMA|ACD -A/XX/<=-6 5C|1st con tainer', [ ProductSho rtName]='F FP AFR ACD -A 1C', [L astUpdateD ate]='2016 -07-27 11: 17:06.000' , [LastUpd ateUser]=' RED A CTED ' WHERE [B loodProduc tGuid]='20 3d40d2-32c f-476c-b9b a-c0ed0103 3b93' | |
| 10492 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLASMA A FR Thaw AC D-A IRD 4C ', [LastUp dateDate]= '2016-07-2 7 11:17:06 .000', [La stUpdateUs er]=' RED A CTED ' WHERE [B loodProduc tGuid]='a9 f4a065-35d 5-4976-a82 a-c11dd66c cdef' | |
| 10493 | UPDATE [db o].[BloodP roduct] SE T [Product Name]='Aph eresis FRE SH FROZEN PLASMA|ACD -A/XX/<=-3 0C|ResLeu: <1E6|>=600 mL|Quar:>= 62d/retest ed', [Last UpdateDate ]='2016-07 -27 11:17: 06.000', [ LastUpdate User]=' RED A CTED ' WHERE [B loodProduc tGuid]='5d a6e583-f67 7-4e0e-aec 2-c120309b 555f' | |
| 10494 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC CPD LUKOPR 1C' , [RetireD ate]='2015 -04-07 00: 00:00.000' , [LastUpd ateDate]=' 2016-07-27 11:17:06. 000', [Las tUpdateUse r]=' RED A CTED ' WHERE [B loodProduc tGuid]='50 ca038b-ab6 3-4a14-971 d-c1236340 b288' | |
| 10495 | UPDATE [db o].[BloodP roduct] SE T [Product Name]='Aph eresis FRE SH FROZEN PLASMA|ACD -A/XX/<=-6 5C|4th con tainer|Qua r:>=112d/r etested', [ProductSh ortName]=' FFP AFR AC D-A 4C QUA R', [LastU pdateDate] ='2016-07- 27 11:17:0 6.000', [L astUpdateU ser]=' RED A CTED ' WHERE [B loodProduc tGuid]='65 1c3c57-772 4-46b1-ace b-c124c4c2 9f95' | |
| 10496 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLASMA A FR Liq ACD -A 2C', [L astUpdateD ate]='2016 -07-27 11: 17:06.000' , [LastUpd ateUser]=' RED A CTED ' WHERE [B loodProduc tGuid]='04 dc7465-9f6 8-4b8d-b77 3-c128b307 f491' | |
| 10497 | UPDATE [db o].[BloodP roduct] SE T [Product Name]='FRE SH FROZEN PLASMA|NS/ XX/<=-30C| Not for tx or mnf|Re sLeu:<1E6' , [LastUpd ateDate]=' 2016-07-27 11:17:06. 000', [Las tUpdateUse r]=' RED A CTED ' WHERE [B loodProduc tGuid]='91 ab3a63-7e9 8-473a-afe f-c13cb1fd e648' | |
| 10498 | UPDATE [db o].[BloodP roduct] SE T [Product Name]='FRE SH FROZEN PLASMA|CPD /XX/<=-65C |Irradiate d|3rd cont ainer', [P roductShor tName]='FF P CPD IRD 3C', [Last UpdateDate ]='2016-07 -27 11:17: 06.000', [ LastUpdate User]=' RED A CTED ' WHERE [B loodProduc tGuid]='cc f99f72-1fc 5-4e60-9df 7-c1462519 d565' | |
| 10499 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='FFP Thaw CPD IRD 1 C QUAR', [ LastUpdate Date]='201 6-07-27 11 :17:06.000 ', [LastUp dateUser]= ' RED A CTED ' WHERE [B loodProduc tGuid]='6b 5804f9-df0 3-45f3-b90 4-c14bca03 c402' | |
| 10500 | UPDATE [db o].[BloodP roduct] SE T [Product Name]='FRE SH FROZEN PLASMA|CPD /XX/<=-65C |2nd conta iner', [Pr oductShort Name]='FFP CPD 2C', [LastUpdat eDate]='20 16-07-27 1 1:17:06.00 0', [LastU pdateUser] =' RED A CTED ' WHERE [B loodProduc tGuid]='7f 17db7e-bd2 5-411b-9d6 5-c14fe8ed c335' | |
| 10501 | UPDATE [db o].[BloodP roduct] SE T [Product Name]='Liq uid POOLED PLASMA|CP D/450mL/re fg|For mnf :injectabl e|2 units' , [Product ShortName] ='PLASMA P ool Liq CP D MNFI 2U' , [LastUpd ateDate]=' 2016-07-27 11:17:06. 000', [Las tUpdateUse r]=' RED A CTED ' WHERE [B loodProduc tGuid]='01 dd8113-d0f d-483a-b3f a-c1513807 81cc' | |
| 10502 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLT AFR ACD-B PLS Red 1CNA', [LastUpda teDate]='2 016-07-27 11:17:06.0 00', [Last UpdateUser ]=' RED A CTED ' WHERE [B loodProduc tGuid]='0c 86ae55-449 7-46e3-a94 d-c157f4ff f270' | |
| 10503 | UPDATE [db o].[BloodP roduct] SE T [Product Name]='Aph eresis FRE SH FROZEN PLASMA|ACD -B/XX/<=-2 5C|Not for tx or mnf |Aphr not automated| Quar:>=6m/ retested', [LastUpda teDate]='2 016-07-27 11:17:06.0 00', [Last UpdateUser ]=' RED A CTED ' WHERE [B loodProduc tGuid]='49 a703bd-d3d b-4264-a0a a-c1874ff5 4d0d' | |
| 10504 | UPDATE [db o].[BloodP roduct] SE T [Product Name]='FRE SH FROZEN PLASMA|CPD A-1/XX/<=- 30C|Not fo r tx or mn f|Quar:>=6 m/retested ', [LastUp dateDate]= '2016-07-2 7 11:17:06 .000', [La stUpdateUs er]=' RED A CTED ' WHERE [B loodProduc tGuid]='67 daf714-0c0 9-4bea-b2d 1-c188cf09 6491' | |
| 10505 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLT AFR ACD-A IRD 1C', [Last UpdateDate ]='2016-07 -27 11:17: 06.000', [ LastUpdate User]=' RED A CTED ' WHERE [B loodProduc tGuid]='b5 b73b3f-5ce 5-405b-bd4 6-c18f00c1 daf9' | |
| 10506 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC AFR CP2D LUKOP R 1C', [La stUpdateDa te]='2016- 07-27 11:1 7:06.000', [LastUpda teUser]=' RED A CTED ' WHERE [B loodProduc tGuid]='6d fcfdb2-00b c-4fc7-95f 4-c1aeacfb 6e88' | |
| 10507 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLT AFR PAS-C LUKO PR SUPRed 4C Psoraln ', [LastUp dateDate]= '2016-07-2 7 11:17:06 .000', [La stUpdateUs er]=' RED A CTED ' WHERE [B loodProduc tGuid]='51 726ffd-647 7-4764-bb4 4-c1c2e2e6 1992' | |
| 10508 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLASMA A FR None IR D 4C', [La stUpdateDa te]='2016- 07-27 11:1 7:06.000', [LastUpda teUser]=' RED A CTED ' WHERE [B loodProduc tGuid]='08 6c3135-bd3 2-43b5-a88 6-c1e77526 b1c1' | |
| 10509 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLT AFR ACD-B NMT OPN 4C', [ LastUpdate Date]='201 6-07-27 11 :17:06.000 ', [LastUp dateUser]= ' RED A CTED ' WHERE [B loodProduc tGuid]='72 791b64-adb 1-4b64-870 b-c1fbf739 6d3d' | |
| 10510 | UPDATE [db o].[BloodP roduct] SE T [Product Name]='FRE SH FROZEN PLASMA|CPD A-1/XX/<=- 65C|1st co ntainer|Qu ar:>=112d/ retested', [ProductS hortName]= 'FFP CPDA- 1 1C QUAR' , [LastUpd ateDate]=' 2016-07-27 11:17:06. 000', [Las tUpdateUse r]=' RED A CTED ' WHERE [B loodProduc tGuid]='2e 6fee38-d23 1-40ac-bc2 d-c1fd726a bb8a' | |
| 10511 | UPDATE [db o].[BloodP roduct] SE T [Product Name]='FRE SH FROZEN PLASMA|CPD /XX/<=-65C |Irradiate d|2nd cont ainer', [P roductShor tName]='FF P CPD IRD 2C', [Last UpdateDate ]='2016-07 -27 11:17: 06.000', [ LastUpdate User]=' RED A CTED ' WHERE [B loodProduc tGuid]='90 350d32-99c e-428d-a79 3-c2003a7c d26e' | |
| 10512 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLT AFR ACD-A LUKO PR PLS Red /PA 2C', [ LastUpdate Date]='201 6-07-27 11 :17:06.000 ', [LastUp dateUser]= ' RED A CTED ' WHERE [B loodProduc tGuid]='b0 da80e0-b6c 4-44e9-b8c b-c230e551 e1f0' | |
| 10513 | UPDATE [db o].[BloodP roduct] SE T [Product Name]='Aph eresis FRE SH FROZEN PLASMA|ACD -B/XX/<=-6 5C|Irradia ted', [Las tUpdateDat e]='2016-0 7-27 11:17 :06.000', [LastUpdat eUser]=' RED A CTED ' WHERE [B loodProduc tGuid]='32 d7c23e-87a 5-4cc9-ad4 6-c23581b9 6ecb' | |
| 10514 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLT AFR Wash None OPN LUKOPR 1C', [Las tUpdateDat e]='2016-0 7-27 11:17 :06.000', [LastUpdat eUser]=' RED A CTED ' WHERE [B loodProduc tGuid]='42 3e3fa6-1ba 1-4ace-aae e-c236b94a faa4' | |
| 10515 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC AFR Deg Rej No ne OPN LUK OPR 1C', [ LastUpdate Date]='201 6-07-27 11 :17:06.000 ', [LastUp dateUser]= ' RED A CTED ' WHERE [B loodProduc tGuid]='f2 5a8c8e-5c1 b-4dd9-9a3 8-c248f4a7 623c' | |
| 10516 | UPDATE [db o].[BloodP roduct] SE T [RetireD ate]='2015 -03-06 00: 00:00.000' , [LastUpd ateDate]=' 2016-07-27 11:17:06. 000', [Las tUpdateUse r]=' RED A CTED ' WHERE [B loodProduc tGuid]='b7 e84c31-92b 6-4882-a74 9-c24b1057 cbbb' | |
| 10517 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='WB CPDA- 1 IRD 2C', [LastUpda teDate]='2 016-07-27 11:17:06.0 00', [Last UpdateUser ]=' RED A CTED ' WHERE [B loodProduc tGuid]='06 807afb-5a1 f-44e2-8a4 e-c2529ea3 2ad1' | |
| 10518 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLT AFR ACD-A OPN IRD LUKOPR 4C', [Las tUpdateDat e]='2016-0 7-27 11:17 :06.000', [LastUpdat eUser]=' RED A CTED ' WHERE [B loodProduc tGuid]='1a 689663-84b 6-4db2-af5 9-c26c0fa8 f0a4' | |
| 10519 | UPDATE [db o].[BloodP roduct] SE T [Product Name]='Aph eresis FRE SH FROZEN PLASMA|ACD -A/XX/<=-2 5C|For mnf :injectabl e|>=200mL< 400mL', [L astUpdateD ate]='2016 -07-27 11: 17:06.000' , [LastUpd ateUser]=' RED A CTED ' WHERE [B loodProduc tGuid]='80 15b9fd-563 f-4cd0-bba 6-c26e301d 3975' | |
| 10520 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC AFR Deg None O PN IRD 2C' , [LastUpd ateDate]=' 2016-07-27 11:17:06. 000', [Las tUpdateUse r]=' RED A CTED ' WHERE [B loodProduc tGuid]='a5 f614b6-d16 8-4389-bd1 b-c29a17d2 fed6' | |
| 10521 | UPDATE [db o].[BloodP roduct] SE T [Product Name]='FRE SH FROZEN PLASMA|CPD A-1/XX/<=- 65C|Irradi ated|1st c ontainer|Q uar:>=112d /retested' , [Product ShortName] ='FFP CPDA -1 IRD 1C QUAR', [La stUpdateDa te]='2016- 07-27 11:1 7:06.000', [LastUpda teUser]=' RED A CTED ' WHERE [B loodProduc tGuid]='42 4f1f27-ec4 7-4ba4-af0 a-c2a1ecaf 2c7c' | |
| 10522 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC CP2D IRD LUKOP R 4C', [La stUpdateDa te]='2016- 07-27 11:1 7:06.000', [LastUpda teUser]=' RED A CTED ' WHERE [B loodProduc tGuid]='2c 8f6ac3-047 5-40e8-bec c-c2a1f4b8 5523' | |
| 10523 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC AFR Deg None O PN IRD 2C' , [LastUpd ateDate]=' 2016-07-27 11:17:06. 000', [Las tUpdateUse r]=' RED A CTED ' WHERE [B loodProduc tGuid]='65 5cdc7f-5e6 8-497d-b46 8-c2a5719e 3974' | |
| 10524 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC AFR ACD-A>AS3 LUKOPR 8C' , [LastUpd ateDate]=' 2016-07-27 11:17:06. 000', [Las tUpdateUse r]=' RED A CTED ' WHERE [B loodProduc tGuid]='7a 6e96c6-8e9 3-46cf-88a 6-c2aa9124 a6c9' | |
| 10525 | UPDATE [db o].[BloodP roduct] SE T [Product Name]='Tha wed PLASMA |CPD/450mL /<=-25C|Fr ozen <=18h ', [LastUp dateDate]= '2016-07-2 7 11:17:06 .000', [La stUpdateUs er]=' RED A CTED ' WHERE [B loodProduc tGuid]='8e 7c2f27-a4f 2-4f89-924 4-c2b17043 4114' | |
| 10526 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLT AFR ACD-B OPN IRD 2C', [ LastUpdate Date]='201 6-07-27 11 :17:06.000 ', [LastUp dateUser]= ' RED A CTED ' WHERE [B loodProduc tGuid]='c6 44e8c1-6c4 f-407e-b90 2-c2b49fdb f405' | |
| 10527 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC AFR ACD-A>AS3 IRD 2C', [ LastUpdate Date]='201 6-07-27 11 :17:06.000 ', [LastUp dateUser]= ' RED A CTED ' WHERE [B loodProduc tGuid]='bc f618bb-3ce 3-4078-891 8-c2cd40e4 4be1' | |
| 10528 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLT AFR NaCit OPN IRD LUKOPR PLS Red 3 C', [LastU pdateDate] ='2016-07- 27 11:17:0 6.000', [L astUpdateU ser]=' RED A CTED ' WHERE [B loodProduc tGuid]='3c c8830a-466 9-4ec6-9d8 a-c2fa5ca4 2815' | |
| 10529 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC AFR CP2D>AS3 I RD LUKOPR SR 1C', [L astUpdateD ate]='2016 -07-27 11: 17:06.000' , [LastUpd ateUser]=' RED A CTED ' WHERE [B loodProduc tGuid]='8f 233221-a9e 3-4e96-b28 b-c30b35cb dfc6' | |
| 10530 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='FFP AFR ACD-A LUKO PR 7C', [L astUpdateD ate]='2016 -07-27 11: 17:06.000' , [LastUpd ateUser]=' RED A CTED ' WHERE [B loodProduc tGuid]='1b 07471a-8b0 8-4fad-908 1-c315f415 3e62' | |
| 10531 | UPDATE [db o].[BloodP roduct] SE T [Product Name]='Aph eresis FRE SH FROZEN PLASMA|ACD -A/XX/<=-3 0C|For mnf :injectabl e|Frozen < =8h', [Las tUpdateDat e]='2016-0 7-27 11:17 :06.000', [LastUpdat eUser]=' RED A CTED ' WHERE [B loodProduc tGuid]='23 ea3629-be0 e-4cbb-81b 8-c33bc04e 472d' | |
| 10532 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLT AFR ACD-A IRD LUKOPR 7C BacMtr', [ LastUpdate Date]='201 6-07-27 11 :17:06.000 ', [LastUp dateUser]= ' RED A CTED ' WHERE [B loodProduc tGuid]='2c 077b6e-89d 3-4208-915 0-c3473a0c 39d7' | |
| 10533 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC AFR ACD-A LUKO PR 2C', [L astUpdateD ate]='2016 -07-27 11: 17:06.000' , [LastUpd ateUser]=' RED A CTED ' WHERE [B loodProduc tGuid]='48 745f31-24a 8-478c-a05 8-c34d229e 4948' | |
| 10534 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC CP2D >AS3 IRD 1 C', [LastU pdateDate] ='2016-07- 27 11:17:0 6.000', [L astUpdateU ser]=' RED A CTED ' WHERE [B loodProduc tGuid]='ce 1cc5a2-b3f d-47d3-a9b 8-c35827bd b2fd' | |
| 10535 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC AFR ACD-A LUKO PR SR 1C', [LastUpda teDate]='2 016-07-27 11:17:06.0 00', [Last UpdateUser ]=' RED A CTED ' WHERE [B loodProduc tGuid]='19 759eea-31a 1-46bb-a75 7-c382fc7c 97cb' | |
| 10536 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='FFP Thaw None IRD 4C', [Last UpdateDate ]='2016-07 -27 11:17: 06.000', [ LastUpdate User]=' RED A CTED ' WHERE [B loodProduc tGuid]='f9 9b7544-572 0-4917-b46 4-c398ca1d d75e' | |
| 10537 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='FFP AFR Thaw NaCit IRD 5C', [LastUpdat eDate]='20 16-07-27 1 1:17:06.00 0', [LastU pdateUser] =' RED A CTED ' WHERE [B loodProduc tGuid]='bd 6a5039-354 f-4729-aee a-c3a1e1de 4c6b' | |
| 10538 | UPDATE [db o].[BloodP roduct] SE T [Product Name]='FRE SH FROZEN PLASMA|CPD /XX/<=-65C ', [LastUp dateDate]= '2016-07-2 7 11:17:06 .000', [La stUpdateUs er]=' RED A CTED ' WHERE [B loodProduc tGuid]='1f d99b1e-74c d-430e-8cb 2-c3cd3b83 ec7f' | |
| 10539 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLASMA A FR Thaw AC D-A OPN 1C ', [LastUp dateDate]= '2016-07-2 7 11:17:06 .000', [La stUpdateUs er]=' RED A CTED ' WHERE [B loodProduc tGuid]='f1 2f185d-de8 7-444e-ae0 6-c3d072bb 49f9' | |
| 10540 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLT AFR NS LUKOPR 2C', [Last UpdateDate ]='2016-07 -27 11:17: 06.000', [ LastUpdate User]=' RED A CTED ' WHERE [B loodProduc tGuid]='1d c0895d-4a0 0-4858-a9f d-c3daa323 3415' | |
| 10541 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLT AFR ACD-A IRD LUKOPR 6C' , [LastUpd ateDate]=' 2016-07-27 11:17:06. 000', [Las tUpdateUse r]=' RED A CTED ' WHERE [B loodProduc tGuid]='70 576807-589 3-4dc6-aab a-c3e5529e 585b' | |
| 10542 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC AFR Wash AS3 I RD LUKOPR 2C', [Last UpdateDate ]='2016-07 -27 11:17: 06.000', [ LastUpdate User]=' RED A CTED ' WHERE [B loodProduc tGuid]='41 ee8f71-3b7 d-4bc8-8da 7-c3fa1fd0 bbf7' | |
| 10543 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLT AFR ACD-A>PAS- C LUKOPR 3 C', [LastU pdateDate] ='2016-07- 27 11:17:0 6.000', [L astUpdateU ser]=' RED A CTED ' WHERE [B loodProduc tGuid]='4c d8892e-457 a-4529-882 4-c3fefbc3 1441' | |
| 10544 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLASMA A FR Thaw AC D-A OPN IR D 3C', [La stUpdateDa te]='2016- 07-27 11:1 7:06.000', [LastUpda teUser]=' RED A CTED ' WHERE [B loodProduc tGuid]='91 a426a2-0af 3-4578-a9c d-c42c61f0 9ceb' | |
| 10545 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC CPD> AS5 8C', [ LastUpdate Date]='201 6-07-27 11 :17:06.000 ', [LastUp dateUser]= ' RED A CTED ' WHERE [B loodProduc tGuid]='0c 1ebe77-618 5-460f-812 d-c43c3cb2 62dd' | |
| 10546 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLT AFR ACD-A IRD LUKOPR 2C' , [LastUpd ateDate]=' 2016-07-27 11:17:06. 000', [Las tUpdateUse r]=' RED A CTED ' WHERE [B loodProduc tGuid]='b7 f176c8-9a0 4-46a4-be7 2-c44de819 11dc' | |
| 10547 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLT AFR NS OPN IRD LUKOPR PL S Red 3C', [LastUpda teDate]='2 016-07-27 11:17:06.0 00', [Last UpdateUser ]=' RED A CTED ' WHERE [B loodProduc tGuid]='c7 a036eb-d59 9-4ce5-bbe f-c453db0b 462e' | |
| 10548 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC CPDA -1 IRD 2C' , [RetireD ate]='2015 -04-07 00: 00:00.000' , [LastUpd ateDate]=' 2016-07-27 11:17:06. 000', [Las tUpdateUse r]=' RED A CTED ' WHERE [B loodProduc tGuid]='e6 6e01e1-c35 b-4760-b50 4-c45f055b d1d5' | |
| 10549 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='FFP None 8C', [Las tUpdateDat e]='2016-0 7-27 11:17 :06.000', [LastUpdat eUser]=' RED A CTED ' WHERE [B loodProduc tGuid]='b6 5103db-9ef 8-4aad-b88 4-c468cdd2 cfcb' | |
| 10550 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLT AFR Wash None IRD LUKOPR 1C', [Las tUpdateDat e]='2016-0 7-27 11:17 :06.000', [LastUpdat eUser]=' RED A CTED ' WHERE [B loodProduc tGuid]='02 2b6972-b94 8-4089-b87 4-c47860bd 7c73' | |
| 10551 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLT AFR PAS-B LUKO PR SUPRed 2C', [Last UpdateDate ]='2016-07 -27 11:17: 06.000', [ LastUpdate User]=' RED A CTED ' WHERE [B loodProduc tGuid]='19 d642c6-935 2-48cd-ac3 6-c482b66c bdbf' | |
| 10552 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC Froz Rej None OPN IRD 5C ', [LastUp dateDate]= '2016-07-2 7 11:17:06 .000', [La stUpdateUs er]=' RED A CTED ' WHERE [B loodProduc tGuid]='62 03e2ed-ff4 9-4ab6-887 9-c48da0c4 21a6' | |
| 10553 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLT AFR ACD-A OPN IRD 3C', [ LastUpdate Date]='201 6-07-27 11 :17:06.000 ', [LastUp dateUser]= ' RED A CTED ' WHERE [B loodProduc tGuid]='55 2b414d-e89 2-4573-9f5 0-c4a65573 d738' | |
| 10554 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC AFR ACD-A>AS3 IRD 5C', [ LastUpdate Date]='201 6-07-27 11 :17:06.000 ', [LastUp dateUser]= ' RED A CTED ' WHERE [B loodProduc tGuid]='3b 3806a2-e97 4-48ae-8f5 b-c4db34b2 30c5' | |
| 10555 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLT AFR PAS-C MNFI LUKOPR 2C ', [LastUp dateDate]= '2016-07-2 7 11:17:06 .000', [La stUpdateUs er]=' RED A CTED ' WHERE [B loodProduc tGuid]='58 204fb7-7ed b-41be-bb3 6-c4dc22f2 8490' | |
| 10556 | UPDATE [db o].[BloodP roduct] SE T [Product Name]='Fro zen Aphere sis RED BL OOD CELLS| Gly40%/XX/ <=-65C|Ope n|Irradiat ed|2nd con tainer', [ ProductSho rtName]='R BC AFR Fro z Gly40% O PN IRD 2C' , [LastUpd ateDate]=' 2016-07-27 11:17:06. 000', [Las tUpdateUse r]=' RED A CTED ' WHERE [B loodProduc tGuid]='7d 546752-7af b-437e-83c 3-c4e9ee06 c9b9' | |
| 10557 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC AFR CP2D>AS3 O PN SR 2C', [LastUpda teDate]='2 016-07-27 11:17:06.0 00', [Last UpdateUser ]=' RED A CTED ' WHERE [B loodProduc tGuid]='f5 2737cd-9e9 e-4917-93c c-c5079658 7637' | |
| 10558 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLASMA A FR Liq CPD -50 IRD LU KOPR 2C', [LastUpdat eDate]='20 16-07-27 1 1:17:06.00 0', [LastU pdateUser] =' RED A CTED ' WHERE [B loodProduc tGuid]='68 7805ac-9a1 3-46c6-8fa 1-c51327b8 0ab4' | |
| 10559 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC AFR CPDA-1 OPN IRD LUKOP R PA 1C', [LastUpdat eDate]='20 16-07-27 1 1:17:06.00 0', [LastU pdateUser] =' RED A CTED ' WHERE [B loodProduc tGuid]='f7 c4e546-099 a-43c7-974 3-c515b5db 67b5' | |
| 10560 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC CPDA -1 IRD 6C' , [LastUpd ateDate]=' 2016-07-27 11:17:06. 000', [Las tUpdateUse r]=' RED A CTED ' WHERE [B loodProduc tGuid]='26 d9c7f0-e75 2-4596-9bc 9-c5191ca4 4dfd' | |
| 10561 | UPDATE [db o].[BloodP roduct] SE T [Product Name]='Fro zen RED BL OOD CELLS| None/XX/<= -65C|Open| ResLeu:<5E 6', [LastU pdateDate] ='2016-07- 27 11:17:0 6.000', [L astUpdateU ser]=' RED A CTED ' WHERE [B loodProduc tGuid]='7c 6bc3b3-102 7-4e15-8d8 6-c55489d9 4852' | |
| 10562 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='WB CP2D LUKOPR 5C' , [LastUpd ateDate]=' 2016-07-27 11:17:06. 000', [Las tUpdateUse r]=' RED A CTED ' WHERE [B loodProduc tGuid]='50 f12786-8c7 f-4385-861 e-c55fd56e 1eaf' | |
| 10563 | UPDATE [db o].[BloodP roduct] SE T [Product Name]='Aph eresis FRE SH FROZEN PLASMA|ACD -B/XX/<=-2 5C|Not for tx or mnf |Aphr not automated' , [LastUpd ateDate]=' 2016-07-27 11:17:06. 000', [Las tUpdateUse r]=' RED A CTED ' WHERE [B loodProduc tGuid]='6e a81db1-3e8 9-4cb9-925 0-c56f7adc 3a02' | |
| 10564 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLT AFR ACD-A PLS Red 2CNA', [LastUpda teDate]='2 016-07-27 11:17:06.0 00', [Last UpdateUser ]=' RED A CTED ' WHERE [B loodProduc tGuid]='63 508f39-08c a-46d6-bd5 f-c586176c 4978' | |
| 10565 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLT AFR NaCit IRD PLS Red 3C ', [LastUp dateDate]= '2016-07-2 7 11:17:06 .000', [La stUpdateUs er]=' RED A CTED ' WHERE [B loodProduc tGuid]='a8 ba147a-c15 7-4da4-87e c-c58c9ca9 98cd' | |
| 10566 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLT AFR ACD-A IRD PLS Red 1C ', [LastUp dateDate]= '2016-07-2 7 11:17:06 .000', [La stUpdateUs er]=' RED A CTED ' WHERE [B loodProduc tGuid]='a9 a0df68-fd9 6-41ea-9f2 0-c5afc8cd a770' | |
| 10567 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC AFR SAGM LUKOP R 2C', [La stUpdateDa te]='2016- 07-27 11:1 7:06.000', [LastUpda teUser]=' RED A CTED ' WHERE [B loodProduc tGuid]='d9 eed85e-b5c c-4730-83c 4-c5c5f359 a1cd' | |
| 10568 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLT AFR ACD-A OPN LUKOPR PLS Red/ALB A dd 1C', [L astUpdateD ate]='2016 -07-27 11: 17:06.000' , [LastUpd ateUser]=' RED A CTED ' WHERE [B loodProduc tGuid]='90 078947-565 6-4583-a42 1-c5e07aa9 82be' | |
| 10569 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC CPDA -1 LUKOPR 4C', [Last UpdateDate ]='2016-07 -27 11:17: 06.000', [ LastUpdate User]=' RED A CTED ' WHERE [B loodProduc tGuid]='57 e59c5c-ba5 9-41d0-9cb 5-c5e2b307 a2b4' | |
| 10570 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC CP2D 6C', [Las tUpdateDat e]='2016-0 7-27 11:17 :06.000', [LastUpdat eUser]=' RED A CTED ' WHERE [B loodProduc tGuid]='c5 ecc4aa-5e7 a-4d96-8ab c-c5f4e088 b8cf' | |
| 10571 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='FFP AFR Thaw None 1C', [Last UpdateDate ]='2016-07 -27 11:17: 06.000', [ LastUpdate User]=' RED A CTED ' WHERE [B loodProduc tGuid]='7c 5bc92c-6c0 b-4cd8-b78 6-c60a41f2 a0b9' | |
| 10572 | UPDATE [db o].[BloodP roduct] SE T [Product Name]='Fro zen RED BL OOD CELLS| None/500mL /<=-65C|No t for tx o r mnf|Open ', [LastUp dateDate]= '2016-07-2 7 11:17:06 .000', [La stUpdateUs er]=' RED A CTED ' WHERE [B loodProduc tGuid]='b6 cfc7a9-064 2-41db-aad 4-c61340b1 5e19' | |
| 10573 | UPDATE [db o].[BloodP roduct] SE T [Product Name]='Aph eresis FRE SH FROZEN PLASMA|ACD -A/XX/<=-6 5C|Irradia ted|>=400m L<600mL', [LastUpdat eDate]='20 16-07-27 1 1:17:06.00 0', [LastU pdateUser] =' RED A CTED ' WHERE [B loodProduc tGuid]='c0 960a9a-d99 a-4cec-ad6 3-c6140615 83f2' | |
| 10574 | UPDATE [db o].[BloodP roduct] SE T [Product Name]='PLA SMA|CPD/45 0mL/<=-30C |For mnf:i njectable| Frozen <=2 4h', [Last UpdateDate ]='2016-07 -27 11:17: 06.000', [ LastUpdate User]=' RED A CTED ' WHERE [B loodProduc tGuid]='1d 28e28b-21e 2-4558-b25 1-c6174994 1853' | |
| 10575 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLT AFR ACD-A IRD LUKOPR 3C' , [LastUpd ateDate]=' 2016-07-27 11:17:06. 000', [Las tUpdateUse r]=' RED A CTED ' WHERE [B loodProduc tGuid]='d2 400313-5da 6-400c-8d5 0-c618a15f f442' | |
| 10576 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC CPDA -1 8C', [L astUpdateD ate]='2016 -07-27 11: 17:06.000' , [LastUpd ateUser]=' RED A CTED ' WHERE [B loodProduc tGuid]='0a 0c0146-b99 2-41c6-81e c-c62d739f 9208' | |
| 10577 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC AFR ACD-A>AS3 MNFI LUKOP R 2C', [La stUpdateDa te]='2016- 07-27 11:1 7:06.000', [LastUpda teUser]=' RED A CTED ' WHERE [B loodProduc tGuid]='6d a4bd7a-fca 6-4dae-a54 3-c6303e5d 9188' | |
| 10578 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC AFR ACD-A>AS3 OPN LUKOPR ALB Add 2 C', [LastU pdateDate] ='2016-07- 27 11:17:0 6.000', [L astUpdateU ser]=' RED A CTED ' WHERE [B loodProduc tGuid]='d7 d05d81-482 d-4948-905 a-c63a4f61 fd1e' | |
| 10579 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLT AFR NaCit OPN LUKOPR 2C' , [LastUpd ateDate]=' 2016-07-27 11:17:06. 000', [Las tUpdateUse r]=' RED A CTED ' WHERE [B loodProduc tGuid]='4a 860526-1b5 8-4f57-a2b c-c656eb16 edd3' | |
| 10580 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLT AFR ACD-A LUKO PR 2C', [L astUpdateD ate]='2016 -07-27 11: 17:06.000' , [LastUpd ateUser]=' RED A CTED ' WHERE [B loodProduc tGuid]='fe 8822b5-fb4 d-414f-983 1-c6597182 ef62' | |
| 10581 | UPDATE [db o].[BloodP roduct] SE T [Product Name]='FRE SH FROZEN PLASMA|NS/ XX/<=-30C| For mnf:no ninjectabl e|Frozen < =24h', [La stUpdateDa te]='2016- 07-27 11:1 7:06.000', [LastUpda teUser]=' RED A CTED ' WHERE [B loodProduc tGuid]='6f 47d1bf-749 3-40ba-be0 2-c6610459 6846' | |
| 10582 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLT AFR ACD-A IRD 2C', [Last UpdateDate ]='2016-07 -27 11:17: 06.000', [ LastUpdate User]=' RED A CTED ' WHERE [B loodProduc tGuid]='d7 bc9fb4-77c 9-4b06-864 0-c66440af a4e2' | |
| 10583 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLT AFR ACD-A IRD LUKOPR PLS Red/PA 3C ', [LastUp dateDate]= '2016-07-2 7 11:17:06 .000', [La stUpdateUs er]=' RED A CTED ' WHERE [B loodProduc tGuid]='49 4d18be-f9a 5-48c1-bbe 0-c66799da 2e3c' | |
| 10584 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC AFR CP2D>AS3 O PN IRD LUK OPR 1C', [ LastUpdate Date]='201 6-07-27 11 :17:06.000 ', [LastUp dateUser]= ' RED A CTED ' WHERE [B loodProduc tGuid]='4c 86d4ca-de4 8-4517-a56 1-c66bb3e2 9cc4' | |
| 10585 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC AFR ACD-A>AS3 4C', [Last UpdateDate ]='2016-07 -27 11:17: 06.000', [ LastUpdate User]=' RED A CTED ' WHERE [B loodProduc tGuid]='13 4d406d-a1a 9-4f3c-bbc b-c671ae8f edc4' | |
| 10586 | UPDATE [db o].[BloodP roduct] SE T [Product Name]='Aph eresis FRE SH FROZEN PLASMA|NaC itrate/XX/ <=-65C|6th container |Quar:>=11 2d/reteste d', [Produ ctShortNam e]='FFP AF R NaCit 6C QUAR', [L astUpdateD ate]='2016 -07-27 11: 17:06.000' , [LastUpd ateUser]=' RED A CTED ' WHERE [B loodProduc tGuid]='4c 89b253-3db 4-441d-921 1-c673297a e8f2' | |
| 10587 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLASMA N one 5C', [ LastUpdate Date]='201 6-07-27 11 :17:06.000 ', [LastUp dateUser]= ' RED A CTED ' WHERE [B loodProduc tGuid]='23 73ab24-193 2-4a4f-8e6 e-c6817d84 5093' | |
| 10588 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLASMA A FR ACD-A 4 C', [LastU pdateDate] ='2016-07- 27 11:17:0 6.000', [L astUpdateU ser]=' RED A CTED ' WHERE [B loodProduc tGuid]='e0 95ac11-975 d-4242-a5b 4-c686b90f ad6e' | |
| 10589 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLASMA A FR Thaw No ne IRD 3C' , [LastUpd ateDate]=' 2016-07-27 11:17:06. 000', [Las tUpdateUse r]=' RED A CTED ' WHERE [B loodProduc tGuid]='06 0411cb-e09 a-43d3-91c 6-c6941c76 40c3' | |
| 10590 | UPDATE [db o].[BloodP roduct] SE T [Product Name]='Fro zen Aphere sis RED BL OOD CELLS| Gly40%/XX/ <=-65C|Ope n|ResLeu:< 5E6|1st co ntainer', [ProductSh ortName]=' RBC AFR Fr oz Gly40% OPN LUKOPR 1C', [Las tUpdateDat e]='2016-0 7-27 11:17 :06.000', [LastUpdat eUser]=' RED A CTED ' WHERE [B loodProduc tGuid]='4d ef735c-262 5-4456-8b8 a-c698fcd4 0fe7' | |
| 10591 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='WB CPD I RD LUKOPR 6C', [Last UpdateDate ]='2016-07 -27 11:17: 06.000', [ LastUpdate User]=' RED A CTED ' WHERE [B loodProduc tGuid]='42 c056b2-b28 a-484d-b70 b-c6b02911 9d6e' | |
| 10592 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLT AFR Wash NS OP N 2C', [La stUpdateDa te]='2016- 07-27 11:1 7:06.000', [LastUpda teUser]=' RED A CTED ' WHERE [B loodProduc tGuid]='39 af71f7-ed0 4-43f5-8d3 a-c6bbfd37 5c7a' | |
| 10593 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC AFR CP2D OPN I RD LUKOPR SR 2C', [L astUpdateD ate]='2016 -07-27 11: 17:06.000' , [LastUpd ateUser]=' RED A CTED ' WHERE [B loodProduc tGuid]='6f d8decd-f1f 6-4b1a-8f0 0-c6d05056 2548' | |
| 10594 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLT AFR ACD-B MNFN I 2C', [La stUpdateDa te]='2016- 07-27 11:1 7:06.000', [LastUpda teUser]=' RED A CTED ' WHERE [B loodProduc tGuid]='f0 77c129-cf7 0-4aea-afe 8-c6d88d27 f59f' | |
| 10595 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLT AFR NaCit PLS Red 1CNA', [LastUpda teDate]='2 016-07-27 11:17:06.0 00', [Last UpdateUser ]=' RED A CTED ' WHERE [B loodProduc tGuid]='0d e9ba23-96d 1-4697-b0a 7-c6db2023 b897' | |
| 10596 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC AFR ACD-A>AS1 IRD LUKOPR 7C', [Las tUpdateDat e]='2016-0 7-27 11:17 :06.000', [LastUpdat eUser]=' RED A CTED ' WHERE [B loodProduc tGuid]='83 a61059-b97 0-4671-a39 0-c6ddf72b 6352' | |
| 10597 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC Froz None OPN IRD LUKOPR 3C', [Las tUpdateDat e]='2016-0 7-27 11:17 :06.000', [LastUpdat eUser]=' RED A CTED ' WHERE [B loodProduc tGuid]='d3 4f3913-f7e 4-488c-959 3-c6e15f81 458f' | |
| 10598 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLT AFR ACD-A IRD 7C', [Last UpdateDate ]='2016-07 -27 11:17: 06.000', [ LastUpdate User]=' RED A CTED ' WHERE [B loodProduc tGuid]='e8 4922bc-d5b f-4c03-bd5 4-c6f4e633 9dc3' | |
| 10599 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC Deg None 3C', [LastUpdat eDate]='20 16-07-27 1 1:17:06.00 0', [LastU pdateUser] =' RED A CTED ' WHERE [B loodProduc tGuid]='c2 0f4feb-9a0 4-494a-827 f-c6f6e979 3483' | |
| 10600 | UPDATE [db o].[BloodP roduct] SE T [Product Name]='FRE SH FROZEN PLASMA|NS/ 450mL/<=-3 0C', [Last UpdateDate ]='2016-07 -27 11:17: 06.000', [ LastUpdate User]=' RED A CTED ' WHERE [B loodProduc tGuid]='f9 b46fe5-0f9 8-4ec2-90b 8-c6f7d8f5 9837' | |
| 10601 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC CPD> AS1 8C', [ LastUpdate Date]='201 6-07-27 11 :17:06.000 ', [LastUp dateUser]= ' RED A CTED ' WHERE [B loodProduc tGuid]='2b c003d5-7e5 d-48d7-9bb 1-c70936e4 05fa' | |
| 10602 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC AFR Wash None OPN IRD LU KOPR 1C', [LastUpdat eDate]='20 16-07-27 1 1:17:06.00 0', [LastU pdateUser] =' RED A CTED ' WHERE [B loodProduc tGuid]='05 9d99a7-664 2-4b7d-a84 2-c71e92d0 0c6a' | |
| 10603 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLT AFR ACD-B MNFI 2C', [Las tUpdateDat e]='2016-0 7-27 11:17 :06.000', [LastUpdat eUser]=' RED A CTED ' WHERE [B loodProduc tGuid]='67 d0f366-4e1 1-420e-bf9 a-c721bd8f 7845' | |
| 10604 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='FFP AFR Thaw None 6C', [Last UpdateDate ]='2016-07 -27 11:17: 06.000', [ LastUpdate User]=' RED A CTED ' WHERE [B loodProduc tGuid]='6c 25c7e6-4a3 d-4162-806 f-c73349a7 e75f' | |
| 10605 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='FFP AFR None 2C', [LastUpdat eDate]='20 16-07-27 1 1:17:06.00 0', [LastU pdateUser] =' RED A CTED ' WHERE [B loodProduc tGuid]='d5 311abc-5c3 1-43cf-901 e-c747ca5d b5ec' | |
| 10606 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLT AFR ACD-A 5C', [LastUpda teDate]='2 016-07-27 11:17:06.0 00', [Last UpdateUser ]=' RED A CTED ' WHERE [B loodProduc tGuid]='39 5f50ae-f63 2-4601-867 c-c76f1e57 d2f9' | |
| 10607 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC AFR CP2D>AS3 O PN IRD LUK OPR SR 2C' , [LastUpd ateDate]=' 2016-07-27 11:17:06. 000', [Las tUpdateUse r]=' RED A CTED ' WHERE [B loodProduc tGuid]='0b 2538d6-a8d 6-4841-978 b-c77452ac 709a' | |
| 10608 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLT AFR ACD-A IRD LUKOPR 2C BacMtr', [ LastUpdate Date]='201 6-07-27 11 :17:06.000 ', [LastUp dateUser]= ' RED A CTED ' WHERE [B loodProduc tGuid]='bd d1d697-d58 a-4979-a58 a-c776a1e6 e0d0' | |
| 10609 | UPDATE [db o].[BloodP roduct] SE T [Product Name]='Tha wed POOLED PLASMA|CP D/XX/refg| Cryo reduc ed|2 units ', [Produc tShortName ]='PLASMA Pool Thaw CPD CRYORe d 2U', [La stUpdateDa te]='2016- 07-27 11:1 7:06.000', [LastUpda teUser]=' RED A CTED ' WHERE [B loodProduc tGuid]='83 2d89bd-7ee e-4b64-ba6 a-c796245b dbcd' | |
| 10610 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLT AFR ACD-A LUKO PR 6C', [L astUpdateD ate]='2016 -07-27 11: 17:06.000' , [LastUpd ateUser]=' RED A CTED ' WHERE [B loodProduc tGuid]='0c 579576-d12 1-4c28-b6a 5-c7c057e8 4633' | |
| 10611 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC CPD> AS5 LUKOPR 4C', [Las tUpdateDat e]='2016-0 7-27 11:17 :06.000', [LastUpdat eUser]=' RED A CTED ' WHERE [B loodProduc tGuid]='81 035114-b5d e-402f-ab0 1-c7d577d1 a35b' | |
| 10612 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='WB CPD 6 C', [LastU pdateDate] ='2016-07- 27 11:17:0 6.000', [L astUpdateU ser]=' RED A CTED ' WHERE [B loodProduc tGuid]='c8 f56cbf-26d c-488c-881 1-c7e1775e b53a' | |
| 10613 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC AFR Deg Rej No ne OPN IRD 2C', [Las tUpdateDat e]='2016-0 7-27 11:17 :06.000', [LastUpdat eUser]=' RED A CTED ' WHERE [B loodProduc tGuid]='c8 2a1d4f-2dd 9-458f-a28 5-c82b33b9 a255' | |
| 10614 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='FFP AFR ACD-A IRD 1C QUAR', [LastUpdat eDate]='20 16-07-27 1 1:17:06.00 0', [LastU pdateUser] =' RED A CTED ' WHERE [B loodProduc tGuid]='c3 a419bb-24f 9-4628-881 1-c8737472 159f' | |
| 10615 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLT AFR ACD-A>PAS- C LUKOPR 2 C Psoraln' , [LastUpd ateDate]=' 2016-07-27 11:17:06. 000', [Las tUpdateUse r]=' RED A CTED ' WHERE [B loodProduc tGuid]='f2 b8df38-730 b-4511-a51 6-c882e44e f6f3' | |
| 10616 | UPDATE [db o].[BloodP roduct] SE T [Product Name]='Aph eresis FRE SH FROZEN PLASMA|ACD -A/XX/<=-6 5C|Irradia ted|3rd co ntainer|Qu ar:>=112d/ retested', [ProductS hortName]= 'FFP AFR A CD-A IRD 3 C QUAR', [ LastUpdate Date]='201 6-07-27 11 :17:06.000 ', [LastUp dateUser]= ' RED A CTED ' WHERE [B loodProduc tGuid]='8c b01063-b5c f-4571-b1b 3-c88be2e3 1743' | |
| 10617 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC AFR ACD-A>AS3 LUKOPR SR/ PA 2C', [L astUpdateD ate]='2016 -07-27 11: 17:06.000' , [LastUpd ateUser]=' RED A CTED ' WHERE [B loodProduc tGuid]='99 3a7e63-53e 0-44b3-add a-c8a00d3b b759' | |
| 10618 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLT AFR ACD-A OPN LUKOPR PLS Red/ALB A dd 2C', [L astUpdateD ate]='2016 -07-27 11: 17:06.000' , [LastUpd ateUser]=' RED A CTED ' WHERE [B loodProduc tGuid]='fe 8cd70e-79a 7-4d60-a00 3-c8ae2c81 1fb7' | |
| 10619 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC AFR Deg None O PN 1C', [L astUpdateD ate]='2016 -07-27 11: 17:06.000' , [LastUpd ateUser]=' RED A CTED ' WHERE [B loodProduc tGuid]='42 4eae06-18b 5-4851-923 e-c8b04744 82a1' | |
| 10620 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC AFR ACD-A>AS3 IRD LUKOPR 3C', [Las tUpdateDat e]='2016-0 7-27 11:17 :06.000', [LastUpdat eUser]=' RED A CTED ' WHERE [B loodProduc tGuid]='ea bfd231-324 c-4764-b78 5-c8c62e12 0bcc' | |
| 10621 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='FFP AFR Thaw None IRD 2C', [ LastUpdate Date]='201 6-07-27 11 :17:06.000 ', [LastUp dateUser]= ' RED A CTED ' WHERE [B loodProduc tGuid]='82 fa38fe-380 b-4440-8cf 6-c8cbc83f 2f1e' | |
| 10622 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='FFP AFR ACD-A LUKO PR 4C', [L astUpdateD ate]='2016 -07-27 11: 17:06.000' , [LastUpd ateUser]=' RED A CTED ' WHERE [B loodProduc tGuid]='ef e72339-3fb e-4d75-9e5 1-c8ed8c30 4700' | |
| 10623 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC Froz Rej Gly40 % OPN IRD LUKOPR 2C' , [LastUpd ateDate]=' 2016-07-27 11:17:06. 000', [Las tUpdateUse r]=' RED A CTED ' WHERE [B loodProduc tGuid]='c9 e1f9a4-c4a b-4bbd-b08 b-c8ee2475 b50e' | |
| 10624 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='FFP Thaw None 8C', [LastUpda teDate]='2 016-07-27 11:17:06.0 00', [Last UpdateUser ]=' RED A CTED ' WHERE [B loodProduc tGuid]='15 3fac62-e37 9-4394-acb c-c8ff16ae 5f41' | |
| 10625 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLT AFR ACD-A PLS Red 2C', [ LastUpdate Date]='201 6-07-27 11 :17:06.000 ', [LastUp dateUser]= ' RED A CTED ' WHERE [B loodProduc tGuid]='a1 b5d8d4-b41 1-4a2d-95f 7-c905c935 ab33' | |
| 10626 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLT AFR NaCit OPN IRD 1C', [ LastUpdate Date]='201 6-07-27 11 :17:06.000 ', [LastUp dateUser]= ' RED A CTED ' WHERE [B loodProduc tGuid]='ba 49f7ca-aea 5-4f37-9bd b-c90e2200 b318' | |
| 10627 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC AFR ACD-A>AS3 MNFI 2C', [LastUpdat eDate]='20 16-07-27 1 1:17:06.00 0', [LastU pdateUser] =' RED A CTED ' WHERE [B loodProduc tGuid]='c4 38a489-ac2 a-4ef2-908 f-c930b538 5c35' | |
| 10628 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLT AFR ACD-B OPN IRD LUKOPR 2CNA', [L astUpdateD ate]='2016 -07-27 11: 17:06.000' , [LastUpd ateUser]=' RED A CTED ' WHERE [B loodProduc tGuid]='41 c1ee9d-68c 2-4926-81d 3-c9506bae 4ae8' | |
| 10629 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC CPDA -1 LUKOPR 3C', [Last UpdateDate ]='2016-07 -27 11:17: 06.000', [ LastUpdate User]=' RED A CTED ' WHERE [B loodProduc tGuid]='d7 0c2e8e-cd1 0-4fd6-99f b-c96c1e76 1fba' | |
| 10630 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLT AFR ACD-A OPN LUKOPR 1C Pedi', [La stUpdateDa te]='2016- 07-27 11:1 7:06.000', [LastUpda teUser]=' RED A CTED ' WHERE [B loodProduc tGuid]='d9 909a88-5c1 f-4998-8c5 2-c98f23c7 32ce' | |
| 10631 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC AFR ACD-A SR/P A 1C', [La stUpdateDa te]='2016- 07-27 11:1 7:06.000', [LastUpda teUser]=' RED A CTED ' WHERE [B loodProduc tGuid]='c8 908930-220 1-4c43-a64 c-c99c32cc 0524' | |
| 10632 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLT AFR ACD-A LUKO PR 2C', [L astUpdateD ate]='2016 -07-27 11: 17:06.000' , [LastUpd ateUser]=' RED A CTED ' WHERE [B loodProduc tGuid]='63 d3b4dc-59c 1-45f1-839 f-c9a39e2f 4024' | |
| 10633 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC CP2D 2C', [Las tUpdateDat e]='2016-0 7-27 11:17 :06.000', [LastUpdat eUser]=' RED A CTED ' WHERE [B loodProduc tGuid]='cd 9ff45e-7a0 6-4379-b00 c-c9a57710 73c5' | |
| 10634 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLT AFR NS IRD LUK OPR 3C', [ LastUpdate Date]='201 6-07-27 11 :17:06.000 ', [LastUp dateUser]= ' RED A CTED ' WHERE [B loodProduc tGuid]='5b 13a99d-124 d-433e-8ce e-c9a813e3 7631' | |
| 10635 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='WB CP2D LUKOPR 4C' , [LastUpd ateDate]=' 2016-07-27 11:17:06. 000', [Las tUpdateUse r]=' RED A CTED ' WHERE [B loodProduc tGuid]='2e 6d6a78-0b1 c-43fe-9ba c-c9ac2372 8153' | |
| 10636 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC Deg Rej None O PN IRD 5C' , [LastUpd ateDate]=' 2016-07-27 11:17:06. 000', [Las tUpdateUse r]=' RED A CTED ' WHERE [B loodProduc tGuid]='c0 c42d6d-096 1-46eb-bb5 8-c9b18894 f2fb' | |
| 10637 | UPDATE [db o].[BloodP roduct] SE T [Product Name]='Fro zen RED BL OOD CELLS| None/XX/<= -65C|Not f or tx or m nf|Open|Ir radiated|R esLeu:<1E6 ', [LastUp dateDate]= '2016-07-2 7 11:17:06 .000', [La stUpdateUs er]=' RED A CTED ' WHERE [B loodProduc tGuid]='78 df3972-091 9-4ae3-9da 4-c9b56365 fa73' | |
| 10638 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC AFR ACD-A>AS1 IRD LUKOPR 3C', [Las tUpdateDat e]='2016-0 7-27 11:17 :06.000', [LastUpdat eUser]=' RED A CTED ' WHERE [B loodProduc tGuid]='ab f4014f-d49 8-4429-a3b b-c9ba5cdc 77b7' | |
| 10639 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLT AFR ACD-A>PAS- C LUKOPR 1 C', [LastU pdateDate] ='2016-07- 27 11:17:0 6.000', [L astUpdateU ser]=' RED A CTED ' WHERE [B loodProduc tGuid]='44 47e7e3-562 9-4657-90e 7-c9bf8d22 f330' | |
| 10640 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='FFP AFR Thaw ACD-A 4C QUAR', [LastUpda teDate]='2 016-07-27 11:17:06.0 00', [Last UpdateUser ]=' RED A CTED ' WHERE [B loodProduc tGuid]='b3 9235ad-9e3 2-4382-b95 9-c9c630d2 f46d' | |
| 10641 | UPDATE [db o].[BloodP roduct] SE T [Product Name]='Aph eresis FRE SH FROZEN PLASMA|ACD -A/XX/<=-6 5C|Fin Con :NS|Aphr n ot automat ed|Quar:>= 6m/reteste d', [LastU pdateDate] ='2016-07- 27 11:17:0 6.000', [L astUpdateU ser]=' RED A CTED ' WHERE [B loodProduc tGuid]='4d 53a334-667 b-475c-a33 4-c9c961ed 9edb' | |
| 10642 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC AFR CP2D OPN I RD LUKOPR 1C', [Last UpdateDate ]='2016-07 -27 11:17: 06.000', [ LastUpdate User]=' RED A CTED ' WHERE [B loodProduc tGuid]='0d 9a7c66-3d4 3-44fd-b54 d-c9cee3e0 2f2f' | |
| 10643 | UPDATE [db o].[BloodP roduct] SE T [Product Name]='Aph eresis FRE SH FROZEN PLASMA|NaC itrate/XX/ <=-65C|Irr adiated|1s t containe r|Quar:>=1 12d/retest ed', [Prod uctShortNa me]='FFP A FR NaCit I RD 1C QUAR ', [LastUp dateDate]= '2016-07-2 7 11:17:06 .000', [La stUpdateUs er]=' RED A CTED ' WHERE [B loodProduc tGuid]='48 86dadc-d43 8-41aa-9e9 0-c9e433a7 d06d' | |
| 10644 | UPDATE [db o].[BloodP roduct] SE T [Product Name]='Aph eresis FRE SH FROZEN PLASMA|NaC itrate/XX/ <=-65C|Irr adiated|6t h containe r', [Produ ctShortNam e]='FFP AF R NaCit IR D 6C', [La stUpdateDa te]='2016- 07-27 11:1 7:06.000', [LastUpda teUser]=' RED A CTED ' WHERE [B loodProduc tGuid]='ed a86712-d37 b-4b8f-bb2 0-c9f95671 d48f' | |
| 10645 | UPDATE [db o].[BloodP roduct] SE T [Product Name]='Aph eresis FRE SH FROZEN PLASMA|ACD -A/XX/<=-6 5C|>=200mL <400mL', [ LastUpdate Date]='201 6-07-27 11 :17:06.000 ', [LastUp dateUser]= ' RED A CTED ' WHERE [B loodProduc tGuid]='38 414e6d-17e 8-48a7-a6e e-ca1f682d 1012' | |
| 10646 | UPDATE [db o].[BloodP roduct] SE T [Product Name]='FRE SH FROZEN PLASMA|NS/ XX/<=-30C| For mnf:no ninjectabl e|ResLeu:< 1E6|Frozen <=15h', [ LastUpdate Date]='201 6-07-27 11 :17:06.000 ', [LastUp dateUser]= ' RED A CTED ' WHERE [B loodProduc tGuid]='3a 3c3793-b1a 6-48e1-a46 2-ca26e589 371a' | |
| 10647 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLT AFR ACD-A IRD 1C BacMtr' , [LastUpd ateDate]=' 2016-07-27 11:17:06. 000', [Las tUpdateUse r]=' RED A CTED ' WHERE [B loodProduc tGuid]='c6 29ef39-590 f-4354-9c6 e-ca28f990 cfa6' | |
| 10648 | UPDATE [db o].[BloodP roduct] SE T [Product Name]='Aph eresis FRE SH FROZEN PLASMA|ACD -B/XX/<=-6 5C|Irradia ted|Quar:> =6m/retest ed', [Last UpdateDate ]='2016-07 -27 11:17: 06.000', [ LastUpdate User]=' RED A CTED ' WHERE [B loodProduc tGuid]='b1 f9f326-0ad 2-45ba-927 f-ca33fd67 8d1b' | |
| 10649 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='WB CP2D LUKOPR 1C' , [LastUpd ateDate]=' 2016-07-27 11:17:06. 000', [Las tUpdateUse r]=' RED A CTED ' WHERE [B loodProduc tGuid]='d4 4491e5-ee8 3-4120-8d6 3-ca36c5cb d1de' | |
| 10650 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC CP2D LUKOPR 5C ', [LastUp dateDate]= '2016-07-2 7 11:17:06 .000', [La stUpdateUs er]=' RED A CTED ' WHERE [B loodProduc tGuid]='12 a941fc-8d4 8-499b-b88 6-ca375088 faff' | |
| 10651 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='FFP AFR Thaw ACD-A IRD 2C', [LastUpdat eDate]='20 16-07-27 1 1:17:06.00 0', [LastU pdateUser] =' RED A CTED ' WHERE [B loodProduc tGuid]='18 2333bb-d3b 5-43bc-b93 1-ca427648 40bb' | |
| 10652 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC AFR Deg None O PN IRD 5C' , [LastUpd ateDate]=' 2016-07-27 11:17:06. 000', [Las tUpdateUse r]=' RED A CTED ' WHERE [B loodProduc tGuid]='e9 ff7890-1b7 6-4f34-bed 6-ca5116ad 7819' | |
| 10653 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC AFR ACD-A OPN IRD 2C', [ LastUpdate Date]='201 6-07-27 11 :17:06.000 ', [LastUp dateUser]= ' RED A CTED ' WHERE [B loodProduc tGuid]='b5 2c4ff3-81f 7-4706-a3c e-ca572374 5f76' | |
| 10654 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLT AFR Froz DMSO IRD 2C', [ LastUpdate Date]='201 6-07-27 11 :17:06.000 ', [LastUp dateUser]= ' RED A CTED ' WHERE [B loodProduc tGuid]='75 9b231b-539 b-48f0-8e7 2-ca797237 11c4' | |
| 10655 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC AFR ACD-A>AS1 IRD 4C', [ LastUpdate Date]='201 6-07-27 11 :17:06.000 ', [LastUp dateUser]= ' RED A CTED ' WHERE [B loodProduc tGuid]='1c 07c676-97a 2-412a-9ca 1-ca8a01c9 920b' | |
| 10656 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC AFR ACD-A OPN SR 1C', [L astUpdateD ate]='2016 -07-27 11: 17:06.000' , [LastUpd ateUser]=' RED A CTED ' WHERE [B loodProduc tGuid]='97 9da221-834 8-498b-919 b-caa67846 2c57' | |
| 10657 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC AFR CP2D OPN 1 C', [LastU pdateDate] ='2016-07- 27 11:17:0 6.000', [L astUpdateU ser]=' RED A CTED ' WHERE [B loodProduc tGuid]='72 ac8592-84c 3-4846-92f 9-caad036f a570' | |
| 10658 | UPDATE [db o].[BloodP roduct] SE T [Product Name]='Aph eresis FRE SH FROZEN PLASMA|NaC itrate/XX/ <=-65C|Fin Con:NS|Ap hr not aut omated|Qua r:>=6m/ret ested', [L astUpdateD ate]='2016 -07-27 11: 17:06.000' , [LastUpd ateUser]=' RED A CTED ' WHERE [B loodProduc tGuid]='b6 517583-e49 2-487c-a9f b-cab33b25 161c' | |
| 10659 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC AFR Deg SAGM L UKOPR 2C', [LastUpda teDate]='2 016-07-27 11:17:06.0 00', [Last UpdateUser ]=' RED A CTED ' WHERE [B loodProduc tGuid]='d3 c3311f-fb5 2-4990-81d c-cac2ab22 f97b' | |
| 10660 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC AFR Wash SAGM LUKOPR 2C' , [LastUpd ateDate]=' 2016-07-27 11:17:06. 000', [Las tUpdateUse r]=' RED A CTED ' WHERE [B loodProduc tGuid]='b3 47f9cb-590 0-4d34-a16 f-cad1b5e0 e35a' | |
| 10661 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLT AFR NaCit OPN PLS Red 2C NA', [Last UpdateDate ]='2016-07 -27 11:17: 06.000', [ LastUpdate User]=' RED A CTED ' WHERE [B loodProduc tGuid]='ad c6deca-172 e-44af-a7c 4-cadb7bb8 df48' | |
| 10662 | UPDATE [db o].[BloodP roduct] SE T [Product Name]='CRY OPRECIPITA TE|CPD/450 mL/<=-25C' , [LastUpd ateDate]=' 2016-07-27 11:17:06. 000', [Las tUpdateUse r]=' RED A CTED ' WHERE [B loodProduc tGuid]='aa 7ab5c9-b1e 2-4bf8-a81 c-cae9c0f5 456d' | |
| 10663 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC AFR ACD-A>AS1 LUKOPR 7C' , [LastUpd ateDate]=' 2016-07-27 11:17:06. 000', [Las tUpdateUse r]=' RED A CTED ' WHERE [B loodProduc tGuid]='b2 56663e-617 c-4481-ad2 0-cb03fa70 fff3' | |
| 10664 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLT AFR Wash None OPN IRD LU KOPR 1C', [LastUpdat eDate]='20 16-07-27 1 1:17:06.00 0', [LastU pdateUser] =' RED A CTED ' WHERE [B loodProduc tGuid]='e9 fc0168-94d 9-48f9-806 9-cb0d58d4 6f4e' | |
| 10665 | UPDATE [db o].[BloodP roduct] SE T [Product Name]='Fro zen Aphere sis RED BL OOD CELLS| None/XX/<= -65C|Open| Irradiated ', [LastUp dateDate]= '2016-07-2 7 11:17:06 .000', [La stUpdateUs er]=' RED A CTED ' WHERE [B loodProduc tGuid]='d3 403675-750 f-48f1-a36 f-cb3fe5a8 c9f7' | |
| 10666 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='FFP AFR None LUKOP R 8C', [La stUpdateDa te]='2016- 07-27 11:1 7:06.000', [LastUpda teUser]=' RED A CTED ' WHERE [B loodProduc tGuid]='c2 d625b7-071 3-47bc-943 0-cb438cf6 0925' | |
| 10667 | UPDATE [db o].[BloodP roduct] SE T [Product Name]='Aph eresis FRE SH FROZEN PLASMA|NaC itrate/XX/ <=-65C|Irr adiated|5t h containe r', [Produ ctShortNam e]='FFP AF R NaCit IR D 5C', [La stUpdateDa te]='2016- 07-27 11:1 7:06.000', [LastUpda teUser]=' RED A CTED ' WHERE [B loodProduc tGuid]='11 0e9fad-810 b-4027-91a 1-cb52e6d2 7117' | |
| 10668 | UPDATE [db o].[BloodP roduct] SE T [Product Name]='Fro zen Aphere sis RED BL OOD CELLS| None/XX/<= -65C|Irrad iated', [L astUpdateD ate]='2016 -07-27 11: 17:06.000' , [LastUpd ateUser]=' RED A CTED ' WHERE [B loodProduc tGuid]='01 9d7934-2a9 a-4fa1-a44 9-cb81441d 6f7d' | |
| 10669 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLT AFR Wash None OPN LUKOPR 2CNA', [L astUpdateD ate]='2016 -07-27 11: 17:06.000' , [LastUpd ateUser]=' RED A CTED ' WHERE [B loodProduc tGuid]='22 de93fd-bf8 f-40ec-bb2 6-cb857922 7a76' | |
| 10670 | UPDATE [db o].[BloodP roduct] SE T [Product Name]='Aph eresis FRE SH FROZEN PLASMA|NaC itrate/XX/ <=-30C|Res Leu:<5E6|R iboflavin- treated', [LastUpdat eDate]='20 16-07-27 1 1:17:06.00 0', [LastU pdateUser] =' RED A CTED ' WHERE [B loodProduc tGuid]='49 635356-420 0-4990-8ee 4-cb90d783 70d3' | |
| 10671 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC CPD> AS1 LUKOPR 6C', [Las tUpdateDat e]='2016-0 7-27 11:17 :06.000', [LastUpdat eUser]=' RED A CTED ' WHERE [B loodProduc tGuid]='37 3d11dd-dfb 9-4aa1-a9e 3-cb9d8a53 6178' | |
| 10672 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC AFR CPDA-1 LUK OPR 5C', [ LastUpdate Date]='201 6-07-27 11 :17:06.000 ', [LastUp dateUser]= ' RED A CTED ' WHERE [B loodProduc tGuid]='c8 d6c90f-7d9 1-4995-9f3 4-cbbcc570 967b' | |
| 10673 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLT AFR ACD-B OPN PLS Red 2C NA', [Last UpdateDate ]='2016-07 -27 11:17: 06.000', [ LastUpdate User]=' RED A CTED ' WHERE [B loodProduc tGuid]='81 0c2685-719 d-4bfb-aa7 4-cbc3bda8 4c49' | |
| 10674 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLT AFR Wash NS LU KOPR SUPRe d 3C', [La stUpdateDa te]='2016- 07-27 11:1 7:06.000', [LastUpda teUser]=' RED A CTED ' WHERE [B loodProduc tGuid]='c2 fe93c3-cea 4-4dde-8b0 9-cbcef44f eeb1' | |
| 10675 | UPDATE [db o].[BloodP roduct] SE T [Product Name]='Aph eresis FRE SH FROZEN PLASMA|ACD -B/XX/<=-3 0C|Irradia ted|>=600m L|Quar:>=6 m/retested ', [LastUp dateDate]= '2016-07-2 7 11:17:06 .000', [La stUpdateUs er]=' RED A CTED ' WHERE [B loodProduc tGuid]='00 5e093c-1a1 e-4c18-9e4 c-cbe75bcb 3da5' | |
| 10676 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC AFR Deg None O PN IRD LUK OPR 2C', [ LastUpdate Date]='201 6-07-27 11 :17:06.000 ', [LastUp dateUser]= ' RED A CTED ' WHERE [B loodProduc tGuid]='4a ea892c-727 8-4b82-82b 3-cc033f25 77e3' | |
| 10677 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC AFR ACD-A>AS3 5C', [Last UpdateDate ]='2016-07 -27 11:17: 06.000', [ LastUpdate User]=' RED A CTED ' WHERE [B loodProduc tGuid]='f6 fb2132-52b 4-41f4-9ca 6-cc363e2a 0c9c' | |
| 10678 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLT AFR PAS-B IRD LUKOPR 1C' , [LastUpd ateDate]=' 2016-07-27 11:17:06. 000', [Las tUpdateUse r]=' RED A CTED ' WHERE [B loodProduc tGuid]='01 f5e7b7-9ea 9-40ec-800 7-cc4c6440 e57d' | |
| 10679 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='FFP AFR Thaw NaCit 4C QUAR', [LastUpda teDate]='2 016-07-27 11:17:06.0 00', [Last UpdateUser ]=' RED A CTED ' WHERE [B loodProduc tGuid]='33 5575c4-91a 4-4d5f-864 4-cc59c3ec db50' | |
| 10680 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC AFR CP2D-AS3 L UKOPR 2C', [LastUpda teDate]='2 016-07-27 11:17:06.0 00', [Last UpdateUser ]=' RED A CTED ' WHERE [B loodProduc tGuid]='41 b77610-bf6 a-4294-a45 7-cc5a59d1 0c16' | |
| 10681 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='FFP None 4C', [Las tUpdateDat e]='2016-0 7-27 11:17 :06.000', [LastUpdat eUser]=' RED A CTED ' WHERE [B loodProduc tGuid]='a2 703f75-6b2 5-4719-9b3 a-cc6aedb0 17c4' | |
| 10682 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC AFR ACD-A>AS1 OPN IRD LU KOPR SAL A dd 2C', [L astUpdateD ate]='2016 -07-27 11: 17:06.000' , [LastUpd ateUser]=' RED A CTED ' WHERE [B loodProduc tGuid]='31 eaf000-a67 7-4e26-a79 7-cc89001b 4d3c' | |
| 10683 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLT AFR ACD-A IRD LUKOPR 5C BacMtr', [ LastUpdate Date]='201 6-07-27 11 :17:06.000 ', [LastUp dateUser]= ' RED A CTED ' WHERE [B loodProduc tGuid]='2d b7d154-f41 1-43b9-a33 f-cc90b8f3 777e' | |
| 10684 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLT AFR NS LUKOPR 2C', [Last UpdateDate ]='2016-07 -27 11:17: 06.000', [ LastUpdate User]=' RED A CTED ' WHERE [B loodProduc tGuid]='fe 940185-1e3 a-47a9-ace 2-ccb620b8 400f' | |
| 10685 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLASMA A FR CP2D IR D 1C', [La stUpdateDa te]='2016- 07-27 11:1 7:06.000', [LastUpda teUser]=' RED A CTED ' WHERE [B loodProduc tGuid]='dd 2cf265-f19 a-4ecc-87d a-ccc676da f0e9' | |
| 10686 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC AFR CPDA-1 LUK OPR 2C', [ LastUpdate Date]='201 6-07-27 11 :17:06.000 ', [LastUp dateUser]= ' RED A CTED ' WHERE [B loodProduc tGuid]='2b e959b4-b33 4-4b95-99a a-ccca9b3b 8a09' | |
| 10687 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='WB CP2D 7C', [Last UpdateDate ]='2016-07 -27 11:17: 06.000', [ LastUpdate User]=' RED A CTED ' WHERE [B loodProduc tGuid]='38 107b24-9bd 0-4a55-999 5-cccd903c 3aa3' | |
| 10688 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC AFR CP2D>AS3 O PN LUKOPR PA 1C', [L astUpdateD ate]='2016 -07-27 11: 17:06.000' , [LastUpd ateUser]=' RED A CTED ' WHERE [B loodProduc tGuid]='7a 375479-abe 7-4218-8a2 d-ccd795b9 8fb3' | |
| 10689 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC AFR Deg None O PN IRD 1C' , [LastUpd ateDate]=' 2016-07-27 11:17:06. 000', [Las tUpdateUse r]=' RED A CTED ' WHERE [B loodProduc tGuid]='4b 3b3b85-984 8-49e8-b5b c-ccfc02c8 0661' | |
| 10690 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC AFR ACD-A OPN IRD SR/PA 2C', [Last UpdateDate ]='2016-07 -27 11:17: 06.000', [ LastUpdate User]=' RED A CTED ' WHERE [B loodProduc tGuid]='39 21c4d8-937 f-4e5c-9bb 9-ccfc9ff8 49e0' | |
| 10691 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC Deg Rej None O PN IRD LUK OPR 7C', [ LastUpdate Date]='201 6-07-27 11 :17:06.000 ', [LastUp dateUser]= ' RED A CTED ' WHERE [B loodProduc tGuid]='bd 08a9e2-a08 3-4bdb-9c9 4-cd1fe9fb 492c' | |
| 10692 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC AFR CP2D>AS3 L UKOPR 7C', [LastUpda teDate]='2 016-07-27 11:17:06.0 00', [Last UpdateUser ]=' RED A CTED ' WHERE [B loodProduc tGuid]='66 db1a91-795 5-4c4f-9f5 2-cd2c753f 21bc' | |
| 10693 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC AFR ACD-A>AS1 IRD 5C', [ LastUpdate Date]='201 6-07-27 11 :17:06.000 ', [LastUp dateUser]= ' RED A CTED ' WHERE [B loodProduc tGuid]='8b 16197e-d82 9-45fd-839 3-cd40621e ca2c' | |
| 10694 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='FFP AFR Thaw None LUKOPR 7C' , [LastUpd ateDate]=' 2016-07-27 11:17:06. 000', [Las tUpdateUse r]=' RED A CTED ' WHERE [B loodProduc tGuid]='d9 f2e137-353 b-43ca-821 5-cd469e71 3ce2' | |
| 10695 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC AFR Deg Rej No ne OPN LUK OPR 1C', [ LastUpdate Date]='201 6-07-27 11 :17:06.000 ', [LastUp dateUser]= ' RED A CTED ' WHERE [B loodProduc tGuid]='68 3891b8-008 4-4f6f-a22 b-cd47428c 7379' | |
| 10696 | UPDATE [db o].[BloodP roduct] SE T [Product Name]='POO LED CRYOPR ECIPITATE| None/XX/<= -30C|ResLe u:<1E6|Qua r:>=90d/re tested', [ LastUpdate Date]='201 6-07-27 11 :17:06.000 ', [LastUp dateUser]= ' RED A CTED ' WHERE [B loodProduc tGuid]='59 addc5a-54c 8-4e24-8c8 c-cd4c2b55 2f62' | |
| 10697 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC AFR Deg None I RD LUKOPR 1C', [Last UpdateDate ]='2016-07 -27 11:17: 06.000', [ LastUpdate User]=' RED A CTED ' WHERE [B loodProduc tGuid]='e4 3e905a-563 3-4e2d-b72 5-cd4d7dfe 86fa' | |
| 10698 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLT AFR Thaw DMSO OPN 2CNA', [LastUpda teDate]='2 016-07-27 11:17:06.0 00', [Last UpdateUser ]=' RED A CTED ' WHERE [B loodProduc tGuid]='9f 6d1520-b2b 6-43c7-907 1-cd4ede60 4e44' | |
| 10699 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC AFR ACD-A>AS1 IRD LUKOPR 6C', [Las tUpdateDat e]='2016-0 7-27 11:17 :06.000', [LastUpdat eUser]=' RED A CTED ' WHERE [B loodProduc tGuid]='cf 12d814-ce9 4-43d6-97f b-cd5919a5 68ef' | |
| 10700 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC AFR ACD-A>AS3 MNFNI 1C', [LastUpda teDate]='2 016-07-27 11:17:06.0 00', [Last UpdateUser ]=' RED A CTED ' WHERE [B loodProduc tGuid]='35 aa9cb5-846 d-41be-b46 6-cd6f56a0 b1aa' | |
| 10701 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC CPDA -1 IRD 7C' , [RetireD ate]='2015 -04-07 00: 00:00.000' , [LastUpd ateDate]=' 2016-07-27 11:17:06. 000', [Las tUpdateUse r]=' RED A CTED ' WHERE [B loodProduc tGuid]='a4 0f0ff9-764 1-4fc8-83d e-cd7e1678 274a' | |
| 10702 | UPDATE [db o].[BloodP roduct] SE T [Product Name]='Aph eresis FRE SH FROZEN PLASMA|NaC itrate/XX/ <=-25C|Fro zen <=6h|P soralen-tr eated', [L astUpdateD ate]='2016 -07-27 11: 17:06.000' , [LastUpd ateUser]=' RED A CTED ' WHERE [B loodProduc tGuid]='b6 56dc06-402 4-4330-a73 b-cd95dd83 2a85' | |
| 10703 | UPDATE [db o].[BloodP roduct] SE T [Product Name]='Aph eresis FRE SH FROZEN PLASMA|ACD -A/XX/<=-6 5C|Irradia ted|6th co ntainer', [ProductSh ortName]=' FFP AFR AC D-A IRD 6C ', [LastUp dateDate]= '2016-07-2 7 11:17:06 .000', [La stUpdateUs er]=' RED A CTED ' WHERE [B loodProduc tGuid]='25 4d0eb0-6a5 6-429e-812 a-cd98d78a 1048' | |
| 10704 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC AFR ACD-A>AS3 IRD LUKOPR 8C', [Las tUpdateDat e]='2016-0 7-27 11:17 :06.000', [LastUpdat eUser]=' RED A CTED ' WHERE [B loodProduc tGuid]='37 0a121f-403 f-479d-9b0 6-cdb33b77 0e7b' | |
| 10705 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC AFR Froz None OPN 5C', [ LastUpdate Date]='201 6-07-27 11 :17:06.000 ', [LastUp dateUser]= ' RED A CTED ' WHERE [B loodProduc tGuid]='ac a6eb49-309 e-4a73-91d b-cdbb1b1a 3330' | |
| 10706 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC AFR Deg Rej No ne OPN IRD 1C', [Las tUpdateDat e]='2016-0 7-27 11:17 :06.000', [LastUpdat eUser]=' RED A CTED ' WHERE [B loodProduc tGuid]='70 40b9e7-4fd 9-4bcd-842 c-cdd468d2 b482' | |
| 10707 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC Froz None OPN LUKOPR 4C' , [LastUpd ateDate]=' 2016-07-27 11:17:06. 000', [Las tUpdateUse r]=' RED A CTED ' WHERE [B loodProduc tGuid]='4d 815085-aca 9-487d-8da 4-cde42569 ae3b' | |
| 10708 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLT AFR ACD-A OPN PLS Red 3C ', [LastUp dateDate]= '2016-07-2 7 11:17:06 .000', [La stUpdateUs er]=' RED A CTED ' WHERE [B loodProduc tGuid]='d7 deb65d-823 4-4fef-874 7-cde55f12 4f2f' | |
| 10709 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLT AFR ACD-A 1C', [LastUpda teDate]='2 016-07-27 11:17:06.0 00', [Last UpdateUser ]=' RED A CTED ' WHERE [B loodProduc tGuid]='e1 7002a2-6d3 e-46e7-bc0 d-ce064b8c eaa7' | |
| 10710 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC AFR ACD-A>AS3 LUKOPR 1C' , [LastUpd ateDate]=' 2016-07-27 11:17:06. 000', [Las tUpdateUse r]=' RED A CTED ' WHERE [B loodProduc tGuid]='e6 b8c1e1-fa4 7-40c8-8dc 6-ce12eec2 527f' | |
| 10711 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC Deg Rej None O PN IRD 2C' , [LastUpd ateDate]=' 2016-07-27 11:17:06. 000', [Las tUpdateUse r]=' RED A CTED ' WHERE [B loodProduc tGuid]='24 da5a21-4fc 9-45fd-935 6-ce207685 01a0' | |
| 10712 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLASMA A FR ACD-A 2 C', [LastU pdateDate] ='2016-07- 27 11:17:0 6.000', [L astUpdateU ser]=' RED A CTED ' WHERE [B loodProduc tGuid]='86 337c74-402 0-4bc1-824 6-ce2355c3 7179' | |
| 10713 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC AFR Wash None OPN LUKOPR 2C', [Las tUpdateDat e]='2016-0 7-27 11:17 :06.000', [LastUpdat eUser]=' RED A CTED ' WHERE [B loodProduc tGuid]='1e f36612-14c 6-45f1-b5c 9-ce259495 24d1' | |
| 10714 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC AFR CPDA-1 OPN IRD SR 2C ', [LastUp dateDate]= '2016-07-2 7 11:17:06 .000', [La stUpdateUs er]=' RED A CTED ' WHERE [B loodProduc tGuid]='e7 d73445-84f 4-49b6-b90 a-ce29dbe5 bbde' | |
| 10715 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC AFR Wash None LUKOPR 1C' , [LastUpd ateDate]=' 2016-07-27 11:17:06. 000', [Las tUpdateUse r]=' RED A CTED ' WHERE [B loodProduc tGuid]='64 1afce4-0cd 6-47a5-a82 7-ce36c17a 79a9' | |
| 10716 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC AFR CP2D>AS3 O PN LUKOPR SUPRed 2C' , [LastUpd ateDate]=' 2016-07-27 11:17:06. 000', [Las tUpdateUse r]=' RED A CTED ' WHERE [B loodProduc tGuid]='3e e21e24-c4f d-4449-981 4-ce460a3c 1c39' | |
| 10717 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='FFP AFR Thaw None 3C', [Last UpdateDate ]='2016-07 -27 11:17: 06.000', [ LastUpdate User]=' RED A CTED ' WHERE [B loodProduc tGuid]='7c 9a8926-1b5 0-4dfb-b79 5-ce4748c2 c43e' | |
| 10718 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLT AFR NaCit NMT OPN 2C', [ LastUpdate Date]='201 6-07-27 11 :17:06.000 ', [LastUp dateUser]= ' RED A CTED ' WHERE [B loodProduc tGuid]='69 d41b2a-5d3 5-4924-912 5-ce573171 8e35' | |
| 10719 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC AFR CP2D>AS3 O PN IRD LUK OPR PA 2C' , [LastUpd ateDate]=' 2016-07-27 11:17:06. 000', [Las tUpdateUse r]=' RED A CTED ' WHERE [B loodProduc tGuid]='1a a385d1-8bb f-4c32-847 e-ce5d256d 215c' | |
| 10720 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC AFR CPDA-1 MNF I 1C', [La stUpdateDa te]='2016- 07-27 11:1 7:06.000', [LastUpda teUser]=' RED A CTED ' WHERE [B loodProduc tGuid]='14 0482a8-b86 e-4915-b07 b-ce67bf8a c948' | |
| 10721 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC Deg None IRD L UKOPR 6C', [LastUpda teDate]='2 016-07-27 11:17:06.0 00', [Last UpdateUser ]=' RED A CTED ' WHERE [B loodProduc tGuid]='c5 923ab0-5f3 5-4e81-b7c 8-ce6f73bd 9e11' | |
| 10722 | UPDATE [db o].[BloodP roduct] SE T [Product Name]='Fro zen POOLED PLATELETS |DMSO/XX/< =-80C|Open |3 units', [LastUpda teDate]='2 016-07-27 11:17:06.0 00', [Last UpdateUser ]=' RED A CTED ' WHERE [B loodProduc tGuid]='fd 73f4fd-afd 3-41c4-80f 6-ce777fa8 14bf' | |
| 10723 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='FFP AFR None IRD L UKOPR 2C', [LastUpda teDate]='2 016-07-27 11:17:06.0 00', [Last UpdateUser ]=' RED A CTED ' WHERE [B loodProduc tGuid]='59 2ddc97-1af 5-4a73-b1c d-ce7b14ef 9c69' | |
| 10724 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC AFR CPD-50>SAG M LUKOPR 1 C', [LastU pdateDate] ='2016-07- 27 11:17:0 6.000', [L astUpdateU ser]=' RED A CTED ' WHERE [B loodProduc tGuid]='7f 83fce8-06a f-4e95-b2c 7-ce80dea6 6798' | |
| 10725 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLT AFR ACD-B OPN 1C', [Last UpdateDate ]='2016-07 -27 11:17: 06.000', [ LastUpdate User]=' RED A CTED ' WHERE [B loodProduc tGuid]='96 dd3020-6b3 1-4282-891 0-cebec02c 9e65' | |
| 10726 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLT AFR NaCit OPN 2C', [Last UpdateDate ]='2016-07 -27 11:17: 06.000', [ LastUpdate User]=' RED A CTED ' WHERE [B loodProduc tGuid]='d7 2c3a3f-3c5 4-4c54-aa9 1-cec30a9e 5474' | |
| 10727 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLASMA A FR Liq NaC it MNFNI O PN', [Last UpdateDate ]='2016-07 -27 11:17: 06.000', [ LastUpdate User]=' RED A CTED ' WHERE [B loodProduc tGuid]='c9 bd4648-7d1 d-4fc5-8b9 2-cedb2c39 5722' | |
| 10728 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC CPDA -1 LUKOPR 8C', [Last UpdateDate ]='2016-07 -27 11:17: 06.000', [ LastUpdate User]=' RED A CTED ' WHERE [B loodProduc tGuid]='d2 21a7dc-c62 c-44c1-9a0 2-cee40a05 c3ba' | |
| 10729 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC AFR ACD-A>AS1 MNFI 2C', [LastUpdat eDate]='20 16-07-27 1 1:17:06.00 0', [LastU pdateUser] =' RED A CTED ' WHERE [B loodProduc tGuid]='8b 97f8cc-628 3-44ad-9d2 e-cef25e56 c5bb' | |
| 10730 | UPDATE [db o].[BloodP roduct] SE T [Product Name]='Fro zen Aphere sis RED BL OOD CELLS| None/XX/<= -65C|Open| ResLeu:<5E 6|1st cont ainer', [P roductShor tName]='RB C AFR Froz None OPN LUKOPR 1C' , [LastUpd ateDate]=' 2016-07-27 11:17:06. 000', [Las tUpdateUse r]=' RED A CTED ' WHERE [B loodProduc tGuid]='c8 d706cb-51c 8-41ef-918 8-cf0b189d a510' | |
| 10731 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLT AFR ACD-A 1C', [LastUpda teDate]='2 016-07-27 11:17:06.0 00', [Last UpdateUser ]=' RED A CTED ' WHERE [B loodProduc tGuid]='79 b80518-849 8-49e1-924 1-cf1d772b f7f2' | |
| 10732 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLT AFR PAS-B LUKO PR SUPRed 4C', [Last UpdateDate ]='2016-07 -27 11:17: 06.000', [ LastUpdate User]=' RED A CTED ' WHERE [B loodProduc tGuid]='7d 6b0a41-6f8 1-488b-af5 d-cf20f8ba 505e' | |
| 10733 | UPDATE [db o].[BloodP roduct] SE T [Product Name]='PLA SMA|CPD/45 0mL/<=-30C |For mnf:i njectable| Frozen <=2 6h', [Last UpdateDate ]='2016-07 -27 11:17: 06.000', [ LastUpdate User]=' RED A CTED ' WHERE [B loodProduc tGuid]='cd a7b464-ee2 7-40a7-bac c-cf26dae4 0578' | |
| 10734 | UPDATE [db o].[BloodP roduct] SE T [Product Name]='Aph eresis FRE SH FROZEN PLASMA|ACD -B/XX/<=-2 5C|Fin Con :NS', [Las tUpdateDat e]='2016-0 7-27 11:17 :06.000', [LastUpdat eUser]=' RED A CTED ' WHERE [B loodProduc tGuid]='33 1bf566-646 e-4b63-84e 4-cf3d962f 8348' | |
| 10735 | UPDATE [db o].[BloodP roduct] SE T [Product Name]='Aph eresis PLA SMA|NaCitr ate/XX/<=- 25C|For mn f:noninjec table|Froz en <=6h|Qu ar:>=112d/ retested', [LastUpda teDate]='2 016-07-27 11:17:06.0 00', [Last UpdateUser ]=' RED A CTED ' WHERE [B loodProduc tGuid]='e4 8a1ae4-b15 b-4c0c-bf5 e-cf453f09 cd0f' | |
| 10736 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC AFR CPDA-1 LUK OPR 4C', [ LastUpdate Date]='201 6-07-27 11 :17:06.000 ', [LastUp dateUser]= ' RED A CTED ' WHERE [B loodProduc tGuid]='1d 4bf086-ecb 4-4c7b-a26 a-cf54ba0f ad17' | |
| 10737 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='FFP CPD 1C QUAR', [LastUpdat eDate]='20 16-07-27 1 1:17:06.00 0', [LastU pdateUser] =' RED A CTED ' WHERE [B loodProduc tGuid]='d5 570cbc-09d 5-4213-9ee b-cf5a8620 c8e4' | |
| 10738 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLT AFR ACD-A 2C R ibo', [Las tUpdateDat e]='2016-0 7-27 11:17 :06.000', [LastUpdat eUser]=' RED A CTED ' WHERE [B loodProduc tGuid]='ee 18ba1f-ff7 3-442b-8dc 4-cf628b49 9b6d' | |
| 10739 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC AFR ACD-A>AS1 IRD LUKOPR 6C', [Las tUpdateDat e]='2016-0 7-27 11:17 :06.000', [LastUpdat eUser]=' RED A CTED ' WHERE [B loodProduc tGuid]='96 251366-993 5-46d1-b8b 7-cf9331d9 dea4' | |
| 10740 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC AFR Deg None O PN IRD LUK OPR 1C', [ LastUpdate Date]='201 6-07-27 11 :17:06.000 ', [LastUp dateUser]= ' RED A CTED ' WHERE [B loodProduc tGuid]='a2 55215c-c1b b-4c04-b76 2-cf9a2081 48c4' | |
| 10741 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLT AFR Wash PAS-D LUKOPR 3C ', [LastUp dateDate]= '2016-07-2 7 11:17:06 .000', [La stUpdateUs er]=' RED A CTED ' WHERE [B loodProduc tGuid]='1b 173789-1ac 5-40af-8c3 9-cfbcbd56 4dc2' | |
| 10742 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC Deg None 1C', [LastUpdat eDate]='20 16-07-27 1 1:17:06.00 0', [LastU pdateUser] =' RED A CTED ' WHERE [B loodProduc tGuid]='d6 4902a8-623 d-45c6-96e 5-cfc459a1 de85' | |
| 10743 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC AFR ACD-A>AS3 OPN IRD LU KOPR SUPRe d 2C', [La stUpdateDa te]='2016- 07-27 11:1 7:06.000', [LastUpda teUser]=' RED A CTED ' WHERE [B loodProduc tGuid]='8b 642955-2d8 6-4b0a-af6 b-cfd198b0 0def' | |
| 10744 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='WB CPD I RD LUKOPR 4C', [Last UpdateDate ]='2016-07 -27 11:17: 06.000', [ LastUpdate User]=' RED A CTED ' WHERE [B loodProduc tGuid]='8f 08ba53-cb3 c-4098-a2c 1-cfd79e85 0bb8' | |
| 10745 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLT AFR NaCit IRD PLS Red 1C ', [LastUp dateDate]= '2016-07-2 7 11:17:06 .000', [La stUpdateUs er]=' RED A CTED ' WHERE [B loodProduc tGuid]='f0 6606bb-30f 7-4b5b-b99 1-cff4803e 0d12' | |
| 10746 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC CPDA -1 IRD LUK OPR 5C', [ RetireDate ]='2015-04 -07 00:00: 00.000', [ LastUpdate Date]='201 6-07-27 11 :17:06.000 ', [LastUp dateUser]= ' RED A CTED ' WHERE [B loodProduc tGuid]='51 242b29-835 5-4d0b-abf c-cff707a0 7de5' | |
| 10747 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLT AFR ACD-A IRD LUKOPR 3C' , [LastUpd ateDate]=' 2016-07-27 11:17:06. 000', [Las tUpdateUse r]=' RED A CTED ' WHERE [B loodProduc tGuid]='75 214975-681 c-4639-83e b-d008ebb7 b21e' | |
| 10748 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC AFR ACD-A>AS3 IRD LUKOPR 4C', [Las tUpdateDat e]='2016-0 7-27 11:17 :06.000', [LastUpdat eUser]=' RED A CTED ' WHERE [B loodProduc tGuid]='50 08556e-91e 5-48ab-866 2-d018fa85 bd62' | |
| 10749 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC CP2D >AS3 IRD 4 C', [LastU pdateDate] ='2016-07- 27 11:17:0 6.000', [L astUpdateU ser]=' RED A CTED ' WHERE [B loodProduc tGuid]='4b 3e0435-aea 6-40ef-a14 0-d022db99 d903' | |
| 10750 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLT AFR ACD-A OPN IRD LUKOPR 1C Pedi', [LastUpda teDate]='2 016-07-27 11:17:06.0 00', [Last UpdateUser ]=' RED A CTED ' WHERE [B loodProduc tGuid]='4b a10de3-bdb 2-4728-906 0-d04a8f7e 617a' | |
| 10751 | UPDATE [db o].[BloodP roduct] SE T [Product Name]='FRE SH FROZEN PLASMA|CPD /XX/<=-30C |ResLeu:<1 E6,WB filt r|LowVol:a nticoag ad j', [LastU pdateDate] ='2016-07- 27 11:17:0 6.000', [L astUpdateU ser]=' RED A CTED ' WHERE [B loodProduc tGuid]='3a b5755d-3f8 f-421f-9e9 9-d04eb33f e676' | |
| 10752 | UPDATE [db o].[BloodP roduct] SE T [Product Name]='Aph eresis FRE SH FROZEN PLASMA|ACD -B/XX/<=-6 5C|>=600mL |Quar:>=6m /retested' , [LastUpd ateDate]=' 2016-07-27 11:17:06. 000', [Las tUpdateUse r]=' RED A CTED ' WHERE [B loodProduc tGuid]='b4 e3ae0a-aac 4-4870-a60 f-d06bc20d 5fbe' | |
| 10753 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC AFR Deg AS3 OP N LUKOPR 1 C', [LastU pdateDate] ='2016-07- 27 11:17:0 6.000', [L astUpdateU ser]=' RED A CTED ' WHERE [B loodProduc tGuid]='20 4f35f6-c69 2-4e6d-ba4 1-d06f4959 b89c' | |
| 10754 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC AFR ACD-A>AS3 OPN IRD LU KOPR SR/PA 1C', [Las tUpdateDat e]='2016-0 7-27 11:17 :06.000', [LastUpdat eUser]=' RED A CTED ' WHERE [B loodProduc tGuid]='e9 fcfca8-379 5-4a36-996 c-d071635d bc5e' | |
| 10755 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLT AFR ACD-A OPN IRD LUKOPR PLS Red 3 C', [LastU pdateDate] ='2016-07- 27 11:17:0 6.000', [L astUpdateU ser]=' RED A CTED ' WHERE [B loodProduc tGuid]='e7 e23dad-651 c-4a05-920 b-d072ba99 6d55' | |
| 10756 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC AFR ACD-A>AS1 OPN IRD LU KOPR SR/PA 1C', [Las tUpdateDat e]='2016-0 7-27 11:17 :06.000', [LastUpdat eUser]=' RED A CTED ' WHERE [B loodProduc tGuid]='8d 86bee0-f34 2-45f3-9a8 4-d079614e 4d7e' | |
| 10757 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLT AFR Wash None OPN IRD LU KOPR 3C', [LastUpdat eDate]='20 16-07-27 1 1:17:06.00 0', [LastU pdateUser] =' RED A CTED ' WHERE [B loodProduc tGuid]='01 91846a-380 a-4f95-a8e 0-d08a8195 fec5' | |
| 10758 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC AFR Deg None O PN 8C', [L astUpdateD ate]='2016 -07-27 11: 17:06.000' , [LastUpd ateUser]=' RED A CTED ' WHERE [B loodProduc tGuid]='79 163ee9-9b0 a-4a57-a5b 9-d0926833 6edf' | |
| 10759 | UPDATE [db o].[BloodP roduct] SE T [Product Name]='Aph eresis FRE SH FROZEN PLASMA|ACD -A/XX/<=-6 5C|6th con tainer|Qua r:>=112d/r etested', [ProductSh ortName]=' FFP AFR AC D-A 6C QUA R', [LastU pdateDate] ='2016-07- 27 11:17:0 6.000', [L astUpdateU ser]=' RED A CTED ' WHERE [B loodProduc tGuid]='fb d91ed7-87c 9-4af6-9d2 6-d0b9c391 5f5f' | |
| 10760 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC Froz None OPN 3C', [Last UpdateDate ]='2016-07 -27 11:17: 06.000', [ LastUpdate User]=' RED A CTED ' WHERE [B loodProduc tGuid]='9b 0237ac-f4a 4-473b-bec 0-d0c256f4 bee9' | |
| 10761 | UPDATE [db o].[BloodP roduct] SE T [Product Name]='Aph eresis FRE SH FROZEN PLASMA|NaC itrate/XX/ <=-65C|Irr adiated|4t h containe r', [Produ ctShortNam e]='FFP AF R NaCit IR D 4C', [La stUpdateDa te]='2016- 07-27 11:1 7:06.000', [LastUpda teUser]=' RED A CTED ' WHERE [B loodProduc tGuid]='8c dfbde1-dc7 5-43a1-9df e-d0c29ffb 9d0a' | |
| 10762 | UPDATE [db o].[BloodP roduct] SE T [Product Name]='FRE SH FROZEN PLASMA|CPD A-1/XX/<=- 65C|3rd co ntainer|Qu ar:>=112d/ retested', [ProductS hortName]= 'FFP CPDA- 1 3C QUAR' , [LastUpd ateDate]=' 2016-07-27 11:17:06. 000', [Las tUpdateUse r]=' RED A CTED ' WHERE [B loodProduc tGuid]='9d 1d5832-bc4 4-4d3f-b95 4-d0d8ddc6 42ee' | |
| 10763 | UPDATE [db o].[BloodP roduct] SE T [Product Name]='FRE SH FROZEN PLASMA|0.5 CPD/XX/<= -30C|Not f or tx or m nf', [Last UpdateDate ]='2016-07 -27 11:17: 06.000', [ LastUpdate User]=' RED A CTED ' WHERE [B loodProduc tGuid]='90 22c9f9-6f0 2-47f8-862 b-d12dc2e3 4223' | |
| 10764 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC AFR CPDA-1 IRD 8C', [Las tUpdateDat e]='2016-0 7-27 11:17 :06.000', [LastUpdat eUser]=' RED A CTED ' WHERE [B loodProduc tGuid]='d1 f67e64-0d4 0-4574-95a 4-d130998d cd95' | |
| 10765 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC AFR Deg Rej No ne OPN LUK OPR 4C', [ LastUpdate Date]='201 6-07-27 11 :17:06.000 ', [LastUp dateUser]= ' RED A CTED ' WHERE [B loodProduc tGuid]='3a 30606a-33a 2-46e3-a51 1-d1429c4b 9b65' | |
| 10766 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLT AFR NaCit MNFN I OPN 1C', [LastUpda teDate]='2 016-07-27 11:17:06.0 00', [Last UpdateUser ]=' RED A CTED ' WHERE [B loodProduc tGuid]='55 7cf045-be7 c-4751-99d 2-d1525018 fefc' | |
| 10767 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLT AFR Wash None MNFNI 2C', [LastUpda teDate]='2 016-07-27 11:17:06.0 00', [Last UpdateUser ]=' RED A CTED ' WHERE [B loodProduc tGuid]='f5 e4f322-8b4 6-4dec-a92 c-d1610e7f 8ef5' | |
| 10768 | UPDATE [db o].[BloodP roduct] SE T [Product Name]='Fro zen RED BL OOD CELLS| Gly40%/450 mL/<=-65C| ResLeu:<1E 6,RBC filt r', [LastU pdateDate] ='2016-07- 27 11:17:0 6.000', [L astUpdateU ser]=' RED A CTED ' WHERE [B loodProduc tGuid]='90 103c5c-0e2 2-482c-b63 a-d180c36c 2d2e' | |
| 10769 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLT AFR PAS-B LUKO PR 4C BacT est', [Las tUpdateDat e]='2016-0 7-27 11:17 :06.000', [LastUpdat eUser]=' RED A CTED ' WHERE [B loodProduc tGuid]='9d 7544a4-430 b-4d85-aea a-d183633e d839' | |
| 10770 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC AFR Wash None OPN IRD 1C ', [LastUp dateDate]= '2016-07-2 7 11:17:06 .000', [La stUpdateUs er]=' RED A CTED ' WHERE [B loodProduc tGuid]='30 59bf0c-e10 9-4a32-a83 8-d184b42c b9e2' | |
| 10771 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC AFR ACD-A NMT OPN 1C', [ LastUpdate Date]='201 6-07-27 11 :17:06.000 ', [LastUp dateUser]= ' RED A CTED ' WHERE [B loodProduc tGuid]='61 315be7-840 1-45b7-846 c-d18a4747 28a0' | |
| 10772 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC AFR ACD-A>AS1 IRD 4C', [ LastUpdate Date]='201 6-07-27 11 :17:06.000 ', [LastUp dateUser]= ' RED A CTED ' WHERE [B loodProduc tGuid]='76 744f25-bda 6-40c1-922 a-d1a672c5 ebd8' | |
| 10773 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLT AFR ACD-B MNFN I 2CNA', [ LastUpdate Date]='201 6-07-27 11 :17:06.000 ', [LastUp dateUser]= ' RED A CTED ' WHERE [B loodProduc tGuid]='e5 fe459c-f52 4-441d-a45 c-d1a758a8 168c' | |
| 10774 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC AFR ACD-A>AS3 LUKOPR SR/ PA 1C', [L astUpdateD ate]='2016 -07-27 11: 17:06.000' , [LastUpd ateUser]=' RED A CTED ' WHERE [B loodProduc tGuid]='52 c56d8c-5f8 8-4311-911 2-d1b71894 b504' | |
| 10775 | UPDATE [db o].[BloodP roduct] SE T [Product Name]='Fro zen POOLED PLATELETS |DMSO/XX/< =-65C|3 un its', [Las tUpdateDat e]='2016-0 7-27 11:17 :06.000', [LastUpdat eUser]=' RED A CTED ' WHERE [B loodProduc tGuid]='4a 5ead0f-0e7 1-4d8a-93d 4-d1bde569 e1ce' | |
| 10776 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLT AFR ACD-B IRD LUKOPR 2C' , [LastUpd ateDate]=' 2016-07-27 11:17:06. 000', [Las tUpdateUse r]=' RED A CTED ' WHERE [B loodProduc tGuid]='4e 4e1406-e61 9-4337-b9b f-d1c868c8 2fb1' | |
| 10777 | UPDATE [db o].[BloodP roduct] SE T [Product Name]='POO LED FRESH FROZEN PLA SMA|CPD/XX /<=-30C|Re sLeu:<1E6| >=600mL|5 units|Psor alen-treat ed', [Prod uctShortNa me]='FFP P ool CPD LU KOPR LrgVo l 5U Psora ln', [Last UpdateDate ]='2016-07 -27 11:17: 06.000', [ LastUpdate User]=' RED A CTED ' WHERE [B loodProduc tGuid]='0d fe3188-29e a-4689-ae9 f-d1cd0310 5ee1' | |
| 10778 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLT AFR NaCit NMT 4C', [Last UpdateDate ]='2016-07 -27 11:17: 06.000', [ LastUpdate User]=' RED A CTED ' WHERE [B loodProduc tGuid]='d9 55811a-f06 8-4b1f-aca 7-d1fe0da1 f69b' | |
| 10779 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLT AFR ACD-A OPN IRD LUKOPR 3C', [Las tUpdateDat e]='2016-0 7-27 11:17 :06.000', [LastUpdat eUser]=' RED A CTED ' WHERE [B loodProduc tGuid]='a6 99a604-359 9-4ed3-8f2 9-d22f7379 9d5b' | |
| 10780 | UPDATE [db o].[BloodP roduct] SE T [Product Name]='FRE SH FROZEN PLASMA|0.5 CPD/XX/<= -25C|Irrad iated', [L astUpdateD ate]='2016 -07-27 11: 17:06.000' , [LastUpd ateUser]=' RED A CTED ' WHERE [B loodProduc tGuid]='5d f61658-c53 b-4d66-b9b 2-d248d3d7 1b62' | |
| 10781 | UPDATE [db o].[BloodP roduct] SE T [Product Name]='Aph eresis FRE SH FROZEN PLASMA|ACD -A/XX/<=-6 5C|Not for tx or mnf ', [LastUp dateDate]= '2016-07-2 7 11:17:06 .000', [La stUpdateUs er]=' RED A CTED ' WHERE [B loodProduc tGuid]='77 497f39-6d6 b-4b4c-887 2-d24d895a 2465' | |
| 10782 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC AFR ACD-A>AS3 IRD 3C', [ LastUpdate Date]='201 6-07-27 11 :17:06.000 ', [LastUp dateUser]= ' RED A CTED ' WHERE [B loodProduc tGuid]='13 b1b4f6-0a9 a-4eda-a82 d-d25ab1f1 ab2b' | |
| 10783 | UPDATE [db o].[BloodP roduct] SE T [Product Name]='PLA SMA|CPDA-1 /450mL/<=- 25C|Cryo r educed|Rib oflavin-tr eated', [L astUpdateD ate]='2016 -07-27 11: 17:06.000' , [LastUpd ateUser]=' RED A CTED ' WHERE [B loodProduc tGuid]='87 94d9df-e79 e-4765-b7a 4-d27bf61b 3ad7' | |
| 10784 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLT AFR PAS-C LUKO PR 2C', [L astUpdateD ate]='2016 -07-27 11: 17:06.000' , [LastUpd ateUser]=' RED A CTED ' WHERE [B loodProduc tGuid]='70 bf0def-f6e 5-428e-8e9 0-d289f227 8711' | |
| 10785 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='WB CPDA- 1 8C', [La stUpdateDa te]='2016- 07-27 11:1 7:06.000', [LastUpda teUser]=' RED A CTED ' WHERE [B loodProduc tGuid]='7c 1597bb-0db 3-4f50-9d4 b-d2978624 5a97' | |
| 10786 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLT AFR ACD-A OPN LUKOPR PLS Red 1CNA' , [LastUpd ateDate]=' 2016-07-27 11:17:06. 000', [Las tUpdateUse r]=' RED A CTED ' WHERE [B loodProduc tGuid]='a5 76b85d-3ec 7-4ec9-809 0-d2a059ff 3624' | |
| 10787 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='FFP CPDA -1 2C', [L astUpdateD ate]='2016 -07-27 11: 17:06.000' , [LastUpd ateUser]=' RED A CTED ' WHERE [B loodProduc tGuid]='6d 1e7933-53a 6-410e-8ce 2-d2a87096 786c' | |
| 10788 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC AFR Froz None OPN LUKOPR 7C', [Las tUpdateDat e]='2016-0 7-27 11:17 :06.000', [LastUpdat eUser]=' RED A CTED ' WHERE [B loodProduc tGuid]='59 88fed8-2fb 2-430d-9d6 6-d2c06574 dc68' | |
| 10789 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLT AFR NaCit OPN LUKOPR 3C' , [LastUpd ateDate]=' 2016-07-27 11:17:06. 000', [Las tUpdateUse r]=' RED A CTED ' WHERE [B loodProduc tGuid]='ab 68a9e6-d0a f-4a36-9ba c-d2e0631b a91b' | |
| 10790 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='FFP AFR None 5C', [LastUpdat eDate]='20 16-07-27 1 1:17:06.00 0', [LastU pdateUser] =' RED A CTED ' WHERE [B loodProduc tGuid]='5c 0cb10e-1a8 2-4978-aba a-d31035a5 d406' | |
| 10791 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLT AFR PAS-C LUKO PR 2C Psor aln', [Las tUpdateDat e]='2016-0 7-27 11:17 :06.000', [LastUpdat eUser]=' RED A CTED ' WHERE [B loodProduc tGuid]='ca 063853-baf d-4b55-9df 0-d32f1b7f b71c' | |
| 10792 | UPDATE [db o].[BloodP roduct] SE T [Product Name]='Fro zen Aphere sis RED BL OOD CELLS| None/XX/<= -65C|2nd c ontainer', [ProductS hortName]= 'RBC AFR F roz None 2 C', [LastU pdateDate] ='2016-07- 27 11:17:0 6.000', [L astUpdateU ser]=' RED A CTED ' WHERE [B loodProduc tGuid]='3d 6abfbe-657 f-4427-bd3 1-d361c0a9 02f6' | |
| 10793 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLT AFR Thaw DMSO IRD LUKOPR 3C', [Las tUpdateDat e]='2016-0 7-27 11:17 :06.000', [LastUpdat eUser]=' RED A CTED ' WHERE [B loodProduc tGuid]='9f dec72f-56f c-47a3-abb 0-d37ec66a b712' | |
| 10794 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC CP2D IRD LUKOP R 5C', [La stUpdateDa te]='2016- 07-27 11:1 7:06.000', [LastUpda teUser]=' RED A CTED ' WHERE [B loodProduc tGuid]='9e 33298e-2b3 c-4e41-84a 2-d392375f 3168' | |
| 10795 | UPDATE [db o].[BloodP roduct] SE T [Product Name]='Aph eresis PLA SMA|NaCitr ate/XX/<=- 25C|Frozen <=6h', [L astUpdateD ate]='2016 -07-27 11: 17:06.000' , [LastUpd ateUser]=' RED A CTED ' WHERE [B loodProduc tGuid]='60 a0a7ea-d33 5-4b8a-a6f f-d39cae85 82d7' | |
| 10796 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLT AFR ACD-A LUKO PR 4C', [L astUpdateD ate]='2016 -07-27 11: 17:06.000' , [LastUpd ateUser]=' RED A CTED ' WHERE [B loodProduc tGuid]='34 edf622-f4f 7-4f75-b0d f-d3a581b5 8681' | |
| 10797 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC CP2D 5C', [Las tUpdateDat e]='2016-0 7-27 11:17 :06.000', [LastUpdat eUser]=' RED A CTED ' WHERE [B loodProduc tGuid]='b8 6dd204-73f a-4a65-8da 2-d3bb548f be89' | |
| 10798 | UPDATE [db o].[BloodP roduct] SE T [Product Name]='CRY OPRECIPITA TE|None/45 0mL/<=-30C |ResLeu:<1 E6|Quar:>= 90d/retest ed', [Last UpdateDate ]='2016-07 -27 11:17: 06.000', [ LastUpdate User]=' RED A CTED ' WHERE [B loodProduc tGuid]='7f 6e1782-dd2 9-486c-b0b 7-d3cb506c efc6' | |
| 10799 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLT AFR Wash None OPN 2CNA', [LastUpda teDate]='2 016-07-27 11:17:06.0 00', [Last UpdateUser ]=' RED A CTED ' WHERE [B loodProduc tGuid]='9c 524a59-373 2-4003-b3d 6-d3d67ed3 c3b4' | |
| 10800 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC AFR Deg None O PN IRD 8C' , [LastUpd ateDate]=' 2016-07-27 11:17:06. 000', [Las tUpdateUse r]=' RED A CTED ' WHERE [B loodProduc tGuid]='22 693e71-38a 6-4b15-a45 0-d3d68e40 e1ae' | |
| 10801 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLT AFR ACD-A 2C', [LastUpda teDate]='2 016-07-27 11:17:06.0 00', [Last UpdateUser ]=' RED A CTED ' WHERE [B loodProduc tGuid]='1c 403e17-c72 1-4e9f-bb0 5-d3dc8761 c5cb' | |
| 10802 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='FFP AFR ACD-A LUKO PR 6C', [L astUpdateD ate]='2016 -07-27 11: 17:06.000' , [LastUpd ateUser]=' RED A CTED ' WHERE [B loodProduc tGuid]='6e e8ec26-b74 2-4f6c-b00 4-d3e71005 dd73' | |
| 10803 | UPDATE [db o].[BloodP roduct] SE T [Product Name]='Aph eresis FRE SH FROZEN PLASMA|NaC itrate/XX/ <=-25C|Fro zen <=6h|Q uar:>=112d /retested' , [LastUpd ateDate]=' 2016-07-27 11:17:06. 000', [Las tUpdateUse r]=' RED A CTED ' WHERE [B loodProduc tGuid]='67 d1309f-6c5 1-45f1-982 6-d3e98bd2 075d' | |
| 10804 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC Froz Rej None OPN IRD 2C ', [LastUp dateDate]= '2016-07-2 7 11:17:06 .000', [La stUpdateUs er]=' RED A CTED ' WHERE [B loodProduc tGuid]='62 11c82e-35f b-4e10-9c8 1-d3f4faa0 8413' | |
| 10805 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLT AFR Wash PAS-E IRD LUKOP R 1C', [La stUpdateDa te]='2016- 07-27 11:1 7:06.000', [LastUpda teUser]=' RED A CTED ' WHERE [B loodProduc tGuid]='8c 437051-187 b-4be1-bb1 0-d40432ab 5403' | |
| 10806 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLT AFR ACD-A IRD 5C', [Last UpdateDate ]='2016-07 -27 11:17: 06.000', [ LastUpdate User]=' RED A CTED ' WHERE [B loodProduc tGuid]='90 8a0eef-193 6-4f15-84b 3-d405dcbc 7935' | |
| 10807 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLASMA A FR Thaw CP 2D IRD 2C' , [LastUpd ateDate]=' 2016-07-27 11:17:06. 000', [Las tUpdateUse r]=' RED A CTED ' WHERE [B loodProduc tGuid]='f5 c2aedf-e8c 2-4602-8b9 3-d418a9a8 853c' | |
| 10808 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='FFP None QUAR 8C', [LastUpda teDate]='2 016-07-27 11:17:06.0 00', [Last UpdateUser ]=' RED A CTED ' WHERE [B loodProduc tGuid]='95 5db0a2-e3e d-448a-b82 a-d42df7b6 48e7' | |
| 10809 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLT AFR ACD-B MNFN I 3C', [La stUpdateDa te]='2016- 07-27 11:1 7:06.000', [LastUpda teUser]=' RED A CTED ' WHERE [B loodProduc tGuid]='5a 7f667c-58a 7-4d96-bf9 0-d4309aa4 dfcb' | |
| 10810 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC AFR ACD-A>AS1 IRD 6C', [ LastUpdate Date]='201 6-07-27 11 :17:06.000 ', [LastUp dateUser]= ' RED A CTED ' WHERE [B loodProduc tGuid]='fb a10161-55c a-43c9-83c 7-d43ed65b 8a94' | |
| 10811 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC Froz None OPN LUKOPR 6C' , [LastUpd ateDate]=' 2016-07-27 11:17:06. 000', [Las tUpdateUse r]=' RED A CTED ' WHERE [B loodProduc tGuid]='1c 9c4244-d81 b-42a4-8f2 6-d44f23ce 96e0' | |
| 10812 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='FFP AFR Thaw None 6C', [Last UpdateDate ]='2016-07 -27 11:17: 06.000', [ LastUpdate User]=' RED A CTED ' WHERE [B loodProduc tGuid]='cb b1f262-d57 d-4478-af5 1-d4505747 39f6' | |
| 10813 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLT AFR ACD-B LUKO PR PLS Red 2CNA', [L astUpdateD ate]='2016 -07-27 11: 17:06.000' , [LastUpd ateUser]=' RED A CTED ' WHERE [B loodProduc tGuid]='39 0ce1d7-2c6 1-4c1f-9b8 2-d453a1e8 8c4a' | |
| 10814 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLT AFR ACD-A 3C', [LastUpda teDate]='2 016-07-27 11:17:06.0 00', [Last UpdateUser ]=' RED A CTED ' WHERE [B loodProduc tGuid]='e4 1349ca-d3d 6-494b-9fa f-d45b9c55 8d2c' | |
| 10815 | UPDATE [db o].[BloodP roduct] SE T [Product Name]='Fro zen POOLED PLATELETS |DMSO/XX/< =-65C|ResL eu:<1E6|2 units', [L astUpdateD ate]='2016 -07-27 11: 17:06.000' , [LastUpd ateUser]=' RED A CTED ' WHERE [B loodProduc tGuid]='a1 41d1ab-d29 a-4548-897 5-d46e5c81 4aae' | |
| 10816 | UPDATE [db o].[BloodP roduct] SE T [Product Name]='Fro zen POOLED PLATELETS |DMSO/XX/< =-80C|Open |Buffy coa t plts pre p|5 units' , [LastUpd ateDate]=' 2016-07-27 11:17:06. 000', [Las tUpdateUse r]=' RED A CTED ' WHERE [B loodProduc tGuid]='81 7c961e-aa3 0-477a-9e6 6-d46e700b 1821' | |
| 10817 | UPDATE [db o].[BloodP roduct] SE T [Product Name]='Fro zen POOLED PLATELETS |DMSO/XX/< =-65C|ResL eu:<1E6|6 units', [L astUpdateD ate]='2016 -07-27 11: 17:06.000' , [LastUpd ateUser]=' RED A CTED ' WHERE [B loodProduc tGuid]='3a 1f3feb-6fb 2-4b4b-a9b e-d479315b 709e' | |
| 10818 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLT AFR Wash PAS-D LUKOPR 1C ', [LastUp dateDate]= '2016-07-2 7 11:17:06 .000', [La stUpdateUs er]=' RED A CTED ' WHERE [B loodProduc tGuid]='64 d6f9cf-89d 9-4e96-ab9 a-d483f2f9 2e87' | |
| 10819 | UPDATE [db o].[BloodP roduct] SE T [Product Name]='Aph eresis FRE SH FROZEN PLASMA|ACD -A/XX/<=-3 0C|Irradia ted|Frozen <=6h', [L astUpdateD ate]='2016 -07-27 11: 17:06.000' , [LastUpd ateUser]=' RED A CTED ' WHERE [B loodProduc tGuid]='30 027f88-86e 3-4d10-825 2-d48dbbe3 067b' | |
| 10820 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC AFR ACD-A>AS3 7C', [Last UpdateDate ]='2016-07 -27 11:17: 06.000', [ LastUpdate User]=' RED A CTED ' WHERE [B loodProduc tGuid]='34 8ea3ce-8d1 5-49b9-9f0 b-d4aa1b98 a45c' | |
| 10821 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC AFR ACD-A>AS3 LUKOPR 2C' , [LastUpd ateDate]=' 2016-07-27 11:17:06. 000', [Las tUpdateUse r]=' RED A CTED ' WHERE [B loodProduc tGuid]='c3 14ace0-68d 5-4df9-b22 7-d4c20257 8758' | |
| 10822 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC AFR Deg None O PN IRD 7C' , [LastUpd ateDate]=' 2016-07-27 11:17:06. 000', [Las tUpdateUse r]=' RED A CTED ' WHERE [B loodProduc tGuid]='6d 4e4f88-e0e 2-4349-a7f d-d4ce3984 9dc6' | |
| 10823 | UPDATE [db o].[BloodP roduct] SE T [Product Name]='FRE SH FROZEN PLASMA|0.5 CPD/XX/<= -30C|Not f or tx or m nf|Quar:>= 6m/reteste d', [LastU pdateDate] ='2016-07- 27 11:17:0 6.000', [L astUpdateU ser]=' RED A CTED ' WHERE [B loodProduc tGuid]='1c b2826d-8c5 5-461b-98e 0-d4d61eac 82e4' | |
| 10824 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLT AFR PAS-B LUKO PR 3C BacT est', [Las tUpdateDat e]='2016-0 7-27 11:17 :06.000', [LastUpdat eUser]=' RED A CTED ' WHERE [B loodProduc tGuid]='d4 60b64b-48c 9-485d-9b5 3-d4eb8ed2 d8ce' | |
| 10825 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLT AFR NaCit IRD LUKOPR PLS Red 2C', [LastUpdat eDate]='20 16-07-27 1 1:17:06.00 0', [LastU pdateUser] =' RED A CTED ' WHERE [B loodProduc tGuid]='f3 a0c583-b7b d-4d34-8bb 8-d4f0533a 5308' | |
| 10826 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC AFR CP2D>AS3 O PN IRD LUK OPR SR/PA 1C', [Last UpdateDate ]='2016-07 -27 11:17: 06.000', [ LastUpdate User]=' RED A CTED ' WHERE [B loodProduc tGuid]='bd c4bd6a-5c3 8-44a6-941 5-d4f47d4d 45ff' | |
| 10827 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLT AFR Wash NS IR D LUKOPR 1 C', [LastU pdateDate] ='2016-07- 27 11:17:0 6.000', [L astUpdateU ser]=' RED A CTED ' WHERE [B loodProduc tGuid]='98 e7e5d3-3be c-4ed2-81d 1-d4f8af28 47ea' | |
| 10828 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC AFR ACD-A>AS3 NMT LUKOPR 2C', [Las tUpdateDat e]='2016-0 7-27 11:17 :06.000', [LastUpdat eUser]=' RED A CTED ' WHERE [B loodProduc tGuid]='c2 9c631d-154 6-4d74-867 d-d50dcc2c abe8' | |
| 10829 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC AFR CP2D SR 1C ', [LastUp dateDate]= '2016-07-2 7 11:17:06 .000', [La stUpdateUs er]=' RED A CTED ' WHERE [B loodProduc tGuid]='02 9d322b-740 1-4af1-9d2 d-d518f506 8a96' | |
| 10830 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC AFR CP2D>AS3 L UKOPR 2C', [LastUpda teDate]='2 016-07-27 11:17:06.0 00', [Last UpdateUser ]=' RED A CTED ' WHERE [B loodProduc tGuid]='18 14bc7c-db2 9-4c17-8fc 1-d51bc43a 30bd' | |
| 10831 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='WB CPDA- 1 LUKOPR 2 C', [LastU pdateDate] ='2016-07- 27 11:17:0 6.000', [L astUpdateU ser]=' RED A CTED ' WHERE [B loodProduc tGuid]='76 851312-e85 a-406b-a2a 8-d5247aa0 5b3e' | |
| 10832 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLASMA A FR Thaw CP 2D IRD 3C' , [LastUpd ateDate]=' 2016-07-27 11:17:06. 000', [Las tUpdateUse r]=' RED A CTED ' WHERE [B loodProduc tGuid]='52 37a997-01b 1-4364-92c 7-d53b8d0a a4e0' | |
| 10833 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLT AFR ACD-A IRD LUKOPR 3C' , [LastUpd ateDate]=' 2016-07-27 11:17:06. 000', [Las tUpdateUse r]=' RED A CTED ' WHERE [B loodProduc tGuid]='40 8344ec-ac2 e-45db-a6a 8-d54326fc 6a32' | |
| 10834 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='FFP AFR Thaw ACD-A 1C', [Las tUpdateDat e]='2016-0 7-27 11:17 :06.000', [LastUpdat eUser]=' RED A CTED ' WHERE [B loodProduc tGuid]='d7 97beca-ed4 f-45fb-b8b c-d5582893 6ac2' | |
| 10835 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC AFR CPDA-1 OPN LUKOPR 2C ', [LastUp dateDate]= '2016-07-2 7 11:17:06 .000', [La stUpdateUs er]=' RED A CTED ' WHERE [B loodProduc tGuid]='d7 cfb5dc-b64 f-44b8-88c 4-d560f54a 7935' | |
| 10836 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='FFP AFR Thaw None IRD 6C', [ LastUpdate Date]='201 6-07-27 11 :17:06.000 ', [LastUp dateUser]= ' RED A CTED ' WHERE [B loodProduc tGuid]='a7 5c6fe4-d6b f-4322-901 1-d562b4ff b020' | |
| 10837 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC AFR Wash None OPN LUKOPR 2C', [Las tUpdateDat e]='2016-0 7-27 11:17 :06.000', [LastUpdat eUser]=' RED A CTED ' WHERE [B loodProduc tGuid]='e3 fbcd3e-e1f 3-4def-8b1 e-d569bcbb f0eb' | |
| 10838 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC Froz None OPN IRD 6C', [ LastUpdate Date]='201 6-07-27 11 :17:06.000 ', [LastUp dateUser]= ' RED A CTED ' WHERE [B loodProduc tGuid]='61 079668-1ec b-43cd-925 6-d5740228 01e2' | |
| 10839 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC AFR SAGM IRD L UKOPR SR/P A 1C', [La stUpdateDa te]='2016- 07-27 11:1 7:06.000', [LastUpda teUser]=' RED A CTED ' WHERE [B loodProduc tGuid]='a5 7b901a-f3b b-4e9d-ad5 7-d58f57ce 127c' | |
| 10840 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLT AFR Wash None OPN IRD LU KOPR 2C', [LastUpdat eDate]='20 16-07-27 1 1:17:06.00 0', [LastU pdateUser] =' RED A CTED ' WHERE [B loodProduc tGuid]='cc 3f0c5e-92e 2-45ea-b4a 7-d59a7746 a2dc' | |
| 10841 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='FFP AFR Thaw NaCit 5C QUAR', [LastUpda teDate]='2 016-07-27 11:17:06.0 00', [Last UpdateUser ]=' RED A CTED ' WHERE [B loodProduc tGuid]='50 4988fe-2ed 9-4a3f-90b 1-d5c3c110 497a' | |
| 10842 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC AFR CP2D>AS3 2 C', [LastU pdateDate] ='2016-07- 27 11:17:0 6.000', [L astUpdateU ser]=' RED A CTED ' WHERE [B loodProduc tGuid]='77 9ab27c-06a 9-4ba3-9a5 3-d5c4bce3 313f' | |
| 10843 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC AFR CP2D>AS3 M NFNI OPN 2 C', [LastU pdateDate] ='2016-07- 27 11:17:0 6.000', [L astUpdateU ser]=' RED A CTED ' WHERE [B loodProduc tGuid]='89 ec4190-970 4-4cea-935 4-d5cb57f6 226a' | |
| 10844 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLASMA A FR Thaw No ne 5C', [L astUpdateD ate]='2016 -07-27 11: 17:06.000' , [LastUpd ateUser]=' RED A CTED ' WHERE [B loodProduc tGuid]='94 463eab-90f 6-45bc-88e 6-d5d3792d f773' | |
| 10845 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLT AFR Wash NS IR D 2C', [La stUpdateDa te]='2016- 07-27 11:1 7:06.000', [LastUpda teUser]=' RED A CTED ' WHERE [B loodProduc tGuid]='b2 58684b-4ff 6-40a4-a27 7-d5d692b2 388c' | |
| 10846 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC AFR Wash None OPN IRD LU KOPR PA 1C ', [LastUp dateDate]= '2016-07-2 7 11:17:06 .000', [La stUpdateUs er]=' RED A CTED ' WHERE [B loodProduc tGuid]='c2 0da269-f1d f-44e3-b04 a-d5da63c2 3077' | |
| 10847 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC AFR CP2D>AS3 L UKOPR 7C', [LastUpda teDate]='2 016-07-27 11:17:06.0 00', [Last UpdateUser ]=' RED A CTED ' WHERE [B loodProduc tGuid]='1d c43e38-d63 6-4bb3-9e2 e-d5ef88b9 27d9' | |
| 10848 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC Froz None OPN 8C', [Last UpdateDate ]='2016-07 -27 11:17: 06.000', [ LastUpdate User]=' RED A CTED ' WHERE [B loodProduc tGuid]='98 655776-78d c-4410-817 d-d5fcb285 36f9' | |
| 10849 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC AFR CP2D>AS3 I RD 2C', [L astUpdateD ate]='2016 -07-27 11: 17:06.000' , [LastUpd ateUser]=' RED A CTED ' WHERE [B loodProduc tGuid]='ca 520500-62d 6-4271-958 a-d62bb6cf 82aa' | |
| 10850 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLASMA A FR ACD-A I RD 3C', [L astUpdateD ate]='2016 -07-27 11: 17:06.000' , [LastUpd ateUser]=' RED A CTED ' WHERE [B loodProduc tGuid]='6c a3d186-119 2-4080-830 0-d62c71e4 3445' | |
| 10851 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='FFP AFR NaCit 3C', [LastUpda teDate]='2 016-07-27 11:17:06.0 00', [Last UpdateUser ]=' RED A CTED ' WHERE [B loodProduc tGuid]='df 2402dd-ee8 6-4a15-a64 a-d632f0fd de5d' | |
| 10852 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='FFP AFR None IRD Q UAR 4C', [ LastUpdate Date]='201 6-07-27 11 :17:06.000 ', [LastUp dateUser]= ' RED A CTED ' WHERE [B loodProduc tGuid]='8d be3c2f-e64 0-42c4-90c e-d651bdce cd8c' | |
| 10853 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC CPDA -1 IRD LUK OPR 2C', [ LastUpdate Date]='201 6-07-27 11 :17:06.000 ', [LastUp dateUser]= ' RED A CTED ' WHERE [B loodProduc tGuid]='51 aa6207-f1c d-493b-839 a-d65254d9 49e8' | |
| 10854 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLT AFR ACD-A LUKO PR 2C BacM tr', [Last UpdateDate ]='2016-07 -27 11:17: 06.000', [ LastUpdate User]=' RED A CTED ' WHERE [B loodProduc tGuid]='a3 133975-6f3 6-47ad-a32 5-d66200c9 708f' | |
| 10855 | UPDATE [db o].[BloodP roduct] SE T [Product Name]='Fro zen RED BL OOD CELLS| Gly40%/200 mL/<=-65C| Open', [La stUpdateDa te]='2016- 07-27 11:1 7:06.000', [LastUpda teUser]=' RED A CTED ' WHERE [B loodProduc tGuid]='29 3b1903-879 8-4ffa-a9c 0-d664373e 6e0d' | |
| 10856 | UPDATE [db o].[BloodP roduct] SE T [Product Name]='Aph eresis FRE SH FROZEN PLASMA|ACD -B/XX/<=-6 5C|Irradia ted|>=200m L<400mL|Qu ar:>=6m/re tested', [ LastUpdate Date]='201 6-07-27 11 :17:06.000 ', [LastUp dateUser]= ' RED A CTED ' WHERE [B loodProduc tGuid]='9c 0b9411-27c 7-4133-874 6-d66f9238 a1ed' | |
| 10857 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC CPDA -1 IRD LUK OPR 7C', [ LastUpdate Date]='201 6-07-27 11 :17:06.000 ', [LastUp dateUser]= ' RED A CTED ' WHERE [B loodProduc tGuid]='ca 41163c-26b 1-438e-a97 4-d693556a 8240' | |
| 10858 | UPDATE [db o].[BloodP roduct] SE T [Product Name]='Aph eresis FRE SH FROZEN PLASMA|ACD -B/XX/<=-6 5C|Not for tx or mnf |Quar:>=6m /retested' , [LastUpd ateDate]=' 2016-07-27 11:17:06. 000', [Las tUpdateUse r]=' RED A CTED ' WHERE [B loodProduc tGuid]='3c 645895-f94 b-43e5-9d6 1-d6a60783 f97e' | |
| 10859 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC AFR Deg None O PN 1C', [L astUpdateD ate]='2016 -07-27 11: 17:06.000' , [LastUpd ateUser]=' RED A CTED ' WHERE [B loodProduc tGuid]='53 73b912-0e5 c-4367-9ef 2-d6a941bc 43a7' | |
| 10860 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC AFR ACD-A>AS3 LUKOPR 5C' , [LastUpd ateDate]=' 2016-07-27 11:17:06. 000', [Las tUpdateUse r]=' RED A CTED ' WHERE [B loodProduc tGuid]='12 70de73-105 6-4cb8-93a 6-d6b347ec fe68' | |
| 10861 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC AFR ACD-A SR 2 C', [LastU pdateDate] ='2016-07- 27 11:17:0 6.000', [L astUpdateU ser]=' RED A CTED ' WHERE [B loodProduc tGuid]='59 d6985c-b41 3-401b-9bf d-d6c0517b c5ea' | |
| 10862 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC AFR CPDA-1 IRD 2C', [Las tUpdateDat e]='2016-0 7-27 11:17 :06.000', [LastUpdat eUser]=' RED A CTED ' WHERE [B loodProduc tGuid]='b3 a48de9-d36 5-4a61-a6d e-d6c5faf4 b921' | |
| 10863 | UPDATE [db o].[BloodP roduct] SE T [Product Name]='PLA SMA|CPDA-1 /450mL/<=- 25C|Frozen >24h', [L astUpdateD ate]='2016 -07-27 11: 17:06.000' , [LastUpd ateUser]=' RED A CTED ' WHERE [B loodProduc tGuid]='c6 dd8349-e99 e-4f0c-82f a-d6dc2998 5fbf' | |
| 10864 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC Deg Rej None O PN IRD 1C' , [LastUpd ateDate]=' 2016-07-27 11:17:06. 000', [Las tUpdateUse r]=' RED A CTED ' WHERE [B loodProduc tGuid]='5d 47a899-002 c-44de-bce 1-d6dc4114 7a78' | |
| 10865 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLASMA T haw None 2 C', [LastU pdateDate] ='2016-07- 27 11:17:0 6.000', [L astUpdateU ser]=' RED A CTED ' WHERE [B loodProduc tGuid]='2f 2a58cb-730 a-40aa-9cf e-d6ebdf2f d483' | |
| 10866 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLT AFR ACD-A OPN IRD LUKOPR 1C', [Las tUpdateDat e]='2016-0 7-27 11:17 :06.000', [LastUpdat eUser]=' RED A CTED ' WHERE [B loodProduc tGuid]='3c 1d1f8e-14b a-48e2-b1e 3-d6fb724a 3b80' | |
| 10867 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC CPD> AS5 IRD LU KOPR 7C', [LastUpdat eDate]='20 16-07-27 1 1:17:06.00 0', [LastU pdateUser] =' RED A CTED ' WHERE [B loodProduc tGuid]='ef 5d345b-eb6 c-4d3d-81f 4-d7051a63 66b5' | |
| 10868 | UPDATE [db o].[BloodP roduct] SE T [RetireD ate]='2014 -10-20 00: 00:00.000' , [LastUpd ateDate]=' 2016-07-27 11:17:06. 000', [Las tUpdateUse r]=' RED A CTED ' WHERE [B loodProduc tGuid]='d1 235e8c-6ec d-48ae-ad7 9-d7052fee 3fd6' | |
| 10869 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC AFR Wash None OPN IRD 2C ', [LastUp dateDate]= '2016-07-2 7 11:17:06 .000', [La stUpdateUs er]=' RED A CTED ' WHERE [B loodProduc tGuid]='b8 ce8cb9-24d b-4c21-858 7-d7419900 a38b' | |
| 10870 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLT AFR ACD-A OPN IRD LUKOPR 1C', [Las tUpdateDat e]='2016-0 7-27 11:17 :06.000', [LastUpdat eUser]=' RED A CTED ' WHERE [B loodProduc tGuid]='aa 5fd412-37a 1-4982-8ba c-d7465c4b 35fc' | |
| 10871 | UPDATE [db o].[BloodP roduct] SE T [Product Name]='FRE SH FROZEN PLASMA|CPD /XX/<=-25C |For mnf:i njectable| Frozen <=2 4h|Quar:>= 112d/retes ted', [Las tUpdateDat e]='2016-0 7-27 11:17 :06.000', [LastUpdat eUser]=' RED A CTED ' WHERE [B loodProduc tGuid]='09 f6571e-8ea d-4696-9a1 1-d7692fe8 df3c' | |
| 10872 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC CPD> AS1 4C', [ LastUpdate Date]='201 6-07-27 11 :17:06.000 ', [LastUp dateUser]= ' RED A CTED ' WHERE [B loodProduc tGuid]='01 a468f1-f3f 2-4da5-96b 2-d79fc126 5067' | |
| 10873 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLT AFR ACD-A IRD LUKOPR 1C BacMtr', [ LastUpdate Date]='201 6-07-27 11 :17:06.000 ', [LastUp dateUser]= ' RED A CTED ' WHERE [B loodProduc tGuid]='43 56242d-86b f-4930-885 8-d7b56b5e 212b' | |
| 10874 | UPDATE [db o].[BloodP roduct] SE T [Product Name]='Aph eresis FRE SH FROZEN PLASMA|NaC itrate/XX/ <=-65C', [ LastUpdate Date]='201 6-07-27 11 :17:06.000 ', [LastUp dateUser]= ' RED A CTED ' WHERE [B loodProduc tGuid]='d9 89ecbc-5a1 c-4f72-baf 0-d7da867e 3778' | |
| 10875 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC AFR Wash None OPN LUKOPR 1C', [Las tUpdateDat e]='2016-0 7-27 11:17 :06.000', [LastUpdat eUser]=' RED A CTED ' WHERE [B loodProduc tGuid]='8b 78972a-586 d-4b77-967 6-d7daf032 33fa' | |
| 10876 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLT AFR ACD-A IRD 8C', [Last UpdateDate ]='2016-07 -27 11:17: 06.000', [ LastUpdate User]=' RED A CTED ' WHERE [B loodProduc tGuid]='dc bdf1d7-754 9-4fe1-966 3-d7eedb68 2662' | |
| 10877 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='FFP CPD 3C', [Last UpdateDate ]='2016-07 -27 11:17: 06.000', [ LastUpdate User]=' RED A CTED ' WHERE [B loodProduc tGuid]='9e bd0699-f7c 0-4812-8f5 8-d7f65129 0fb7' | |
| 10878 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC AFR Deg None O PN IRD 2C' , [LastUpd ateDate]=' 2016-07-27 11:17:06. 000', [Las tUpdateUse r]=' RED A CTED ' WHERE [B loodProduc tGuid]='aa 64b31d-49f d-4039-81b e-d82bd630 2eec' | |
| 10879 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC AFR ACD-A>AS3 OPN LUKOPR SUPRed 2C ', [LastUp dateDate]= '2016-07-2 7 11:17:06 .000', [La stUpdateUs er]=' RED A CTED ' WHERE [B loodProduc tGuid]='02 8f5f05-14e 2-46d6-9c5 2-d854c958 c03b' | |
| 10880 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='FFP None 8C', [Las tUpdateDat e]='2016-0 7-27 11:17 :06.000', [LastUpdat eUser]=' RED A CTED ' WHERE [B loodProduc tGuid]='0b 76b16c-e31 a-4fce-90e 8-d859dbf1 236c' | |
| 10881 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='FFP AFR Thaw ACD-A IRD 1C', [LastUpdat eDate]='20 16-07-27 1 1:17:06.00 0', [LastU pdateUser] =' RED A CTED ' WHERE [B loodProduc tGuid]='cc 6cd527-d9e 8-4d43-b8b 3-d85dd6a2 86d5' | |
| 10882 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC AFR Deg None O PN IRD LUK OPR 2C', [ LastUpdate Date]='201 6-07-27 11 :17:06.000 ', [LastUp dateUser]= ' RED A CTED ' WHERE [B loodProduc tGuid]='b0 bedad1-90f 7-46a5-99d 2-d871b238 dcdd' | |
| 10883 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC AFR CP2D>AS3 I RD 6C', [L astUpdateD ate]='2016 -07-27 11: 17:06.000' , [LastUpd ateUser]=' RED A CTED ' WHERE [B loodProduc tGuid]='e8 9014fd-c93 b-4f35-91a 2-d877879e 842e' | |
| 10884 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC CPD> AS1 IRD LU KOPR 6C', [LastUpdat eDate]='20 16-07-27 1 1:17:06.00 0', [LastU pdateUser] =' RED A CTED ' WHERE [B loodProduc tGuid]='bf 1d28dd-3e7 a-4913-b6e d-d8790252 5f9a' | |
| 10885 | UPDATE [db o].[BloodP roduct] SE T [Product Name]='Aph eresis FRE SH FROZEN PLASMA|NaC itrate/XX/ <=-30C|Res Leu:<1E6|> =200mL<400 mL|Frozen <=6h|1st c ontainer', [ProductS hortName]= 'FFP AFR N acit LUKOP R 1C', [La stUpdateDa te]='2016- 07-27 11:1 7:06.000', [LastUpda teUser]=' RED A CTED ' WHERE [B loodProduc tGuid]='39 9cff55-76c b-4445-951 4-d88f3907 5279' | |
| 10886 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLT AFR PAS-E LUKO PR 3C BacM tr', [Last UpdateDate ]='2016-07 -27 11:17: 06.000', [ LastUpdate User]=' RED A CTED ' WHERE [B loodProduc tGuid]='7e 845e05-b5e 1-41ef-81e 1-d898a744 2fec' | |
| 10887 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC AFR ACD-A>AS1 IRD LUKOPR SUPRed 2C ', [LastUp dateDate]= '2016-07-2 7 11:17:06 .000', [La stUpdateUs er]=' RED A CTED ' WHERE [B loodProduc tGuid]='b0 84e424-492 f-4dce-a90 1-d8aab637 e552' | |
| 10888 | UPDATE [db o].[BloodP roduct] SE T [Product Name]='Aph eresis FRE SH FROZEN PLASMA|ACD -A/XX/<=-6 5C|Fin Con :NS|Quar:> =6m/retest ed', [Last UpdateDate ]='2016-07 -27 11:17: 06.000', [ LastUpdate User]=' RED A CTED ' WHERE [B loodProduc tGuid]='d5 1b58ad-62a c-4cf0-876 f-d8ab209c 9f16' | |
| 10889 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLT AFR ACD-A LUKO PR 5C', [L astUpdateD ate]='2016 -07-27 11: 17:06.000' , [LastUpd ateUser]=' RED A CTED ' WHERE [B loodProduc tGuid]='f4 f2e5bd-76b a-48de-a64 6-d8c98cc3 77ee' | |
| 10890 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC Deg Rej None O PN IRD LUK OPR 2C', [ LastUpdate Date]='201 6-07-27 11 :17:06.000 ', [LastUp dateUser]= ' RED A CTED ' WHERE [B loodProduc tGuid]='3a ff0278-a75 e-481d-8c8 7-d8cbb586 f053' | |
| 10891 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLT AFR PAS-D IRD LUKOPR 3C' , [LastUpd ateDate]=' 2016-07-27 11:17:06. 000', [Las tUpdateUse r]=' RED A CTED ' WHERE [B loodProduc tGuid]='41 cde27e-195 d-4ba6-a02 2-d8ce335a 29af' | |
| 10892 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='FFP AFR NaCit 2C', [LastUpda teDate]='2 016-07-27 11:17:06.0 00', [Last UpdateUser ]=' RED A CTED ' WHERE [B loodProduc tGuid]='8f 0209d3-021 a-47ed-bfe 1-d8cfe8d1 c5b2' | |
| 10893 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='FFP AFR Thaw None IRD LUKOPR 3C', [Las tUpdateDat e]='2016-0 7-27 11:17 :06.000', [LastUpdat eUser]=' RED A CTED ' WHERE [B loodProduc tGuid]='1c e1ec0d-f53 a-4cc4-8d5 d-d8d8e13e 424c' | |
| 10894 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLT AFR NaCit NMT OPN 1CNA', [LastUpda teDate]='2 016-07-27 11:17:06.0 00', [Last UpdateUser ]=' RED A CTED ' WHERE [B loodProduc tGuid]='fa d60bee-422 e-4424-8de 7-d8ea7b2b 49b1' | |
| 10895 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='FFP CPD IRD 2C QUA R', [LastU pdateDate] ='2016-07- 27 11:17:0 6.000', [L astUpdateU ser]=' RED A CTED ' WHERE [B loodProduc tGuid]='a3 d5643a-f10 2-4cfb-ba0 5-d8fcd9bc 1d4e' | |
| 10896 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC AFR CP2D>AS3 N MT LUKOPR 1C', [Last UpdateDate ]='2016-07 -27 11:17: 06.000', [ LastUpdate User]=' RED A CTED ' WHERE [B loodProduc tGuid]='57 bdd185-8a3 3-40a5-bd5 d-d90c11cd 0ae5' | |
| 10897 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC AFR CPDA-1 LUK OPR 2C', [ LastUpdate Date]='201 6-07-27 11 :17:06.000 ', [LastUp dateUser]= ' RED A CTED ' WHERE [B loodProduc tGuid]='6e d3998a-ce4 b-4485-b9b c-d91768fa 8d9a' | |
| 10898 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLT AFR ACD-A IRD LUKOPR PLS Red 3C', [LastUpdat eDate]='20 16-07-27 1 1:17:06.00 0', [LastU pdateUser] =' RED A CTED ' WHERE [B loodProduc tGuid]='9d 7b9bb8-6ba 4-4715-acd 5-d92adbfc fab8' | |
| 10899 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC Froz None OPN IRD 7C', [ LastUpdate Date]='201 6-07-27 11 :17:06.000 ', [LastUp dateUser]= ' RED A CTED ' WHERE [B loodProduc tGuid]='c0 f8e8cc-fcf 5-4811-b58 f-d932f7a5 3892' | |
| 10900 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC AFR CP2D>AS3 L UKOPR SUPR ed 2C', [L astUpdateD ate]='2016 -07-27 11: 17:06.000' , [LastUpd ateUser]=' RED A CTED ' WHERE [B loodProduc tGuid]='6a a15239-9b5 4-455a-ba8 6-d944a970 abe1' | |
| 10901 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC AFR CP2D>AS3 L UKOPR 6C', [LastUpda teDate]='2 016-07-27 11:17:06.0 00', [Last UpdateUser ]=' RED A CTED ' WHERE [B loodProduc tGuid]='be f5cd20-55e 9-4309-b52 a-d9473fee b713' | |
| 10902 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC AFR CPDA-1 IRD SR 2C', [ LastUpdate Date]='201 6-07-27 11 :17:06.000 ', [LastUp dateUser]= ' RED A CTED ' WHERE [B loodProduc tGuid]='e4 936163-1d4 1-4292-a3e 9-d9549832 1e9e' | |
| 10903 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLT AFR ACD-A OPN LUKOPR 2C Pedi', [La stUpdateDa te]='2016- 07-27 11:1 7:06.000', [LastUpda teUser]=' RED A CTED ' WHERE [B loodProduc tGuid]='5d d51e84-4ac 8-4708-863 e-d957cbd0 e8df' | |
| 10904 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLT AFR ACD-A IRD PLS Red 2C ', [LastUp dateDate]= '2016-07-2 7 11:17:06 .000', [La stUpdateUs er]=' RED A CTED ' WHERE [B loodProduc tGuid]='03 e186a9-e72 2-4297-8df f-d95c8de0 f6d5' | |
| 10905 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLT AFR Wash NS LU KOPR 3C', [LastUpdat eDate]='20 16-07-27 1 1:17:06.00 0', [LastU pdateUser] =' RED A CTED ' WHERE [B loodProduc tGuid]='89 26e70b-957 2-435e-a65 6-d965ac8c fa25' | |
| 10906 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLASMA A FR Thaw AC D-A IRD 3C ', [LastUp dateDate]= '2016-07-2 7 11:17:06 .000', [La stUpdateUs er]=' RED A CTED ' WHERE [B loodProduc tGuid]='4b 01b447-1ec c-4f52-b88 d-d96cedab ca99' | |
| 10907 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLT AFR ACD-B IRD PLS Red 3C ', [LastUp dateDate]= '2016-07-2 7 11:17:06 .000', [La stUpdateUs er]=' RED A CTED ' WHERE [B loodProduc tGuid]='16 83068f-d68 5-411e-93a e-d988e145 8dd0' | |
| 10908 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLT AFR NS IRD LUK OPR 2C', [ LastUpdate Date]='201 6-07-27 11 :17:06.000 ', [LastUp dateUser]= ' RED A CTED ' WHERE [B loodProduc tGuid]='0a c742c7-a32 0-47e7-89e 4-d989dfed 1a45' | |
| 10909 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='WB CP2D IRD LUKOPR 7C', [Las tUpdateDat e]='2016-0 7-27 11:17 :06.000', [LastUpdat eUser]=' RED A CTED ' WHERE [B loodProduc tGuid]='61 25da4d-48a 0-4b8d-84d 9-d9937717 2c91' | |
| 10910 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC CPD> AS1 7C', [ LastUpdate Date]='201 6-07-27 11 :17:06.000 ', [LastUp dateUser]= ' RED A CTED ' WHERE [B loodProduc tGuid]='fa dfed0b-fb7 e-4ed6-ac1 6-d99dc901 2136' | |
| 10911 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLT AFR ACD-A 3C', [LastUpda teDate]='2 016-07-27 11:17:06.0 00', [Last UpdateUser ]=' RED A CTED ' WHERE [B loodProduc tGuid]='a9 44999b-f4e f-41d8-b3d 8-d9a0a89f 4a82' | |
| 10912 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLT AFR ACD-A OPN PLS Red 1C ', [LastUp dateDate]= '2016-07-2 7 11:17:06 .000', [La stUpdateUs er]=' RED A CTED ' WHERE [B loodProduc tGuid]='50 2ed116-bff 3-4f5b-a79 7-d9abc03c c179' | |
| 10913 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC AFR Wash None OPN LUKOPR 2C', [Las tUpdateDat e]='2016-0 7-27 11:17 :06.000', [LastUpdat eUser]=' RED A CTED ' WHERE [B loodProduc tGuid]='e8 bfcf6e-92e 1-4742-b8b 2-d9c15ac5 af82' | |
| 10914 | UPDATE [db o].[BloodP roduct] SE T [Product Name]='Fro zen Aphere sis PLATEL ETS|DMSO/X X/<=-30C|O pen|ResLeu :<1E6|1st container| Psoralen-t reated', [ ProductSho rtName]='P LT AFR Fro z DMSO OPN LUKOPR Ps oraln 1C', [LastUpda teDate]='2 016-07-27 11:17:06.0 00', [Last UpdateUser ]=' RED A CTED ' WHERE [B loodProduc tGuid]='b5 aec08b-1b1 3-4075-b47 b-d9d80087 83c8' | |
| 10915 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC AFR CP2D>AS3 I RD 7C', [L astUpdateD ate]='2016 -07-27 11: 17:06.000' , [LastUpd ateUser]=' RED A CTED ' WHERE [B loodProduc tGuid]='29 74c528-527 1-403b-b6d 0-d9ddd0fe ae30' | |
| 10916 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC CPD IRD 5C', [ LastUpdate Date]='201 6-07-27 11 :17:06.000 ', [LastUp dateUser]= ' RED A CTED ' WHERE [B loodProduc tGuid]='f8 9fb596-e01 1-430f-b0c f-d9e1f612 94e2' | |
| 10917 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLT AFR ACD-A PLS Red 1CNA', [LastUpda teDate]='2 016-07-27 11:17:06.0 00', [Last UpdateUser ]=' RED A CTED ' WHERE [B loodProduc tGuid]='7a 3ec10a-7ae c-4e19-8a3 b-da02bf80 2462' | |
| 10918 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLT AFR Froz ACD-A MNFI LUKO PR 1C', [L astUpdateD ate]='2016 -07-27 11: 17:06.000' , [LastUpd ateUser]=' RED A CTED ' WHERE [B loodProduc tGuid]='d3 a1083a-ed9 7-4638-833 7-da0543c4 fc50' | |
| 10919 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLT AFR Froz ACD-A MNFI IRD LUKOPR 2C' , [LastUpd ateDate]=' 2016-07-27 11:17:06. 000', [Las tUpdateUse r]=' RED A CTED ' WHERE [B loodProduc tGuid]='9e c9b1bf-e9e 9-4983-a4e f-da1041ac cb19' | |
| 10920 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLT AFR ACD-A>PAS- F OPN IRD LUKOPR 1C' , [LastUpd ateDate]=' 2016-07-27 11:17:06. 000', [Las tUpdateUse r]=' RED A CTED ' WHERE [B loodProduc tGuid]='ca 5ba4c9-4fb 0-43b3-ad3 a-da11d2a4 ad91' | |
| 10921 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC AFR ACD-A>AS3 8C', [Last UpdateDate ]='2016-07 -27 11:17: 06.000', [ LastUpdate User]=' RED A CTED ' WHERE [B loodProduc tGuid]='db 4cea5b-c8f 7-4d18-b79 c-da16b32c 1c6e' | |
| 10922 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='FFP AFR None IRD L UKOPR 8C', [LastUpda teDate]='2 016-07-27 11:17:06.0 00', [Last UpdateUser ]=' RED A CTED ' WHERE [B loodProduc tGuid]='64 4d489c-465 5-43ac-a4e 8-da18fa45 fd09' | |
| 10923 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLASMA A FR Thaw AC D-A IRD 3C ', [LastUp dateDate]= '2016-07-2 7 11:17:06 .000', [La stUpdateUs er]=' RED A CTED ' WHERE [B loodProduc tGuid]='3c dc7ab1-567 c-47e7-bab 6-da3acdf8 7bb1' | |
| 10924 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC CPDA -1 LUKOPR 7C', [Last UpdateDate ]='2016-07 -27 11:17: 06.000', [ LastUpdate User]=' RED A CTED ' WHERE [B loodProduc tGuid]='70 6fcb8a-126 2-4b58-a95 9-da3eba27 2701' | |
| 10925 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLT AFR ACD-B 3C', [LastUpda teDate]='2 016-07-27 11:17:06.0 00', [Last UpdateUser ]=' RED A CTED ' WHERE [B loodProduc tGuid]='2e 32973b-c98 e-4c7c-818 6-da4c3c60 f0e3' | |
| 10926 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLASMA A FR Thaw AC D-A IRD 1C ', [LastUp dateDate]= '2016-07-2 7 11:17:06 .000', [La stUpdateUs er]=' RED A CTED ' WHERE [B loodProduc tGuid]='4d 9a9e5e-5ef 2-42ec-ac0 6-da5747e4 657e' | |
| 10927 | UPDATE [db o].[BloodP roduct] SE T [Product Name]='CRY OPRECIPITA TE|CPD/450 mL/<=-25C| Quar:>=112 d/retested ', [LastUp dateDate]= '2016-07-2 7 11:17:06 .000', [La stUpdateUs er]=' RED A CTED ' WHERE [B loodProduc tGuid]='8b 6bf26b-035 3-4573-80b 8-da83d3b8 4487' | |
| 10928 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='FFP AFR None 1C', [LastUpdat eDate]='20 16-07-27 1 1:17:06.00 0', [LastU pdateUser] =' RED A CTED ' WHERE [B loodProduc tGuid]='7c cc1d48-210 d-4b0e-aa6 c-daae5932 c438' | |
| 10929 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='FFP Thaw None 6C', [LastUpda teDate]='2 016-07-27 11:17:06.0 00', [Last UpdateUser ]=' RED A CTED ' WHERE [B loodProduc tGuid]='b2 77063f-ed0 d-4ec2-9d5 5-dabbbbaf dd93' | |
| 10930 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLT AFR Froz ACD-A MNFRNI LU KOPR 3C', [LastUpdat eDate]='20 16-07-27 1 1:17:06.00 0', [LastU pdateUser] =' RED A CTED ' WHERE [B loodProduc tGuid]='aa 69bc76-c83 1-48e0-a00 e-daeda0b6 079b' | |
| 10931 | UPDATE [db o].[BloodP roduct] SE T [Product Name]='PLA SMA|CPD/45 0mL/<=-30C |For mnf:i njectable| Frozen <=6 h', [LastU pdateDate] ='2016-07- 27 11:17:0 6.000', [L astUpdateU ser]=' RED A CTED ' WHERE [B loodProduc tGuid]='f3 01acae-c1e 0-423f-b02 8-db20cff7 29cf' | |
| 10932 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLT AFR NaCit OPN PLS Red 2C ', [LastUp dateDate]= '2016-07-2 7 11:17:06 .000', [La stUpdateUs er]=' RED A CTED ' WHERE [B loodProduc tGuid]='12 784e86-667 d-4e60-848 4-db2d20e2 939d' | |
| 10933 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC CPD IRD 1C', [ LastUpdate Date]='201 6-07-27 11 :17:06.000 ', [LastUp dateUser]= ' RED A CTED ' WHERE [B loodProduc tGuid]='13 6e7765-915 f-4717-824 6-db3069c4 64f5' | |
| 10934 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC Deg None OPN I RD LUKOPR 1C', [Last UpdateDate ]='2016-07 -27 11:17: 06.000', [ LastUpdate User]=' RED A CTED ' WHERE [B loodProduc tGuid]='31 b24cf4-a86 d-4c75-808 0-db30e044 b6f2' | |
| 10935 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC CPD> AS5 7C', [ LastUpdate Date]='201 6-07-27 11 :17:06.000 ', [LastUp dateUser]= ' RED A CTED ' WHERE [B loodProduc tGuid]='6d 61383e-735 8-42d1-a05 4-db33d67e 98e0' | |
| 10936 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC AFR CP2D>AS3 O PN IRD SR/ PA 1C', [L astUpdateD ate]='2016 -07-27 11: 17:06.000' , [LastUpd ateUser]=' RED A CTED ' WHERE [B loodProduc tGuid]='48 4f2f2e-c62 0-4969-be2 9-db4dc4df 7fc5' | |
| 10937 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLT AFR Wash None IRD LUKOPR 2C', [Las tUpdateDat e]='2016-0 7-27 11:17 :06.000', [LastUpdat eUser]=' RED A CTED ' WHERE [B loodProduc tGuid]='69 d38ed5-732 a-4b27-9d1 0-db51f415 a2c1' | |
| 10938 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC AFR ACD-A>AS3 IRD LUKOPR 2C', [Las tUpdateDat e]='2016-0 7-27 11:17 :06.000', [LastUpdat eUser]=' RED A CTED ' WHERE [B loodProduc tGuid]='13 845ce8-348 2-4f72-9fb 5-db65baed 9c7e' | |
| 10939 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLT AFR ACD-A 3C B acMtr', [L astUpdateD ate]='2016 -07-27 11: 17:06.000' , [LastUpd ateUser]=' RED A CTED ' WHERE [B loodProduc tGuid]='96 f941a9-2f1 5-404b-b2c 8-db6b0a77 37f8' | |
| 10940 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='FFP None IRD QUAR 2C', [Last UpdateDate ]='2016-07 -27 11:17: 06.000', [ LastUpdate User]=' RED A CTED ' WHERE [B loodProduc tGuid]='df 65c566-6d5 1-4955-884 3-db86ec05 cf6d' | |
| 10941 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLT AFR ACD-A LUKO PR 8C BacM tr', [Last UpdateDate ]='2016-07 -27 11:17: 06.000', [ LastUpdate User]=' RED A CTED ' WHERE [B loodProduc tGuid]='a1 2e2d39-065 0-4aa5-980 d-dba62bb3 e680' | |
| 10942 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC CP2D >AS3 LUKOP R 1C', [La stUpdateDa te]='2016- 07-27 11:1 7:06.000', [LastUpda teUser]=' RED A CTED ' WHERE [B loodProduc tGuid]='53 c0b4f2-3b2 c-4180-b41 4-dbf832a5 3124' | |
| 10943 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLT AFR ACD-A NMT LUKOPR 3C' , [LastUpd ateDate]=' 2016-07-27 11:17:06. 000', [Las tUpdateUse r]=' RED A CTED ' WHERE [B loodProduc tGuid]='c3 946848-c75 0-4413-84e 5-dbfa3e74 3527' | |
| 10944 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLT AFR Wash NS IR D LUKOPR 1 C', [LastU pdateDate] ='2016-07- 27 11:17:0 6.000', [L astUpdateU ser]=' RED A CTED ' WHERE [B loodProduc tGuid]='73 eebb74-aea b-4dbc-914 9-dc17299e f3a4' | |
| 10945 | UPDATE [db o].[BloodP roduct] SE T [Product Name]='POO LED PLASMA |CPD/450mL /<=-30C|2 units|Psor alen-treat ed', [Prod uctShortNa me]='PLASM A Pool CPD 2U Psoral n', [LastU pdateDate] ='2016-07- 27 11:17:0 6.000', [L astUpdateU ser]=' RED A CTED ' WHERE [B loodProduc tGuid]='2a c652b8-314 8-4d63-990 b-dc309784 c01c' | |
| 10946 | UPDATE [db o].[BloodP roduct] SE T [Product Name]='FRE SH FROZEN PLASMA|CPD /450mL/<=- 30C|For mn f:injectab le|Frozen <=8h', [La stUpdateDa te]='2016- 07-27 11:1 7:06.000', [LastUpda teUser]=' RED A CTED ' WHERE [B loodProduc tGuid]='b9 d549aa-f47 f-4a1b-964 a-dc323cd6 5651' | |
| 10947 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLT AFR ACD-A LUKO PR 2C', [L astUpdateD ate]='2016 -07-27 11: 17:06.000' , [LastUpd ateUser]=' RED A CTED ' WHERE [B loodProduc tGuid]='84 d820ea-96c e-42b0-9a6 7-dc342523 843c' | |
| 10948 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC AFR CPDA-1 IRD LUKOPR SR 2C', [Las tUpdateDat e]='2016-0 7-27 11:17 :06.000', [LastUpdat eUser]=' RED A CTED ' WHERE [B loodProduc tGuid]='b1 843340-733 a-4a65-bc5 7-dc814c05 5088' | |
| 10949 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLT AFR ACD-A OPN IRD LUKOPR PLS Red 2 C', [LastU pdateDate] ='2016-07- 27 11:17:0 6.000', [L astUpdateU ser]=' RED A CTED ' WHERE [B loodProduc tGuid]='c1 07d210-2a9 7-438c-b5b 9-dc8a33a3 0787' | |
| 10950 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='FFP AFR Thaw ACD-A LUKOPR 7C ', [LastUp dateDate]= '2016-07-2 7 11:17:06 .000', [La stUpdateUs er]=' RED A CTED ' WHERE [B loodProduc tGuid]='2e aecd73-c6a 3-4ad7-a9b 9-dc8c5edf a97c' | |
| 10951 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLT AFR ACD-B OPN IRD LUKOPR 1CNA', [L astUpdateD ate]='2016 -07-27 11: 17:06.000' , [LastUpd ateUser]=' RED A CTED ' WHERE [B loodProduc tGuid]='4c a14047-966 e-4c75-b3b 7-dc975b71 b624' | |
| 10952 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC AFR CPD-50>SAG M IRD LUKO PR 1C', [L astUpdateD ate]='2016 -07-27 11: 17:06.000' , [LastUpd ateUser]=' RED A CTED ' WHERE [B loodProduc tGuid]='7e ae9b76-e3d 2-4fb8-821 f-dc9d3e56 1e2c' | |
| 10953 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC AFR Deg None O PN IRD 4C' , [LastUpd ateDate]=' 2016-07-27 11:17:06. 000', [Las tUpdateUse r]=' RED A CTED ' WHERE [B loodProduc tGuid]='7a 0b68b1-f8e 6-4629-963 1-dcaf618f 598e' | |
| 10954 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLT AFR PAS-B IRD LUKOPR 3C BacMtr', [ LastUpdate Date]='201 6-07-27 11 :17:06.000 ', [LastUp dateUser]= ' RED A CTED ' WHERE [B loodProduc tGuid]='ac bf11e7-7d7 8-4970-b34 2-dcc82688 1510' | |
| 10955 | UPDATE [db o].[BloodP roduct] SE T [Product Name]='Aph eresis FRE SH FROZEN PLASMA|ACD -B/XX/<=-3 0C|Fin Con :NS', [Las tUpdateDat e]='2016-0 7-27 11:17 :06.000', [LastUpdat eUser]=' RED A CTED ' WHERE [B loodProduc tGuid]='f5 4f6718-569 8-438d-a59 5-dcdc96cf df26' | |
| 10956 | UPDATE [db o].[BloodP roduct] SE T [Product Name]='Aph eresis FRE SH FROZEN PLASMA|NaC itrate/XX/ <=-65C|>=4 00mL<600mL ', [LastUp dateDate]= '2016-07-2 7 11:17:06 .000', [La stUpdateUs er]=' RED A CTED ' WHERE [B loodProduc tGuid]='d1 75366f-977 5-477b-ba7 0-dcf7d1a8 4922' | |
| 10957 | UPDATE [db o].[BloodP roduct] SE T [Product Name]='FRE SH FROZEN PLASMA|CPD /450mL/<=- 25C|Frozen <=6h|Quar :>=112d/re tested', [ LastUpdate Date]='201 6-07-27 11 :17:06.000 ', [LastUp dateUser]= ' RED A CTED ' WHERE [B loodProduc tGuid]='a8 8d9a22-6ea 1-4733-aab 5-dd069828 6a9b' | |
| 10958 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='FFP AFR ACD-A LUKO PR 3C', [L astUpdateD ate]='2016 -07-27 11: 17:06.000' , [LastUpd ateUser]=' RED A CTED ' WHERE [B loodProduc tGuid]='19 8d0929-2a4 2-46f7-b84 1-dd0b8633 29c6' | |
| 10959 | UPDATE [db o].[BloodP roduct] SE T [Product Name]='CRY OPRECIPITA TE|None/XX /<=-30C|Ir radiated', [LastUpda teDate]='2 016-07-27 11:17:06.0 00', [Last UpdateUser ]=' RED A CTED ' WHERE [B loodProduc tGuid]='9a 143677-a36 8-43cc-b36 4-dd2cf42b 733c' | |
| 10960 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLT AFR ACD-A OPN IRD LUKOPR PLS Red/S AL Add 1C' , [LastUpd ateDate]=' 2016-07-27 11:17:06. 000', [Las tUpdateUse r]=' RED A CTED ' WHERE [B loodProduc tGuid]='d2 423ec0-9d8 e-4e7a-bc9 3-dd2fae3c d9fb' | |
| 10961 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLT AFR ACD-A IRD LUKOPR 7C' , [LastUpd ateDate]=' 2016-07-27 11:17:06. 000', [Las tUpdateUse r]=' RED A CTED ' WHERE [B loodProduc tGuid]='52 572b43-103 9-4e93-b12 3-dd2fefbd abfb' | |
| 10962 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLT AFR Wash None OPN 2C', [ LastUpdate Date]='201 6-07-27 11 :17:06.000 ', [LastUp dateUser]= ' RED A CTED ' WHERE [B loodProduc tGuid]='2f 9835f2-86c b-4117-ae2 1-dd56e59b b390' | |
| 10963 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC AFR CP2D OPN I RD LUKOPR 2C', [Last UpdateDate ]='2016-07 -27 11:17: 06.000', [ LastUpdate User]=' RED A CTED ' WHERE [B loodProduc tGuid]='c3 362029-32c 8-4076-84d 0-dd63c924 4aef' | |
| 10964 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLT AFR ACD-B OPN LUKOPR PLS Red 2CNA' , [LastUpd ateDate]=' 2016-07-27 11:17:06. 000', [Las tUpdateUse r]=' RED A CTED ' WHERE [B loodProduc tGuid]='52 41ca26-4d6 5-405e-9dd 0-dd8e6629 757b' | |
| 10965 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLT AFR ACD-A IRD LUKOPR 1C' , [LastUpd ateDate]=' 2016-07-27 11:17:06. 000', [Las tUpdateUse r]=' RED A CTED ' WHERE [B loodProduc tGuid]='d2 702410-2d0 f-4cc8-a5a f-dda80072 63cb' | |
| 10966 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC AFR ACD-A>AS1 4C', [Last UpdateDate ]='2016-07 -27 11:17: 06.000', [ LastUpdate User]=' RED A CTED ' WHERE [B loodProduc tGuid]='58 179783-4cc 1-4e1f-8df e-ddabd439 b856' | |
| 10967 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLT AFR ACD-B PLS Red 2C', [ LastUpdate Date]='201 6-07-27 11 :17:06.000 ', [LastUp dateUser]= ' RED A CTED ' WHERE [B loodProduc tGuid]='db a02e44-539 f-46ff-bc9 d-ddb7fcfe c12c' | |
| 10968 | UPDATE [db o].[BloodP roduct] SE T [Product Name]='FRE SH FROZEN PLASMA|CPD A-1/XX/<=- 65C|Irradi ated|3rd c ontainer', [ProductS hortName]= 'FFP CPDA- 1 IRD 3C', [LastUpda teDate]='2 016-07-27 11:17:06.0 00', [Last UpdateUser ]=' RED A CTED ' WHERE [B loodProduc tGuid]='87 56fc5d-b18 4-4da4-840 d-ddb9befc 2b7d' | |
| 10969 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLT AFR Wash None OPN IRD LU KOPR SUPRe d 1C', [La stUpdateDa te]='2016- 07-27 11:1 7:06.000', [LastUpda teUser]=' RED A CTED ' WHERE [B loodProduc tGuid]='94 4b8765-cbb 3-4ed5-b9e 5-ddc43b0e ee4e' | |
| 10970 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC CPDA -1 IRD LUK OPR 4C', [ LastUpdate Date]='201 6-07-27 11 :17:06.000 ', [LastUp dateUser]= ' RED A CTED ' WHERE [B loodProduc tGuid]='3f 4ab255-2a1 f-4b08-841 e-ddddcc98 0e31' | |
| 10971 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC AFR CP2D>AS3 L UKOPR 2C', [LastUpda teDate]='2 016-07-27 11:17:06.0 00', [Last UpdateUser ]=' RED A CTED ' WHERE [B loodProduc tGuid]='ba c47307-374 5-447f-b91 7-ddfe3c9d e520' | |
| 10972 | UPDATE [db o].[BloodP roduct] SE T [Product Name]='Aph eresis FRE SH FROZEN PLASMA|ACD -B/XX/<=-2 5C|Irradia ted|>=600m L|Quar:>=6 m/retested ', [LastUp dateDate]= '2016-07-2 7 11:17:06 .000', [La stUpdateUs er]=' RED A CTED ' WHERE [B loodProduc tGuid]='8f 5057fa-d75 a-48c1-846 e-de0ac342 2b62' | |
| 10973 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLT AFR ACD-A OPN IRD 2C', [ LastUpdate Date]='201 6-07-27 11 :17:06.000 ', [LastUp dateUser]= ' RED A CTED ' WHERE [B loodProduc tGuid]='22 02242d-8f0 2-42a7-ac8 c-de10b88a 24ad' | |
| 10974 | UPDATE [db o].[BloodP roduct] SE T [Product Name]='FRE SH FROZEN PLASMA|CPD A-1/XX/<=- 30C|ResLeu :<5E6', [L astUpdateD ate]='2016 -07-27 11: 17:06.000' , [LastUpd ateUser]=' RED A CTED ' WHERE [B loodProduc tGuid]='f9 5cc2f3-c26 4-4817-a4d d-de11f48f 4b41' | |
| 10975 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLT AFR None OPN P LS Red/ALB Add 2C', [LastUpdat eDate]='20 16-07-27 1 1:17:06.00 0', [LastU pdateUser] =' RED A CTED ' WHERE [B loodProduc tGuid]='1e d08951-e1b c-4936-afc c-de13e323 d68d' | |
| 10976 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC AFR Wash None OPN IRD PA 2C', [Las tUpdateDat e]='2016-0 7-27 11:17 :06.000', [LastUpdat eUser]=' RED A CTED ' WHERE [B loodProduc tGuid]='ea 9ae0ab-f4e 4-4f29-822 0-de19135a 6437' | |
| 10977 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='FFP None 2C', [Las tUpdateDat e]='2016-0 7-27 11:17 :06.000', [LastUpdat eUser]=' RED A CTED ' WHERE [B loodProduc tGuid]='a2 cc3f88-b18 b-4af3-929 b-de21259a f649' | |
| 10978 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='WB CPDA- 1 LUKOPR 3 C', [LastU pdateDate] ='2016-07- 27 11:17:0 6.000', [L astUpdateU ser]=' RED A CTED ' WHERE [B loodProduc tGuid]='af d90a91-3df 9-4c05-a4c 4-de33c001 f8b2' | |
| 10979 | UPDATE [db o].[BloodP roduct] SE T [Product Name]='CRY OPRECIPITA TE|CPDA-1/ 450mL/<=-2 5C|Ribofla vin-treate d', [LastU pdateDate] ='2016-07- 27 11:17:0 6.000', [L astUpdateU ser]=' RED A CTED ' WHERE [B loodProduc tGuid]='55 2ca0b0-cc4 b-44a5-9d8 e-de37a4f5 b456' | |
| 10980 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLT AFR PAS-B LUKO PR SUPRed 3C', [Last UpdateDate ]='2016-07 -27 11:17: 06.000', [ LastUpdate User]=' RED A CTED ' WHERE [B loodProduc tGuid]='33 a9f2de-8c0 d-4192-a81 4-de37cb79 c5c6' | |
| 10981 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC AFR CP2D-AS3 I RD LUKOPR 2C', [Last UpdateDate ]='2016-07 -27 11:17: 06.000', [ LastUpdate User]=' RED A CTED ' WHERE [B loodProduc tGuid]='d6 31f52d-636 1-4042-88b 5-de4b956a 1479' | |
| 10982 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC AFR ACD-A>AS1 OPN IRD LU KOPR ALB A dd 2C', [L astUpdateD ate]='2016 -07-27 11: 17:06.000' , [LastUpd ateUser]=' RED A CTED ' WHERE [B loodProduc tGuid]='8d 96366b-e0f a-4c02-9bc b-de4e2a87 1cdf' | |
| 10983 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC AFR ACD-A OPN IRD LUKOPR SR 1C', [ LastUpdate Date]='201 6-07-27 11 :17:06.000 ', [LastUp dateUser]= ' RED A CTED ' WHERE [B loodProduc tGuid]='39 81ddb0-064 7-4cad-91a 3-de5b00ee 54cc' | |
| 10984 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='FFP AFR None 8C', [LastUpdat eDate]='20 16-07-27 1 1:17:06.00 0', [LastU pdateUser] =' RED A CTED ' WHERE [B loodProduc tGuid]='ac 1681ea-ced a-4b1a-b89 9-de64a6d4 e66b' | |
| 10985 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC AFR CP2D>AS3 O PN SR 1C', [LastUpda teDate]='2 016-07-27 11:17:06.0 00', [Last UpdateUser ]=' RED A CTED ' WHERE [B loodProduc tGuid]='4f 49714b-7a8 4-4efd-b50 f-de65726f 4903' | |
| 10986 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLT AFR PAS-E LUKO PR 1C', [L astUpdateD ate]='2016 -07-27 11: 17:06.000' , [LastUpd ateUser]=' RED A CTED ' WHERE [B loodProduc tGuid]='06 64e43c-0d4 9-4426-9a4 a-de70775e a57f' | |
| 10987 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC AFR ACD-A SR 1 C', [LastU pdateDate] ='2016-07- 27 11:17:0 6.000', [L astUpdateU ser]=' RED A CTED ' WHERE [B loodProduc tGuid]='39 3f999c-a17 1-4058-8e2 d-de71a85f f455' | |
| 10988 | UPDATE [db o].[BloodP roduct] SE T [Product Name]='Fro zen POOLED PLATELETS |DMSO/XX/< =-80C|Open |ResLeu:<1 E6|3 units ', [LastUp dateDate]= '2016-07-2 7 11:17:06 .000', [La stUpdateUs er]=' RED A CTED ' WHERE [B loodProduc tGuid]='c3 069684-c2e f-46a1-89d 4-de886e07 fffa' | |
| 10989 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC AFR CPDA-1 6C' , [LastUpd ateDate]=' 2016-07-27 11:17:06. 000', [Las tUpdateUse r]=' RED A CTED ' WHERE [B loodProduc tGuid]='0f 41cacb-f12 9-4671-92f 7-de8fbe66 3847' | |
| 10990 | UPDATE [db o].[BloodP roduct] SE T [Product Name]='Aph eresis FRE SH FROZEN PLASMA|NaC itrate/XX/ <=-30C|Res Leu:<1E6|> =200mL<400 mL|Frozen <=6h|3rd c ontainer', [ProductS hortName]= 'FFP AFR N acit LUKOP R 3C', [La stUpdateDa te]='2016- 07-27 11:1 7:06.000', [LastUpda teUser]=' RED A CTED ' WHERE [B loodProduc tGuid]='15 735382-648 1-4869-92e c-dec4e1d2 cbc4' | |
| 10991 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC AFR ACD-A>AS3 OPN IRD LU KOPR 1C', [LastUpdat eDate]='20 16-07-27 1 1:17:06.00 0', [LastU pdateUser] =' RED A CTED ' WHERE [B loodProduc tGuid]='86 c6198e-8f6 b-458a-b67 a-dee035c4 d22f' | |
| 10992 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC AFR ACD-A NMT OPN 2C', [ LastUpdate Date]='201 6-07-27 11 :17:06.000 ', [LastUp dateUser]= ' RED A CTED ' WHERE [B loodProduc tGuid]='31 027751-c1e e-4bb2-85a d-dee31494 66a1' | |
| 10993 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC AFR Froz None OPN 4C', [ LastUpdate Date]='201 6-07-27 11 :17:06.000 ', [LastUp dateUser]= ' RED A CTED ' WHERE [B loodProduc tGuid]='8f 924e4f-626 9-4e3a-af9 9-deed9bf0 a9b8' | |
| 10994 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLT AFR ACD-A OPN LUKOPR 3C' , [LastUpd ateDate]=' 2016-07-27 11:17:06. 000', [Las tUpdateUse r]=' RED A CTED ' WHERE [B loodProduc tGuid]='86 bc7450-209 8-49a3-a7f b-defb9aca 29ab' | |
| 10995 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC AFR ACD-A IRD 1C', [Last UpdateDate ]='2016-07 -27 11:17: 06.000', [ LastUpdate User]=' RED A CTED ' WHERE [B loodProduc tGuid]='01 fb37f8-2b7 5-4e13-870 d-df092bf2 9c21' | |
| 10996 | UPDATE [db o].[BloodP roduct] SE T [Product Name]='Fro zen Aphere sis RED BL OOD CELLS| None/XX/<= -65C|Open| Irradiated |ResLeu:<5 E6', [Last UpdateDate ]='2016-07 -27 11:17: 06.000', [ LastUpdate User]=' RED A CTED ' WHERE [B loodProduc tGuid]='9a d19782-353 1-4a09-99c 8-df1e5632 8c39' | |
| 10997 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLT AFR ACD-A OPN PLS Red 4C ', [LastUp dateDate]= '2016-07-2 7 11:17:06 .000', [La stUpdateUs er]=' RED A CTED ' WHERE [B loodProduc tGuid]='50 2f24bf-1c9 e-49dd-989 3-df372773 43e6' | |
| 10998 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLT AFR ACD-A IRD LUKOPR 1C BacMtr', [ LastUpdate Date]='201 6-07-27 11 :17:06.000 ', [LastUp dateUser]= ' RED A CTED ' WHERE [B loodProduc tGuid]='29 251733-f79 9-4830-a1f f-df42abe2 9229' | |
| 10999 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC AFR Wash None OPN IRD PA 1C', [Las tUpdateDat e]='2016-0 7-27 11:17 :06.000', [LastUpdat eUser]=' RED A CTED ' WHERE [B loodProduc tGuid]='0f 92e35d-ec8 5-4ac1-985 3-df4a9629 8120' | |
| 11000 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLT AFR ACD-A 2C', [LastUpda teDate]='2 016-07-27 11:17:06.0 00', [Last UpdateUser ]=' RED A CTED ' WHERE [B loodProduc tGuid]='d0 866eb2-705 1-4102-aad 7-df6c461b 5bf5' | |
| 11001 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLT AFR ACD-A OPN LUKOPR PLS Red 1C', [LastUpdat eDate]='20 16-07-27 1 1:17:06.00 0', [LastU pdateUser] =' RED A CTED ' WHERE [B loodProduc tGuid]='4a b05e66-238 e-408a-bf4 e-df8a0f16 bb73' | |
| 11002 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='WB CPD I RD LUKOPR 1C', [Last UpdateDate ]='2016-07 -27 11:17: 06.000', [ LastUpdate User]=' RED A CTED ' WHERE [B loodProduc tGuid]='c0 534e9e-3d9 6-4cfc-8a0 d-df922ecf b08e' | |
| 11003 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLT AFR Wash None OPN LUKOPR 2C', [Las tUpdateDat e]='2016-0 7-27 11:17 :06.000', [LastUpdat eUser]=' RED A CTED ' WHERE [B loodProduc tGuid]='1a ac7056-42d d-41b7-ae1 0-dfad7bcf 851f' | |
| 11004 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC AFR Deg None O PN LUKOPR 5C', [Last UpdateDate ]='2016-07 -27 11:17: 06.000', [ LastUpdate User]=' RED A CTED ' WHERE [B loodProduc tGuid]='0b 9d6da5-57d 9-4090-b01 e-dfb249a7 e544' | |
| 11005 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC CPDA -1 4C', [L astUpdateD ate]='2016 -07-27 11: 17:06.000' , [LastUpd ateUser]=' RED A CTED ' WHERE [B loodProduc tGuid]='06 7b0c49-50b 6-4180-82a 1-dfc8e592 fe52' | |
| 11006 | UPDATE [db o].[BloodP roduct] SE T [Product Name]='Aph eresis FRE SH FROZEN PLASMA|CPD -50/XX/<=- 65C|ResLeu :<1E6|2nd container' , [Product ShortName] ='FFP AFR CPD-50 LUK OPR 2C', [ LastUpdate Date]='201 6-07-27 11 :17:06.000 ', [LastUp dateUser]= ' RED A CTED ' WHERE [B loodProduc tGuid]='b2 2dba62-3c7 8-494a-aba 7-dfed5e3f 3f35' | |
| 11007 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='FFP AFR None IRD L UKOPR 1C', [LastUpda teDate]='2 016-07-27 11:17:06.0 00', [Last UpdateUser ]=' RED A CTED ' WHERE [B loodProduc tGuid]='e3 823771-610 1-4d64-834 f-e0171236 f5e5' | |
| 11008 | UPDATE [db o].[BloodP roduct] SE T [Product Name]='Liq uid POOLED PLASMA|CP D/450mL/re fg|2 units |Psoralen- treated', [ProductSh ortName]=' PLASMA Poo l Liq CPD 2U Psoraln ', [LastUp dateDate]= '2016-07-2 7 11:17:06 .000', [La stUpdateUs er]=' RED A CTED ' WHERE [B loodProduc tGuid]='ff 74cad9-52e 9-4924-81a 7-e01861c5 3527' | |
| 11009 | UPDATE [db o].[BloodP roduct] SE T [Product Name]='Aph eresis FRE SH FROZEN PLASMA|NaC itrate/XX/ <=-30C|Irr adiated|Re sLeu:<1E6| <200 mL|Fr ozen <=6h| Quar:>=4m/ retested', [LastUpda teDate]='2 016-07-27 11:17:06.0 00', [Last UpdateUser ]=' RED A CTED ' WHERE [B loodProduc tGuid]='17 491f44-891 3-4c71-b2e 7-e03192a3 dbab' | |
| 11010 | UPDATE [db o].[BloodP roduct] SE T [Product Name]='Aph eresis FRE SH FROZEN PLASMA|CPD -50/XX/<=- 25C|ResLeu :<1E6|2nd container| Psoralen-t reated', [ ProductSho rtName]='F FP AFR CPD -50 LUKOPR 2C Psoral n', [LastU pdateDate] ='2016-07- 27 11:17:0 6.000', [L astUpdateU ser]=' RED A CTED ' WHERE [B loodProduc tGuid]='8d 12c082-6ca f-494a-80b e-e03b515f 26bf' | |
| 11011 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC Froz Rej None OPN IRD 6C ', [LastUp dateDate]= '2016-07-2 7 11:17:06 .000', [La stUpdateUs er]=' RED A CTED ' WHERE [B loodProduc tGuid]='b7 79091f-a4d 9-450e-a88 a-e045ad97 afa2' | |
| 11012 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC Wash None OPN LUKOPR 3C' , [LastUpd ateDate]=' 2016-07-27 11:17:06. 000', [Las tUpdateUse r]=' RED A CTED ' WHERE [B loodProduc tGuid]='75 096097-1f0 0-45e5-a33 a-e04805be 7d13' | |
| 11013 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLT AFR NaCit IRD PLS Red 4C ', [LastUp dateDate]= '2016-07-2 7 11:17:06 .000', [La stUpdateUs er]=' RED A CTED ' WHERE [B loodProduc tGuid]='3e df6a37-577 8-40c9-ab5 2-e04f8bff 34b1' | |
| 11014 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLT AFR NaCit LUKO PR 1C', [L astUpdateD ate]='2016 -07-27 11: 17:06.000' , [LastUpd ateUser]=' RED A CTED ' WHERE [B loodProduc tGuid]='15 56c1da-1c6 3-4b00-b28 9-e05410ec 6020' | |
| 11015 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLT AFR Wash PAS-E IRD LUKOP R 4C', [La stUpdateDa te]='2016- 07-27 11:1 7:06.000', [LastUpda teUser]=' RED A CTED ' WHERE [B loodProduc tGuid]='4d 433b80-696 4-43b8-b1b 6-e05472e9 ea38' | |
| 11016 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLT AFR ACD-A IRD LUKOPR 3C Ribo', [La stUpdateDa te]='2016- 07-27 11:1 7:06.000', [LastUpda teUser]=' RED A CTED ' WHERE [B loodProduc tGuid]='89 f20ae0-57b b-45c0-ada b-e059a606 edbb' | |
| 11017 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC AFR ACD-A>AS1 OPN IRD LU KOPR PA 2C ', [LastUp dateDate]= '2016-07-2 7 11:17:06 .000', [La stUpdateUs er]=' RED A CTED ' WHERE [B loodProduc tGuid]='87 05a417-528 b-467e-813 7-e05de626 5e8b' | |
| 11018 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='FFP AFR Thaw NaCit IRD 2C QU AR', [Last UpdateDate ]='2016-07 -27 11:17: 06.000', [ LastUpdate User]=' RED A CTED ' WHERE [B loodProduc tGuid]='1f 8e93e4-5ad 0-4d61-996 8-e08e5ec9 37f4' | |
| 11019 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC AFR Wash None OPN LUKOPR 4C', [Las tUpdateDat e]='2016-0 7-27 11:17 :06.000', [LastUpdat eUser]=' RED A CTED ' WHERE [B loodProduc tGuid]='ce e3dac6-2b4 e-4fb5-84d 8-e0bde940 d047' | |
| 11020 | UPDATE [db o].[BloodP roduct] SE T [Product Name]='Fro zen Aphere sis RED BL OOD CELLS| None/XX/<= -65C|ResLe u:<5E6|2nd container ', [Produc tShortName ]='RBC AFR Froz None LUKOPR 2C ', [LastUp dateDate]= '2016-07-2 7 11:17:06 .000', [La stUpdateUs er]=' RED A CTED ' WHERE [B loodProduc tGuid]='cf 6bff26-e66 0-4258-84e f-e0c3cac5 141e' | |
| 11021 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLT AFR Wash NS OP N IRD LUKO PR 2C', [L astUpdateD ate]='2016 -07-27 11: 17:06.000' , [LastUpd ateUser]=' RED A CTED ' WHERE [B loodProduc tGuid]='f0 976975-4f9 9-4e95-bc1 f-e0c8fa64 61a2' | |
| 11022 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC CP2D IRD LUKOP R 7C', [La stUpdateDa te]='2016- 07-27 11:1 7:06.000', [LastUpda teUser]=' RED A CTED ' WHERE [B loodProduc tGuid]='0c 775437-174 1-42fc-95b 7-e0dd0fcc 9868' | |
| 11023 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLT AFR ACD-B 1C', [LastUpda teDate]='2 016-07-27 11:17:06.0 00', [Last UpdateUser ]=' RED A CTED ' WHERE [B loodProduc tGuid]='7c c49bbc-04a 5-4aae-af9 f-e0e38e45 5383' | |
| 11024 | UPDATE [db o].[BloodP roduct] SE T [Product Name]='Fro zen Aphere sis PLATEL ETS|DMSO/X X/<=-65C|I rradiated| ResLeu:<5E 6|3rd cont ainer', [P roductShor tName]='PL T AFR Froz DMSO IRD LUKOPR 3C' , [LastUpd ateDate]=' 2016-07-27 11:17:06. 000', [Las tUpdateUse r]=' RED A CTED ' WHERE [B loodProduc tGuid]='92 08dd8c-09a 7-404c-a8e c-e0f428fb ae8b' | |
| 11025 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLT AFR Thaw DMSO OPN PA 2CN A', [LastU pdateDate] ='2016-07- 27 11:17:0 6.000', [L astUpdateU ser]=' RED A CTED ' WHERE [B loodProduc tGuid]='da d9fd6e-94b 7-4f57-a36 c-e103bb15 2bbb' | |
| 11026 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC Froz None OPN 2C', [Last UpdateDate ]='2016-07 -27 11:17: 06.000', [ LastUpdate User]=' RED A CTED ' WHERE [B loodProduc tGuid]='e5 d7d794-2af 1-47f5-84c 4-e10569a9 e58d' | |
| 11027 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLT AFR NaCit IRD LUKOPR PLS Red 4C', [LastUpdat eDate]='20 16-07-27 1 1:17:06.00 0', [LastU pdateUser] =' RED A CTED ' WHERE [B loodProduc tGuid]='3d 703efc-18e 2-484b-b58 0-e118465d 9c34' | |
| 11028 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC AFR CP2D>AS3 I RD LUKOPR 1C', [Last UpdateDate ]='2016-07 -27 11:17: 06.000', [ LastUpdate User]=' RED A CTED ' WHERE [B loodProduc tGuid]='b9 b914c2-cde 9-4c7c-9ba 5-e11fac94 8b44' | |
| 11029 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='FFP AFR None IRD Q UAR 8C', [ LastUpdate Date]='201 6-07-27 11 :17:06.000 ', [LastUp dateUser]= ' RED A CTED ' WHERE [B loodProduc tGuid]='7b ab8baa-3bf 5-4895-ab4 c-e1295714 3705' | |
| 11030 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLT AFR Wash NS LU KOPR 1C', [LastUpdat eDate]='20 16-07-27 1 1:17:06.00 0', [LastU pdateUser] =' RED A CTED ' WHERE [B loodProduc tGuid]='39 2f1e63-f80 c-4cd1-816 5-e13251bd c749' | |
| 11031 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='FFP AFR None IRD L UKOPR 2C', [LastUpda teDate]='2 016-07-27 11:17:06.0 00', [Last UpdateUser ]=' RED A CTED ' WHERE [B loodProduc tGuid]='f4 867fd0-0ad 5-40df-908 f-e17abb03 19fc' | |
| 11032 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLT AFR NaCit MNFN I 1C', [La stUpdateDa te]='2016- 07-27 11:1 7:06.000', [LastUpda teUser]=' RED A CTED ' WHERE [B loodProduc tGuid]='2c e9dfa4-a67 d-4c49-952 3-e1899b8e 072c' | |
| 11033 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLT AFR ACD-A LUKO PR 3C BacM tr', [Last UpdateDate ]='2016-07 -27 11:17: 06.000', [ LastUpdate User]=' RED A CTED ' WHERE [B loodProduc tGuid]='36 7cdd85-3f9 2-4b0b-b07 a-e19d4602 42d5' | |
| 11034 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC CPD LUKOPR 8C' , [RetireD ate]='2015 -04-07 00: 00:00.000' , [LastUpd ateDate]=' 2016-07-27 11:17:06. 000', [Las tUpdateUse r]=' RED A CTED ' WHERE [B loodProduc tGuid]='68 1d287c-fb5 7-4d51-aa1 0-e1c28c2d c438' | |
| 11035 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='FFP None QUAR 3C', [LastUpda teDate]='2 016-07-27 11:17:06.0 00', [Last UpdateUser ]=' RED A CTED ' WHERE [B loodProduc tGuid]='6f d8048e-296 e-4067-864 0-e1c74aaa 8920' | |
| 11036 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='FFP AFR None IRD L UKOPR 5C', [LastUpda teDate]='2 016-07-27 11:17:06.0 00', [Last UpdateUser ]=' RED A CTED ' WHERE [B loodProduc tGuid]='5a 31b9e2-e14 f-424b-975 a-e1ee4306 f299' | |
| 11037 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC Deg None LUKOP R 8C', [La stUpdateDa te]='2016- 07-27 11:1 7:06.000', [LastUpda teUser]=' RED A CTED ' WHERE [B loodProduc tGuid]='48 ce2daa-1cd 8-4395-9e1 3-e1f1f4fb e386' | |
| 11038 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC AFR ACD-A>AS3 LUKOPR 1C' , [LastUpd ateDate]=' 2016-07-27 11:17:06. 000', [Las tUpdateUse r]=' RED A CTED ' WHERE [B loodProduc tGuid]='a1 03bb45-3b9 1-45e7-87d 4-e203286a d60f' | |
| 11039 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC AFR CPDA-1 IRD LUKOPR 1C ', [LastUp dateDate]= '2016-07-2 7 11:17:06 .000', [La stUpdateUs er]=' RED A CTED ' WHERE [B loodProduc tGuid]='0f 293526-fec f-4588-8fb 5-e20f04e4 22b2' | |
| 11040 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLT AFR Wash NS OP N IRD 3C', [LastUpda teDate]='2 016-07-27 11:17:06.0 00', [Last UpdateUser ]=' RED A CTED ' WHERE [B loodProduc tGuid]='9d b7c905-879 b-443e-b7d b-e238f3f2 ae42' | |
| 11041 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLT AFR ACD-A OPN LUKOPR 2C' , [LastUpd ateDate]=' 2016-07-27 11:17:06. 000', [Las tUpdateUse r]=' RED A CTED ' WHERE [B loodProduc tGuid]='5e ddfeb7-615 f-4d48-86b 8-e257d6d0 43bb' | |
| 11042 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLT AFR ACD-A IRD LUKOPR PLS Red/SAL A dd 3C', [L astUpdateD ate]='2016 -07-27 11: 17:06.000' , [LastUpd ateUser]=' RED A CTED ' WHERE [B loodProduc tGuid]='35 8969ce-f4f 0-4fc7-9aa 0-e287d563 6c4b' | |
| 11043 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC AFR SAGM IRD 2 C', [LastU pdateDate] ='2016-07- 27 11:17:0 6.000', [L astUpdateU ser]=' RED A CTED ' WHERE [B loodProduc tGuid]='8b aa942a-94a 8-41ac-940 b-e2a038c0 8c75' | |
| 11044 | UPDATE [db o].[BloodP roduct] SE T [Product Name]='FRE SH FROZEN PLASMA|CPD /450mL/<=- 25C|Irradi ated', [La stUpdateDa te]='2016- 07-27 11:1 7:06.000', [LastUpda teUser]=' RED A CTED ' WHERE [B loodProduc tGuid]='31 32a85b-2ab b-4ec9-88a 9-e2adf6a1 f822' | |
| 11045 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC AFR ACD-A>AS1 MNFI IRD L UKOPR 2C', [LastUpda teDate]='2 016-07-27 11:17:06.0 00', [Last UpdateUser ]=' RED A CTED ' WHERE [B loodProduc tGuid]='f0 8d0eb2-b85 f-4abc-859 9-e2afc878 1002' | |
| 11046 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='FFP AFR CP2D IRD 2 C', [LastU pdateDate] ='2016-07- 27 11:17:0 6.000', [L astUpdateU ser]=' RED A CTED ' WHERE [B loodProduc tGuid]='78 74acbb-327 2-4ee6-8d1 f-e2b3363c 700a' | |
| 11047 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLT AFR ACD-A IRD 4C', [Last UpdateDate ]='2016-07 -27 11:17: 06.000', [ LastUpdate User]=' RED A CTED ' WHERE [B loodProduc tGuid]='5c 2829d9-f0b c-4a51-b88 9-e2b9cf24 4030' | |
| 11048 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC AFR Deg None O PN IRD LUK OPR 1C', [ LastUpdate Date]='201 6-07-27 11 :17:06.000 ', [LastUp dateUser]= ' RED A CTED ' WHERE [B loodProduc tGuid]='7a 5a3d38-e4a 3-4d94-978 c-e3039257 043f' | |
| 11049 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC AFR Wash None OPN 4C', [ LastUpdate Date]='201 6-07-27 11 :17:06.000 ', [LastUp dateUser]= ' RED A CTED ' WHERE [B loodProduc tGuid]='5f 76098e-119 d-4b25-a9b 9-e30fc3e7 2e42' | |
| 11050 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='FFP AFR Thaw None IRD 2C', [ LastUpdate Date]='201 6-07-27 11 :17:06.000 ', [LastUp dateUser]= ' RED A CTED ' WHERE [B loodProduc tGuid]='ec 4e956f-446 2-476d-8d9 b-e3127e57 b86a' | |
| 11051 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLT AFR PAS-E LUKO PR 4C Psor aln', [Las tUpdateDat e]='2016-0 7-27 11:17 :06.000', [LastUpdat eUser]=' RED A CTED ' WHERE [B loodProduc tGuid]='04 a74933-9a7 9-4da3-af4 6-e314b7fb 5f5a' | |
| 11052 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC AFR ACD-A>AS3 IRD 7C', [ LastUpdate Date]='201 6-07-27 11 :17:06.000 ', [LastUp dateUser]= ' RED A CTED ' WHERE [B loodProduc tGuid]='d7 91614d-91e c-45eb-838 e-e32a69fa 26c5' | |
| 11053 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLT AFR Wash None OPN IRD LU KOPR 2CNA' , [LastUpd ateDate]=' 2016-07-27 11:17:06. 000', [Las tUpdateUse r]=' RED A CTED ' WHERE [B loodProduc tGuid]='12 748001-357 1-439f-b54 5-e32d014c dfca' | |
| 11054 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC AFR CP2D>AS3 L UKOPR SR/P A 1C', [La stUpdateDa te]='2016- 07-27 11:1 7:06.000', [LastUpda teUser]=' RED A CTED ' WHERE [B loodProduc tGuid]='b3 a4cb98-844 5-42b5-976 1-e352167a d55d' | |
| 11055 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLT AFR Wash None LUKOPR 3C Psoraln', [LastUpdat eDate]='20 16-07-27 1 1:17:06.00 0', [LastU pdateUser] =' RED A CTED ' WHERE [B loodProduc tGuid]='af cb83e1-f3b 3-46e8-83e 3-e3582d1c 2ce7' | |
| 11056 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC CPDA -1 IRD LUK OPR 8C', [ RetireDate ]='2015-04 -07 00:00: 00.000', [ LastUpdate Date]='201 6-07-27 11 :17:06.000 ', [LastUp dateUser]= ' RED A CTED ' WHERE [B loodProduc tGuid]='1d a25fc3-c4f f-4b3a-895 6-e35e0cea abe2' | |
| 11057 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='WB CPDA- 1 7C', [La stUpdateDa te]='2016- 07-27 11:1 7:06.000', [LastUpda teUser]=' RED A CTED ' WHERE [B loodProduc tGuid]='38 e26340-898 7-4b1b-892 f-e36345ff e216' | |
| 11058 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC AFR ACD-A MNFI 2C', [Las tUpdateDat e]='2016-0 7-27 11:17 :06.000', [LastUpdat eUser]=' RED A CTED ' WHERE [B loodProduc tGuid]='f2 fc6fec-7eb 2-44d9-a07 d-e368d5e8 0e28' | |
| 11059 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='FFP CPDA -1 1C QUAR ', [LastUp dateDate]= '2016-07-2 7 11:17:06 .000', [La stUpdateUs er]=' RED A CTED ' WHERE [B loodProduc tGuid]='6e b684e3-a1f a-48b3-952 6-e36e404d aa27' | |
| 11060 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLT AFR Wash PAS-E IRD LUKOP R 2C', [La stUpdateDa te]='2016- 07-27 11:1 7:06.000', [LastUpda teUser]=' RED A CTED ' WHERE [B loodProduc tGuid]='79 cf6c22-d55 8-4276-af2 1-e36e7681 8e5e' | |
| 11061 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC AFR Deg None I RD LUKOPR 2C', [Last UpdateDate ]='2016-07 -27 11:17: 06.000', [ LastUpdate User]=' RED A CTED ' WHERE [B loodProduc tGuid]='60 39ff86-36a e-4bed-894 7-e36f71bf 5cf8' | |
| 11062 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLT AFR ACD-A OPN IRD LUKOPR 3C', [Las tUpdateDat e]='2016-0 7-27 11:17 :06.000', [LastUpdat eUser]=' RED A CTED ' WHERE [B loodProduc tGuid]='42 182058-dbe 2-4f3d-b85 0-e3909ea9 0bf4' | |
| 11063 | UPDATE [db o].[BloodP roduct] SE T [Product Name]='Aph eresis FRE SH FROZEN PLASMA|ACD -A/XX/<=-2 5C|ResLeu: <1E6|Froze n <=6h', [ LastUpdate Date]='201 6-07-27 11 :17:06.000 ', [LastUp dateUser]= ' RED A CTED ' WHERE [B loodProduc tGuid]='32 86b870-0f1 6-42ce-964 c-e3c5125f f7ce' | |
| 11064 | UPDATE [db o].[BloodP roduct] SE T [Product Name]='FRE SH FROZEN PLASMA|CPD A-1/350mL/ <=-30C', [ LastUpdate Date]='201 6-07-27 11 :17:06.000 ', [LastUp dateUser]= ' RED A CTED ' WHERE [B loodProduc tGuid]='17 24cd05-e32 e-4309-977 1-e3cf5b7d 38ec' | |
| 11065 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLT AFR NaCit OPN IRD PLS Re d 2CNA', [ LastUpdate Date]='201 6-07-27 11 :17:06.000 ', [LastUp dateUser]= ' RED A CTED ' WHERE [B loodProduc tGuid]='1d 2323cb-d78 c-41e5-829 5-e3d2a705 9009' | |
| 11066 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='FFP AFR None IRD Q UAR 3C', [ LastUpdate Date]='201 6-07-27 11 :17:06.000 ', [LastUp dateUser]= ' RED A CTED ' WHERE [B loodProduc tGuid]='9a e472d5-7c4 3-4f2b-b78 6-e3d42f2d 3e57' | |
| 11067 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC AFR Wash None OPN LUKOPR 1C', [Las tUpdateDat e]='2016-0 7-27 11:17 :06.000', [LastUpdat eUser]=' RED A CTED ' WHERE [B loodProduc tGuid]='c9 63c069-5ba e-408d-93e d-e3dc4fed a5af' | |
| 11068 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC AFR CP2D OPN I RD 1C', [L astUpdateD ate]='2016 -07-27 11: 17:06.000' , [LastUpd ateUser]=' RED A CTED ' WHERE [B loodProduc tGuid]='24 5e2dda-4ce a-403a-a38 e-e3fd7a40 3118' | |
| 11069 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC AFR CP2D>AS3 I RD LUKOPR 6C', [Last UpdateDate ]='2016-07 -27 11:17: 06.000', [ LastUpdate User]=' RED A CTED ' WHERE [B loodProduc tGuid]='77 8627ec-1f6 c-44b5-b55 0-e3ff3066 93c8' | |
| 11070 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='FFP None QUAR 6C', [LastUpda teDate]='2 016-07-27 11:17:06.0 00', [Last UpdateUser ]=' RED A CTED ' WHERE [B loodProduc tGuid]='d0 f9b442-cf3 1-4aeb-8eb 8-e403ae53 c5dc' | |
| 11071 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC Rej None OPN 2 C', [LastU pdateDate] ='2016-07- 27 11:17:0 6.000', [L astUpdateU ser]=' RED A CTED ' WHERE [B loodProduc tGuid]='96 7016ee-5b0 9-4782-95b 2-e407557d 9e28' | |
| 11072 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLASMA A FR Thaw Na Cit 4C', [ LastUpdate Date]='201 6-07-27 11 :17:06.000 ', [LastUp dateUser]= ' RED A CTED ' WHERE [B loodProduc tGuid]='ae 891bbe-1b2 9-483b-9b9 7-e428a1c7 f223' | |
| 11073 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLT AFR ACD-A IRD PLS Red 3C ', [LastUp dateDate]= '2016-07-2 7 11:17:06 .000', [La stUpdateUs er]=' RED A CTED ' WHERE [B loodProduc tGuid]='54 002841-8da a-4be9-884 a-e47d0c08 39ee' | |
| 11074 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLT AFR Wash PAS-E LUKOPR 2C Psoraln', [LastUpda teDate]='2 016-07-27 11:17:06.0 00', [Last UpdateUser ]=' RED A CTED ' WHERE [B loodProduc tGuid]='b5 27a245-907 f-47a3-a31 c-e48cb7a3 e6d7' | |
| 11075 | UPDATE [db o].[BloodP roduct] SE T [Product Name]='Fro zen RED BL OOD CELLS| None/450mL /<=-30C|Fo r mnf:inje ctable|Res Leu:<1.2E9 |Supernat rem', [Las tUpdateDat e]='2016-0 7-27 11:17 :06.000', [LastUpdat eUser]=' RED A CTED ' WHERE [B loodProduc tGuid]='1f 59c73f-df2 3-40d6-b50 8-e4a281db 8ca9' | |
| 11076 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLT AFR Wash PAS-D IRD LUKOP R 1C', [La stUpdateDa te]='2016- 07-27 11:1 7:06.000', [LastUpda teUser]=' RED A CTED ' WHERE [B loodProduc tGuid]='20 05cb12-112 c-42e2-aeb c-e4ae3fbc 348e' | |
| 11077 | UPDATE [db o].[BloodP roduct] SE T [Product Name]='Aph eresis FRE SH FROZEN PLASMA|ACD -A/XX/<=-2 5C|Irradia ted|ResLeu :<1E6|2nd container' , [Product ShortName] ='FFP AFR ACD-A IRD LUKOPR 2C' , [LastUpd ateDate]=' 2016-07-27 11:17:06. 000', [Las tUpdateUse r]=' RED A CTED ' WHERE [B loodProduc tGuid]='54 b29e82-db4 3-46f7-bb7 7-e4b6f819 035d' | |
| 11078 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='FFP AFR Thaw None IRD LUKOPR 1C', [Las tUpdateDat e]='2016-0 7-27 11:17 :06.000', [LastUpdat eUser]=' RED A CTED ' WHERE [B loodProduc tGuid]='11 27d9f9-119 7-410b-aba f-e4bd89a6 cf6d' | |
| 11079 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLT AFR Thaw DMSO OPN PA 1CN A', [LastU pdateDate] ='2016-07- 27 11:17:0 6.000', [L astUpdateU ser]=' RED A CTED ' WHERE [B loodProduc tGuid]='e0 30ad8a-800 f-4ea7-87d d-e4c6a97b 5ead' | |
| 11080 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='FFP Thaw None 3C', [LastUpda teDate]='2 016-07-27 11:17:06.0 00', [Last UpdateUser ]=' RED A CTED ' WHERE [B loodProduc tGuid]='f7 daf862-f85 c-4a67-b42 6-e4e17238 87aa' | |
| 11081 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC AFR ACD-A IRD SR/PA 1C', [LastUpda teDate]='2 016-07-27 11:17:06.0 00', [Last UpdateUser ]=' RED A CTED ' WHERE [B loodProduc tGuid]='8b 0322be-105 8-46c9-baf c-e4fa30f2 a369' | |
| 11082 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='FFP None QUAR 7C', [LastUpda teDate]='2 016-07-27 11:17:06.0 00', [Last UpdateUser ]=' RED A CTED ' WHERE [B loodProduc tGuid]='5d 61a9e1-648 9-40e8-b9b 3-e4faa0da cfb6' | |
| 11083 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLT AFR Thaw DMSO 3C', [Last UpdateDate ]='2016-07 -27 11:17: 06.000', [ LastUpdate User]=' RED A CTED ' WHERE [B loodProduc tGuid]='c2 d34647-76c 9-4ac2-876 6-e5033760 a321' | |
| 11084 | UPDATE [db o].[BloodP roduct] SE T [Product Name]='Fro zen RED BL OOD CELLS| None/250mL /<=-65C|No t for tx o r mnf|Open ', [LastUp dateDate]= '2016-07-2 7 11:17:06 .000', [La stUpdateUs er]=' RED A CTED ' WHERE [B loodProduc tGuid]='92 db6fe4-a9e 3-43f2-ace 4-e5120b5e 6389' | |
| 11085 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLT AFR ACD-A OPN LUKOPR PLS Red 3C', [LastUpdat eDate]='20 16-07-27 1 1:17:06.00 0', [LastU pdateUser] =' RED A CTED ' WHERE [B loodProduc tGuid]='73 afbbcd-f73 b-4ec4-acb e-e51e3206 0b40' | |
| 11086 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC AFR SAGM IRD L UKOPR SR/P A 2C', [La stUpdateDa te]='2016- 07-27 11:1 7:06.000', [LastUpda teUser]=' RED A CTED ' WHERE [B loodProduc tGuid]='6e 14fca5-636 7-4082-8a9 4-e527a542 b541' | |
| 11087 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC CP2D IRD LUKOP R 2C', [La stUpdateDa te]='2016- 07-27 11:1 7:06.000', [LastUpda teUser]=' RED A CTED ' WHERE [B loodProduc tGuid]='86 255112-f4d 9-44eb-9d0 1-e549b99b c112' | |
| 11088 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLASMA A FR Thaw Na Cit IRD 2C ', [LastUp dateDate]= '2016-07-2 7 11:17:06 .000', [La stUpdateUs er]=' RED A CTED ' WHERE [B loodProduc tGuid]='dd 961def-848 c-4ecb-844 1-e57ab1f2 aa40' | |
| 11089 | UPDATE [db o].[BloodP roduct] SE T [Product Name]='Aph eresis FRE SH FROZEN PLASMA|NaC itrate/XX/ <=-65C|Irr adiated|<2 00 mL|Quar :>=6m/rete sted', [La stUpdateDa te]='2016- 07-27 11:1 7:06.000', [LastUpda teUser]=' RED A CTED ' WHERE [B loodProduc tGuid]='ca 6368b7-abb b-4515-a5e c-e590ab4f 266f' | |
| 11090 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLT AFR ACD-A LUKO PR 3C', [L astUpdateD ate]='2016 -07-27 11: 17:06.000' , [LastUpd ateUser]=' RED A CTED ' WHERE [B loodProduc tGuid]='aa 03ec24-9a8 5-4cf6-b2e 3-e5ac79cf e401' | |
| 11091 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC AFR Deg AS3 OP N LUKOPR 2 C', [LastU pdateDate] ='2016-07- 27 11:17:0 6.000', [L astUpdateU ser]=' RED A CTED ' WHERE [B loodProduc tGuid]='5d 9ee142-936 8-4c0c-958 2-e5b4b06c ea2b' | |
| 11092 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC CPD> AS1 IRD LU KOPR 8C', [LastUpdat eDate]='20 16-07-27 1 1:17:06.00 0', [LastU pdateUser] =' RED A CTED ' WHERE [B loodProduc tGuid]='87 82e631-cff 3-4fa7-b06 7-e5cf5f6e d8d0' | |
| 11093 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='FFP AFR Thaw None IRD 2C', [ LastUpdate Date]='201 6-07-27 11 :17:06.000 ', [LastUp dateUser]= ' RED A CTED ' WHERE [B loodProduc tGuid]='a7 8b56f5-06a 8-4b5a-9c1 4-e5de0d83 09bf' | |
| 11094 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC CPD IRD LUKOPR 4C', [Ret ireDate]=' 2015-04-07 00:00:00. 000', [Las tUpdateDat e]='2016-0 7-27 11:17 :06.000', [LastUpdat eUser]=' RED A CTED ' WHERE [B loodProduc tGuid]='8e 40b4a5-589 d-4c6c-a82 3-e5e6055b 9b38' | |
| 11095 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='FFP AFR Thaw None IRD 5C', [ LastUpdate Date]='201 6-07-27 11 :17:06.000 ', [LastUp dateUser]= ' RED A CTED ' WHERE [B loodProduc tGuid]='5a ebcfbb-4f9 0-496e-a01 8-e60599b4 cdb6' | |
| 11096 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC AFR ACD-A>AS3 OPN LUKOPR SR/PA 1C' , [LastUpd ateDate]=' 2016-07-27 11:17:06. 000', [Las tUpdateUse r]=' RED A CTED ' WHERE [B loodProduc tGuid]='3a 453f41-406 7-49c0-918 5-e611a543 5bb7' | |
| 11097 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC Deg Rej None O PN IRD SR 2C', [Last UpdateDate ]='2016-07 -27 11:17: 06.000', [ LastUpdate User]=' RED A CTED ' WHERE [B loodProduc tGuid]='8e 880dba-02f 6-4168-aaa 8-e6200fae 9d99' | |
| 11098 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC AFR ACD-A>AS1 OPN 1C', [ LastUpdate Date]='201 6-07-27 11 :17:06.000 ', [LastUp dateUser]= ' RED A CTED ' WHERE [B loodProduc tGuid]='14 65749a-2e6 c-4d23-a05 6-e63362f9 3d62' | |
| 11099 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLT AFR Wash None OPN LUKOPR 1C', [Las tUpdateDat e]='2016-0 7-27 11:17 :06.000', [LastUpdat eUser]=' RED A CTED ' WHERE [B loodProduc tGuid]='77 176b3b-1c8 b-4ebd-85d 3-e64c0b79 6167' | |
| 11100 | UPDATE [db o].[BloodP roduct] SE T [Product Name]='FRE SH FROZEN PLASMA|CPD A-1/XX/<=- 25C', [Las tUpdateDat e]='2016-0 7-27 11:17 :06.000', [LastUpdat eUser]=' RED A CTED ' WHERE [B loodProduc tGuid]='ae 7c43e7-b74 9-4802-bb2 f-e656396c d39d' | |
| 11101 | UPDATE [db o].[BloodP roduct] SE T [Product Name]='Aph eresis FRE SH FROZEN PLASMA|ACD -B/XX/<=-2 5C|Irradia ted|>=400m L<600mL|Qu ar:>=6m/re tested', [ LastUpdate Date]='201 6-07-27 11 :17:06.000 ', [LastUp dateUser]= ' RED A CTED ' WHERE [B loodProduc tGuid]='69 50a3a7-c6b 6-4d88-ba0 b-e67a06c7 a041' | |
| 11102 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='WB CP2D IRD LUKOPR 2C', [Las tUpdateDat e]='2016-0 7-27 11:17 :06.000', [LastUpdat eUser]=' RED A CTED ' WHERE [B loodProduc tGuid]='2e fea195-969 9-4aa5-b1a b-e69872e1 8e39' | |
| 11103 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC AFR Deg None O PN IRD LUK OPR 3C', [ LastUpdate Date]='201 6-07-27 11 :17:06.000 ', [LastUp dateUser]= ' RED A CTED ' WHERE [B loodProduc tGuid]='98 5c9e5d-eeb b-4215-922 9-e6aaeb42 5508' | |
| 11104 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC Wash None OPN IRD 4C', [ LastUpdate Date]='201 6-07-27 11 :17:06.000 ', [LastUp dateUser]= ' RED A CTED ' WHERE [B loodProduc tGuid]='29 aead00-01a 8-4590-aaa 3-e6c9c148 c54d' | |
| 11105 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC AFR CP2D>AS3 M NFNI OPN 1 C', [LastU pdateDate] ='2016-07- 27 11:17:0 6.000', [L astUpdateU ser]=' RED A CTED ' WHERE [B loodProduc tGuid]='5b 6479ef-87e 2-4165-b44 8-e703596d cf65' | |
| 11106 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLT AFR NaCit OPN LUKOPR PLS Red 3C', [LastUpdat eDate]='20 16-07-27 1 1:17:06.00 0', [LastU pdateUser] =' RED A CTED ' WHERE [B loodProduc tGuid]='0d 1e8052-614 e-4252-b16 9-e70f7cad d075' | |
| 11107 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC Deg Rej None O PN 3C', [L astUpdateD ate]='2016 -07-27 11: 17:06.000' , [LastUpd ateUser]=' RED A CTED ' WHERE [B loodProduc tGuid]='e3 b42afe-65f 3-4f45-b1f d-e7143161 e970' | |
| 11108 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='WB CPD I RD 7C', [L astUpdateD ate]='2016 -07-27 11: 17:06.000' , [LastUpd ateUser]=' RED A CTED ' WHERE [B loodProduc tGuid]='36 0b3120-0cd 6-438c-b37 7-e734ecbf e28d' | |
| 11109 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLT AFR Thaw DMSO OPN IRD 3C ', [LastUp dateDate]= '2016-07-2 7 11:17:06 .000', [La stUpdateUs er]=' RED A CTED ' WHERE [B loodProduc tGuid]='dc 52c627-a7b 5-4421-881 6-e740b399 381a' | |
| 11110 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC AFR CPDA-1 IRD LUKOPR 5C ', [LastUp dateDate]= '2016-07-2 7 11:17:06 .000', [La stUpdateUs er]=' RED A CTED ' WHERE [B loodProduc tGuid]='ee 42f753-9a4 8-46b4-8ba b-e749aaac afa8' | |
| 11111 | UPDATE [db o].[BloodP roduct] SE T [Product Name]='FRE SH FROZEN PLASMA|0.5 CPD/XX/<= -25C|Quar: >=6m/retes ted', [Las tUpdateDat e]='2016-0 7-27 11:17 :06.000', [LastUpdat eUser]=' RED A CTED ' WHERE [B loodProduc tGuid]='bb 07671c-ba2 0-45af-812 c-e765fc93 5b12' | |
| 11112 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLT AFR None OPN L UKOPR PLS Red/ALB Ad d 1C', [La stUpdateDa te]='2016- 07-27 11:1 7:06.000', [LastUpda teUser]=' RED A CTED ' WHERE [B loodProduc tGuid]='a9 8396eb-a8e 5-4532-97f 1-e774f6d0 37d7' | |
| 11113 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLT AFR ACD-A IRD LUKOPR 2C' , [LastUpd ateDate]=' 2016-07-27 11:17:06. 000', [Las tUpdateUse r]=' RED A CTED ' WHERE [B loodProduc tGuid]='cb 7bc3d5-c9e d-4d2b-9d6 4-e775025a abb7' | |
| 11114 | UPDATE [db o].[BloodP roduct] SE T [Product Name]='Aph eresis FRE SH FROZEN PLASMA|ACD -A/XX/<=-3 0C|For mnf :injectabl e|>=400mL< 600mL', [L astUpdateD ate]='2016 -07-27 11: 17:06.000' , [LastUpd ateUser]=' RED A CTED ' WHERE [B loodProduc tGuid]='b2 81420e-c0d f-4ee6-915 7-e776e093 c073' | |
| 11115 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLASMA A FR Thaw AC D-A 3C', [ LastUpdate Date]='201 6-07-27 11 :17:06.000 ', [LastUp dateUser]= ' RED A CTED ' WHERE [B loodProduc tGuid]='e1 a3ee16-520 c-49bd-834 e-e77957ec c2ee' | |
| 11116 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC AFR ACD-A>AS1 OPN IRD LU KOPR SR/PA 2C', [Las tUpdateDat e]='2016-0 7-27 11:17 :06.000', [LastUpdat eUser]=' RED A CTED ' WHERE [B loodProduc tGuid]='66 c780f6-641 a-42e5-b73 f-e792d099 a078' | |
| 11117 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='FFP AFR NaCit 1C', [LastUpda teDate]='2 016-07-27 11:17:06.0 00', [Last UpdateUser ]=' RED A CTED ' WHERE [B loodProduc tGuid]='99 845bcc-fbc a-4b2a-86e 6-e793174c 3538' | |
| 11118 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='FFP AFR None IRD Q UAR 3C', [ LastUpdate Date]='201 6-07-27 11 :17:06.000 ', [LastUp dateUser]= ' RED A CTED ' WHERE [B loodProduc tGuid]='f4 b4d1c0-32b 3-4689-bc0 b-e79d1b18 5a1c' | |
| 11119 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLT AFR Thaw DMSO OPN IRD LU KOPR PA 4C ', [LastUp dateDate]= '2016-07-2 7 11:17:06 .000', [La stUpdateUs er]=' RED A CTED ' WHERE [B loodProduc tGuid]='b1 44f230-99a 4-40a3-999 5-e7b0a412 3129' | |
| 11120 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLT AFR ACD-A 2C', [LastUpda teDate]='2 016-07-27 11:17:06.0 00', [Last UpdateUser ]=' RED A CTED ' WHERE [B loodProduc tGuid]='72 72d3b4-3ac 0-4cd2-952 5-e7d21da0 f3c2' | |
| 11121 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC CPDA -1 LUKOPR 5C', [Last UpdateDate ]='2016-07 -27 11:17: 06.000', [ LastUpdate User]=' RED A CTED ' WHERE [B loodProduc tGuid]='c8 c3a640-f8b 8-4194-a25 3-e7d8f42d 5334' | |
| 11122 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='FFP AFR ACD-A IRD 2C', [Last UpdateDate ]='2016-07 -27 11:17: 06.000', [ LastUpdate User]=' RED A CTED ' WHERE [B loodProduc tGuid]='01 7e081d-a7c 2-49a0-841 5-e7e27541 29e6' | |
| 11123 | UPDATE [db o].[BloodP roduct] SE T [Product Name]='FRE SH FROZEN PLASMA|CPD /XX/<=-65C |Irradiate d', [LastU pdateDate] ='2016-07- 27 11:17:0 6.000', [L astUpdateU ser]=' RED A CTED ' WHERE [B loodProduc tGuid]='02 8997c4-bb3 d-4123-b44 c-e7edf21b 313f' | |
| 11124 | UPDATE [db o].[BloodP roduct] SE T [Product Name]='FRE SH FROZEN PLASMA|0.5 CPD/XX/<= -30C|Irrad iated', [L astUpdateD ate]='2016 -07-27 11: 17:06.000' , [LastUpd ateUser]=' RED A CTED ' WHERE [B loodProduc tGuid]='b0 03bdeb-26e 1-4112-a59 f-e7fc2542 1953' | |
| 11125 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLT AFR Wash None OPN IRD LU KOPR SUPRe d 3C', [La stUpdateDa te]='2016- 07-27 11:1 7:06.000', [LastUpda teUser]=' RED A CTED ' WHERE [B loodProduc tGuid]='58 7b1f03-5bb a-449d-b2c 6-e812daf7 b42c' | |
| 11126 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLT AFR ACD-A IRD LUKOPR 1C Ribo', [La stUpdateDa te]='2016- 07-27 11:1 7:06.000', [LastUpda teUser]=' RED A CTED ' WHERE [B loodProduc tGuid]='f1 02838f-e86 9-4748-a88 a-e83556bf 69a2' | |
| 11127 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC Froz None OPN IRD LUKOPR 7C', [Las tUpdateDat e]='2016-0 7-27 11:17 :06.000', [LastUpdat eUser]=' RED A CTED ' WHERE [B loodProduc tGuid]='37 a97906-c71 3-4a24-bc5 6-e848c6fc 3c66' | |
| 11128 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC AFR CPDA-1 OPN IRD LUKOP R 1C', [La stUpdateDa te]='2016- 07-27 11:1 7:06.000', [LastUpda teUser]=' RED A CTED ' WHERE [B loodProduc tGuid]='66 a9097b-a36 4-47df-90e f-e84a20e7 a46c' | |
| 11129 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC Deg None IRD 2 C', [LastU pdateDate] ='2016-07- 27 11:17:0 6.000', [L astUpdateU ser]=' RED A CTED ' WHERE [B loodProduc tGuid]='08 39092b-df3 7-4e26-a20 3-e865f45d 941f' | |
| 11130 | UPDATE [db o].[BloodP roduct] SE T [Product Name]='Aph eresis FRE SH FROZEN PLASMA|NaC itrate/XX/ <=-65C|Not for tx or mnf|Fin C on:NS|Quar :>=6m/rete sted', [La stUpdateDa te]='2016- 07-27 11:1 7:06.000', [LastUpda teUser]=' RED A CTED ' WHERE [B loodProduc tGuid]='5c d4dc51-865 2-4a3d-943 f-e873cc7e afc7' | |
| 11131 | UPDATE [db o].[BloodP roduct] SE T [Product Name]='Fro zen POOLED PLATELETS |DMSO/XX/< =-80C|For mnf:inject able|ResLe u:<1E6|Buf fy coat pl ts prep|6 units', [L astUpdateD ate]='2016 -07-27 11: 17:06.000' , [LastUpd ateUser]=' RED A CTED ' WHERE [B loodProduc tGuid]='0b 0c664d-df1 b-4436-9a5 7-e89656b5 bf86' | |
| 11132 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC AFR ACD-A>AS3 IRD LUKOPR SR/PA 1C' , [LastUpd ateDate]=' 2016-07-27 11:17:06. 000', [Las tUpdateUse r]=' RED A CTED ' WHERE [B loodProduc tGuid]='ff 6ef693-1f2 b-4a1f-b7e c-e8b796fa 83c7' | |
| 11133 | UPDATE [db o].[BloodP roduct] SE T [Product Name]='Aph eresis FRE SH FROZEN PLASMA|ACD -B/XX/<=-3 0C|Fin Con :NS|Quar:> =6m/retest ed', [Last UpdateDate ]='2016-07 -27 11:17: 06.000', [ LastUpdate User]=' RED A CTED ' WHERE [B loodProduc tGuid]='5c 492083-8af e-4b8c-ac8 0-e8b8f3c0 c2b0' | |
| 11134 | UPDATE [db o].[BloodP roduct] SE T [Product Name]='Aph eresis CRY OPRECIPITA TE|NaCitra te/XX/<=-2 5C', [Last UpdateDate ]='2016-07 -27 11:17: 06.000', [ LastUpdate User]=' RED A CTED ' WHERE [B loodProduc tGuid]='f8 360009-70c d-4db4-954 5-e8d023af a65e' | |
| 11135 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='FFP AFR None QUAR 3C', [Last UpdateDate ]='2016-07 -27 11:17: 06.000', [ LastUpdate User]=' RED A CTED ' WHERE [B loodProduc tGuid]='2e 2f000b-307 b-4441-926 4-e8d3083b e5a2' | |
| 11136 | UPDATE [db o].[BloodP roduct] SE T [Product Name]='Fro zen POOLED PLATELETS |DMSO/XX/< =-80C|ResL eu:<1E6|Bu ffy coat p lts prep|4 units', [ LastUpdate Date]='201 6-07-27 11 :17:06.000 ', [LastUp dateUser]= ' RED A CTED ' WHERE [B loodProduc tGuid]='c3 30cd23-0a7 0-4660-a70 9-e8ddb371 e1ec' | |
| 11137 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC AFR Wash None OPN IRD 3C ', [LastUp dateDate]= '2016-07-2 7 11:17:06 .000', [La stUpdateUs er]=' RED A CTED ' WHERE [B loodProduc tGuid]='29 f451cc-e31 f-4e42-a7c 5-e9069054 f184' | |
| 11138 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC CPD 6C', [Reti reDate]='2 015-04-07 00:00:00.0 00', [Last UpdateDate ]='2016-07 -27 11:17: 06.000', [ LastUpdate User]=' RED A CTED ' WHERE [B loodProduc tGuid]='e3 16759f-f3d 0-4a64-b01 2-e936d4da 64e3' | |
| 11139 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC AFR ACD-A>AS3 OPN LUKOPR 1C', [Las tUpdateDat e]='2016-0 7-27 11:17 :06.000', [LastUpdat eUser]=' RED A CTED ' WHERE [B loodProduc tGuid]='58 da7805-96a f-4775-987 7-e94a46b1 ae2e' | |
| 11140 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLT AFR ACD-A OPN IRD PLS Re d 3C', [La stUpdateDa te]='2016- 07-27 11:1 7:06.000', [LastUpda teUser]=' RED A CTED ' WHERE [B loodProduc tGuid]='c9 2e59b7-f0b 1-485e-b90 c-e954ba09 8e6a' | |
| 11141 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC AFR CPDA-1 IRD LUKOPR 7C ', [LastUp dateDate]= '2016-07-2 7 11:17:06 .000', [La stUpdateUs er]=' RED A CTED ' WHERE [B loodProduc tGuid]='ce cff4cc-370 a-4009-96e d-e95d4092 81d8' | |
| 11142 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLT AFR ACD-B NMT 3C', [Last UpdateDate ]='2016-07 -27 11:17: 06.000', [ LastUpdate User]=' RED A CTED ' WHERE [B loodProduc tGuid]='4c 33c7cd-59d 1-4e40-841 7-e97a75bf 86ba' | |
| 11143 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC AFR ACD-A>AS1 8C', [Last UpdateDate ]='2016-07 -27 11:17: 06.000', [ LastUpdate User]=' RED A CTED ' WHERE [B loodProduc tGuid]='d8 0a2f0c-afb b-4f6a-8a0 5-e97f34d4 f254' | |
| 11144 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC AFR ACD-A>AS3 OPN LUKOPR SR/PA 2C' , [LastUpd ateDate]=' 2016-07-27 11:17:06. 000', [Las tUpdateUse r]=' RED A CTED ' WHERE [B loodProduc tGuid]='29 8eac12-cf1 8-47cd-b58 e-e9941329 acde' | |
| 11145 | UPDATE [db o].[BloodP roduct] SE T [Product Name]='FRE SH FROZEN PLASMA|CP2 D/XX/<=-65 C|Not for tx or mnf| Quar:>=6m/ retested', [LastUpda teDate]='2 016-07-27 11:17:06.0 00', [Last UpdateUser ]=' RED A CTED ' WHERE [B loodProduc tGuid]='01 bc17c1-c1f 6-48d3-859 d-e99f2a09 8b9d' | |
| 11146 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLT AFR ACD-A LUKO PR 2C', [L astUpdateD ate]='2016 -07-27 11: 17:06.000' , [LastUpd ateUser]=' RED A CTED ' WHERE [B loodProduc tGuid]='7c 6c4bd2-f67 3-47f9-802 b-e9a22dd5 e96c' | |
| 11147 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC AFR CP2D MNFNI OPN 2C', [LastUpdat eDate]='20 16-07-27 1 1:17:06.00 0', [LastU pdateUser] =' RED A CTED ' WHERE [B loodProduc tGuid]='8a 3e3195-b80 2-4bf3-bea 5-e9a4c6ed a31d' | |
| 11148 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC AFR ACD-A>AS3 OPN LUKOPR PA 1C', [ LastUpdate Date]='201 6-07-27 11 :17:06.000 ', [LastUp dateUser]= ' RED A CTED ' WHERE [B loodProduc tGuid]='83 d34938-503 3-41eb-ac1 0-e9cbc73d 3b7b' | |
| 11149 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='FFP CPDA -1 IRD 3C' , [LastUpd ateDate]=' 2016-07-27 11:17:06. 000', [Las tUpdateUse r]=' RED A CTED ' WHERE [B loodProduc tGuid]='99 0545be-757 8-4a3b-ad1 8-e9d5ed54 11d3' | |
| 11150 | UPDATE [db o].[BloodP roduct] SE T [Product Name]='Aph eresis FRE SH FROZEN PLASMA|CPD -50/XX/<=- 25C|ResLeu :<1E6|1st container| Psoralen-t reated', [ ProductSho rtName]='F FP AFR CPD -50 LUKOPR 1C Psoral n', [LastU pdateDate] ='2016-07- 27 11:17:0 6.000', [L astUpdateU ser]=' RED A CTED ' WHERE [B loodProduc tGuid]='87 352973-d1c 1-4e78-b09 8-e9d6dc0d e0c2' | |
| 11151 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLT AFR PAS-E IRD LUKOPR SUP Red 4C', [ LastUpdate Date]='201 6-07-27 11 :17:06.000 ', [LastUp dateUser]= ' RED A CTED ' WHERE [B loodProduc tGuid]='c5 d7d0b1-768 a-4332-b93 a-e9d9c51a 18c7' | |
| 11152 | UPDATE [db o].[BloodP roduct] SE T [Product Name]='FRE SH FROZEN PLASMA|NS/ XX/<=-30C| For mnf:no ninjectabl e|ResLeu:< 1E6|Frozen <=8h', [L astUpdateD ate]='2016 -07-27 11: 17:06.000' , [LastUpd ateUser]=' RED A CTED ' WHERE [B loodProduc tGuid]='53 dde6b7-207 a-451a-826 c-e9de6c98 7f11' | |
| 11153 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC AFR CPDA-1 IRD LUKOPR 6C ', [LastUp dateDate]= '2016-07-2 7 11:17:06 .000', [La stUpdateUs er]=' RED A CTED ' WHERE [B loodProduc tGuid]='d3 c939b7-75f 1-4cd0-ba4 d-e9e24880 b08d' | |
| 11154 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLT AFR ACD-A LUKO PR 8C', [L astUpdateD ate]='2016 -07-27 11: 17:06.000' , [LastUpd ateUser]=' RED A CTED ' WHERE [B loodProduc tGuid]='15 595545-bee a-4af8-ba3 4-ea184260 8ddd' | |
| 11155 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLT AFR PAS-C IRD LUKOPR 3C' , [LastUpd ateDate]=' 2016-07-27 11:17:06. 000', [Las tUpdateUse r]=' RED A CTED ' WHERE [B loodProduc tGuid]='23 7734ce-d3f 6-4484-8e2 8-ea3b70ca 8f95' | |
| 11156 | UPDATE [db o].[BloodP roduct] SE T [Product Name]='Fro zen Rejuve nated RED BLOOD CELL S|None/500 mL/<=-65C| Open|Irrad iated', [L astUpdateD ate]='2016 -07-27 11: 17:06.000' , [LastUpd ateUser]=' RED A CTED ' WHERE [B loodProduc tGuid]='bb 8bfce3-9be f-4b2c-90e 7-ea3fd045 0220' | |
| 11157 | UPDATE [db o].[BloodP roduct] SE T [Product Name]='FRE SH FROZEN PLASMA|CPD /450mL/<=- 30C|Methyl ene blue-t reated', [ LastUpdate Date]='201 6-07-27 11 :17:06.000 ', [LastUp dateUser]= ' RED A CTED ' WHERE [B loodProduc tGuid]='67 afcf7e-6b0 c-4ed2-984 f-ea6e1fda d143' | |
| 11158 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLT AFR ACD-A>PAS- C IRD 1C', [LastUpda teDate]='2 016-07-27 11:17:06.0 00', [Last UpdateUser ]=' RED A CTED ' WHERE [B loodProduc tGuid]='a7 aede0e-813 c-4654-b49 1-ea79fa36 f43e' | |
| 11159 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLT AFR NaCit NMT OPN 3C', [ LastUpdate Date]='201 6-07-27 11 :17:06.000 ', [LastUp dateUser]= ' RED A CTED ' WHERE [B loodProduc tGuid]='1d 961d1b-895 b-4880-975 4-ea8fc875 c8d7' | |
| 11160 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC AFR CPDA-1 LUK OPR 8C', [ LastUpdate Date]='201 6-07-27 11 :17:06.000 ', [LastUp dateUser]= ' RED A CTED ' WHERE [B loodProduc tGuid]='c0 bad035-68c f-4912-a66 7-eaa43f93 219e' | |
| 11161 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLT AFR ACD-A>PAS- C NMT LUKO PR 2C', [L astUpdateD ate]='2016 -07-27 11: 17:06.000' , [LastUpd ateUser]=' RED A CTED ' WHERE [B loodProduc tGuid]='58 ac474b-eb3 1-423a-b05 3-eab7e608 2872' | |
| 11162 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLT AFR ACD-A IRD 3C', [Last UpdateDate ]='2016-07 -27 11:17: 06.000', [ LastUpdate User]=' RED A CTED ' WHERE [B loodProduc tGuid]='50 2ae0dc-277 f-4c0c-b74 1-eac3c6c4 769c' | |
| 11163 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLT AFR ACD-A IRD LUKOPR 1C BacMtr', [ LastUpdate Date]='201 6-07-27 11 :17:06.000 ', [LastUp dateUser]= ' RED A CTED ' WHERE [B loodProduc tGuid]='db b0c353-c0e 0-416d-988 c-eac76502 5e86' | |
| 11164 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC AFR ACD-A>AS3 IRD LUKOPR 4C', [Las tUpdateDat e]='2016-0 7-27 11:17 :06.000', [LastUpdat eUser]=' RED A CTED ' WHERE [B loodProduc tGuid]='01 e4670c-ac4 0-4c8e-9d5 9-eac78db7 e5a6' | |
| 11165 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLT AFR Wash None OPN 1C', [ LastUpdate Date]='201 6-07-27 11 :17:06.000 ', [LastUp dateUser]= ' RED A CTED ' WHERE [B loodProduc tGuid]='8d 150a00-25d 0-4417-925 4-eae42ac6 7509' | |
| 11166 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLT AFR ACD-A LUKO PR 3C', [L astUpdateD ate]='2016 -07-27 11: 17:06.000' , [LastUpd ateUser]=' RED A CTED ' WHERE [B loodProduc tGuid]='cb 7ca925-5e7 7-49e2-a70 9-eaf3ae65 9159' | |
| 11167 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='WB CPD L UKOPR 3C', [LastUpda teDate]='2 016-07-27 11:17:06.0 00', [Last UpdateUser ]=' RED A CTED ' WHERE [B loodProduc tGuid]='bc 300839-685 2-44fa-b3c 8-eb03b54c cfa2' | |
| 11168 | UPDATE [db o].[BloodP roduct] SE T [Product Name]='Fro zen Aphere sis PLATEL ETS|DMSO/X X/<=-65C|O pen|1st co ntainer', [ProductSh ortName]=' PLT AFR Fr oz DMSO OP N 1C', [La stUpdateDa te]='2016- 07-27 11:1 7:06.000', [LastUpda teUser]=' RED A CTED ' WHERE [B loodProduc tGuid]='61 0952ed-0f9 6-489d-a55 7-eb0b1f26 c5ee' | |
| 11169 | UPDATE [db o].[BloodP roduct] SE T [Product Name]='Aph eresis FRE SH FROZEN PLASMA|ACD -B/XX/<=-6 5C|Not for tx or mnf |Aphr not automated' , [LastUpd ateDate]=' 2016-07-27 11:17:06. 000', [Las tUpdateUse r]=' RED A CTED ' WHERE [B loodProduc tGuid]='6b 480a2a-367 f-410f-8c9 b-eb2ba652 5c3b' | |
| 11170 | UPDATE [db o].[BloodP roduct] SE T [Product Name]='Aph eresis FRE SH FROZEN PLASMA|ACD -A/XX/<=-2 5C|>=400mL <600mL|Qua r:>=90d/re tested', [ ProductSho rtName]='F FP AFR ACD -A QUAR', [LastUpdat eDate]='20 16-07-27 1 1:17:06.00 0', [LastU pdateUser] =' RED A CTED ' WHERE [B loodProduc tGuid]='b9 fc82e3-aea 1-4328-93b b-eb2c0b91 fbd2' | |
| 11171 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLT AFR Thaw DMSO OPN IRD LU KOPR 1CNA' , [LastUpd ateDate]=' 2016-07-27 11:17:06. 000', [Las tUpdateUse r]=' RED A CTED ' WHERE [B loodProduc tGuid]='c4 456b82-4b8 5-421a-b8b 8-eb332f0e 3aa9' | |
| 11172 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='FFP AFR ACD-A IRD 6C QUAR', [LastUpdat eDate]='20 16-07-27 1 1:17:06.00 0', [LastU pdateUser] =' RED A CTED ' WHERE [B loodProduc tGuid]='41 1128a1-1f7 a-48dc-a42 6-eb35de30 931b' | |
| 11173 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLT AFR Wash NS IR D LUKOPR S UPRed 2C', [LastUpda teDate]='2 016-07-27 11:17:06.0 00', [Last UpdateUser ]=' RED A CTED ' WHERE [B loodProduc tGuid]='0d aa94a6-c7b f-4466-a94 4-eb4a82e9 d89e' | |
| 11174 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLT AFR ACD-A>PAS- C IRD LUKO PR SUPRed 2C', [Last UpdateDate ]='2016-07 -27 11:17: 06.000', [ LastUpdate User]=' RED A CTED ' WHERE [B loodProduc tGuid]='a2 68cdf3-c76 6-4620-adc 9-eb504851 c5b2' | |
| 11175 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC Rej None OPN L UKOPR 2C', [LastUpda teDate]='2 016-07-27 11:17:06.0 00', [Last UpdateUser ]=' RED A CTED ' WHERE [B loodProduc tGuid]='6e fac154-ee5 c-4e76-bcd 0-eb58cf1f 8572' | |
| 11176 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC CPD IRD LUKOPR 7C', [Las tUpdateDat e]='2016-0 7-27 11:17 :06.000', [LastUpdat eUser]=' RED A CTED ' WHERE [B loodProduc tGuid]='8e 5c9c98-32c 2-4809-864 9-eb60678e 13c9' | |
| 11177 | UPDATE [db o].[BloodP roduct] SE T [Product Name]='Aph eresis FRE SH FROZEN PLASMA|NaC itrate/XX/ <=-25C|For mnf:injec table|Froz en <=24h|Q uar:>=112d /retested' , [LastUpd ateDate]=' 2016-07-27 11:17:06. 000', [Las tUpdateUse r]=' RED A CTED ' WHERE [B loodProduc tGuid]='eb ac12a9-4cc 9-4e8e-aef 8-eb73aafb 4881' | |
| 11178 | UPDATE [db o].[BloodP roduct] SE T [Product Name]='FRE SH FROZEN PLASMA|CPD /450mL/<=- 25C|Frozen <=8h|Ribo flavin-tre ated', [La stUpdateDa te]='2016- 07-27 11:1 7:06.000', [LastUpda teUser]=' RED A CTED ' WHERE [B loodProduc tGuid]='44 fb8389-375 2-4b29-be0 4-eb791332 119b' | |
| 11179 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC Deg Rej None O PN IRD LUK OPR 2C', [ LastUpdate Date]='201 6-07-27 11 :17:06.000 ', [LastUp dateUser]= ' RED A CTED ' WHERE [B loodProduc tGuid]='42 b67176-0fd 8-4cbd-ab3 4-eb9a73da c9b9' | |
| 11180 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC AFR ACD-A>AS3 OPN IRD LU KOPR SUPRe d 1C', [La stUpdateDa te]='2016- 07-27 11:1 7:06.000', [LastUpda teUser]=' RED A CTED ' WHERE [B loodProduc tGuid]='1e 044d5b-6c4 b-46ae-b2b 2-eb9b7049 47e3' | |
| 11181 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLT AFR PAS-E IRD LUKOPR 4C BacTest', [LastUpdat eDate]='20 16-07-27 1 1:17:06.00 0', [LastU pdateUser] =' RED A CTED ' WHERE [B loodProduc tGuid]='43 efdab1-708 f-4227-96c e-eb9de824 c1fd' | |
| 11182 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLT AFR ACD-A NMT 2CNA', [La stUpdateDa te]='2016- 07-27 11:1 7:06.000', [LastUpda teUser]=' RED A CTED ' WHERE [B loodProduc tGuid]='fc 577192-f49 d-4280-8f5 d-eb9e4bd7 fe03' | |
| 11183 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLT AFR ACD-A OPN LUKOPR PLS Red 2CNA' , [LastUpd ateDate]=' 2016-07-27 11:17:06. 000', [Las tUpdateUse r]=' RED A CTED ' WHERE [B loodProduc tGuid]='4b c2d9f6-81f d-48bc-9ea 5-eba56e9d 3bee' | |
| 11184 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLT AFR NaCit IRD LUKOPR 3C' , [LastUpd ateDate]=' 2016-07-27 11:17:06. 000', [Las tUpdateUse r]=' RED A CTED ' WHERE [B loodProduc tGuid]='4d 250cc5-267 c-4e25-a16 a-ebacb9db 102f' | |
| 11185 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC AFR ACD-A>AS1 1C', [Last UpdateDate ]='2016-07 -27 11:17: 06.000', [ LastUpdate User]=' RED A CTED ' WHERE [B loodProduc tGuid]='cd 354118-f84 5-46c3-9a5 7-ebc2dd05 67c2' | |
| 11186 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC AFR Deg None L UKOPR 2C', [LastUpda teDate]='2 016-07-27 11:17:06.0 00', [Last UpdateUser ]=' RED A CTED ' WHERE [B loodProduc tGuid]='ec b3e884-f92 c-441c-a52 4-ebd139e1 7615' | |
| 11187 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='WB CP2D 6C', [Last UpdateDate ]='2016-07 -27 11:17: 06.000', [ LastUpdate User]=' RED A CTED ' WHERE [B loodProduc tGuid]='de 5eb70f-82c 9-442d-91f 9-ebfa3838 0705' | |
| 11188 | UPDATE [db o].[BloodP roduct] SE T [Product Name]='Aph eresis FRE SH FROZEN PLASMA|NS/ XX/<=-30C| For mnf:no ninjectabl e|ResLeu:< 1E6|Frozen <=8h', [L astUpdateD ate]='2016 -07-27 11: 17:06.000' , [LastUpd ateUser]=' RED A CTED ' WHERE [B loodProduc tGuid]='76 8dfe1e-cb9 0-4f02-a53 8-ebfb43ec ed7a' | |
| 11189 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='WB CP2D IRD LUKOPR 8C', [Las tUpdateDat e]='2016-0 7-27 11:17 :06.000', [LastUpdat eUser]=' RED A CTED ' WHERE [B loodProduc tGuid]='70 b2a85e-ebc b-4062-803 b-ec02d15f 8ddf' | |
| 11190 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLT AFR ACD-A MNFN I OPN 2CNA ', [LastUp dateDate]= '2016-07-2 7 11:17:06 .000', [La stUpdateUs er]=' RED A CTED ' WHERE [B loodProduc tGuid]='9d e5c711-906 f-4a40-a66 1-ec176ce7 5c21' | |
| 11191 | UPDATE [db o].[BloodP roduct] SE T [Product Name]='POO LED CRYOPR ECIPITATE| None/XX/<= -30C|Irrad iated', [L astUpdateD ate]='2016 -07-27 11: 17:06.000' , [LastUpd ateUser]=' RED A CTED ' WHERE [B loodProduc tGuid]='73 47a524-82d b-4448-98c f-ec1ba59a 7cab' | |
| 11192 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC AFR CP2D>AS3 1 C', [LastU pdateDate] ='2016-07- 27 11:17:0 6.000', [L astUpdateU ser]=' RED A CTED ' WHERE [B loodProduc tGuid]='e5 caca9a-3f3 3-4c30-b8d 5-ec2cbb29 10e3' | |
| 11193 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC AFR ACD-A>AS1 OPN LUKOPR SUPRed 1C ', [LastUp dateDate]= '2016-07-2 7 11:17:06 .000', [La stUpdateUs er]=' RED A CTED ' WHERE [B loodProduc tGuid]='d5 247535-aa7 0-4791-bca 3-ec3b8da2 315b' | |
| 11194 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLT AFR Wash None OPN IRD 3C ', [LastUp dateDate]= '2016-07-2 7 11:17:06 .000', [La stUpdateUs er]=' RED A CTED ' WHERE [B loodProduc tGuid]='36 668e05-789 f-44e2-b89 f-ec5c9d56 8c78' | |
| 11195 | UPDATE [db o].[BloodP roduct] SE T [Product Name]='Aph eresis FRE SH FROZEN PLASMA|NaC itrate/XX/ <=-65C|2nd container |Quar:>=11 2d/reteste d', [Produ ctShortNam e]='FFP AF R NaCit 2C QUAR', [L astUpdateD ate]='2016 -07-27 11: 17:06.000' , [LastUpd ateUser]=' RED A CTED ' WHERE [B loodProduc tGuid]='36 df9a97-a57 9-473f-a47 5-ec840dd8 b666' | |
| 11196 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLT AFR ACD-A IRD LUKOPR PLS Red 2C', [LastUpdat eDate]='20 16-07-27 1 1:17:06.00 0', [LastU pdateUser] =' RED A CTED ' WHERE [B loodProduc tGuid]='d9 3eb753-1bf 0-4f91-980 d-eca60256 3101' | |
| 11197 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC CPD IRD LUKOPR 4C', [Las tUpdateDat e]='2016-0 7-27 11:17 :06.000', [LastUpdat eUser]=' RED A CTED ' WHERE [B loodProduc tGuid]='45 6ab147-1a6 8-403e-bcd 7-ecc8f776 3df4' | |
| 11198 | UPDATE [db o].[BloodP roduct] SE T [Product Name]='Aph eresis FRE SH FROZEN PLASMA|ACD -A/XX/<=-2 5C|>=600mL |Quar:>=90 d/retested ', [Produc tShortName ]='FFP AFR ACD-A Lrg Vol QUAR', [LastUpda teDate]='2 016-07-27 11:17:06.0 00', [Last UpdateUser ]=' RED A CTED ' WHERE [B loodProduc tGuid]='f7 f0cb06-fbd 9-4566-bba a-eccf74b0 efde' | |
| 11199 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLT AFR PAS-E IRD LUKOPR 2C' , [LastUpd ateDate]=' 2016-07-27 11:17:06. 000', [Las tUpdateUse r]=' RED A CTED ' WHERE [B loodProduc tGuid]='22 4003c9-701 0-49ee-ad5 7-ecd3dbdb 6226' | |
| 11200 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC CPDA -1 1C', [L astUpdateD ate]='2016 -07-27 11: 17:06.000' , [LastUpd ateUser]=' RED A CTED ' WHERE [B loodProduc tGuid]='db 6aa0fe-3ac 4-48a8-b5d c-ecdb5d2b 54ec' | |
| 11201 | UPDATE [db o].[BloodP roduct] SE T [Product Name]='Aph eresis FRE SH FROZEN PLASMA|ACD -A/XX/<=-6 5C|Irradia ted|Fin Co n:NS|Quar: >=6m/retes ted', [Las tUpdateDat e]='2016-0 7-27 11:17 :06.000', [LastUpdat eUser]=' RED A CTED ' WHERE [B loodProduc tGuid]='16 6c7e31-2ef 5-4976-afa c-ecdf106e da02' | |
| 11202 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLT AFR Wash PAS-C LUKOPR 1C Psoraln', [LastUpda teDate]='2 016-07-27 11:17:06.0 00', [Last UpdateUser ]=' RED A CTED ' WHERE [B loodProduc tGuid]='e5 5c2a15-b9a 0-4bce-9fb 9-ece50145 9f32' | |
| 11203 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLT AFR ACD-A IRD LUKOPR PLS Red/PA 2C ', [LastUp dateDate]= '2016-07-2 7 11:17:06 .000', [La stUpdateUs er]=' RED A CTED ' WHERE [B loodProduc tGuid]='56 87bde7-bc3 e-4b2b-9ed b-ecfbc931 6dec' | |
| 11204 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC CPDA -1 5C', [L astUpdateD ate]='2016 -07-27 11: 17:06.000' , [LastUpd ateUser]=' RED A CTED ' WHERE [B loodProduc tGuid]='0c 9222c2-788 f-496a-9c5 1-ecfd23fb 6c03' | |
| 11205 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLT AFR Thaw DMSO OPN IRD PA 2CNA', [L astUpdateD ate]='2016 -07-27 11: 17:06.000' , [LastUpd ateUser]=' RED A CTED ' WHERE [B loodProduc tGuid]='ae ad13a3-68d c-4bb4-8b2 2-ed04fee5 e7cc' | |
| 11206 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC AFR CPDA-1 IRD 3C', [Las tUpdateDat e]='2016-0 7-27 11:17 :06.000', [LastUpdat eUser]=' RED A CTED ' WHERE [B loodProduc tGuid]='5b 1642db-3e9 2-4d51-a9c 0-ed32a01b ae74' | |
| 11207 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLT AFR NS OPN LUK OPR 2C', [ LastUpdate Date]='201 6-07-27 11 :17:06.000 ', [LastUp dateUser]= ' RED A CTED ' WHERE [B loodProduc tGuid]='f8 fe9719-696 9-4954-b88 8-ed3e79cd 99a8' | |
| 11208 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLT AFR ACD-A IRD PLS Red 1C ', [LastUp dateDate]= '2016-07-2 7 11:17:06 .000', [La stUpdateUs er]=' RED A CTED ' WHERE [B loodProduc tGuid]='e2 f94ecf-029 a-45e3-aed 4-ed5b53c2 a538' | |
| 11209 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLASMA T haw None 5 C', [LastU pdateDate] ='2016-07- 27 11:17:0 6.000', [L astUpdateU ser]=' RED A CTED ' WHERE [B loodProduc tGuid]='bf 0661e2-484 e-4e1b-80f 8-ed6b7042 3509' | |
| 11210 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC AFR Deg None O PN 3C', [L astUpdateD ate]='2016 -07-27 11: 17:06.000' , [LastUpd ateUser]=' RED A CTED ' WHERE [B loodProduc tGuid]='b9 6f0980-96d c-4a55-a53 1-ed758de2 efd0' | |
| 11211 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLT AFR ACD-A LUKO PR 8C', [L astUpdateD ate]='2016 -07-27 11: 17:06.000' , [LastUpd ateUser]=' RED A CTED ' WHERE [B loodProduc tGuid]='87 d5b893-0c5 e-49a0-b57 1-ed8e172a 8834' | |
| 11212 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLT AFR ACD-A LUKO PR 1C BacM tr', [Last UpdateDate ]='2016-07 -27 11:17: 06.000', [ LastUpdate User]=' RED A CTED ' WHERE [B loodProduc tGuid]='f7 897504-4ac 2-4c72-ac8 4-eda22567 01e3' | |
| 11213 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC AFR ACD-A>AS1 OPN LUKOPR PA 1C', [ LastUpdate Date]='201 6-07-27 11 :17:06.000 ', [LastUp dateUser]= ' RED A CTED ' WHERE [B loodProduc tGuid]='1e a05dc0-625 0-49af-aa7 4-eda65639 216b' | |
| 11214 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLT AFR ACD-A MNFN I OPN 3C', [LastUpda teDate]='2 016-07-27 11:17:06.0 00', [Last UpdateUser ]=' RED A CTED ' WHERE [B loodProduc tGuid]='77 71deb7-538 2-4e6f-82e 4-edaa8810 c9d8' | |
| 11215 | UPDATE [db o].[BloodP roduct] SE T [Product Name]='FRE SH FROZEN PLASMA|CPD A-1/450mL/ <=-25C|For mnf:nonin jectable|F rozen <=8h |Quar:>=11 2d/reteste d', [LastU pdateDate] ='2016-07- 27 11:17:0 6.000', [L astUpdateU ser]=' RED A CTED ' WHERE [B loodProduc tGuid]='d6 4560a2-259 2-4f17-965 a-edd1513f 8bea' | |
| 11216 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLT AFR ACD-A IRD 1C Ribo', [LastUpdat eDate]='20 16-07-27 1 1:17:06.00 0', [LastU pdateUser] =' RED A CTED ' WHERE [B loodProduc tGuid]='90 0a4865-bc2 f-4cca-826 f-edd3104c ee2f' | |
| 11217 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC AFR CPD>AS1 IR D LUKOPR 2 C', [LastU pdateDate] ='2016-07- 27 11:17:0 6.000', [L astUpdateU ser]=' RED A CTED ' WHERE [B loodProduc tGuid]='49 22b12b-6d9 9-45ea-918 c-ede2b7a1 20bf' | |
| 11218 | UPDATE [db o].[BloodP roduct] SE T [Product Name]='Aph eresis FRE SH FROZEN PLASMA|ACD -B/XX/<=-3 0C|>=200mL <400mL|Qua r:>=6m/ret ested', [L astUpdateD ate]='2016 -07-27 11: 17:06.000' , [LastUpd ateUser]=' RED A CTED ' WHERE [B loodProduc tGuid]='41 d57687-dde d-41bc-933 f-ee257ac0 f989' | |
| 11219 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLT AFR ACD-A OPN PLS Red 1C ', [LastUp dateDate]= '2016-07-2 7 11:17:06 .000', [La stUpdateUs er]=' RED A CTED ' WHERE [B loodProduc tGuid]='c5 99261f-bac c-4afd-8f4 b-ee271c21 923b' | |
| 11220 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLT AFR NaCit IRD PLS Red 2C ', [LastUp dateDate]= '2016-07-2 7 11:17:06 .000', [La stUpdateUs er]=' RED A CTED ' WHERE [B loodProduc tGuid]='0c be7b8e-bc5 8-4044-bd1 4-ee28a5b9 013d' | |
| 11221 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLT AFR ACD-A NMT OPN 2CNA', [LastUpda teDate]='2 016-07-27 11:17:06.0 00', [Last UpdateUser ]=' RED A CTED ' WHERE [B loodProduc tGuid]='26 c1f65d-c2b c-485a-850 6-ee28b1f1 488a' | |
| 11222 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC Deg Rej None O PN 1C', [L astUpdateD ate]='2016 -07-27 11: 17:06.000' , [LastUpd ateUser]=' RED A CTED ' WHERE [B loodProduc tGuid]='ba 5fdbc0-dad 1-46f0-827 f-ee40d19a d88b' | |
| 11223 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='FFP AFR Thaw None 5C', [Last UpdateDate ]='2016-07 -27 11:17: 06.000', [ LastUpdate User]=' RED A CTED ' WHERE [B loodProduc tGuid]='ea 14c650-3d0 7-4a27-b54 d-ee790ce4 fcba' | |
| 11224 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='FFP AFR None LUKOP R 6C', [La stUpdateDa te]='2016- 07-27 11:1 7:06.000', [LastUpda teUser]=' RED A CTED ' WHERE [B loodProduc tGuid]='8a 5b4a90-e5f a-4c70-920 c-ee82b184 f712' | |
| 11225 | UPDATE [db o].[BloodP roduct] SE T [Product Name]='Aph eresis FRE SH FROZEN PLASMA|NaC itrate/XX/ <=-25C|Fro zen <=6h|M ethylene b lue-treate d', [LastU pdateDate] ='2016-07- 27 11:17:0 6.000', [L astUpdateU ser]=' RED A CTED ' WHERE [B loodProduc tGuid]='ef 00b131-e55 a-4a4f-939 7-ee83bb2a 5a70' | |
| 11226 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC AFR ACD-A>AS1 IRD 2C', [ LastUpdate Date]='201 6-07-27 11 :17:06.000 ', [LastUp dateUser]= ' RED A CTED ' WHERE [B loodProduc tGuid]='27 e613f2-85a f-445f-a5c 7-ee869650 758b' | |
| 11227 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLT AFR ACD-A LUKO PR 1C', [L astUpdateD ate]='2016 -07-27 11: 17:06.000' , [LastUpd ateUser]=' RED A CTED ' WHERE [B loodProduc tGuid]='1f f56862-03e 9-491c-bc7 9-eeabb086 8c70' | |
| 11228 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='FFP AFR None QUAR 2C', [Last UpdateDate ]='2016-07 -27 11:17: 06.000', [ LastUpdate User]=' RED A CTED ' WHERE [B loodProduc tGuid]='28 f82bfc-b75 2-49ed-9bc b-eeb62ed8 c6f3' | |
| 11229 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLT AFR PAS-C MNFI LUKOPR 3C ', [LastUp dateDate]= '2016-07-2 7 11:17:06 .000', [La stUpdateUs er]=' RED A CTED ' WHERE [B loodProduc tGuid]='1d d0a140-381 0-4860-ab0 3-eee4ee4a e965' | |
| 11230 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLT AFR NS LUKOPR 2C', [Last UpdateDate ]='2016-07 -27 11:17: 06.000', [ LastUpdate User]=' RED A CTED ' WHERE [B loodProduc tGuid]='e8 17a8fb-325 a-43ed-bd0 5-eee59629 2994' | |
| 11231 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLT AFR ACD-A LUKO PR 3C BacM tr', [Last UpdateDate ]='2016-07 -27 11:17: 06.000', [ LastUpdate User]=' RED A CTED ' WHERE [B loodProduc tGuid]='67 bac524-05f 8-49ad-a0b b-eeecb276 f516' | |
| 11232 | UPDATE [db o].[BloodP roduct] SE T [Product Name]='Aph eresis FRE SH FROZEN PLASMA|ACD -A/XX/<=-3 0C|ResLeu: <1E6|>=200 mL<400mL|F rozen <=6h |3rd conta iner', [Pr oductShort Name]='FFP AFR ACD-A LUKOPR 3C ', [LastUp dateDate]= '2016-07-2 7 11:17:06 .000', [La stUpdateUs er]=' RED A CTED ' WHERE [B loodProduc tGuid]='8d eaf7d2-fa7 5-4043-bcd 6-ef034f0d 100c' | |
| 11233 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='FFP AFR Thaw NaCit IRD 1C QU AR', [Last UpdateDate ]='2016-07 -27 11:17: 06.000', [ LastUpdate User]=' RED A CTED ' WHERE [B loodProduc tGuid]='86 d082c7-b81 3-4200-8f3 8-ef154503 5570' | |
| 11234 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLASMA N one 7C', [ LastUpdate Date]='201 6-07-27 11 :17:06.000 ', [LastUp dateUser]= ' RED A CTED ' WHERE [B loodProduc tGuid]='9b e9b8ca-428 7-4edc-b78 5-ef29d8d8 ea8f' | |
| 11235 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC AFR ACD-A MNFN I OPN 1C', [LastUpda teDate]='2 016-07-27 11:17:06.0 00', [Last UpdateUser ]=' RED A CTED ' WHERE [B loodProduc tGuid]='f9 80490c-07f 2-48dc-a9c 6-ef31f6ae e519' | |
| 11236 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC Deg Rej None O PN IRD LUK OPR SR 1C' , [LastUpd ateDate]=' 2016-07-27 11:17:06. 000', [Las tUpdateUse r]=' RED A CTED ' WHERE [B loodProduc tGuid]='e6 b53e5d-618 6-48a4-a07 3-ef3cd31d 47f9' | |
| 11237 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLT AFR ACD-A IRD LUKOPR 1C Pedi', [La stUpdateDa te]='2016- 07-27 11:1 7:06.000', [LastUpda teUser]=' RED A CTED ' WHERE [B loodProduc tGuid]='7d 7dc7a3-94b c-431f-a5f 1-ef6e34cf 0f5f' | |
| 11238 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC Deg Rej None O PN SR 2C', [LastUpda teDate]='2 016-07-27 11:17:06.0 00', [Last UpdateUser ]=' RED A CTED ' WHERE [B loodProduc tGuid]='a6 e7cf5c-8de 5-4a97-874 e-ef744bdd 5a72' | |
| 11239 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC CPD IRD 1C', [ RetireDate ]='2015-04 -07 00:00: 00.000', [ LastUpdate Date]='201 6-07-27 11 :17:06.000 ', [LastUp dateUser]= ' RED A CTED ' WHERE [B loodProduc tGuid]='f4 b9cfb4-101 5-4317-b02 d-ef757c8d 7e62' | |
| 11240 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLT AFR ACD-A OPN IRD PLS Re d 2C', [La stUpdateDa te]='2016- 07-27 11:1 7:06.000', [LastUpda teUser]=' RED A CTED ' WHERE [B loodProduc tGuid]='bc 18aea1-f9a 2-41f7-9f1 e-ef85abf2 fc01' | |
| 11241 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLT AFR ACD-A IRD 4C', [Last UpdateDate ]='2016-07 -27 11:17: 06.000', [ LastUpdate User]=' RED A CTED ' WHERE [B loodProduc tGuid]='93 fbcb12-677 4-4f8c-8ba 7-ef8a68f1 ebc9' | |
| 11242 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLT AFR ACD-B IRD LUKOPR 1C' , [LastUpd ateDate]=' 2016-07-27 11:17:06. 000', [Las tUpdateUse r]=' RED A CTED ' WHERE [B loodProduc tGuid]='ec 02a7ab-02d 3-4110-941 e-ef9f6ac6 614d' | |
| 11243 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLT AFR PAS-D LUKO PR 4C BacM tr', [Last UpdateDate ]='2016-07 -27 11:17: 06.000', [ LastUpdate User]=' RED A CTED ' WHERE [B loodProduc tGuid]='ce bd8c49-d48 4-4a04-921 2-efa2db06 6be2' | |
| 11244 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC CPDA -1 5C', [R etireDate] ='2015-04- 07 00:00:0 0.000', [L astUpdateD ate]='2016 -07-27 11: 17:06.000' , [LastUpd ateUser]=' RED A CTED ' WHERE [B loodProduc tGuid]='45 8a3901-fca c-4ebe-9d8 a-efa671b8 c8f2' | |
| 11245 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC CPDA -1 IRD LUK OPR 1C', [ LastUpdate Date]='201 6-07-27 11 :17:06.000 ', [LastUp dateUser]= ' RED A CTED ' WHERE [B loodProduc tGuid]='14 4f5054-b48 8-473c-b81 d-efcb1b94 bfaf' | |
| 11246 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLT AFR ACD-A OPN LUKOPR 2C' , [LastUpd ateDate]=' 2016-07-27 11:17:06. 000', [Las tUpdateUse r]=' RED A CTED ' WHERE [B loodProduc tGuid]='ea 6cf053-155 e-45b7-8db b-efdb72cb f6bd' | |
| 11247 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC AFR CP2D>AS3 I RD 5C', [L astUpdateD ate]='2016 -07-27 11: 17:06.000' , [LastUpd ateUser]=' RED A CTED ' WHERE [B loodProduc tGuid]='af 76ef82-7e0 0-4790-887 f-efdec637 8367' | |
| 11248 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC AFR Deg None O PN 5C', [L astUpdateD ate]='2016 -07-27 11: 17:06.000' , [LastUpd ateUser]=' RED A CTED ' WHERE [B loodProduc tGuid]='82 62050d-146 7-4620-8c8 8-efe5db3b f1d9' | |
| 11249 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLT AFR ACD-A>PAS- C IRD LUKO PR SUPRed 1C', [Last UpdateDate ]='2016-07 -27 11:17: 06.000', [ LastUpdate User]=' RED A CTED ' WHERE [B loodProduc tGuid]='95 9798c1-5d6 0-4dd3-a73 5-eff4a368 8705' | |
| 11250 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC Wash None OPN LUKOPR 2C' , [LastUpd ateDate]=' 2016-07-27 11:17:06. 000', [Las tUpdateUse r]=' RED A CTED ' WHERE [B loodProduc tGuid]='46 1f32cf-232 7-4abe-b2f f-f01d7c63 117d' | |
| 11251 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC AFR CP2D OPN S R 1C', [La stUpdateDa te]='2016- 07-27 11:1 7:06.000', [LastUpda teUser]=' RED A CTED ' WHERE [B loodProduc tGuid]='87 ff1bf5-993 d-4bcf-bf0 a-f02d9eb9 1443' | |
| 11252 | UPDATE [db o].[BloodP roduct] SE T [Product Name]='Aph eresis FRE SH FROZEN PLASMA|ACD -A/XX/<=-3 0C|ResLeu: <1E6|>=200 mL<400mL|F rozen <=6h |1st conta iner', [Pr oductShort Name]='FFP AFR ACD-A LUKOPR 1C ', [LastUp dateDate]= '2016-07-2 7 11:17:06 .000', [La stUpdateUs er]=' RED A CTED ' WHERE [B loodProduc tGuid]='5c 985a3b-a64 9-4843-bce 2-f02f6437 bd7a' | |
| 11253 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLT AFR ACD-B MNFN I OPN 2C', [LastUpda teDate]='2 016-07-27 11:17:06.0 00', [Last UpdateUser ]=' RED A CTED ' WHERE [B loodProduc tGuid]='18 57167d-0a9 b-4947-8f8 5-f03aadda c34b' | |
| 11254 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLASMA A FR Liq ACD -A IRD LUK OPR 1C', [ LastUpdate Date]='201 6-07-27 11 :17:06.000 ', [LastUp dateUser]= ' RED A CTED ' WHERE [B loodProduc tGuid]='ff a8d7dd-787 e-4e27-990 d-f04317cc 07c2' | |
| 11255 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC AFR CPDA-1 IRD LUKOPR 4C ', [LastUp dateDate]= '2016-07-2 7 11:17:06 .000', [La stUpdateUs er]=' RED A CTED ' WHERE [B loodProduc tGuid]='2d 1e6e43-167 4-4232-8c6 8-f0517c90 1ce8' | |
| 11256 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC AFR CP2D>AS3 3 C', [LastU pdateDate] ='2016-07- 27 11:17:0 6.000', [L astUpdateU ser]=' RED A CTED ' WHERE [B loodProduc tGuid]='96 200b16-ea2 1-4733-813 9-f0667307 3460' | |
| 11257 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLT AFR ACD-A IRD LUKOPR 3C BacMtr', [ LastUpdate Date]='201 6-07-27 11 :17:06.000 ', [LastUp dateUser]= ' RED A CTED ' WHERE [B loodProduc tGuid]='aa 0c86ca-56b 5-4083-a0a 0-f082e659 0cee' | |
| 11258 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC AFR Wash None IRD LUKOPR 2C', [Las tUpdateDat e]='2016-0 7-27 11:17 :06.000', [LastUpdat eUser]=' RED A CTED ' WHERE [B loodProduc tGuid]='29 f55d41-465 c-4382-add a-f083219e 8b25' | |
| 11259 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLT AFR ACD-A IRD LUKOPR PLS Red/PA 1C ', [LastUp dateDate]= '2016-07-2 7 11:17:06 .000', [La stUpdateUs er]=' RED A CTED ' WHERE [B loodProduc tGuid]='5a f6d421-481 2-4ab7-a48 d-f0845806 c5c0' | |
| 11260 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLT AFR NS OPN IRD LUKOPR 2C ', [LastUp dateDate]= '2016-07-2 7 11:17:06 .000', [La stUpdateUs er]=' RED A CTED ' WHERE [B loodProduc tGuid]='2d d83ee3-8e8 d-44ec-979 e-f0975cd1 d93a' | |
| 11261 | UPDATE [db o].[BloodP roduct] SE T [Product Name]='Aph eresis FRE SH FROZEN PLASMA|CPD -50/XX/<=- 65C|ResLeu :<1E6|1st container' , [Product ShortName] ='FFP AFR CPD-50 LUK OPR 1C', [ LastUpdate Date]='201 6-07-27 11 :17:06.000 ', [LastUp dateUser]= ' RED A CTED ' WHERE [B loodProduc tGuid]='64 20ee62-f02 4-4e11-912 3-f0a900b9 38ce' | |
| 11262 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC AFR CPDA-1 IRD LUKOPR 6C ', [LastUp dateDate]= '2016-07-2 7 11:17:06 .000', [La stUpdateUs er]=' RED A CTED ' WHERE [B loodProduc tGuid]='d6 4d56f0-c9a 5-4ad7-bf0 4-f0aba4b5 95ac' | |
| 11263 | UPDATE [db o].[BloodP roduct] SE T [Product Name]='Aph eresis FRE SH FROZEN PLASMA|ACD -A/XX/<=-6 5C|Aphr no t automate d', [LastU pdateDate] ='2016-07- 27 11:17:0 6.000', [L astUpdateU ser]=' RED A CTED ' WHERE [B loodProduc tGuid]='c5 625a07-c3b 1-4c6f-aee a-f0b1a684 6fe3' | |
| 11264 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='FFP AFR Thaw None IRD 8C', [ LastUpdate Date]='201 6-07-27 11 :17:06.000 ', [LastUp dateUser]= ' RED A CTED ' WHERE [B loodProduc tGuid]='72 a87f90-c33 3-409e-b41 6-f0b33168 0f28' | |
| 11265 | UPDATE [db o].[BloodP roduct] SE T [Product Name]='Fro zen POOLED PLATELETS |DMSO/XX/< =-80C|Buff y coat plt s prep', [ LastUpdate Date]='201 6-07-27 11 :17:06.000 ', [LastUp dateUser]= ' RED A CTED ' WHERE [B loodProduc tGuid]='3d 50614f-3f9 d-4536-a0c b-f0b64fe5 39fd' | |
| 11266 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLT AFR ACD-A IRD LUKOPR 2C BacMtr', [ LastUpdate Date]='201 6-07-27 11 :17:06.000 ', [LastUp dateUser]= ' RED A CTED ' WHERE [B loodProduc tGuid]='5b f5e650-99d 2-4dce-942 a-f0cfdb8c 5759' | |
| 11267 | UPDATE [db o].[BloodP roduct] SE T [Product Name]='FRE SH FROZEN PLASMA|NS/ 450mL/<=-3 0C|For mnf :noninject able', [La stUpdateDa te]='2016- 07-27 11:1 7:06.000', [LastUpda teUser]=' RED A CTED ' WHERE [B loodProduc tGuid]='5e d0eb99-d32 d-4a95-bf1 8-f0d74f50 96cf' | |
| 11268 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLT AFR Wash None OPN 2C', [ LastUpdate Date]='201 6-07-27 11 :17:06.000 ', [LastUp dateUser]= ' RED A CTED ' WHERE [B loodProduc tGuid]='ec 9a319e-7fe 4-4591-8f7 e-f0ec619c d350' | |
| 11269 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLT AFR PAS-D IRD LUKOPR 4C BacTest', [LastUpdat eDate]='20 16-07-27 1 1:17:06.00 0', [LastU pdateUser] =' RED A CTED ' WHERE [B loodProduc tGuid]='a6 aee923-c77 8-4571-b20 1-f0feeffc 2e35' | |
| 11270 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLT AFR ACD-B IRD 4C', [Last UpdateDate ]='2016-07 -27 11:17: 06.000', [ LastUpdate User]=' RED A CTED ' WHERE [B loodProduc tGuid]='d8 749f79-ab4 b-4a3c-a65 4-f10250cc a3bd' | |
| 11271 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC AFR CPDA-1 LUK OPR 7C', [ LastUpdate Date]='201 6-07-27 11 :17:06.000 ', [LastUp dateUser]= ' RED A CTED ' WHERE [B loodProduc tGuid]='0a ae6502-c4d 6-4839-93e 5-f11a8d6d 8b43' | |
| 11272 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLASMA A FR Thaw AC D-A IRD 4C ', [LastUp dateDate]= '2016-07-2 7 11:17:06 .000', [La stUpdateUs er]=' RED A CTED ' WHERE [B loodProduc tGuid]='76 cef634-e3a e-44dc-bff a-f1258ea9 9bdb' | |
| 11273 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='FFP None IRD 7C', [LastUpdat eDate]='20 16-07-27 1 1:17:06.00 0', [LastU pdateUser] =' RED A CTED ' WHERE [B loodProduc tGuid]='da ca76c4-343 e-4c9d-93c 5-f1441415 6c82' | |
| 11274 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLASMA A FR Liq ACD -A LUKOPR 2C', [Last UpdateDate ]='2016-07 -27 11:17: 06.000', [ LastUpdate User]=' RED A CTED ' WHERE [B loodProduc tGuid]='74 db925f-fd8 7-4e4e-b2f 2-f14a719e d074' | |
| 11275 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLT AFR PAS-D LUKO PR 3C BacT est', [Las tUpdateDat e]='2016-0 7-27 11:17 :06.000', [LastUpdat eUser]=' RED A CTED ' WHERE [B loodProduc tGuid]='1e e47702-f5d 4-4c39-b65 2-f1502ecc 8822' | |
| 11276 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLT AFR ACD-A IRD LUKOPR 2C BacMtr', [ LastUpdate Date]='201 6-07-27 11 :17:06.000 ', [LastUp dateUser]= ' RED A CTED ' WHERE [B loodProduc tGuid]='25 e1fdf2-aa9 9-4633-b1a 7-f15d7633 f33a' | |
| 11277 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLT AFR NaCit LUKO PR PLS Red 4C', [Las tUpdateDat e]='2016-0 7-27 11:17 :06.000', [LastUpdat eUser]=' RED A CTED ' WHERE [B loodProduc tGuid]='ca 796be0-75a b-45c5-b8a a-f1775550 5c2b' | |
| 11278 | UPDATE [db o].[BloodP roduct] SE T [Product Name]='Aph eresis FRE SH FROZEN PLASMA|ACD -A/XX/<=-6 5C|Fin Con :NS|Aphr n ot automat ed', [Last UpdateDate ]='2016-07 -27 11:17: 06.000', [ LastUpdate User]=' RED A CTED ' WHERE [B loodProduc tGuid]='52 c26247-f43 3-411a-bb1 d-f17b56e3 eb2f' | |
| 11279 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC Froz Rej None OPN IRD 1C ', [LastUp dateDate]= '2016-07-2 7 11:17:06 .000', [La stUpdateUs er]=' RED A CTED ' WHERE [B loodProduc tGuid]='99 c35b3f-bab 0-4089-8de 0-f1beaa9b 1ffe' | |
| 11280 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC CPDA -1 IRD LUK OPR PA', [ LastUpdate Date]='201 6-07-27 11 :17:06.000 ', [LastUp dateUser]= ' RED A CTED ' WHERE [B loodProduc tGuid]='94 f7117f-c05 c-4a36-abd c-f1e453b0 3d7a' | |
| 11281 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLT AFR ACD-A IRD LUKOPR PLS Red 3C', [LastUpdat eDate]='20 16-07-27 1 1:17:06.00 0', [LastU pdateUser] =' RED A CTED ' WHERE [B loodProduc tGuid]='32 385685-689 4-43b6-b1e 4-f1eb81b0 bcf1' | |
| 11282 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC AFR Deg Rej No ne OPN 4C' , [LastUpd ateDate]=' 2016-07-27 11:17:06. 000', [Las tUpdateUse r]=' RED A CTED ' WHERE [B loodProduc tGuid]='14 c71561-6bf b-4a7c-84d 7-f2029315 f9d5' | |
| 11283 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLT AFR ACD-A NMT 1CNA', [La stUpdateDa te]='2016- 07-27 11:1 7:06.000', [LastUpda teUser]=' RED A CTED ' WHERE [B loodProduc tGuid]='be d4af8d-11b 4-490b-9c2 9-f2071a35 d76d' | |
| 11284 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='FFP AFR None IRD Q UAR 1C', [ LastUpdate Date]='201 6-07-27 11 :17:06.000 ', [LastUp dateUser]= ' RED A CTED ' WHERE [B loodProduc tGuid]='01 91485c-699 3-41a5-91f 4-f20d88e1 7b2a' | |
| 11285 | UPDATE [db o].[BloodP roduct] SE T [Product Name]='Aph eresis CRY OPRECIPITA TE|None/XX /<=-30C', [LastUpdat eDate]='20 16-07-27 1 1:17:06.00 0', [LastU pdateUser] =' RED A CTED ' WHERE [B loodProduc tGuid]='95 a1a86b-355 e-45d4-ac0 5-f2115a11 9227' | |
| 11286 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC AFR Deg None O PN IRD PA 2C', [Last UpdateDate ]='2016-07 -27 11:17: 06.000', [ LastUpdate User]=' RED A CTED ' WHERE [B loodProduc tGuid]='60 2af047-554 8-488b-be4 6-f21194b3 61fb' | |
| 11287 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC AFR CP2D>AS3 L UKOPR 3C', [LastUpda teDate]='2 016-07-27 11:17:06.0 00', [Last UpdateUser ]=' RED A CTED ' WHERE [B loodProduc tGuid]='d1 a1b2c5-5b4 c-4a8b-a70 b-f2181f2a b050' | |
| 11288 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='FFP Thaw None IRD 5C', [Last UpdateDate ]='2016-07 -27 11:17: 06.000', [ LastUpdate User]=' RED A CTED ' WHERE [B loodProduc tGuid]='bf 962f05-b82 5-43cc-9f8 e-f2360470 aa28' | |
| 11289 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC AFR Deg None O PN LUKOPR 3C', [Last UpdateDate ]='2016-07 -27 11:17: 06.000', [ LastUpdate User]=' RED A CTED ' WHERE [B loodProduc tGuid]='31 5e6408-4fb d-4a7d-910 f-f25082b9 fbd4' | |
| 11290 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC CP2D >AS3 IRD 7 C', [LastU pdateDate] ='2016-07- 27 11:17:0 6.000', [L astUpdateU ser]=' RED A CTED ' WHERE [B loodProduc tGuid]='39 0a1563-1a3 4-4b52-ba3 f-f25313ec 0a67' | |
| 11291 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC CPDA -1 IRD 3C' , [LastUpd ateDate]=' 2016-07-27 11:17:06. 000', [Las tUpdateUse r]=' RED A CTED ' WHERE [B loodProduc tGuid]='e1 11dcd4-d16 d-4d4c-a14 e-f2706c4a 6ef4' | |
| 11292 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC AFR ACD-A>AS1 LUKOPR 1C' , [LastUpd ateDate]=' 2016-07-27 11:17:06. 000', [Las tUpdateUse r]=' RED A CTED ' WHERE [B loodProduc tGuid]='b0 4f7ab0-ca8 2-4bc0-8b2 b-f286e791 64f3' | |
| 11293 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLT AFR Wash None LUKOPR 1C Psoraln', [LastUpdat eDate]='20 16-07-27 1 1:17:06.00 0', [LastU pdateUser] =' RED A CTED ' WHERE [B loodProduc tGuid]='8f f30b06-41a 0-4790-9af 0-f291e2b0 e500' | |
| 11294 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='FFP None QUAR 4C', [LastUpda teDate]='2 016-07-27 11:17:06.0 00', [Last UpdateUser ]=' RED A CTED ' WHERE [B loodProduc tGuid]='6a b14314-79c 8-4af0-8d5 5-f2ac74c6 88a8' | |
| 11295 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='FFP AFR None 4C', [LastUpdat eDate]='20 16-07-27 1 1:17:06.00 0', [LastU pdateUser] =' RED A CTED ' WHERE [B loodProduc tGuid]='94 b4e32f-60a 4-4790-82f 2-f309848a 0fcb' | |
| 11296 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC Froz Rej Gly40 % OPN IRD LUKOPR 1C' , [LastUpd ateDate]=' 2016-07-27 11:17:06. 000', [Las tUpdateUse r]=' RED A CTED ' WHERE [B loodProduc tGuid]='b6 60842a-15f e-4107-91c c-f30fe819 4139' | |
| 11297 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLASMA A FR Thaw AC D-A 1C', [ LastUpdate Date]='201 6-07-27 11 :17:06.000 ', [LastUp dateUser]= ' RED A CTED ' WHERE [B loodProduc tGuid]='bb 6e89b5-028 f-42da-ab2 0-f312b0d4 79dc' | |
| 11298 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='WB CPDA- 1 LUKOPR 3 C', [LastU pdateDate] ='2016-07- 27 11:17:0 6.000', [L astUpdateU ser]=' RED A CTED ' WHERE [B loodProduc tGuid]='b3 c0b141-c22 9-425f-9b1 a-f3134f27 0b64' | |
| 11299 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='FFP AFR None 1C', [LastUpdat eDate]='20 16-07-27 1 1:17:06.00 0', [LastU pdateUser] =' RED A CTED ' WHERE [B loodProduc tGuid]='dd 43bc3f-f97 6-476a-a76 3-f319e338 60ac' | |
| 11300 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='FFP None IRD 8C', [LastUpdat eDate]='20 16-07-27 1 1:17:06.00 0', [LastU pdateUser] =' RED A CTED ' WHERE [B loodProduc tGuid]='d3 aa16ba-7bf 2-4f86-ad7 9-f31ec56a bc02' | |
| 11301 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLASMA A FR Thaw AC D-A 4C', [ LastUpdate Date]='201 6-07-27 11 :17:06.000 ', [LastUp dateUser]= ' RED A CTED ' WHERE [B loodProduc tGuid]='a3 3d8d82-c1d 7-4b5b-a85 0-f32217b8 e0e6' | |
| 11302 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC AFR Wash None OPN 2C', [ LastUpdate Date]='201 6-07-27 11 :17:06.000 ', [LastUp dateUser]= ' RED A CTED ' WHERE [B loodProduc tGuid]='ad a01b97-8a7 b-48a8-9cd 8-f32cade2 93ad' | |
| 11303 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC CPD 8C', [Last UpdateDate ]='2016-07 -27 11:17: 06.000', [ LastUpdate User]=' RED A CTED ' WHERE [B loodProduc tGuid]='85 20c344-b89 f-452b-945 e-f3344331 ed62' | |
| 11304 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLT AFR ACD-B OPN LUKOPR PLS Red 4C', [LastUpdat eDate]='20 16-07-27 1 1:17:06.00 0', [LastU pdateUser] =' RED A CTED ' WHERE [B loodProduc tGuid]='eb 508b41-8fe c-4748-8ff c-f34d20ec 22a9' | |
| 11305 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLT AFR ACD-A LUKO PR 1C', [L astUpdateD ate]='2016 -07-27 11: 17:06.000' , [LastUpd ateUser]=' RED A CTED ' WHERE [B loodProduc tGuid]='5e ea3fb9-50a b-497a-adb f-f35f2558 8aab' | |
| 11306 | UPDATE [db o].[BloodP roduct] SE T [Product Name]='Aph eresis FRE SH FROZEN PLASMA|ACD -B/XX/<=-3 0C|Irradia ted|>=600m L', [LastU pdateDate] ='2016-07- 27 11:17:0 6.000', [L astUpdateU ser]=' RED A CTED ' WHERE [B loodProduc tGuid]='e7 8ca5fc-e69 2-4419-bf5 6-f361fed7 2c0d' | |
| 11307 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLT AFR Wash NS IR D LUKOPR 3 C', [LastU pdateDate] ='2016-07- 27 11:17:0 6.000', [L astUpdateU ser]=' RED A CTED ' WHERE [B loodProduc tGuid]='9c be008c-b2c c-4227-a1b 3-f36777e2 ac10' | |
| 11308 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLT AFR ACD-B OPN 1CNA', [La stUpdateDa te]='2016- 07-27 11:1 7:06.000', [LastUpda teUser]=' RED A CTED ' WHERE [B loodProduc tGuid]='0a fb323f-dab c-4794-817 7-f374889b bcba' | |
| 11309 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC AFR CPD>AS1 SR 2C', [Las tUpdateDat e]='2016-0 7-27 11:17 :06.000', [LastUpdat eUser]=' RED A CTED ' WHERE [B loodProduc tGuid]='1a 2c03ea-d2e 9-4a74-a7b 7-f398d210 0cf5' | |
| 11310 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC AFR CP2D 2C', [LastUpdat eDate]='20 16-07-27 1 1:17:06.00 0', [LastU pdateUser] =' RED A CTED ' WHERE [B loodProduc tGuid]='21 8e98a0-88c 9-46e1-9f0 7-f3aa64df 6d82' | |
| 11311 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC AFR Froz None OPN 4C', [ LastUpdate Date]='201 6-07-27 11 :17:06.000 ', [LastUp dateUser]= ' RED A CTED ' WHERE [B loodProduc tGuid]='2a 4f8299-c17 f-431d-9e0 0-f3b19368 0b14' | |
| 11312 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLT AFR ACD-A IRD LUKOPR PLS Red/SAL A dd 2C', [L astUpdateD ate]='2016 -07-27 11: 17:06.000' , [LastUpd ateUser]=' RED A CTED ' WHERE [B loodProduc tGuid]='0f 960156-cef 8-47cb-99e e-f3c1db67 67c9' | |
| 11313 | UPDATE [db o].[BloodP roduct] SE T [Product Name]='Fro zen Aphere sis RED BL OOD CELLS| None/XX/<= -65C|Irrad iated|ResL eu:<5E6|2n d containe r', [Produ ctShortNam e]='RBC AF R Froz Non e IRD LUKO PR 2C', [L astUpdateD ate]='2016 -07-27 11: 17:06.000' , [LastUpd ateUser]=' RED A CTED ' WHERE [B loodProduc tGuid]='db 1cefa8-d62 e-4c8e-ae7 f-f3c1fa0f 2a21' | |
| 11314 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='FFP AFR ACD-A IRD 6C', [Last UpdateDate ]='2016-07 -27 11:17: 06.000', [ LastUpdate User]=' RED A CTED ' WHERE [B loodProduc tGuid]='41 4a7e92-430 c-4aaf-a5e 0-f3e036de c2ee' | |
| 11315 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLT AFR ACD-A LUKO PR 1C', [L astUpdateD ate]='2016 -07-27 11: 17:06.000' , [LastUpd ateUser]=' RED A CTED ' WHERE [B loodProduc tGuid]='26 68938c-726 d-41fd-b23 0-f40b2fb7 7ba0' | |
| 11316 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='FFP AFR Thaw None IRD 4C', [ LastUpdate Date]='201 6-07-27 11 :17:06.000 ', [LastUp dateUser]= ' RED A CTED ' WHERE [B loodProduc tGuid]='b8 929f1a-ece 8-4014-944 0-f41992a4 4698' | |
| 11317 | UPDATE [db o].[BloodP roduct] SE T [Product Name]='Aph eresis FRE SH FROZEN PLASMA|ACD -B/XX/<=-2 5C|Not for tx or mnf |Fin Con:N S', [LastU pdateDate] ='2016-07- 27 11:17:0 6.000', [L astUpdateU ser]=' RED A CTED ' WHERE [B loodProduc tGuid]='b8 e04eff-4a9 e-4fac-b6a b-f45fc89b 7168' | |
| 11318 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLT AFR ACD-A>PAS- C NMT LUKO PR 1C', [L astUpdateD ate]='2016 -07-27 11: 17:06.000' , [LastUpd ateUser]=' RED A CTED ' WHERE [B loodProduc tGuid]='f1 13085d-a5f 7-4bf8-94f 5-f482d136 e01c' | |
| 11319 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLT AFR ACD-A LUKO PR 6C', [L astUpdateD ate]='2016 -07-27 11: 17:06.000' , [LastUpd ateUser]=' RED A CTED ' WHERE [B loodProduc tGuid]='e9 334f7e-57c 9-4838-88d 1-f4953822 4a27' | |
| 11320 | UPDATE [db o].[BloodP roduct] SE T [Product Name]='PLA SMA|CPD/45 0mL/<=-30C |For mnf:i njectable| Frozen >24 h', [LastU pdateDate] ='2016-07- 27 11:17:0 6.000', [L astUpdateU ser]=' RED A CTED ' WHERE [B loodProduc tGuid]='0f 2fdce1-fbf 9-4201-8b1 e-f49e6cd8 17fb' | |
| 11321 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='WB CP2D IRD 6C', [ LastUpdate Date]='201 6-07-27 11 :17:06.000 ', [LastUp dateUser]= ' RED A CTED ' WHERE [B loodProduc tGuid]='89 2829b1-4dd c-4b30-829 8-f4a4fd9a 38ee' | |
| 11322 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLASMA A FR Liq CPD -50 LUKOPR 2C', [Las tUpdateDat e]='2016-0 7-27 11:17 :06.000', [LastUpdat eUser]=' RED A CTED ' WHERE [B loodProduc tGuid]='0f 66b887-0d0 1-4cbc-ac8 d-f4ac1fa4 9148' | |
| 11323 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC AFR ACD-A>AS1 NMT LUKOPR 2C', [Las tUpdateDat e]='2016-0 7-27 11:17 :06.000', [LastUpdat eUser]=' RED A CTED ' WHERE [B loodProduc tGuid]='e5 1fffcb-6dd 9-4685-8b0 0-f4b194cc 69cf' | |
| 11324 | UPDATE [db o].[BloodP roduct] SE T [Product Name]='FRE SH FROZEN PLASMA|CPD /450mL/<=- 25C|Frozen <=8h|Meth ylene blue -treated', [LastUpda teDate]='2 016-07-27 11:17:06.0 00', [Last UpdateUser ]=' RED A CTED ' WHERE [B loodProduc tGuid]='f4 4980a1-541 3-4715-8fd 8-f4b1ab84 2fa4' | |
| 11325 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLT AFR NS IRD PLS Red 3C', [LastUpdat eDate]='20 16-07-27 1 1:17:06.00 0', [LastU pdateUser] =' RED A CTED ' WHERE [B loodProduc tGuid]='aa 7476ee-734 c-4ff6-9b5 f-f4b1cadb 9f74' | |
| 11326 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='FFP AFR NaCit 2C Q UAR', [Las tUpdateDat e]='2016-0 7-27 11:17 :06.000', [LastUpdat eUser]=' RED A CTED ' WHERE [B loodProduc tGuid]='04 597948-053 b-48c6-9bf c-f4b7043b 5f8e' | |
| 11327 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLT AFR Froz ACD-A MNFI LUKO PR 3C', [L astUpdateD ate]='2016 -07-27 11: 17:06.000' , [LastUpd ateUser]=' RED A CTED ' WHERE [B loodProduc tGuid]='71 135dc7-600 9-4c22-a22 9-f4ca1a15 fe9e' | |
| 11328 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='FFP None QUAR 2C', [LastUpda teDate]='2 016-07-27 11:17:06.0 00', [Last UpdateUser ]=' RED A CTED ' WHERE [B loodProduc tGuid]='e6 cba251-d89 9-45b5-802 7-f4f16de0 fe00' | |
| 11329 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC AFR CP2D>AS3 I RD LUKOPR 3C', [Last UpdateDate ]='2016-07 -27 11:17: 06.000', [ LastUpdate User]=' RED A CTED ' WHERE [B loodProduc tGuid]='7c e09559-1cc 3-4bd5-901 c-f546c1cb c845' | |
| 11330 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLT AFR ACD-A IRD 2C', [Last UpdateDate ]='2016-07 -27 11:17: 06.000', [ LastUpdate User]=' RED A CTED ' WHERE [B loodProduc tGuid]='20 0f3f20-7b9 1-437b-951 c-f553096a 52b7' | |
| 11331 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC AFR CP2D>AS3 L UKOPR 5C', [LastUpda teDate]='2 016-07-27 11:17:06.0 00', [Last UpdateUser ]=' RED A CTED ' WHERE [B loodProduc tGuid]='b2 3185b7-b49 c-4318-abe 9-f556a4c1 8019' | |
| 11332 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLASMA A FR Thaw AC D-A OPN 2C ', [LastUp dateDate]= '2016-07-2 7 11:17:06 .000', [La stUpdateUs er]=' RED A CTED ' WHERE [B loodProduc tGuid]='5c 4d1747-840 5-4218-b9e 6-f56a385f 5443' | |
| 11333 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='FFP AFR Thaw CP2D 2C', [Last UpdateDate ]='2016-07 -27 11:17: 06.000', [ LastUpdate User]=' RED A CTED ' WHERE [B loodProduc tGuid]='7f 74a751-754 a-4cbb-bc3 2-f56d2f64 7f08' | |
| 11334 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLT AFR ACD-A>PAS- F OPN LUKO PR 3C', [L astUpdateD ate]='2016 -07-27 11: 17:06.000' , [LastUpd ateUser]=' RED A CTED ' WHERE [B loodProduc tGuid]='4a dd2cb3-538 9-4f9e-bf0 0-f583c706 51f0' | |
| 11335 | UPDATE [db o].[BloodP roduct] SE T [Product Name]='Aph eresis FRE SH FROZEN PLASMA|NaC itrate/XX/ <=-65C|Not for tx or mnf|Quar: >=6m/retes ted', [Las tUpdateDat e]='2016-0 7-27 11:17 :06.000', [LastUpdat eUser]=' RED A CTED ' WHERE [B loodProduc tGuid]='50 8bb37b-8e3 6-4af4-aae 0-f58407f7 6182' | |
| 11336 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLT AFR NaCit MNFI 3C', [Las tUpdateDat e]='2016-0 7-27 11:17 :06.000', [LastUpdat eUser]=' RED A CTED ' WHERE [B loodProduc tGuid]='3a 14197f-074 1-41e9-a2d 6-f59d600d bd57' | |
| 11337 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLT AFR Wash None NMT OPN 2C NA', [Last UpdateDate ]='2016-07 -27 11:17: 06.000', [ LastUpdate User]=' RED A CTED ' WHERE [B loodProduc tGuid]='a5 5f84ee-9a1 0-4a15-932 d-f5a9e19c 47b3' | |
| 11338 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC CPDA -1 6C', [R etireDate] ='2015-04- 07 00:00:0 0.000', [L astUpdateD ate]='2016 -07-27 11: 17:06.000' , [LastUpd ateUser]=' RED A CTED ' WHERE [B loodProduc tGuid]='00 188434-7ca 3-4f0d-8ac 1-f5b31af2 d30e' | |
| 11339 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='FFP AFR None IRD 8 C', [LastU pdateDate] ='2016-07- 27 11:17:0 6.000', [L astUpdateU ser]=' RED A CTED ' WHERE [B loodProduc tGuid]='a7 0f6c27-246 3-4ac3-a6a 7-f5db97a2 1626' | |
| 11340 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLT AFR Froz ACD-A MNFRNI LU KOPR 1C', [LastUpdat eDate]='20 16-07-27 1 1:17:06.00 0', [LastU pdateUser] =' RED A CTED ' WHERE [B loodProduc tGuid]='d9 329a07-b7c 4-4fcc-883 b-f6160a9e 1652' | |
| 11341 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC Froz Rej None OPN IRD 4C ', [LastUp dateDate]= '2016-07-2 7 11:17:06 .000', [La stUpdateUs er]=' RED A CTED ' WHERE [B loodProduc tGuid]='89 0ab82b-223 a-4aa8-9e2 f-f62337a0 7351' | |
| 11342 | UPDATE [db o].[BloodP roduct] SE T [Product Name]='Aph eresis FRE SH FROZEN PLASMA|ACD -B/XX/<=-6 5C|<200 mL ', [LastUp dateDate]= '2016-07-2 7 11:17:06 .000', [La stUpdateUs er]=' RED A CTED ' WHERE [B loodProduc tGuid]='c4 fa00a4-a5e 7-48f9-ba4 8-f6384ebb ed23' | |
| 11343 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC AFR Wash None OPN IRD LU KOPR 4C', [LastUpdat eDate]='20 16-07-27 1 1:17:06.00 0', [LastU pdateUser] =' RED A CTED ' WHERE [B loodProduc tGuid]='6b 8ac5d6-38a b-4ed6-a34 b-f63be625 264e' | |
| 11344 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC AFR ACD-A>AS3 IRD 3C', [ LastUpdate Date]='201 6-07-27 11 :17:06.000 ', [LastUp dateUser]= ' RED A CTED ' WHERE [B loodProduc tGuid]='04 31f963-5b9 7-44ab-ae3 a-f646ffa6 95af' | |
| 11345 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLASMA A FR Thaw AC D-A OPN IR D 1C', [La stUpdateDa te]='2016- 07-27 11:1 7:06.000', [LastUpda teUser]=' RED A CTED ' WHERE [B loodProduc tGuid]='d5 78c734-371 7-4174-8e7 6-f6689658 e4b3' | |
| 11346 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLT AFR ACD-A IRD 3C BacMtr' , [LastUpd ateDate]=' 2016-07-27 11:17:06. 000', [Las tUpdateUse r]=' RED A CTED ' WHERE [B loodProduc tGuid]='fe 047e0a-e36 a-4d49-aa6 1-f6783784 ea06' | |
| 11347 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='FFP AFR NaCit 4C', [LastUpda teDate]='2 016-07-27 11:17:06.0 00', [Last UpdateUser ]=' RED A CTED ' WHERE [B loodProduc tGuid]='68 f0fde9-c95 4-4650-95b 2-f67b8cb4 2bf7' | |
| 11348 | UPDATE [db o].[BloodP roduct] SE T [Product Name]='Aph eresis FRE SH FROZEN PLASMA|ACD -A/XX/<=-6 5C|Not for tx or mnf |Aphr not automated| Quar:>=6m/ retested', [LastUpda teDate]='2 016-07-27 11:17:06.0 00', [Last UpdateUser ]=' RED A CTED ' WHERE [B loodProduc tGuid]='39 507886-95f c-4d99-ad5 f-f688fe8f 8f4f' | |
| 11349 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLT AFR Wash NS OP N LUKOPR 2 C', [LastU pdateDate] ='2016-07- 27 11:17:0 6.000', [L astUpdateU ser]=' RED A CTED ' WHERE [B loodProduc tGuid]='12 4cde93-1db d-4567-a13 4-f68a7d0f 8991' | |
| 11350 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC AFR CPDA-1 IRD LUKOPR 2C ', [LastUp dateDate]= '2016-07-2 7 11:17:06 .000', [La stUpdateUs er]=' RED A CTED ' WHERE [B loodProduc tGuid]='fc bbfcb2-8e6 d-47b9-934 a-f69ec5d7 872b' | |
| 11351 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLASMA A FR Thaw AC D-A IRD 1C ', [LastUp dateDate]= '2016-07-2 7 11:17:06 .000', [La stUpdateUs er]=' RED A CTED ' WHERE [B loodProduc tGuid]='0e b657e1-ffa c-471d-a5a d-f6a9364d 94c6' | |
| 11352 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLASMA A FR Thaw No ne IRD 6C' , [LastUpd ateDate]=' 2016-07-27 11:17:06. 000', [Las tUpdateUse r]=' RED A CTED ' WHERE [B loodProduc tGuid]='91 2af517-7fa b-42e4-828 2-f6cfb6eb 7717' | |
| 11353 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC AFR Froz None OPN LUKOPR 6C', [Las tUpdateDat e]='2016-0 7-27 11:17 :06.000', [LastUpdat eUser]=' RED A CTED ' WHERE [B loodProduc tGuid]='54 5bc98d-d8f a-4d8b-b3f f-f6de1dfa 5132' | |
| 11354 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC Froz None OPN LUKOPR 7C' , [LastUpd ateDate]=' 2016-07-27 11:17:06. 000', [Las tUpdateUse r]=' RED A CTED ' WHERE [B loodProduc tGuid]='21 39f418-439 3-4d28-aa2 f-f6de4ee2 a314' | |
| 11355 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLT AFR Wash None OPN LUKOPR 3C', [Las tUpdateDat e]='2016-0 7-27 11:17 :06.000', [LastUpdat eUser]=' RED A CTED ' WHERE [B loodProduc tGuid]='0b 697bce-84f a-4c6d-ac2 6-f6e8e942 4160' | |
| 11356 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLT AFR ACD-A>PAS- C IRD LUKO PR 3C Pedi ', [LastUp dateDate]= '2016-07-2 7 11:17:06 .000', [La stUpdateUs er]=' RED A CTED ' WHERE [B loodProduc tGuid]='d1 0cef12-00c 4-4773-89c 4-f6ec3fb6 e108' | |
| 11357 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC AFR ACD-A>AS1 5C', [Last UpdateDate ]='2016-07 -27 11:17: 06.000', [ LastUpdate User]=' RED A CTED ' WHERE [B loodProduc tGuid]='4d 778b20-3d0 f-4050-ac4 1-f71b01e7 0baf' | |
| 11358 | UPDATE [db o].[BloodP roduct] SE T [Product Name]='Aph eresis FRE SH FROZEN PLASMA|ACD -A/XX/<=-3 0C|For mnf :injectabl e|Frozen < =6h', [Las tUpdateDat e]='2016-0 7-27 11:17 :06.000', [LastUpdat eUser]=' RED A CTED ' WHERE [B loodProduc tGuid]='b5 148ba4-330 c-450e-bda c-f71e4365 3665' | |
| 11359 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLT AFR ACD-A LUKO PR 3C Ribo ', [LastUp dateDate]= '2016-07-2 7 11:17:06 .000', [La stUpdateUs er]=' RED A CTED ' WHERE [B loodProduc tGuid]='92 cd17c9-4fd 5-4f41-99a 8-f737ad54 80f8' | |
| 11360 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLASMA A FR None IR D 5C', [La stUpdateDa te]='2016- 07-27 11:1 7:06.000', [LastUpda teUser]=' RED A CTED ' WHERE [B loodProduc tGuid]='19 1bdf33-520 c-41fa-811 2-f75230b1 010a' | |
| 11361 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLT AFR ACD-A IRD PLS Red 1C NA', [Last UpdateDate ]='2016-07 -27 11:17: 06.000', [ LastUpdate User]=' RED A CTED ' WHERE [B loodProduc tGuid]='11 880f51-317 1-4c38-a0d a-f7590bc2 419c' | |
| 11362 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC AFR CPDA-1 IRD 2C', [Las tUpdateDat e]='2016-0 7-27 11:17 :06.000', [LastUpdat eUser]=' RED A CTED ' WHERE [B loodProduc tGuid]='55 2a1be4-c37 5-432c-84a e-f75c8e58 fdd4' | |
| 11363 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC AFR ACD-A>AS1 1C', [Last UpdateDate ]='2016-07 -27 11:17: 06.000', [ LastUpdate User]=' RED A CTED ' WHERE [B loodProduc tGuid]='10 6dfdc6-0b0 7-4fe7-8e1 0-f76c9775 20fc' | |
| 11364 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC AFR ACD-A>AS3 IRD LUKOPR 6C', [Las tUpdateDat e]='2016-0 7-27 11:17 :06.000', [LastUpdat eUser]=' RED A CTED ' WHERE [B loodProduc tGuid]='1e b3ca82-9d9 1-4933-a2d f-f7705323 734a' | |
| 11365 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC AFR ACD-A>AS3 IRD LUKOPR 6C', [Las tUpdateDat e]='2016-0 7-27 11:17 :06.000', [LastUpdat eUser]=' RED A CTED ' WHERE [B loodProduc tGuid]='76 de740f-bfa 1-44f2-b6f 0-f774be86 f523' | |
| 11366 | UPDATE [db o].[BloodP roduct] SE T [Product Name]='POO LED PLASMA |NS/XX/<=- 30C|Solven t detergen t-treated' , [RetireD ate]='2014 -04-24 00: 00:00.000' , [LastUpd ateDate]=' 2016-07-27 11:17:06. 000', [Las tUpdateUse r]=' RED A CTED ' WHERE [B loodProduc tGuid]='09 21ac2c-a65 5-4cd1-ac0 4-f7964bbf d819' | |
| 11367 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='FFP AFR ACD-A QUAR 5C', [Las tUpdateDat e]='2016-0 7-27 11:17 :06.000', [LastUpdat eUser]=' RED A CTED ' WHERE [B loodProduc tGuid]='56 7b34d0-fab e-43fb-a9f 2-f7cd3529 66e5' | |
| 11368 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLT AFR ACD-A LUKO PR 3C', [L astUpdateD ate]='2016 -07-27 11: 17:06.000' , [LastUpd ateUser]=' RED A CTED ' WHERE [B loodProduc tGuid]='7f cfecd0-324 8-4cad-be6 9-f7d67fbb a1d1' | |
| 11369 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLASMA A FR Thaw AC D-A OPN 4C ', [LastUp dateDate]= '2016-07-2 7 11:17:06 .000', [La stUpdateUs er]=' RED A CTED ' WHERE [B loodProduc tGuid]='f2 bd18cf-8e8 9-48de-904 3-f7ed196b f3bf' | |
| 11370 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLT AFR ACD-A OPN IRD 4C', [ LastUpdate Date]='201 6-07-27 11 :17:06.000 ', [LastUp dateUser]= ' RED A CTED ' WHERE [B loodProduc tGuid]='ce 1f8198-fc2 1-486e-a3e 2-f7f4e9aa d9c4' | |
| 11371 | UPDATE [db o].[BloodP roduct] SE T [Product Name]='Aph eresis FRE SH FROZEN PLASMA|NaC itrate/XX/ <=-30C|Res Leu:<1E6|> =200mL<400 mL|Frozen <=18h|2nd container' , [Product ShortName] ='FFP AFR NaCit LUKO PR 2C', [L astUpdateD ate]='2016 -07-27 11: 17:06.000' , [LastUpd ateUser]=' RED A CTED ' WHERE [B loodProduc tGuid]='df 224e65-9ff 3-4e74-945 c-f851a7b7 1694' | |
| 11372 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='FFP CPDA -1 3C', [L astUpdateD ate]='2016 -07-27 11: 17:06.000' , [LastUpd ateUser]=' RED A CTED ' WHERE [B loodProduc tGuid]='3d 75d3a9-086 9-4773-8f5 f-f85da208 d266' | |
| 11373 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLASMA A FR Thaw Na Cit 5C', [ LastUpdate Date]='201 6-07-27 11 :17:06.000 ', [LastUp dateUser]= ' RED A CTED ' WHERE [B loodProduc tGuid]='28 dc9a44-66a 3-4040-8a0 7-f89592da c551' | |
| 11374 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLT AFR NaCit IRD LUKOPR PLS Red 2CNA' , [LastUpd ateDate]=' 2016-07-27 11:17:06. 000', [Las tUpdateUse r]=' RED A CTED ' WHERE [B loodProduc tGuid]='46 07291b-4d6 3-435d-a3d 5-f89b2555 2643' | |
| 11375 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC AFR ACD-A>AS3 3C', [Last UpdateDate ]='2016-07 -27 11:17: 06.000', [ LastUpdate User]=' RED A CTED ' WHERE [B loodProduc tGuid]='66 22adf7-fa2 c-4334-8ca c-f8c32f8c 1359' | |
| 11376 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC AFR CP2D>AS3 M NFI OPN 1C ', [LastUp dateDate]= '2016-07-2 7 11:17:06 .000', [La stUpdateUs er]=' RED A CTED ' WHERE [B loodProduc tGuid]='b0 c81383-ae8 3-432e-a02 6-f8ca5727 fffa' | |
| 11377 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC CPD 5C', [Reti reDate]='2 015-04-07 00:00:00.0 00', [Last UpdateDate ]='2016-07 -27 11:17: 06.000', [ LastUpdate User]=' RED A CTED ' WHERE [B loodProduc tGuid]='e5 cbf6be-315 a-42bc-9d2 a-f8d381db f50f' | |
| 11378 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC AFR CPDA-1 LUK OPR 8C', [ LastUpdate Date]='201 6-07-27 11 :17:06.000 ', [LastUp dateUser]= ' RED A CTED ' WHERE [B loodProduc tGuid]='8c 433ec0-ad6 6-4b48-b85 b-f8e5ac13 ee34' | |
| 11379 | UPDATE [db o].[BloodP roduct] SE T [Product Name]='Aph eresis FRE SH FROZEN PLASMA|NaC itrate/XX/ <=-65C|Not for tx or mnf|Aphr not automa ted|Quar:> =6m/retest ed', [Last UpdateDate ]='2016-07 -27 11:17: 06.000', [ LastUpdate User]=' RED A CTED ' WHERE [B loodProduc tGuid]='9f 434205-a02 3-466f-ae9 a-f90b26b7 2dcd' | |
| 11380 | UPDATE [db o].[BloodP roduct] SE T [Product Name]='Aph eresis FRE SH FROZEN PLASMA|ACD -A/XX/<=-3 0C|ResLeu: <1E6|>=200 mL<400mL|F rozen <=18 h|1st cont ainer', [P roductShor tName]='FF P AFR ACD- A LUKOPR 1 C', [LastU pdateDate] ='2016-07- 27 11:17:0 6.000', [L astUpdateU ser]=' RED A CTED ' WHERE [B loodProduc tGuid]='3f 660101-d15 7-4e2d-872 a-f920ada7 ffeb' | |
| 11381 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC AFR ACD-A>AS1 LUKOPR 4C' , [LastUpd ateDate]=' 2016-07-27 11:17:06. 000', [Las tUpdateUse r]=' RED A CTED ' WHERE [B loodProduc tGuid]='3b f3bf07-4d6 5-465a-bf2 a-f93b3d4e 821d' | |
| 11382 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC AFR CP2D>AS3 O PN IRD LUK OPR SR 1C' , [LastUpd ateDate]=' 2016-07-27 11:17:06. 000', [Las tUpdateUse r]=' RED A CTED ' WHERE [B loodProduc tGuid]='4e f726b0-69f 5-4142-966 c-f96d0548 ae00' | |
| 11383 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC AFR Deg AS3 OP N IRD LUKO PR 1C', [L astUpdateD ate]='2016 -07-27 11: 17:06.000' , [LastUpd ateUser]=' RED A CTED ' WHERE [B loodProduc tGuid]='5c adbb64-d53 9-4a7c-838 6-f97ab4a4 7020' | |
| 11384 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC AFR Deg None I RD LUKOPR 1C', [Last UpdateDate ]='2016-07 -27 11:17: 06.000', [ LastUpdate User]=' RED A CTED ' WHERE [B loodProduc tGuid]='6a ecb334-53c 4-49f6-ad5 2-f9939250 bf76' | |
| 11385 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='FFP AFR ACD-A 1C', [LastUpda teDate]='2 016-07-27 11:17:06.0 00', [Last UpdateUser ]=' RED A CTED ' WHERE [B loodProduc tGuid]='36 672499-9a8 a-4834-8a6 3-f99cb959 bf2e' | |
| 11386 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLT AFR PAS-E IRD LUKOPR 4C' , [LastUpd ateDate]=' 2016-07-27 11:17:06. 000', [Las tUpdateUse r]=' RED A CTED ' WHERE [B loodProduc tGuid]='72 5542e4-c1d c-4242-85c 7-f9ceb464 0d34' | |
| 11387 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLT AFR ACD-A LUKO PR 3C Ribo ', [LastUp dateDate]= '2016-07-2 7 11:17:06 .000', [La stUpdateUs er]=' RED A CTED ' WHERE [B loodProduc tGuid]='85 f28c30-36c f-4f5b-b6a 0-f9dc9dc8 3794' | |
| 11388 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLT AFR ACD-A LUKO PR PLS Red 3C', [Las tUpdateDat e]='2016-0 7-27 11:17 :06.000', [LastUpdat eUser]=' RED A CTED ' WHERE [B loodProduc tGuid]='3f bd327a-5e9 9-499e-bb1 b-f9dcec3d 23f3' | |
| 11389 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC AFR ACD-A>AS1 OPN IRD 2C ', [LastUp dateDate]= '2016-07-2 7 11:17:06 .000', [La stUpdateUs er]=' RED A CTED ' WHERE [B loodProduc tGuid]='cb e5fb6d-b7c 6-44bc-a88 7-f9f50c3d 2e14' | |
| 11390 | UPDATE [db o].[BloodP roduct] SE T [Product Name]='Fro zen RED BL OOD CELLS| None/XX/<= -65C|Irrad iated', [L astUpdateD ate]='2016 -07-27 11: 17:06.000' , [LastUpd ateUser]=' RED A CTED ' WHERE [B loodProduc tGuid]='fe fd4e12-fbe 4-4117-b02 9-fa072ff5 a92d' | |
| 11391 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLASMA A FR ACD-A 3 C', [LastU pdateDate] ='2016-07- 27 11:17:0 6.000', [L astUpdateU ser]=' RED A CTED ' WHERE [B loodProduc tGuid]='43 afdcd1-c23 b-490e-ab5 f-fa0858f4 4cfb' | |
| 11392 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC AFR CP2D-AS3 I RD 2C', [L astUpdateD ate]='2016 -07-27 11: 17:06.000' , [LastUpd ateUser]=' RED A CTED ' WHERE [B loodProduc tGuid]='55 7c69ca-10b e-46e1-a33 1-fa130763 d96d' | |
| 11393 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLT AFR ACD-A LUKO PR 3C BacT est', [Las tUpdateDat e]='2016-0 7-27 11:17 :06.000', [LastUpdat eUser]=' RED A CTED ' WHERE [B loodProduc tGuid]='ac bfef99-c43 0-4328-8fa c-fa26ce18 d9e6' | |
| 11394 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='WB CPD L UKOPR 2C', [LastUpda teDate]='2 016-07-27 11:17:06.0 00', [Last UpdateUser ]=' RED A CTED ' WHERE [B loodProduc tGuid]='4a d8e61e-3ee 0-4fe5-9bd 8-fa295180 5a48' | |
| 11395 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='FFP AFR Thaw NaCit IRD 3C', [LastUpdat eDate]='20 16-07-27 1 1:17:06.00 0', [LastU pdateUser] =' RED A CTED ' WHERE [B loodProduc tGuid]='3d 39bc60-676 6-4dbf-b4a 5-fa36b888 dd5f' | |
| 11396 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC AFR Deg None O PN IRD 4C' , [LastUpd ateDate]=' 2016-07-27 11:17:06. 000', [Las tUpdateUse r]=' RED A CTED ' WHERE [B loodProduc tGuid]='5c b05ccc-b75 1-437a-96c 8-fa51200c 072a' | |
| 11397 | UPDATE [db o].[BloodP roduct] SE T [Product Name]='FRE SH FROZEN PLASMA|NS/ XX/<=-30C' , [LastUpd ateDate]=' 2016-07-27 11:17:06. 000', [Las tUpdateUse r]=' RED A CTED ' WHERE [B loodProduc tGuid]='20 5cb4ad-4d7 8-468e-b60 5-fa5b1559 2929' | |
| 11398 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC CP2D >AS3 8C', [LastUpdat eDate]='20 16-07-27 1 1:17:06.00 0', [LastU pdateUser] =' RED A CTED ' WHERE [B loodProduc tGuid]='4e df38e6-991 1-4ded-849 8-fa68c764 b18b' | |
| 11399 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC AFR ACD-A>AS1 IRD LUKOPR 4C', [Las tUpdateDat e]='2016-0 7-27 11:17 :06.000', [LastUpdat eUser]=' RED A CTED ' WHERE [B loodProduc tGuid]='9c d9c59f-567 0-4e73-958 f-fa6a8997 923e' | |
| 11400 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='FFP Thaw None 6C', [LastUpda teDate]='2 016-07-27 11:17:06.0 00', [Last UpdateUser ]=' RED A CTED ' WHERE [B loodProduc tGuid]='df c25e64-5ee e-44cb-98d e-fa7af4f1 c6f4' | |
| 11401 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLT AFR NaCit OPN IRD 4C', [ LastUpdate Date]='201 6-07-27 11 :17:06.000 ', [LastUp dateUser]= ' RED A CTED ' WHERE [B loodProduc tGuid]='0e 7d5b17-0eb 0-40ac-bfc 6-fa95fbe3 d8fe' | |
| 11402 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='FFP AFR None 2C', [LastUpdat eDate]='20 16-07-27 1 1:17:06.00 0', [LastU pdateUser] =' RED A CTED ' WHERE [B loodProduc tGuid]='03 5bae1f-bd6 1-4ff7-832 5-faa820b2 4bf7' | |
| 11403 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLASMA A FR ACD-A 2 C', [LastU pdateDate] ='2016-07- 27 11:17:0 6.000', [L astUpdateU ser]=' RED A CTED ' WHERE [B loodProduc tGuid]='4a f981d6-251 2-484d-979 b-fac96478 22cb' | |
| 11404 | UPDATE [db o].[BloodP roduct] SE T [Product Name]='Aph eresis FRE SH FROZEN PLASMA|ACD -B/XX/<=-3 0C|>=400mL <600mL|Qua r:>=6m/ret ested', [L astUpdateD ate]='2016 -07-27 11: 17:06.000' , [LastUpd ateUser]=' RED A CTED ' WHERE [B loodProduc tGuid]='d0 e6308c-8d8 f-41ea-98e 9-facd1851 7605' | |
| 11405 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLT AFR ACD-B OPN IRD LUKOPR 1C', [Las tUpdateDat e]='2016-0 7-27 11:17 :06.000', [LastUpdat eUser]=' RED A CTED ' WHERE [B loodProduc tGuid]='35 cde457-74d 7-4c24-872 3-faec23c9 13d3' | |
| 11406 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLT AFR Wash None OPN IRD LU KOPR 2C', [LastUpdat eDate]='20 16-07-27 1 1:17:06.00 0', [LastU pdateUser] =' RED A CTED ' WHERE [B loodProduc tGuid]='82 7efa9f-5a9 1-41f9-a58 1-faf78f02 9202' | |
| 11407 | UPDATE [db o].[BloodP roduct] SE T [Product Name]='FRE SH FROZEN PLASMA|0.5 CPD/XX/<= -25C|Irrad iated|Quar :>=6m/rete sted', [La stUpdateDa te]='2016- 07-27 11:1 7:06.000', [LastUpda teUser]=' RED A CTED ' WHERE [B loodProduc tGuid]='3b 06ccfe-a5d 0-41ad-9d7 e-fb104ffc aabe' | |
| 11408 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC AFR SAGM 1C', [LastUpdat eDate]='20 16-07-27 1 1:17:06.00 0', [LastU pdateUser] =' RED A CTED ' WHERE [B loodProduc tGuid]='a2 07a144-511 d-4e39-bad 8-fb38a16c a035' | |
| 11409 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLT AFR ACD-A LUKO PR 1C Pedi ', [LastUp dateDate]= '2016-07-2 7 11:17:06 .000', [La stUpdateUs er]=' RED A CTED ' WHERE [B loodProduc tGuid]='4a e1846a-77b 0-4e10-905 4-fb42e385 efe7' | |
| 11410 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLT AFR PAS-D IRD LUKOPR 1C BacTest', [LastUpdat eDate]='20 16-07-27 1 1:17:06.00 0', [LastU pdateUser] =' RED A CTED ' WHERE [B loodProduc tGuid]='55 db4ba0-e37 e-4aa7-a89 d-fb4a724b ff51' | |
| 11411 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC AFR ACD-A>AS1 IRD LUKOPR 2C', [Las tUpdateDat e]='2016-0 7-27 11:17 :06.000', [LastUpdat eUser]=' RED A CTED ' WHERE [B loodProduc tGuid]='32 7d9a42-994 3-47d1-b77 5-fb4d72de 0767' | |
| 11412 | UPDATE [db o].[BloodP roduct] SE T [Product Name]='FRE SH FROZEN PLASMA|CPD A-1/450mL/ <=-25C|For mnf:injec table|Froz en <=6h', [LastUpdat eDate]='20 16-07-27 1 1:17:06.00 0', [LastU pdateUser] =' RED A CTED ' WHERE [B loodProduc tGuid]='72 b1457c-ab1 8-4923-974 f-fb4fa1d7 e540' | |
| 11413 | UPDATE [db o].[BloodP roduct] SE T [Product Name]='Aph eresis FRE SH FROZEN PLASMA|ACD -B/XX/<=-3 0C|Irradia ted|>=200m L<400mL', [LastUpdat eDate]='20 16-07-27 1 1:17:06.00 0', [LastU pdateUser] =' RED A CTED ' WHERE [B loodProduc tGuid]='0f 1c906b-97f 8-4f34-97b a-fb507838 ae24' | |
| 11414 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLT AFR PAS-B IRD LUKOPR 3C' , [LastUpd ateDate]=' 2016-07-27 11:17:06. 000', [Las tUpdateUse r]=' RED A CTED ' WHERE [B loodProduc tGuid]='ca 2cb37c-969 c-44f9-b45 f-fb54d4a3 9535' | |
| 11415 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLT AFR NS MNFNI 2 C', [LastU pdateDate] ='2016-07- 27 11:17:0 6.000', [L astUpdateU ser]=' RED A CTED ' WHERE [B loodProduc tGuid]='2c d3fc5e-c11 f-4d21-95e 8-fb6307d3 e368' | |
| 11416 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLT AFR PAS-E LUKO PR SUPRed 1C Psoraln ', [LastUp dateDate]= '2016-07-2 7 11:17:06 .000', [La stUpdateUs er]=' RED A CTED ' WHERE [B loodProduc tGuid]='93 94bd60-b41 e-4f7e-905 2-fb8acade 0aef' | |
| 11417 | UPDATE [db o].[BloodP roduct] SE T [Product Name]='Fro zen RED BL OOD CELLS| None/500mL /<=-65C|Op en|Irradia ted', [Las tUpdateDat e]='2016-0 7-27 11:17 :06.000', [LastUpdat eUser]=' RED A CTED ' WHERE [B loodProduc tGuid]='2c e0d38e-464 e-48b8-8d2 9-fb94f853 9d8c' | |
| 11418 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC Wash None OPN 6C', [Last UpdateDate ]='2016-07 -27 11:17: 06.000', [ LastUpdate User]=' RED A CTED ' WHERE [B loodProduc tGuid]='0a 0b8c55-d6c 7-4b7c-bd5 0-fba79b62 0396' | |
| 11419 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC AFR CP2D OPN L UKOPR 2C', [LastUpda teDate]='2 016-07-27 11:17:06.0 00', [Last UpdateUser ]=' RED A CTED ' WHERE [B loodProduc tGuid]='e6 41ec78-c14 c-434f-b57 a-fbb50174 c29b' | |
| 11420 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='WB CPDA- 1 LUKOPR 5 C', [LastU pdateDate] ='2016-07- 27 11:17:0 6.000', [L astUpdateU ser]=' RED A CTED ' WHERE [B loodProduc tGuid]='8d 65082a-781 6-448a-8f7 f-fbbf13ca eb82' | |
| 11421 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLT AFR Wash None OPN LUKOPR 2C', [Las tUpdateDat e]='2016-0 7-27 11:17 :06.000', [LastUpdat eUser]=' RED A CTED ' WHERE [B loodProduc tGuid]='8f 613485-fbb f-4c32-810 4-fbbfe58f 1487' | |
| 11422 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLT AFR NS LUKOPR 1C', [Last UpdateDate ]='2016-07 -27 11:17: 06.000', [ LastUpdate User]=' RED A CTED ' WHERE [B loodProduc tGuid]='f3 5ea7fe-dad c-4963-96f e-fbc5d844 b1ab' | |
| 11423 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLT AFR ACD-A LUKO PR PLS Red /PA 3C', [ LastUpdate Date]='201 6-07-27 11 :17:06.000 ', [LastUp dateUser]= ' RED A CTED ' WHERE [B loodProduc tGuid]='de aef843-9b9 a-4196-ae5 e-fbc5db6f 3892' | |
| 11424 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC Deg None IRD 4 C', [LastU pdateDate] ='2016-07- 27 11:17:0 6.000', [L astUpdateU ser]=' RED A CTED ' WHERE [B loodProduc tGuid]='e9 b6c3a2-ec6 5-4b94-b97 8-fbcb3a13 cf1f' | |
| 11425 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC CPD IRD 6C', [ LastUpdate Date]='201 6-07-27 11 :17:06.000 ', [LastUp dateUser]= ' RED A CTED ' WHERE [B loodProduc tGuid]='0d a40803-8bc 8-4eb4-ab3 b-fbd63403 e15f' | |
| 11426 | UPDATE [db o].[BloodP roduct] SE T [Product Name]='Aph eresis FRE SH FROZEN PLASMA|NaC itrate/XX/ <=-30C|Res Leu:<5E6|5 0mL|Ribofl avin-treat ed', [Last UpdateDate ]='2016-07 -27 11:17: 06.000', [ LastUpdate User]=' RED A CTED ' WHERE [B loodProduc tGuid]='57 2e1503-7e7 1-4cbc-808 d-fbe7e122 6913' | |
| 11427 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC AFR ACD-A>AS3 LUKOPR 4C' , [LastUpd ateDate]=' 2016-07-27 11:17:06. 000', [Las tUpdateUse r]=' RED A CTED ' WHERE [B loodProduc tGuid]='42 370899-299 8-4745-9ac 9-fbead67b 4d2b' | |
| 11428 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLT AFR ACD-B OPN IRD LUKOPR 3C', [Las tUpdateDat e]='2016-0 7-27 11:17 :06.000', [LastUpdat eUser]=' RED A CTED ' WHERE [B loodProduc tGuid]='f1 a89d09-9cc 3-4579-ae9 7-fc00e436 98ed' | |
| 11429 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLT AFR ACD-A IRD LUKOPR PLS Red 1C', [LastUpdat eDate]='20 16-07-27 1 1:17:06.00 0', [LastU pdateUser] =' RED A CTED ' WHERE [B loodProduc tGuid]='ca d5f9e7-865 b-456d-bcf a-fc11b527 ca57' | |
| 11430 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLT AFR NaCit OPN 1CNA', [La stUpdateDa te]='2016- 07-27 11:1 7:06.000', [LastUpda teUser]=' RED A CTED ' WHERE [B loodProduc tGuid]='a4 3f3851-c00 3-43f4-a40 7-fc196d9c 6122' | |
| 11431 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC AFR ACD-A>AS3 LUKOPR 2C' , [LastUpd ateDate]=' 2016-07-27 11:17:06. 000', [Las tUpdateUse r]=' RED A CTED ' WHERE [B loodProduc tGuid]='91 c53f8c-bec 7-4588-b1d d-fc1b2f44 5caa' | |
| 11432 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC AFR ACD-A>AS1 LUKOPR 2C' , [LastUpd ateDate]=' 2016-07-27 11:17:06. 000', [Las tUpdateUse r]=' RED A CTED ' WHERE [B loodProduc tGuid]='e0 716104-5e4 e-44a1-bf8 d-fc2341de 8c88' | |
| 11433 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLT AFR NaCit OPN LUKOPR 1CN A', [LastU pdateDate] ='2016-07- 27 11:17:0 6.000', [L astUpdateU ser]=' RED A CTED ' WHERE [B loodProduc tGuid]='99 114b03-0b5 a-469d-9d1 f-fc27918c 0b4d' | |
| 11434 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC AFR Deg None O PN LUKOPR 2C', [Last UpdateDate ]='2016-07 -27 11:17: 06.000', [ LastUpdate User]=' RED A CTED ' WHERE [B loodProduc tGuid]='43 7aa176-eff 4-49ab-ada 2-fc29bd5d daeb' | |
| 11435 | UPDATE [db o].[BloodP roduct] SE T [Product Name]='CRY OPRECIPITA TE|None/XX /<=-30C|No t for tx o r mnf', [L astUpdateD ate]='2016 -07-27 11: 17:06.000' , [LastUpd ateUser]=' RED A CTED ' WHERE [B loodProduc tGuid]='34 b3ca0b-eaa 7-48d5-896 9-fc2b1be1 e737' | |
| 11436 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC AFR Froz None OPN LUKOPR 1C', [Las tUpdateDat e]='2016-0 7-27 11:17 :06.000', [LastUpdat eUser]=' RED A CTED ' WHERE [B loodProduc tGuid]='ba 0cdadb-ce0 b-48db-a9f 8-fc2c81b9 86db' | |
| 11437 | UPDATE [db o].[BloodP roduct] SE T [Product Name]='Aph eresis FRE SH FROZEN PLASMA|ACD -A/XX/<=-6 5C|Irradia ted', [Las tUpdateDat e]='2016-0 7-27 11:17 :06.000', [LastUpdat eUser]=' RED A CTED ' WHERE [B loodProduc tGuid]='67 f5f872-62d 6-4115-a31 f-fc2efcde 74f5' | |
| 11438 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC AFR CPDA-1 IRD 1C', [Las tUpdateDat e]='2016-0 7-27 11:17 :06.000', [LastUpdat eUser]=' RED A CTED ' WHERE [B loodProduc tGuid]='74 779a12-4a3 4-4c4e-84f 2-fc4504d5 e867' | |
| 11439 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC CPD> AS1 2C', [ LastUpdate Date]='201 6-07-27 11 :17:06.000 ', [LastUp dateUser]= ' RED A CTED ' WHERE [B loodProduc tGuid]='39 962025-275 a-4a1b-889 e-fc56a7e7 3ec8' | |
| 11440 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC Deg Rej None O PN LUKOPR SR 1C', [L astUpdateD ate]='2016 -07-27 11: 17:06.000' , [LastUpd ateUser]=' RED A CTED ' WHERE [B loodProduc tGuid]='90 8a3a51-62a a-4093-865 b-fc6f6f9c c00f' | |
| 11441 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='FFP CPD IRD 2C', [ LastUpdate Date]='201 6-07-27 11 :17:06.000 ', [LastUp dateUser]= ' RED A CTED ' WHERE [B loodProduc tGuid]='ba 1f85f5-3b2 d-4bd1-b02 0-fc7fe53c bfc0' | |
| 11442 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC AFR Deg Rej No ne OPN LUK OPR 3C', [ LastUpdate Date]='201 6-07-27 11 :17:06.000 ', [LastUp dateUser]= ' RED A CTED ' WHERE [B loodProduc tGuid]='b4 8638a8-920 c-46be-a85 a-fc81b877 c30a' | |
| 11443 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLT AFR ACD-A>PAS- C IRD LUKO PR 4C', [L astUpdateD ate]='2016 -07-27 11: 17:06.000' , [LastUpd ateUser]=' RED A CTED ' WHERE [B loodProduc tGuid]='c7 b4087d-f6c 5-462f-9d0 3-fc90fb9a b7dc' | |
| 11444 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLT AFR NS OPN IRD PLS Red 3 C', [LastU pdateDate] ='2016-07- 27 11:17:0 6.000', [L astUpdateU ser]=' RED A CTED ' WHERE [B loodProduc tGuid]='54 49345e-6f7 8-4f72-aa3 7-fc9c7969 0954' | |
| 11445 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLT AFR NaCit MNFN I OPN 2C', [LastUpda teDate]='2 016-07-27 11:17:06.0 00', [Last UpdateUser ]=' RED A CTED ' WHERE [B loodProduc tGuid]='37 06da1e-33b a-4f4c-96c 6-fca09e37 c53c' | |
| 11446 | UPDATE [db o].[BloodP roduct] SE T [Product Name]='Aph eresis FRE SH FROZEN PLASMA|ACD -B/XX/<=-2 5C|Quar:>= 6m/reteste d', [LastU pdateDate] ='2016-07- 27 11:17:0 6.000', [L astUpdateU ser]=' RED A CTED ' WHERE [B loodProduc tGuid]='bc 1218ea-38a 8-4069-b29 2-fcb26582 7dc7' | |
| 11447 | UPDATE [db o].[BloodP roduct] SE T [Product Name]='FRE SH FROZEN PLASMA|CPD /XX/<=-25C |Frozen <= 15h|Ribofl avin-treat ed', [Last UpdateDate ]='2016-07 -27 11:17: 06.000', [ LastUpdate User]=' RED A CTED ' WHERE [B loodProduc tGuid]='16 f9671d-465 2-4fa1-bfa 1-fcbcc894 f3b7' | |
| 11448 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC AFR CPD-50>SAG M LUKOPR 2 C', [LastU pdateDate] ='2016-07- 27 11:17:0 6.000', [L astUpdateU ser]=' RED A CTED ' WHERE [B loodProduc tGuid]='ba 63468d-7aa b-41bb-bac 4-fce06788 54a1' | |
| 11449 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='FFP None IRD QUAR 7C', [Last UpdateDate ]='2016-07 -27 11:17: 06.000', [ LastUpdate User]=' RED A CTED ' WHERE [B loodProduc tGuid]='44 95d2d0-743 2-4cdf-ad6 7-fcf4bd27 77f3' | |
| 11450 | UPDATE [db o].[BloodP roduct] SE T [Product Name]='Aph eresis FRE SH FROZEN PLASMA|NaC itrate/XX/ <=-25C', [ LastUpdate Date]='201 6-07-27 11 :17:06.000 ', [LastUp dateUser]= ' RED A CTED ' WHERE [B loodProduc tGuid]='26 0cc15d-e6e 2-4b45-916 d-fd0f60db 1a2c' | |
| 11451 | UPDATE [db o].[BloodP roduct] SE T [Product Name]='Fro zen POOLED PLATELETS |DMSO/XX/< =-65C|5 un its', [Las tUpdateDat e]='2016-0 7-27 11:17 :06.000', [LastUpdat eUser]=' RED A CTED ' WHERE [B loodProduc tGuid]='a1 ecdc03-614 7-4b7e-bca c-fd1d4b72 8bb9' | |
| 11452 | UPDATE [db o].[BloodP roduct] SE T [Product Name]='Aph eresis FRE SH FROZEN PLASMA|ACD -A/XX/<=-2 5C|For mnf :injectabl e|>=600mL' , [LastUpd ateDate]=' 2016-07-27 11:17:06. 000', [Las tUpdateUse r]=' RED A CTED ' WHERE [B loodProduc tGuid]='7a ff0d5f-5a9 3-4379-ac8 6-fd612d6a f5f5' | |
| 11453 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC CPD IRD 4C', [ LastUpdate Date]='201 6-07-27 11 :17:06.000 ', [LastUp dateUser]= ' RED A CTED ' WHERE [B loodProduc tGuid]='1e 707147-2df c-4a4e-806 4-fd640c51 49ba' | |
| 11454 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC AFR CP2D LUKOP R 2C', [La stUpdateDa te]='2016- 07-27 11:1 7:06.000', [LastUpda teUser]=' RED A CTED ' WHERE [B loodProduc tGuid]='8d 01125e-d15 5-4e74-af9 6-fd68d5a8 0b49' | |
| 11455 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLT AFR Froz ACD-A MNFI LUKO PR 2C', [L astUpdateD ate]='2016 -07-27 11: 17:06.000' , [LastUpd ateUser]=' RED A CTED ' WHERE [B loodProduc tGuid]='a3 da9935-902 6-435d-85a f-fd763bc2 16db' | |
| 11456 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC AFR CPDA-1 OPN SR 2C', [ LastUpdate Date]='201 6-07-27 11 :17:06.000 ', [LastUp dateUser]= ' RED A CTED ' WHERE [B loodProduc tGuid]='92 245400-13a 9-4f4d-96e 8-fd84061f c013' | |
| 11457 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLT AFR NaCit MNFI 4C', [Las tUpdateDat e]='2016-0 7-27 11:17 :06.000', [LastUpdat eUser]=' RED A CTED ' WHERE [B loodProduc tGuid]='e3 ebda82-373 e-4d7c-932 2-fd937019 fc82' | |
| 11458 | UPDATE [db o].[BloodP roduct] SE T [Product Name]='CRY OPRECIPITA TE|CPD/350 mL/<=-30C' , [LastUpd ateDate]=' 2016-07-27 11:17:06. 000', [Las tUpdateUse r]=' RED A CTED ' WHERE [B loodProduc tGuid]='87 16ae12-6de 6-4ccb-810 f-fdba2f51 1d4a' | |
| 11459 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLT AFR ACD-A LUKO PR 2C Ribo ', [LastUp dateDate]= '2016-07-2 7 11:17:06 .000', [La stUpdateUs er]=' RED A CTED ' WHERE [B loodProduc tGuid]='9a 98def8-db8 6-4d9f-b51 0-fdc3e1e2 76d0' | |
| 11460 | UPDATE [db o].[BloodP roduct] SE T [Product Name]='Aph eresis FRE SH FROZEN PLASMA|NaC itrate/XX/ <=-65C|Not for tx or mnf|Aphr not automa ted', [Las tUpdateDat e]='2016-0 7-27 11:17 :06.000', [LastUpdat eUser]=' RED A CTED ' WHERE [B loodProduc tGuid]='81 9f0733-317 0-4931-b63 e-fdc97d77 d850' | |
| 11461 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLT AFR Thaw DMSO OPN LUKOPR 1CNA', [L astUpdateD ate]='2016 -07-27 11: 17:06.000' , [LastUpd ateUser]=' RED A CTED ' WHERE [B loodProduc tGuid]='f5 6bbc5f-e30 c-493b-8af 6-fdcc0bfa 64e6' | |
| 11462 | UPDATE [db o].[BloodP roduct] SE T [Product Name]='Aph eresis FRE SH FROZEN PLASMA|ACD -B/XX/<=-6 5C|Aphr no t automate d', [LastU pdateDate] ='2016-07- 27 11:17:0 6.000', [L astUpdateU ser]=' RED A CTED ' WHERE [B loodProduc tGuid]='3a 6da786-07c f-42d7-8e4 7-fdd79a32 c224' | |
| 11463 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='WB CPDA- 1 IRD LUKO PR 4C', [L astUpdateD ate]='2016 -07-27 11: 17:06.000' , [LastUpd ateUser]=' RED A CTED ' WHERE [B loodProduc tGuid]='ca 5f9497-84a 7-4bc8-84e 3-fddae777 4b89' | |
| 11464 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLASMA A FR Thaw CP 2D 1C', [L astUpdateD ate]='2016 -07-27 11: 17:06.000' , [LastUpd ateUser]=' RED A CTED ' WHERE [B loodProduc tGuid]='68 1d8136-055 f-4373-964 3-fde4e4af 1071' | |
| 11465 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLT AFR ACD-B OPN IRD LUKOPR PLS Red 4 C', [LastU pdateDate] ='2016-07- 27 11:17:0 6.000', [L astUpdateU ser]=' RED A CTED ' WHERE [B loodProduc tGuid]='07 eb4624-8d6 8-4a78-92a e-fdeaeca9 da11' | |
| 11466 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLT AFR ACD-A IRD 8C', [Last UpdateDate ]='2016-07 -27 11:17: 06.000', [ LastUpdate User]=' RED A CTED ' WHERE [B loodProduc tGuid]='24 be75f4-d97 e-4abf-9e5 b-fdee3043 b6b0' | |
| 11467 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC AFR Deg Rej No ne OPN IRD 2C', [Las tUpdateDat e]='2016-0 7-27 11:17 :06.000', [LastUpdat eUser]=' RED A CTED ' WHERE [B loodProduc tGuid]='63 34baa6-a7d 6-4458-a4d 5-fdf60d8a 4829' | |
| 11468 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='WB CP2D LUKOPR 3C' , [LastUpd ateDate]=' 2016-07-27 11:17:06. 000', [Las tUpdateUse r]=' RED A CTED ' WHERE [B loodProduc tGuid]='4f 4cfd52-f4e d-4d15-9f1 7-fdf88bba 6ae1' | |
| 11469 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC AFR Deg SAGM I RD LUKOPR 1C', [Last UpdateDate ]='2016-07 -27 11:17: 06.000', [ LastUpdate User]=' RED A CTED ' WHERE [B loodProduc tGuid]='40 78b56b-4de 5-46cd-afb 1-fe021202 7e6b' | |
| 11470 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLT AFR Wash PAS-E LUKOPR 1C Psoraln', [LastUpda teDate]='2 016-07-27 11:17:06.0 00', [Last UpdateUser ]=' RED A CTED ' WHERE [B loodProduc tGuid]='5e 3db72d-da2 a-495f-932 b-fe0ebdaa 0011' | |
| 11471 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLT AFR Wash None OPN IRD LU KOPR SUPRe d 2C', [La stUpdateDa te]='2016- 07-27 11:1 7:06.000', [LastUpda teUser]=' RED A CTED ' WHERE [B loodProduc tGuid]='37 acdec8-0c2 0-4edf-a0d 2-fe183ac2 c308' | |
| 11472 | UPDATE [db o].[BloodP roduct] SE T [Product Name]='Aph eresis FRE SH FROZEN PLASMA|NaC itrate/XX/ <=-30C|Irr adiated|Re sLeu:<1E6| <200 mL|Fr ozen <=6h' , [LastUpd ateDate]=' 2016-07-27 11:17:06. 000', [Las tUpdateUse r]=' RED A CTED ' WHERE [B loodProduc tGuid]='db 511947-70b c-4a8b-9e3 6-fe21a704 df16' | |
| 11473 | UPDATE [db o].[BloodP roduct] SE T [Product Name]='Aph eresis FRE SH FROZEN PLASMA|ACD -B/XX/<=-6 5C|<200 mL |Quar:>=6m /retested' , [LastUpd ateDate]=' 2016-07-27 11:17:06. 000', [Las tUpdateUse r]=' RED A CTED ' WHERE [B loodProduc tGuid]='8a 7d766f-37e a-4702-b56 b-fe23d916 0442' | |
| 11474 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC CPD> AS1 IRD LU KOPR 4C', [LastUpdat eDate]='20 16-07-27 1 1:17:06.00 0', [LastU pdateUser] =' RED A CTED ' WHERE [B loodProduc tGuid]='65 a59edf-bb5 1-46a1-b0f b-fe3aa3ff da7f' | |
| 11475 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLT AFR ACD-A 1C B acMtr', [L astUpdateD ate]='2016 -07-27 11: 17:06.000' , [LastUpd ateUser]=' RED A CTED ' WHERE [B loodProduc tGuid]='6d c72f37-238 b-414f-8fe 9-fe3bf2f5 a843' | |
| 11476 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC AFR ACD-A NMT LUKOPR 1C' , [LastUpd ateDate]=' 2016-07-27 11:17:06. 000', [Las tUpdateUse r]=' RED A CTED ' WHERE [B loodProduc tGuid]='3e ba5350-8b2 d-4256-929 e-fe4a2636 3968' | |
| 11477 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC AFR Deg None O PN IRD 1C' , [LastUpd ateDate]=' 2016-07-27 11:17:06. 000', [Las tUpdateUse r]=' RED A CTED ' WHERE [B loodProduc tGuid]='54 f39c97-c72 f-4fb6-b85 d-fe4c8bb5 c27b' | |
| 11478 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='WB CP2D IRD 5C', [ LastUpdate Date]='201 6-07-27 11 :17:06.000 ', [LastUp dateUser]= ' RED A CTED ' WHERE [B loodProduc tGuid]='68 a89272-475 4-4da6-9ef 3-fe4e28cb 4bad' | |
| 11479 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='FFP AFR Thaw None 7C', [Last UpdateDate ]='2016-07 -27 11:17: 06.000', [ LastUpdate User]=' RED A CTED ' WHERE [B loodProduc tGuid]='02 751ffa-6b0 2-4aff-9e8 4-fe51d13f 1aba' | |
| 11480 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLT AFR ACD-A 2C', [LastUpda teDate]='2 016-07-27 11:17:06.0 00', [Last UpdateUser ]=' RED A CTED ' WHERE [B loodProduc tGuid]='b9 7ff4ec-565 e-4ffe-805 d-fe5e8902 f783' | |
| 11481 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='FFP AFR Thaw NaCit IRD LUKOP R 3C QUAR' , [LastUpd ateDate]=' 2016-07-27 11:17:06. 000', [Las tUpdateUse r]=' RED A CTED ' WHERE [B loodProduc tGuid]='eb d1dd9d-4df 9-42dc-be0 e-fe8a096c 18d3' | |
| 11482 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='FFP AFR Thaw ACD-A IRD 5C', [LastUpdat eDate]='20 16-07-27 1 1:17:06.00 0', [LastU pdateUser] =' RED A CTED ' WHERE [B loodProduc tGuid]='69 354d0d-b97 5-4422-90a 5-fe8be0a8 ed87' | |
| 11483 | UPDATE [db o].[BloodP roduct] SE T [Product Name]='Aph eresis FRE SH FROZEN PLASMA|ACD -B/XX/<=-3 0C|Not for tx or mnf |Quar:>=6m /retested' , [LastUpd ateDate]=' 2016-07-27 11:17:06. 000', [Las tUpdateUse r]=' RED A CTED ' WHERE [B loodProduc tGuid]='2b 4eaff8-b16 6-4a36-8a7 d-fe9d7399 4531' | |
| 11484 | UPDATE [db o].[BloodP roduct] SE T [Product Name]='PLA SMA|CPD/45 0mL/<=-30C |Frozen <= 18h', [Las tUpdateDat e]='2016-0 7-27 11:17 :06.000', [LastUpdat eUser]=' RED A CTED ' WHERE [B loodProduc tGuid]='73 167ee9-552 8-49dd-bf2 9-febb3847 e95d' | |
| 11485 | UPDATE [db o].[BloodP roduct] SE T [Product Name]='FRE SH FROZEN PLASMA|CPD /450mL/<=- 25C|Frozen <=15h|Met hylene blu e-treated' , [LastUpd ateDate]=' 2016-07-27 11:17:06. 000', [Las tUpdateUse r]=' RED A CTED ' WHERE [B loodProduc tGuid]='54 bd378f-079 f-4024-8ae 5-fec06f06 dded' | |
| 11486 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='FFP AFR None LUKOP R 1C', [La stUpdateDa te]='2016- 07-27 11:1 7:06.000', [LastUpda teUser]=' RED A CTED ' WHERE [B loodProduc tGuid]='7e 3ce649-090 a-4fbc-938 5-fee88818 f263' | |
| 11487 | UPDATE [db o].[BloodP roduct] SE T [Product Name]='POO LED PLASMA |CPD/450mL /<=-30C|Fo r mnf:inje ctable|Fro zen >24h|2 units', [ ProductSho rtName]='P LASMA Pool CPD MNFI 2U', [Last UpdateDate ]='2016-07 -27 11:17: 06.000', [ LastUpdate User]=' RED A CTED ' WHERE [B loodProduc tGuid]='9f 6b7ab8-b54 2-4cb5-b1a e-ff11a4e9 0e26' | |
| 11488 | UPDATE [db o].[BloodP roduct] SE T [Product Name]='FRE SH FROZEN PLASMA|CPD A-1/XX/<=- 65C|Irradi ated|2nd c ontainer|Q uar:>=112d /retested' , [Product ShortName] ='FFP CPDA -1 IRD 2C QUAR', [La stUpdateDa te]='2016- 07-27 11:1 7:06.000', [LastUpda teUser]=' RED A CTED ' WHERE [B loodProduc tGuid]='f4 cd3333-f6e b-40a8-ae7 7-ff20969d 71b5' | |
| 11489 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC AFR ACD-A>AS3 OPN LUKOPR SAL Add 2 C', [LastU pdateDate] ='2016-07- 27 11:17:0 6.000', [L astUpdateU ser]=' RED A CTED ' WHERE [B loodProduc tGuid]='2f adb27d-3c0 c-4e82-9e9 e-ff26bf0e cc6a' | |
| 11490 | UPDATE [db o].[BloodP roduct] SE T [Product Name]='Aph eresis FRE SH FROZEN PLASMA|ACD -A/XX/<=-3 0C|ResLeu: <1E6|>=200 mL<400mL|Q uar:>=62d/ retested', [LastUpda teDate]='2 016-07-27 11:17:06.0 00', [Last UpdateUser ]=' RED A CTED ' WHERE [B loodProduc tGuid]='68 4f9451-8dd 4-4445-a68 e-ff310325 000d' | |
| 11491 | UPDATE [db o].[BloodP roduct] SE T [Product Name]='FRE SH FROZEN PLASMA|CPD /XX/<=-65C |Irradiate d|1st cont ainer|Quar :>=112d/re tested', [ ProductSho rtName]='F FP CPD IRD 1C QUAR', [LastUpda teDate]='2 016-07-27 11:17:06.0 00', [Last UpdateUser ]=' RED A CTED ' WHERE [B loodProduc tGuid]='13 2e9cb3-675 5-4d25-8b9 7-ff4b060b 8f9e' | |
| 11492 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='FFP Thaw CPDA-1 2C QUAR', [L astUpdateD ate]='2016 -07-27 11: 17:06.000' , [LastUpd ateUser]=' RED A CTED ' WHERE [B loodProduc tGuid]='1c ddb6f0-b83 0-4eba-884 4-ff597484 01d9' | |
| 11493 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC AFR ACD-A>AS3 MNFI 1C', [LastUpdat eDate]='20 16-07-27 1 1:17:06.00 0', [LastU pdateUser] =' RED A CTED ' WHERE [B loodProduc tGuid]='55 6c6848-14a 8-48ec-b2e 8-ff59e04b 6a23' | |
| 11494 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC Deg None LUKOP R 6C', [La stUpdateDa te]='2016- 07-27 11:1 7:06.000', [LastUpda teUser]=' RED A CTED ' WHERE [B loodProduc tGuid]='7e 90d100-816 9-4b35-a75 0-ff5c422c 0b85' | |
| 11495 | UPDATE [db o].[BloodP roduct] SE T [Product Name]='FRE SH FROZEN PLASMA|CPD /XX/<=-65C |Irradiate d|2nd cont ainer|Quar :>=112d/re tested', [ ProductSho rtName]='F FP CPD IRD 2C QUAR', [LastUpda teDate]='2 016-07-27 11:17:06.0 00', [Last UpdateUser ]=' RED A CTED ' WHERE [B loodProduc tGuid]='dc 797511-ac3 5-4b86-8b9 2-ff690f92 e7d3' | |
| 11496 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC AFR Froz None OPN LUKOPR 1C', [Las tUpdateDat e]='2016-0 7-27 11:17 :06.000', [LastUpdat eUser]=' RED A CTED ' WHERE [B loodProduc tGuid]='72 8ab935-bc4 2-4788-9f4 e-ff6cc8e8 0d31' | |
| 11497 | UPDATE [db o].[BloodP roduct] SE T [RetireD ate]='2015 -03-06 00: 00:00.000' , [LastUpd ateDate]=' 2016-07-27 11:17:06. 000', [Las tUpdateUse r]=' RED A CTED ' WHERE [B loodProduc tGuid]='b3 5a144b-78f f-4273-a8f e-ff75d30d 8d4a' | |
| 11498 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLT AFR ACD-A>PAS- F OPN LUKO PR 2C', [L astUpdateD ate]='2016 -07-27 11: 17:06.000' , [LastUpd ateUser]=' RED A CTED ' WHERE [B loodProduc tGuid]='20 d9722e-abb 2-4cbe-850 9-ff87d11d 1492' | |
| 11499 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC CP2D LUKOPR 3C ', [LastUp dateDate]= '2016-07-2 7 11:17:06 .000', [La stUpdateUs er]=' RED A CTED ' WHERE [B loodProduc tGuid]='bf aab3b9-27b 7-48c5-813 9-ff8f42d5 6b0b' | |
| 11500 | UPDATE [db o].[BloodP roduct] SE T [Product Name]='Aph eresis FRE SH FROZEN PLASMA|NaC itrate/XX/ <=-65C|<20 0 mL|Quar: >=6m/retes ted', [Las tUpdateDat e]='2016-0 7-27 11:17 :06.000', [LastUpdat eUser]=' RED A CTED ' WHERE [B loodProduc tGuid]='1f e050b2-241 5-458b-a09 6-ff92c829 d876' | |
| 11501 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC CPD> AS1 5C', [ LastUpdate Date]='201 6-07-27 11 :17:06.000 ', [LastUp dateUser]= ' RED A CTED ' WHERE [B loodProduc tGuid]='ed 7ef446-f4c 4-463e-815 d-ffb6fe3b 0f48' | |
| 11502 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLT AFR PAS-C LUKO PR 2C', [L astUpdateD ate]='2016 -07-27 11: 17:06.000' , [LastUpd ateUser]=' RED A CTED ' WHERE [B loodProduc tGuid]='8e d59f2d-6d5 a-4b35-91a f-ffb7727d 377b' | |
| 11503 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC AFR ACD-A NMT LUKOPR 2C' , [LastUpd ateDate]=' 2016-07-27 11:17:06. 000', [Las tUpdateUse r]=' RED A CTED ' WHERE [B loodProduc tGuid]='d4 e73e62-381 d-451a-99f 4-ffbcfba1 15b4' | |
| 11504 | UPDATE [db o].[BloodP roduct] SE T [Product Name]='Aph eresis FRE SH FROZEN PLASMA|ACD -B/XX/<=-2 5C|>=200mL <400mL', [ LastUpdate Date]='201 6-07-27 11 :17:06.000 ', [LastUp dateUser]= ' RED A CTED ' WHERE [B loodProduc tGuid]='f3 408a57-4ae 5-451b-9ba b-ffc1e8ea eeaa' | |
| 11505 | UPDATE [db o].[BloodP roduct] SE T [Product Name]='FRE SH FROZEN PLASMA|CPD /450mL/<=- 25C|For mn f:noninjec table|Froz en <=24h', [LastUpda teDate]='2 016-07-27 11:17:06.0 00', [Last UpdateUser ]=' RED A CTED ' WHERE [B loodProduc tGuid]='96 89b8ff-8a0 0-41de-a46 d-ffcee080 25b3' | |
| 11506 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='PLT AFR ACD-A IRD 6C', [Last UpdateDate ]='2016-07 -27 11:17: 06.000', [ LastUpdate User]=' RED A CTED ' WHERE [B loodProduc tGuid]='aa c3b917-0a5 3-465c-bf8 3-ffd5a2f2 7f42' | |
| 11507 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='WB CP2D 4C', [Last UpdateDate ]='2016-07 -27 11:17: 06.000', [ LastUpdate User]=' RED A CTED ' WHERE [B loodProduc tGuid]='b6 6f3e4d-81a c-49bd-8cf 4-fff1923e 821d' | |
| 11508 | UPDATE [db o].[BloodP roduct] SE T [Product ShortName] ='RBC CPD IRD LUKOPR 8C', [Las tUpdateDat e]='2016-0 7-27 11:17 :06.000', [LastUpdat eUser]=' RED A CTED ' WHERE [B loodProduc tGuid]='38 da1efc-2ba 1-4b07-a3e c-fff77aba 82ec' | |
| 11509 | -- O peration a pplied to 4128 rows out of 412 8 | |
| 11510 | ||
| 11511 | -- U pdate rows in [dbo]. [ProductTy pe] | |
| 11512 | UPDATE [db o].[Produc tType] SET [AboRhCon firmationR equired]=1 , [LastUpd ateDate]=' 2016-07-27 11:17:06. 000', [Las tUpdateUse r]=' RED A CTED ' WHERE [P roductType Code]='E04 2' | |
| 11513 | UPDATE [db o].[Produc tType] SET [AboRhCon firmationR equired]=1 , [LastUpd ateDate]=' 2016-07-27 11:17:06. 000', [Las tUpdateUse r]=' RED A CTED ' WHERE [P roductType Code]='E04 3' | |
| 11514 | -- O peration a pplied to 2 rows out of 2 | |
| 11515 | ||
| 11516 | -- U pdate rows in [dbo]. [ProductAt tribute] | |
| 11517 | UPDATE [db o].[Produc tAttribute ] SET [Pro ductAttrib uteText]=' None/450mL /<=-65C', [LastUpdat eDate]='20 16-07-27 1 1:17:06.00 0', [LastU pdateUser] =' RED A CTED ' WHERE [P roductAttr ibuteId]=' @29' | |
| 11518 | UPDATE [db o].[Produc tAttribute ] SET [Pro ductAttrib uteText]=' None/500mL /<=-65C', [LastUpdat eDate]='20 16-07-27 1 1:17:06.00 0', [LastU pdateUser] =' RED A CTED ' WHERE [P roductAttr ibuteId]=' @30' | |
| 11519 | UPDATE [db o].[Produc tAttribute ] SET [Pro ductAttrib uteText]=' None/250mL /<=-65C', [LastUpdat eDate]='20 16-07-27 1 1:17:06.00 0', [LastU pdateUser] =' RED A CTED ' WHERE [P roductAttr ibuteId]=' @31' | |
| 11520 | UPDATE [db o].[Produc tAttribute ] SET [Pro ductAttrib uteText]=' None/450mL /<=-120C', [LastUpda teDate]='2 016-07-27 11:17:06.0 00', [Last UpdateUser ]=' RED A CTED ' WHERE [P roductAttr ibuteId]=' @32' | |
| 11521 | UPDATE [db o].[Produc tAttribute ] SET [Pro ductAttrib uteText]=' CPDA-1/XX/ <=-25C', [ LastUpdate Date]='201 6-07-27 11 :17:06.000 ', [LastUp dateUser]= ' RED A CTED ' WHERE [P roductAttr ibuteId]=' @38' | |
| 11522 | UPDATE [db o].[Produc tAttribute ] SET [Pro ductAttrib uteText]=' CPDA-1/XX/ <=-30C', [ LastUpdate Date]='201 6-07-27 11 :17:06.000 ', [LastUp dateUser]= ' RED A CTED ' WHERE [P roductAttr ibuteId]=' @39' | |
| 11523 | UPDATE [db o].[Produc tAttribute ] SET [Pro ductAttrib uteText]=' CPD/XX/<=- 65C', [Las tUpdateDat e]='2016-0 7-27 11:17 :06.000', [LastUpdat eUser]=' RED A CTED ' WHERE [P roductAttr ibuteId]=' @40' | |
| 11524 | UPDATE [db o].[Produc tAttribute ] SET [Pro ductAttrib uteText]=' CPDA-1/XX/ <=-65C', [ LastUpdate Date]='201 6-07-27 11 :17:06.000 ', [LastUp dateUser]= ' RED A CTED ' WHERE [P roductAttr ibuteId]=' @41' | |
| 11525 | UPDATE [db o].[Produc tAttribute ] SET [Pro ductAttrib uteText]=' CP2D/XX/<= -65C', [La stUpdateDa te]='2016- 07-27 11:1 7:06.000', [LastUpda teUser]=' RED A CTED ' WHERE [P roductAttr ibuteId]=' @42' | |
| 11526 | UPDATE [db o].[Produc tAttribute ] SET [Pro ductAttrib uteText]=' 0.5 CPD/XX /<=-25C', [LastUpdat eDate]='20 16-07-27 1 1:17:06.00 0', [LastU pdateUser] =' RED A CTED ' WHERE [P roductAttr ibuteId]=' @44' | |
| 11527 | UPDATE [db o].[Produc tAttribute ] SET [Pro ductAttrib uteText]=' 0.5 CPD/XX /<=-30C', [LastUpdat eDate]='20 16-07-27 1 1:17:06.00 0', [LastU pdateUser] =' RED A CTED ' WHERE [P roductAttr ibuteId]=' @45' | |
| 11528 | UPDATE [db o].[Produc tAttribute ] SET [Pro ductAttrib uteText]=' ACD-B/XX/< =-25C', [L astUpdateD ate]='2016 -07-27 11: 17:06.000' , [LastUpd ateUser]=' RED A CTED ' WHERE [P roductAttr ibuteId]=' @49' | |
| 11529 | UPDATE [db o].[Produc tAttribute ] SET [Pro ductAttrib uteText]=' ACD-B/XX/< =-30C', [L astUpdateD ate]='2016 -07-27 11: 17:06.000' , [LastUpd ateUser]=' RED A CTED ' WHERE [P roductAttr ibuteId]=' @50' | |
| 11530 | UPDATE [db o].[Produc tAttribute ] SET [Pro ductAttrib uteText]=' ACD-A/XX/< =-65C', [L astUpdateD ate]='2016 -07-27 11: 17:06.000' , [LastUpd ateUser]=' RED A CTED ' WHERE [P roductAttr ibuteId]=' @51' | |
| 11531 | UPDATE [db o].[Produc tAttribute ] SET [Pro ductAttrib uteText]=' ACD-B/XX/< =-65C', [L astUpdateD ate]='2016 -07-27 11: 17:06.000' , [LastUpd ateUser]=' RED A CTED ' WHERE [P roductAttr ibuteId]=' @52' | |
| 11532 | UPDATE [db o].[Produc tAttribute ] SET [Pro ductAttrib uteText]=' NaCitrate/ XX/<=-65C' , [LastUpd ateDate]=' 2016-07-27 11:17:06. 000', [Las tUpdateUse r]=' RED A CTED ' WHERE [P roductAttr ibuteId]=' @53' | |
| 11533 | UPDATE [db o].[Produc tAttribute ] SET [Pro ductAttrib uteText]=' DMSO/XX/<= -65C', [La stUpdateDa te]='2016- 07-27 11:1 7:06.000', [LastUpda teUser]=' RED A CTED ' WHERE [P roductAttr ibuteId]=' @76' | |
| 11534 | UPDATE [db o].[Produc tAttribute ] SET [Pro ductAttrib uteText]=' None/XX/<= -30C', [La stUpdateDa te]='2016- 07-27 11:1 7:06.000', [LastUpda teUser]=' RED A CTED ' WHERE [P roductAttr ibuteId]=' @80' | |
| 11535 | UPDATE [db o].[Produc tAttribute ] SET [Pro ductAttrib uteText]=' CPD/XX/<=- 25C', [Las tUpdateDat e]='2016-0 7-27 11:17 :06.000', [LastUpdat eUser]=' RED A CTED ' WHERE [P roductAttr ibuteId]=' @A1' | |
| 11536 | UPDATE [db o].[Produc tAttribute ] SET [Pro ductAttrib uteText]=' CPD/450mL/ <=-25C', [ LastUpdate Date]='201 6-07-27 11 :17:06.000 ', [LastUp dateUser]= ' RED A CTED ' WHERE [P roductAttr ibuteId]=' @A2' | |
| 11537 | UPDATE [db o].[Produc tAttribute ] SET [Pro ductAttrib uteText]=' CPD/500mL/ <=-25C', [ LastUpdate Date]='201 6-07-27 11 :17:06.000 ', [LastUp dateUser]= ' RED A CTED ' WHERE [P roductAttr ibuteId]=' @A3' | |
| 11538 | UPDATE [db o].[Produc tAttribute ] SET [Pro ductAttrib uteText]=' CPD/XX/<=- 30C', [Las tUpdateDat e]='2016-0 7-27 11:17 :06.000', [LastUpdat eUser]=' RED A CTED ' WHERE [P roductAttr ibuteId]=' @A4' | |
| 11539 | UPDATE [db o].[Produc tAttribute ] SET [Pro ductAttrib uteText]=' CPD/450mL/ <=-30C', [ LastUpdate Date]='201 6-07-27 11 :17:06.000 ', [LastUp dateUser]= ' RED A CTED ' WHERE [P roductAttr ibuteId]=' @A5' | |
| 11540 | UPDATE [db o].[Produc tAttribute ] SET [Pro ductAttrib uteText]=' CPD/500mL/ <=-30C', [ LastUpdate Date]='201 6-07-27 11 :17:06.000 ', [LastUp dateUser]= ' RED A CTED ' WHERE [P roductAttr ibuteId]=' @A6' | |
| 11541 | UPDATE [db o].[Produc tAttribute ] SET [Pro ductAttrib uteText]=' NS/450mL/< =-30C', [L astUpdateD ate]='2016 -07-27 11: 17:06.000' , [LastUpd ateUser]=' RED A CTED ' WHERE [P roductAttr ibuteId]=' @A8' | |
| 11542 | UPDATE [db o].[Produc tAttribute ] SET [Pro ductAttrib uteText]=' Gly17%/450 mL/<=-120C ', [LastUp dateDate]= '2016-07-2 7 11:17:06 .000', [La stUpdateUs er]=' RED A CTED ' WHERE [P roductAttr ibuteId]=' @AA' | |
| 11543 | UPDATE [db o].[Produc tAttribute ] SET [Pro ductAttrib uteText]=' Gly17%/500 mL/<=-120C ', [LastUp dateDate]= '2016-07-2 7 11:17:06 .000', [La stUpdateUs er]=' RED A CTED ' WHERE [P roductAttr ibuteId]=' @AB' | |
| 11544 | UPDATE [db o].[Produc tAttribute ] SET [Pro ductAttrib uteText]=' Gly35%/450 mL/<=-65C' , [LastUpd ateDate]=' 2016-07-27 11:17:06. 000', [Las tUpdateUse r]=' RED A CTED ' WHERE [P roductAttr ibuteId]=' @AC' | |
| 11545 | UPDATE [db o].[Produc tAttribute ] SET [Pro ductAttrib uteText]=' Gly35%/500 mL/<=-65C' , [LastUpd ateDate]=' 2016-07-27 11:17:06. 000', [Las tUpdateUse r]=' RED A CTED ' WHERE [P roductAttr ibuteId]=' @AD' | |
| 11546 | UPDATE [db o].[Produc tAttribute ] SET [Mod ificationA llowedIndi cator]=0, [RetireDat e]='2015-0 3-06 00:00 :00.000', [LastUpdat eDate]='20 16-07-27 1 1:17:06.00 0', [LastU pdateUser] =' RED A CTED ' WHERE [P roductAttr ibuteId]=' @AF' | |
| 11547 | UPDATE [db o].[Produc tAttribute ] SET [Pro ductAttrib uteText]=' NS/500mL/< =-30C', [L astUpdateD ate]='2016 -07-27 11: 17:06.000' , [LastUpd ateUser]=' RED A CTED ' WHERE [P roductAttr ibuteId]=' @AG' | |
| 11548 | UPDATE [db o].[Produc tAttribute ] SET [Pro ductAttrib uteText]=' NS/XX/<=-3 0C', [Last UpdateDate ]='2016-07 -27 11:17: 06.000', [ LastUpdate User]=' RED A CTED ' WHERE [P roductAttr ibuteId]=' @AH' | |
| 11549 | UPDATE [db o].[Produc tAttribute ] SET [Pro ductAttrib uteText]=' ACD-A/XX/< =-25C', [L astUpdateD ate]='2016 -07-27 11: 17:06.000' , [LastUpd ateUser]=' RED A CTED ' WHERE [P roductAttr ibuteId]=' @AI' | |
| 11550 | UPDATE [db o].[Produc tAttribute ] SET [Pro ductAttrib uteText]=' ACD-A/XX/< =-30C', [L astUpdateD ate]='2016 -07-27 11: 17:06.000' , [LastUpd ateUser]=' RED A CTED ' WHERE [P roductAttr ibuteId]=' @AJ' | |
| 11551 | UPDATE [db o].[Produc tAttribute ] SET [Pro ductAttrib uteText]=' None/450mL /<=-30C', [LastUpdat eDate]='20 16-07-27 1 1:17:06.00 0', [LastU pdateUser] =' RED A CTED ' WHERE [P roductAttr ibuteId]=' @AK' | |
| 11552 | UPDATE [db o].[Produc tAttribute ] SET [Mod ificationA llowedIndi cator]=0, [RetireDat e]='2015-0 3-06 00:00 :00.000', [LastUpdat eDate]='20 16-07-27 1 1:17:06.00 0', [LastU pdateUser] =' RED A CTED ' WHERE [P roductAttr ibuteId]=' @AL' | |
| 11553 | UPDATE [db o].[Produc tAttribute ] SET [Pro ductAttrib uteText]=' CPD-50/XX/ <=-25 C', [LastUpdat eDate]='20 16-07-27 1 1:17:06.00 0', [LastU pdateUser] =' RED A CTED ' WHERE [P roductAttr ibuteId]=' @AP' | |
| 11554 | UPDATE [db o].[Produc tAttribute ] SET [Pro ductAttrib uteText]=' CPD-50/XX/ <=-30C', [ LastUpdate Date]='201 6-07-27 11 :17:06.000 ', [LastUp dateUser]= ' RED A CTED ' WHERE [P roductAttr ibuteId]=' @AQ' | |
| 11555 | UPDATE [db o].[Produc tAttribute ] SET [Pro ductAttrib uteText]=' Gly40%/450 mL/<=-65C' , [LastUpd ateDate]=' 2016-07-27 11:17:06. 000', [Las tUpdateUse r]=' RED A CTED ' WHERE [P roductAttr ibuteId]=' @AT' | |
| 11556 | UPDATE [db o].[Produc tAttribute ] SET [Pro ductAttrib uteText]=' CPD/450mL/ <=-65C', [ LastUpdate Date]='201 6-07-27 11 :17:06.000 ', [LastUp dateUser]= ' RED A CTED ' WHERE [P roductAttr ibuteId]=' @AU' | |
| 11557 | UPDATE [db o].[Produc tAttribute ] SET [Pro ductAttrib uteText]=' CPD-50/XX/ <=-65C', [ LastUpdate Date]='201 6-07-27 11 :17:06.000 ', [LastUp dateUser]= ' RED A CTED ' WHERE [P roductAttr ibuteId]=' @AW' | |
| 11558 | UPDATE [db o].[Produc tAttribute ] SET [Mod ificationA llowedIndi cator]=0, [LastUpdat eDate]='20 16-07-27 1 1:17:06.00 0', [LastU pdateUser] =' RED A CTED ' WHERE [P roductAttr ibuteId]=' @B0' | |
| 11559 | UPDATE [db o].[Produc tAttribute ] SET [Pro ductAttrib uteText]=' Gly40%/500 mL/<=-65C' , [LastUpd ateDate]=' 2016-07-27 11:17:06. 000', [Las tUpdateUse r]=' RED A CTED ' WHERE [P roductAttr ibuteId]=' @B2' | |
| 11560 | UPDATE [db o].[Produc tAttribute ] SET [Pro ductAttrib uteText]=' Gly40%/XX/ <=-65C', [ LastUpdate Date]='201 6-07-27 11 :17:06.000 ', [LastUp dateUser]= ' RED A CTED ' WHERE [P roductAttr ibuteId]=' @B3' | |
| 11561 | UPDATE [db o].[Produc tAttribute ] SET [Pro ductAttrib uteText]=' None/XX/<= -65C', [La stUpdateDa te]='2016- 07-27 11:1 7:06.000', [LastUpda teUser]=' RED A CTED ' WHERE [P roductAttr ibuteId]=' @B7' | |
| 11562 | UPDATE [db o].[Produc tAttribute ] SET [Mod ificationA llowedIndi cator]=0, [LastUpdat eDate]='20 16-07-27 1 1:17:06.00 0', [LastU pdateUser] =' RED A CTED ' WHERE [P roductAttr ibuteId]=' @BD' | |
| 11563 | UPDATE [db o].[Produc tAttribute ] SET [Mod ificationA llowedIndi cator]=0, [LastUpdat eDate]='20 16-07-27 1 1:17:06.00 0', [LastU pdateUser] =' RED A CTED ' WHERE [P roductAttr ibuteId]=' @BF' | |
| 11564 | UPDATE [db o].[Produc tAttribute ] SET [Pro ductAttrib uteText]=' CPDA-1/350 mL/<=-30C' , [LastUpd ateDate]=' 2016-07-27 11:17:06. 000', [Las tUpdateUse r]=' RED A CTED ' WHERE [P roductAttr ibuteId]=' @BO' | |
| 11565 | UPDATE [db o].[Produc tAttribute ] SET [Mod ificationA llowedIndi cator]=0, [LastUpdat eDate]='20 16-07-27 1 1:17:06.00 0', [LastU pdateUser] =' RED A CTED ' WHERE [P roductAttr ibuteId]=' @BP' | |
| 11566 | UPDATE [db o].[Produc tAttribute ] SET [Pro ductAttrib uteText]=' CPDA-1/450 mL/<=-30C' , [LastUpd ateDate]=' 2016-07-27 11:17:06. 000', [Las tUpdateUse r]=' RED A CTED ' WHERE [P roductAttr ibuteId]=' @BQ' | |
| 11567 | UPDATE [db o].[Produc tAttribute ] SET [Pro ductAttrib uteText]=' None/200mL /<=-65C', [LastUpdat eDate]='20 16-07-27 1 1:17:06.00 0', [LastU pdateUser] =' RED A CTED ' WHERE [P roductAttr ibuteId]=' @BZ' | |
| 11568 | UPDATE [db o].[Produc tAttribute ] SET [Pro ductAttrib uteText]=' None/400mL /<=-65C', [LastUpdat eDate]='20 16-07-27 1 1:17:06.00 0', [LastU pdateUser] =' RED A CTED ' WHERE [P roductAttr ibuteId]=' @C1' | |
| 11569 | UPDATE [db o].[Produc tAttribute ] SET [Pro ductAttrib uteText]=' None/200mL /<=-120C', [LastUpda teDate]='2 016-07-27 11:17:06.0 00', [Last UpdateUser ]=' RED A CTED ' WHERE [P roductAttr ibuteId]=' @C2' | |
| 11570 | UPDATE [db o].[Produc tAttribute ] SET [Pro ductAttrib uteText]=' None/400mL /<=-120C', [LastUpda teDate]='2 016-07-27 11:17:06.0 00', [Last UpdateUser ]=' RED A CTED ' WHERE [P roductAttr ibuteId]=' @C3' | |
| 11571 | UPDATE [db o].[Produc tAttribute ] SET [Pro ductAttrib uteText]=' Gly40%/200 mL/<=-65C' , [LastUpd ateDate]=' 2016-07-27 11:17:06. 000', [Las tUpdateUse r]=' RED A CTED ' WHERE [P roductAttr ibuteId]=' @C8' | |
| 11572 | UPDATE [db o].[Produc tAttribute ] SET [Pro ductAttrib uteText]=' Gly40%/400 mL/<=-65C' , [LastUpd ateDate]=' 2016-07-27 11:17:06. 000', [Las tUpdateUse r]=' RED A CTED ' WHERE [P roductAttr ibuteId]=' @C9' | |
| 11573 | UPDATE [db o].[Produc tAttribute ] SET [Pro ductAttrib uteText]=' NaCitrate/ XX/<=-30C' , [LastUpd ateDate]=' 2016-07-27 11:17:06. 000', [Las tUpdateUse r]=' RED A CTED ' WHERE [P roductAttr ibuteId]=' @CH' | |
| 11574 | UPDATE [db o].[Produc tAttribute ] SET [Pro ductAttrib uteText]=' DMSO/XX/<= -30C', [La stUpdateDa te]='2016- 07-27 11:1 7:06.000', [LastUpda teUser]=' RED A CTED ' WHERE [P roductAttr ibuteId]=' @CJ' | |
| 11575 | UPDATE [db o].[Produc tAttribute ] SET [Pro ductAttrib uteText]=' DMSO/NS/<= -80C', [Mo dification AllowedInd icator]=0, [LastUpda teDate]='2 016-07-27 11:17:06.0 00', [Last UpdateUser ]=' RED A CTED ' WHERE [P roductAttr ibuteId]=' @CK' | |
| 11576 | UPDATE [db o].[Produc tAttribute ] SET [Pro ductAttrib uteText]=' DMSO/XX/<= -80C', [La stUpdateDa te]='2016- 07-27 11:1 7:06.000', [LastUpda teUser]=' RED A CTED ' WHERE [P roductAttr ibuteId]=' @CP' | |
| 11577 | UPDATE [db o].[Produc tAttribute ] SET [Pro ductAttrib uteText]=' NaCitrate/ XX/<=-25C' , [LastUpd ateDate]=' 2016-07-27 11:17:06. 000', [Las tUpdateUse r]=' RED A CTED ' WHERE [P roductAttr ibuteId]=' @CQ' | |
| 11578 | UPDATE [db o].[Produc tAttribute ] SET [Mod ificationA llowedIndi cator]=0, [LastUpdat eDate]='20 16-07-27 1 1:17:06.00 0', [LastU pdateUser] =' RED A CTED ' WHERE [P roductAttr ibuteId]=' @CR' | |
| 11579 | UPDATE [db o].[Produc tAttribute ] SET [Pro ductAttrib uteText]=' CPDA-1/450 mL/<=-25C' , [LastUpd ateDate]=' 2016-07-27 11:17:06. 000', [Las tUpdateUse r]=' RED A CTED ' WHERE [P roductAttr ibuteId]=' @CV' | |
| 11580 | UPDATE [db o].[Produc tAttribute ] SET [Pro ductAttrib uteText]=' CP2D/XX/<= -25C', [La stUpdateDa te]='2016- 07-27 11:1 7:06.000', [LastUpda teUser]=' RED A CTED ' WHERE [P roductAttr ibuteId]=' @CW' | |
| 11581 | UPDATE [db o].[Produc tAttribute ] SET [Pro ductAttrib uteText]=' CPD/350mL/ <=-30C', [ LastUpdate Date]='201 6-07-27 11 :17:06.000 ', [LastUp dateUser]= ' RED A CTED ' WHERE [P roductAttr ibuteId]=' @CZ' | |
| 11582 | UPDATE [db o].[Produc tAttribute ] SET [Pro ductAttrib uteText]=' Gly40%/XX/ <=-80C', [ LastUpdate Date]='201 6-07-27 11 :17:06.000 ', [LastUp dateUser]= ' RED A CTED ' WHERE [P roductAttr ibuteId]=' @DL' | |
| 11583 | UPDATE [db o].[Produc tAttribute ] SET [Pro ductAttrib uteText]=' No Informa tion', [La stUpdateDa te]='2016- 07-27 11:1 7:06.000', [LastUpda teUser]=' RED A CTED ' WHERE [P roductAttr ibuteId]=' D1 ' | |
| 11584 | UPDATE [db o].[Produc tAttribute ] SET [Pro ductAttrib utePrintNa me]='1C', [LastUpdat eDate]='20 16-07-27 1 1:17:06.00 0', [LastU pdateUser] =' RED A CTED ' WHERE [P roductAttr ibuteId]=' H3 ' | |
| 11585 | UPDATE [db o].[Produc tAttribute ] SET [Pro ductAttrib utePrintNa me]='2C', [LastUpdat eDate]='20 16-07-27 1 1:17:06.00 0', [LastU pdateUser] =' RED A CTED ' WHERE [P roductAttr ibuteId]=' H4 ' | |
| 11586 | UPDATE [db o].[Produc tAttribute ] SET [Pro ductAttrib utePrintNa me]='3C', [LastUpdat eDate]='20 16-07-27 1 1:17:06.00 0', [LastU pdateUser] =' RED A CTED ' WHERE [P roductAttr ibuteId]=' H5 ' | |
| 11587 | UPDATE [db o].[Produc tAttribute ] SET [Pro ductAttrib utePrintNa me]='4C', [LastUpdat eDate]='20 16-07-27 1 1:17:06.00 0', [LastU pdateUser] =' RED A CTED ' WHERE [P roductAttr ibuteId]=' H6 ' | |
| 11588 | UPDATE [db o].[Produc tAttribute ] SET [Pro ductAttrib utePrintNa me]='1CNA' , [LastUpd ateDate]=' 2016-07-27 11:17:06. 000', [Las tUpdateUse r]=' RED A CTED ' WHERE [P roductAttr ibuteId]=' H7 ' | |
| 11589 | UPDATE [db o].[Produc tAttribute ] SET [Pro ductAttrib utePrintNa me]='2CNA' , [LastUpd ateDate]=' 2016-07-27 11:17:06. 000', [Las tUpdateUse r]=' RED A CTED ' WHERE [P roductAttr ibuteId]=' H8 ' | |
| 11590 | UPDATE [db o].[Produc tAttribute ] SET [Pro ductAttrib utePrintNa me]='5C', [LastUpdat eDate]='20 16-07-27 1 1:17:06.00 0', [LastU pdateUser] =' RED A CTED ' WHERE [P roductAttr ibuteId]=' H9 ' | |
| 11591 | UPDATE [db o].[Produc tAttribute ] SET [Pro ductAttrib utePrintNa me]='6C', [LastUpdat eDate]='20 16-07-27 1 1:17:06.00 0', [LastU pdateUser] =' RED A CTED ' WHERE [P roductAttr ibuteId]=' HA ' | |
| 11592 | UPDATE [db o].[Produc tAttribute ] SET [Pro ductAttrib utePrintNa me]='7C', [LastUpdat eDate]='20 16-07-27 1 1:17:06.00 0', [LastU pdateUser] =' RED A CTED ' WHERE [P roductAttr ibuteId]=' HB ' | |
| 11593 | UPDATE [db o].[Produc tAttribute ] SET [Pro ductAttrib utePrintNa me]='8C', [LastUpdat eDate]='20 16-07-27 1 1:17:06.00 0', [LastU pdateUser] =' RED A CTED ' WHERE [P roductAttr ibuteId]=' HC ' | |
| 11594 | UPDATE [db o].[Produc tAttribute ] SET [Pro ductAttrib uteText]=' Pathogen R eduction', [LastUpda teDate]='2 016-07-27 11:17:06.0 00', [Last UpdateUser ]=' RED A CTED ' WHERE [P roductAttr ibuteId]=' K0 ' | |
| 11595 | UPDATE [db o].[Produc tAttribute ] SET [Mod ificationA llowedIndi cator]=0, [RetireDat e]='2014-0 4-24 00:00 :00.000', [LastUpdat eDate]='20 16-07-27 1 1:17:06.00 0', [LastU pdateUser] =' RED A CTED ' WHERE [P roductAttr ibuteId]=' K4 ' | |
| 11596 | UPDATE [db o].[Produc tAttribute ] SET [Mod ificationA llowedIndi cator]=0, [LastUpdat eDate]='20 16-07-27 1 1:17:06.00 0', [LastU pdateUser] =' RED A CTED ' WHERE [P roductAttr ibuteId]=' M1 ' | |
| 11597 | UPDATE [db o].[Produc tAttribute ] SET [Mod ificationA llowedIndi cator]=0, [LastUpdat eDate]='20 16-07-27 1 1:17:06.00 0', [LastU pdateUser] =' RED A CTED ' WHERE [P roductAttr ibuteId]=' M2 ' | |
| 11598 | -- O peration a pplied to 81 rows ou t of 81 | |
| 11599 | ||
| 11600 | -- A dd rows to [dbo].[Pr oductAttri bute] | |
| 11601 | INSERT INT O [dbo].[P roductAttr ibute] ([P roductAttr ibuteId], [ProductAt tributeTex t], [Produ ctAttribut ePrintName ], [Modifi cationAllo wedIndicat or], [Reti reDate], [ SortColumn ], [LastUp dateDate], [LastUpda teUser], [ LastUpdate FunctionId ]) VALUES ('@DO', 'N S/XX/<=-25 C', 'NS', 1, NULL, 0 , '2016-07 -27 11:17: 06.000', ' RED A CTED ', 0) | |
| 11602 | INSERT INT O [dbo].[P roductAttr ibute] ([P roductAttr ibuteId], [ProductAt tributeTex t], [Produ ctAttribut ePrintName ], [Modifi cationAllo wedIndicat or], [Reti reDate], [ SortColumn ], [LastUp dateDate], [LastUpda teUser], [ LastUpdate FunctionId ]) VALUES ('@DP', 'C PD>PAS-E/X X/20-24C', 'CPD>PAS- E', 0, NUL L, 0, '201 6-07-27 11 :17:06.000 ', ' RED A CTED ', 0) | |
| 11603 | INSERT INT O [dbo].[P roductAttr ibute] ([P roductAttr ibuteId], [ProductAt tributeTex t], [Produ ctAttribut ePrintName ], [Modifi cationAllo wedIndicat or], [Reti reDate], [ SortColumn ], [LastUp dateDate], [LastUpda teUser], [ LastUpdate FunctionId ]) VALUES ('@DQ', 'P AS-F/XX/20 -24C', 'PA S-F', 0, N ULL, 0, '2 016-07-27 11:17:06.0 00', ' RED A CTED ', 0) | |
| 11604 | INSERT INT O [dbo].[P roductAttr ibute] ([P roductAttr ibuteId], [ProductAt tributeTex t], [Produ ctAttribut ePrintName ], [Modifi cationAllo wedIndicat or], [Reti reDate], [ SortColumn ], [LastUp dateDate], [LastUpda teUser], [ LastUpdate FunctionId ]) VALUES ('@DR', 'N S/XX/<=-20 C', 'NS', 1, NULL, 0 , '2016-07 -27 11:17: 06.000', ' RED A CTED ', 0) | |
| 11605 | INSERT INT O [dbo].[P roductAttr ibute] ([P roductAttr ibuteId], [ProductAt tributeTex t], [Produ ctAttribut ePrintName ], [Modifi cationAllo wedIndicat or], [Reti reDate], [ SortColumn ], [LastUp dateDate], [LastUpda teUser], [ LastUpdate FunctionId ]) VALUES ('@DS', 'A CD-A>PAS-E /XX/20-24C ', 'ACD-A> PAS-E', 0, NULL, 0, '2016-07-2 7 11:17:06 .000', ' RED A CTED ', 0) | |
| 11606 | INSERT INT O [dbo].[P roductAttr ibute] ([P roductAttr ibuteId], [ProductAt tributeTex t], [Produ ctAttribut ePrintName ], [Modifi cationAllo wedIndicat or], [Reti reDate], [ SortColumn ], [LastUp dateDate], [LastUpda teUser], [ LastUpdate FunctionId ]) VALUES ('@DT', 'N one/XX/<=- 20C', 'Non e', 1, NUL L, 0, '201 6-07-27 11 :17:06.000 ', ' RED A CTED ', 0) | |
| 11607 | INSERT INT O [dbo].[P roductAttr ibute] ([P roductAttr ibuteId], [ProductAt tributeTex t], [Produ ctAttribut ePrintName ], [Modifi cationAllo wedIndicat or], [Reti reDate], [ SortColumn ], [LastUp dateDate], [LastUpda teUser], [ LastUpdate FunctionId ]) VALUES ('@DU', 'A CD-A>PAS-B /XX/20-24C ', 'ACD-A> PAS-B', 0, NULL, 0, '2016-07-2 7 11:17:06 .000', ' RED A CTED ', 0) | |
| 11608 | INSERT INT O [dbo].[P roductAttr ibute] ([P roductAttr ibuteId], [ProductAt tributeTex t], [Produ ctAttribut ePrintName ], [Modifi cationAllo wedIndicat or], [Reti reDate], [ SortColumn ], [LastUp dateDate], [LastUpda teUser], [ LastUpdate FunctionId ]) VALUES ('@DV', 'N S/XX/Froze n', 'NS', 1, NULL, 0 , '2016-07 -27 11:17: 06.000', ' RED A CTED ', 0) | |
| 11609 | INSERT INT O [dbo].[P roductAttr ibute] ([P roductAttr ibuteId], [ProductAt tributeTex t], [Produ ctAttribut ePrintName ], [Modifi cationAllo wedIndicat or], [Reti reDate], [ SortColumn ], [LastUp dateDate], [LastUpda teUser], [ LastUpdate FunctionId ]) VALUES ('@DW', 'C PD/350mL/< =-18C', 'C PD', 1, NU LL, 0, '20 16-07-27 1 1:17:06.00 0', ' RED A CTED ', 0) | |
| 11610 | INSERT INT O [dbo].[P roductAttr ibute] ([P roductAttr ibuteId], [ProductAt tributeTex t], [Produ ctAttribut ePrintName ], [Modifi cationAllo wedIndicat or], [Reti reDate], [ SortColumn ], [LastUp dateDate], [LastUpda teUser], [ LastUpdate FunctionId ]) VALUES ('@DX', 'C PDA-1/200m L/20-24C', 'CPDA-1', 1, NULL, 0, '2016-0 7-27 11:17 :06.000', ' RED A CTED ', 0) | |
| 11611 | INSERT INT O [dbo].[P roductAttr ibute] ([P roductAttr ibuteId], [ProductAt tributeTex t], [Produ ctAttribut ePrintName ], [Modifi cationAllo wedIndicat or], [Reti reDate], [ SortColumn ], [LastUp dateDate], [LastUpda teUser], [ LastUpdate FunctionId ]) VALUES ('@DY', 'N S/500mL/re fg', 'NS', 1, NULL, 0, '2016-0 7-27 11:17 :06.000', ' RED A CTED ', 0) | |
| 11612 | INSERT INT O [dbo].[P roductAttr ibute] ([P roductAttr ibuteId], [ProductAt tributeTex t], [Produ ctAttribut ePrintName ], [Modifi cationAllo wedIndicat or], [Reti reDate], [ SortColumn ], [LastUp dateDate], [LastUpda teUser], [ LastUpdate FunctionId ]) VALUES ('@DZ', 'N one/XX/<=- 25C', 'Non e', 1, NUL L, 0, '201 6-07-27 11 :17:06.000 ', ' RED A CTED ', 0) | |
| 11613 | INSERT INT O [dbo].[P roductAttr ibute] ([P roductAttr ibuteId], [ProductAt tributeTex t], [Produ ctAttribut ePrintName ], [Modifi cationAllo wedIndicat or], [Reti reDate], [ SortColumn ], [LastUp dateDate], [LastUpda teUser], [ LastUpdate FunctionId ]) VALUES ('@EA', 'G ly17%/XX/< =-120C', ' Gly17%', 1 , NULL, 0, '2016-07- 27 11:17:0 6.000', ' RED A CTED ', 0) | |
| 11614 | INSERT INT O [dbo].[P roductAttr ibute] ([P roductAttr ibuteId], [ProductAt tributeTex t], [Produ ctAttribut ePrintName ], [Modifi cationAllo wedIndicat or], [Reti reDate], [ SortColumn ], [LastUp dateDate], [LastUpda teUser], [ LastUpdate FunctionId ]) VALUES ('@EB', 'C PD>AS3/450 mL/refg', 'CPD>AS3', 1, NULL, 0, '2016-0 7-27 11:17 :06.000', ' RED A CTED ', 0) | |
| 11615 | INSERT INT O [dbo].[P roductAttr ibute] ([P roductAttr ibuteId], [ProductAt tributeTex t], [Produ ctAttribut ePrintName ], [Modifi cationAllo wedIndicat or], [Reti reDate], [ SortColumn ], [LastUp dateDate], [LastUpda teUser], [ LastUpdate FunctionId ]) VALUES ('@EC', 'A CD-A/300mL /<=-25C', 'ACD-A', 1 , NULL, 0, '2016-07- 27 11:17:0 6.000', ' RED A CTED ', 0) | |
| 11616 | INSERT INT O [dbo].[P roductAttr ibute] ([P roductAttr ibuteId], [ProductAt tributeTex t], [Produ ctAttribut ePrintName ], [Modifi cationAllo wedIndicat or], [Reti reDate], [ SortColumn ], [LastUp dateDate], [LastUpda teUser], [ LastUpdate FunctionId ]) VALUES ('@ED', 'N aCitrate-D extran/XX/ rt', 'NaCi trate-Dext ran', 1, N ULL, 0, '2 016-07-27 11:17:06.0 00', ' RED A CTED ', 0) | |
| 11617 | INSERT INT O [dbo].[P roductAttr ibute] ([P roductAttr ibuteId], [ProductAt tributeTex t], [Produ ctAttribut ePrintName ], [Modifi cationAllo wedIndicat or], [Reti reDate], [ SortColumn ], [LastUp dateDate], [LastUpda teUser], [ LastUpdate FunctionId ]) VALUES ('A7 ', 'F or mnf:non injectable -converted ', 'MNFCNI ', 0, NULL , 0, '2016 -07-27 11: 17:06.000' , ' RED A CTED ', 0) | |
| 11618 | INSERT INT O [dbo].[P roductAttr ibute] ([P roductAttr ibuteId], [ProductAt tributeTex t], [Produ ctAttribut ePrintName ], [Modifi cationAllo wedIndicat or], [Reti reDate], [ SortColumn ], [LastUp dateDate], [LastUpda teUser], [ LastUpdate FunctionId ]) VALUES ('A8 ', 'F or mnf:inj ectable-so urce', 'MN FSI', 0, N ULL, 0, '2 016-07-27 11:17:06.0 00', ' RED A CTED ', 0) | |
| 11619 | INSERT INT O [dbo].[P roductAttr ibute] ([P roductAttr ibuteId], [ProductAt tributeTex t], [Produ ctAttribut ePrintName ], [Modifi cationAllo wedIndicat or], [Reti reDate], [ SortColumn ], [LastUp dateDate], [LastUpda teUser], [ LastUpdate FunctionId ]) VALUES ('A9 ', 'F or mnf:non injectable -source', 'MNFSNI', 0, NULL, 0 , '2016-07 -27 11:17: 06.000', ' RED A CTED ', 0) | |
| 11620 | INSERT INT O [dbo].[P roductAttr ibute] ([P roductAttr ibuteId], [ProductAt tributeTex t], [Produ ctAttribut ePrintName ], [Modifi cationAllo wedIndicat or], [Reti reDate], [ SortColumn ], [LastUp dateDate], [LastUpda teUser], [ LastUpdate FunctionId ]) VALUES ('EL ', 'P lasma remo ved/SAGM a dded', 'PL S Rem/SAGM Added', 0 , NULL, 0, '2016-07- 27 11:17:0 6.000', ' RED A CTED ', 0) | |
| 11621 | INSERT INT O [dbo].[P roductAttr ibute] ([P roductAttr ibuteId], [ProductAt tributeTex t], [Produ ctAttribut ePrintName ], [Modifi cationAllo wedIndicat or], [Reti reDate], [ SortColumn ], [LastUp dateDate], [LastUpda teUser], [ LastUpdate FunctionId ]) VALUES ('FB ', '< 125 mL', N ULL, 1, NU LL, 0, '20 16-07-27 1 1:17:06.00 0', ' RED A CTED ', 0) | |
| 11622 | INSERT INT O [dbo].[P roductAttr ibute] ([P roductAttr ibuteId], [ProductAt tributeTex t], [Produ ctAttribut ePrintName ], [Modifi cationAllo wedIndicat or], [Reti reDate], [ SortColumn ], [LastUp dateDate], [LastUpda teUser], [ LastUpdate FunctionId ]) VALUES ('FC ', '1 mL', NULL, 1, NULL, 0, '2016-0 7-27 11:17 :06.000', ' RED A CTED ', 0) | |
| 11623 | INSERT INT O [dbo].[P roductAttr ibute] ([P roductAttr ibuteId], [ProductAt tributeTex t], [Produ ctAttribut ePrintName ], [Modifi cationAllo wedIndicat or], [Reti reDate], [ SortColumn ], [LastUp dateDate], [LastUpda teUser], [ LastUpdate FunctionId ]) VALUES ('FD ', '2 mL', NULL, 1, NULL, 0, '2016-0 7-27 11:17 :06.000', ' RED A CTED ', 0) | |
| 11624 | INSERT INT O [dbo].[P roductAttr ibute] ([P roductAttr ibuteId], [ProductAt tributeTex t], [Produ ctAttribut ePrintName ], [Modifi cationAllo wedIndicat or], [Reti reDate], [ SortColumn ], [LastUp dateDate], [LastUpda teUser], [ LastUpdate FunctionId ]) VALUES ('FE ', '5 mL', NULL, 1, NULL, 0, '2016-0 7-27 11:17 :06.000', ' RED A CTED ', 0) | |
| 11625 | INSERT INT O [dbo].[P roductAttr ibute] ([P roductAttr ibuteId], [ProductAt tributeTex t], [Produ ctAttribut ePrintName ], [Modifi cationAllo wedIndicat or], [Reti reDate], [ SortColumn ], [LastUp dateDate], [LastUpda teUser], [ LastUpdate FunctionId ]) VALUES ('GH ', 'M ultiple wa sh cycles' , 'MWC', 1 , NULL, 0, '2016-07- 27 11:17:0 6.000', ' RED A CTED ', 0) | |
| 11626 | INSERT INT O [dbo].[P roductAttr ibute] ([P roductAttr ibuteId], [ProductAt tributeTex t], [Produ ctAttribut ePrintName ], [Modifi cationAllo wedIndicat or], [Reti reDate], [ SortColumn ], [LastUp dateDate], [LastUpda teUser], [ LastUpdate FunctionId ]) VALUES ('JR ', '2 .0-4.0 E12 plts', NU LL, 1, NUL L, 0, '201 6-07-27 11 :17:06.000 ', ' RED A CTED ', 0) | |
| 11627 | INSERT INT O [dbo].[P roductAttr ibute] ([P roductAttr ibuteId], [ProductAt tributeTex t], [Produ ctAttribut ePrintName ], [Modifi cationAllo wedIndicat or], [Reti reDate], [ SortColumn ], [LastUp dateDate], [LastUpda teUser], [ LastUpdate FunctionId ]) VALUES ('K7 ', 'S terile fil tered', 'S terile Flt r', 1, NUL L, 0, '201 6-07-27 11 :17:06.000 ', ' RED A CTED ', 0) | |
| 11628 | INSERT INT O [dbo].[P roductAttr ibute] ([P roductAttr ibuteId], [ProductAt tributeTex t], [Produ ctAttribut ePrintName ], [Modifi cationAllo wedIndicat or], [Reti reDate], [ SortColumn ], [LastUp dateDate], [LastUpda teUser], [ LastUpdate FunctionId ]) VALUES ('L7 ', '0 .50-0.55', '0.50-0.5 5', 1, NUL L, 0, '201 6-07-27 11 :17:06.000 ', ' RED A CTED ', 0) | |
| 11629 | INSERT INT O [dbo].[P roductAttr ibute] ([P roductAttr ibuteId], [ProductAt tributeTex t], [Produ ctAttribut ePrintName ], [Modifi cationAllo wedIndicat or], [Reti reDate], [ SortColumn ], [LastUp dateDate], [LastUpda teUser], [ LastUpdate FunctionId ]) VALUES ('L8 ', '0 .60-0.85', '0.60-0.8 5', 1, NUL L, 0, '201 6-07-27 11 :17:06.000 ', ' RED A CTED ', 0) | |
| 11630 | INSERT INT O [dbo].[P roductAttr ibute] ([P roductAttr ibuteId], [ProductAt tributeTex t], [Produ ctAttribut ePrintName ], [Modifi cationAllo wedIndicat or], [Reti reDate], [ SortColumn ], [LastUp dateDate], [LastUpda teUser], [ LastUpdate FunctionId ]) VALUES ('L9 ', '0 .70-0.85', '0.70-0.8 5', 1, NUL L, 0, '201 6-07-27 11 :17:06.000 ', ' RED A CTED ', 0) | |
| 11631 | INSERT INT O [dbo].[P roductAttr ibute] ([P roductAttr ibuteId], [ProductAt tributeTex t], [Produ ctAttribut ePrintName ], [Modifi cationAllo wedIndicat or], [Reti reDate], [ SortColumn ], [LastUp dateDate], [LastUpda teUser], [ LastUpdate FunctionId ]) VALUES ('LA ', '0 .4-0.5', ' 0.4-0.5', 1, NULL, 0 , '2016-07 -27 11:17: 06.000', ' RED A CTED ', 0) | |
| 11632 | INSERT INT O [dbo].[P roductAttr ibute] ([P roductAttr ibuteId], [ProductAt tributeTex t], [Produ ctAttribut ePrintName ], [Modifi cationAllo wedIndicat or], [Reti reDate], [ SortColumn ], [LastUp dateDate], [LastUpda teUser], [ LastUpdate FunctionId ]) VALUES ('O7 ', 'F rom 10 don ors', '10D NR', 1, NU LL, 0, '20 16-07-27 1 1:17:06.00 0', ' RED A CTED ', 0) | |
| 11633 | INSERT INT O [dbo].[P roductAttr ibute] ([P roductAttr ibuteId], [ProductAt tributeTex t], [Produ ctAttribut ePrintName ], [Modifi cationAllo wedIndicat or], [Reti reDate], [ SortColumn ], [LastUp dateDate], [LastUpda teUser], [ LastUpdate FunctionId ]) VALUES ('P0 ', 'A ntibody Sp ecificity' , NULL, 1, NULL, 0, '2016-07-2 7 11:17:06 .000', ' RED A CTED ', 0) | |
| 11634 | INSERT INT O [dbo].[P roductAttr ibute] ([P roductAttr ibuteId], [ProductAt tributeTex t], [Produ ctAttribut ePrintName ], [Modifi cationAllo wedIndicat or], [Reti reDate], [ SortColumn ], [LastUp dateDate], [LastUpda teUser], [ LastUpdate FunctionId ]) VALUES ('P1 ', 'N ot applica ble', NULL , 1, NULL, 0, '2016- 07-27 11:1 7:06.000', ' RED A CTED ', 0) | |
| 11635 | INSERT INT O [dbo].[P roductAttr ibute] ([P roductAttr ibuteId], [ProductAt tributeTex t], [Produ ctAttribut ePrintName ], [Modifi cationAllo wedIndicat or], [Reti reDate], [ SortColumn ], [LastUp dateDate], [LastUpda teUser], [ LastUpdate FunctionId ]) VALUES ('P2 ', 'N ot specifi ed', 'NS', 1, NULL, 0, '2016-0 7-27 11:17 :06.000', ' RED A CTED ', 0) | |
| 11636 | INSERT INT O [dbo].[P roductAttr ibute] ([P roductAttr ibuteId], [ProductAt tributeTex t], [Produ ctAttribut ePrintName ], [Modifi cationAllo wedIndicat or], [Reti reDate], [ SortColumn ], [LastUp dateDate], [LastUpda teUser], [ LastUpdate FunctionId ]) VALUES ('P3 ', 'C MV', 'CMV' , 1, NULL, 0, '2016- 07-27 11:1 7:06.000', ' RED A CTED ', 0) | |
| 11637 | INSERT INT O [dbo].[P roductAttr ibute] ([P roductAttr ibuteId], [ProductAt tributeTex t], [Produ ctAttribut ePrintName ], [Modifi cationAllo wedIndicat or], [Reti reDate], [ SortColumn ], [LastUp dateDate], [LastUpda teUser], [ LastUpdate FunctionId ]) VALUES ('P4 ', 'H epatitis A ', 'HepA', 1, NULL, 0, '2016-0 7-27 11:17 :06.000', ' RED A CTED ', 0) | |
| 11638 | INSERT INT O [dbo].[P roductAttr ibute] ([P roductAttr ibuteId], [ProductAt tributeTex t], [Produ ctAttribut ePrintName ], [Modifi cationAllo wedIndicat or], [Reti reDate], [ SortColumn ], [LastUp dateDate], [LastUpda teUser], [ LastUpdate FunctionId ]) VALUES ('P5 ', 'H epatitis B ', 'HepB', 1, NULL, 0, '2016-0 7-27 11:17 :06.000', ' RED A CTED ', 0) | |
| 11639 | INSERT INT O [dbo].[P roductAttr ibute] ([P roductAttr ibuteId], [ProductAt tributeTex t], [Produ ctAttribut ePrintName ], [Modifi cationAllo wedIndicat or], [Reti reDate], [ SortColumn ], [LastUp dateDate], [LastUpda teUser], [ LastUpdate FunctionId ]) VALUES ('P6 ', 'V aricella z oster', 'V Zoster', 1 , NULL, 0, '2016-07- 27 11:17:0 6.000', ' RED A CTED ', 0) | |
| 11640 | INSERT INT O [dbo].[P roductAttr ibute] ([P roductAttr ibuteId], [ProductAt tributeTex t], [Produ ctAttribut ePrintName ], [Modifi cationAllo wedIndicat or], [Reti reDate], [ SortColumn ], [LastUp dateDate], [LastUpda teUser], [ LastUpdate FunctionId ]) VALUES ('P7 ', 'R HD', 'RHD' , 1, NULL, 0, '2016- 07-27 11:1 7:06.000', ' RED A CTED ', 0) | |
| 11641 | INSERT INT O [dbo].[P roductAttr ibute] ([P roductAttr ibuteId], [ProductAt tributeTex t], [Produ ctAttribut ePrintName ], [Modifi cationAllo wedIndicat or], [Reti reDate], [ SortColumn ], [LastUp dateDate], [LastUpda teUser], [ LastUpdate FunctionId ]) VALUES ('P8 ', 'R abies', 'R abies', 1, NULL, 0, '2016-07-2 7 11:17:06 .000', ' RED A CTED ', 0) | |
| 11642 | INSERT INT O [dbo].[P roductAttr ibute] ([P roductAttr ibuteId], [ProductAt tributeTex t], [Produ ctAttribut ePrintName ], [Modifi cationAllo wedIndicat or], [Reti reDate], [ SortColumn ], [LastUp dateDate], [LastUpda teUser], [ LastUpdate FunctionId ]) VALUES ('P9 ', 'A nthrax', ' Anthrax', 1, NULL, 0 , '2016-07 -27 11:17: 06.000', ' RED A CTED ', 0) | |
| 11643 | INSERT INT O [dbo].[P roductAttr ibute] ([P roductAttr ibuteId], [ProductAt tributeTex t], [Produ ctAttribut ePrintName ], [Modifi cationAllo wedIndicat or], [Reti reDate], [ SortColumn ], [LastUp dateDate], [LastUpda teUser], [ LastUpdate FunctionId ]) VALUES ('PA ', 'T etanus', ' Tetanus', 1, NULL, 0 , '2016-07 -27 11:17: 06.000', ' RED A CTED ', 0) | |
| 11644 | INSERT INT O [dbo].[P roductAttr ibute] ([P roductAttr ibuteId], [ProductAt tributeTex t], [Produ ctAttribut ePrintName ], [Modifi cationAllo wedIndicat or], [Reti reDate], [ SortColumn ], [LastUp dateDate], [LastUpda teUser], [ LastUpdate FunctionId ]) VALUES ('Q0 ', 'I nfection', NULL, 1, NULL, 0, ' 2016-07-27 11:17:06. 000', ' RED A CTED ', 0) | |
| 11645 | INSERT INT O [dbo].[P roductAttr ibute] ([P roductAttr ibuteId], [ProductAt tributeTex t], [Produ ctAttribut ePrintName ], [Modifi cationAllo wedIndicat or], [Reti reDate], [ SortColumn ], [LastUp dateDate], [LastUpda teUser], [ LastUpdate FunctionId ]) VALUES ('Q1 ', 'N ot applica ble', NULL , 1, NULL, 0, '2016- 07-27 11:1 7:06.000', ' RED A CTED ', 0) | |
| 11646 | INSERT INT O [dbo].[P roductAttr ibute] ([P roductAttr ibuteId], [ProductAt tributeTex t], [Produ ctAttribut ePrintName ], [Modifi cationAllo wedIndicat or], [Reti reDate], [ SortColumn ], [LastUp dateDate], [LastUpda teUser], [ LastUpdate FunctionId ]) VALUES ('Q2 ', 'E bola', 'Eb ola', 0, N ULL, 0, '2 016-07-27 11:17:06.0 00', ' RED A CTED ', 0) | |
| 11647 | -- O peration a pplied to 46 rows ou t of 46 | |
| 11648 | ||
| 11649 | -- A dd rows to [dbo].[Pr oductType] | |
| 11650 | INSERT INT O [dbo].[P roductType ] ([Produc tTypeCode] , [Product TypeName], [ProductT ypePrintNa me], [Comp onentClass Id], [Iccb baComponen tClassId], [SplitAll owedIndica tor], [Abo RhConfirma tionRequir ed], [Reti reDate], [ SortColumn ], [LastUp dateDate], [LastUpda teUser], [ LastUpdate FunctionId ]) VALUES ('E070', ' Apheresis POOLED CRY OPRECIPITA TE', 'CRYO AFR Pool' , 3, 15, 0 , 0, NULL, 70, '2016 -07-27 11: 17:06.000' , ' RED A CTED ', 0) | |
| 11651 | INSERT INT O [dbo].[P roductType ] ([Produc tTypeCode] , [Product TypeName], [ProductT ypePrintNa me], [Comp onentClass Id], [Iccb baComponen tClassId], [SplitAll owedIndica tor], [Abo RhConfirma tionRequir ed], [Reti reDate], [ SortColumn ], [LastUp dateDate], [LastUpda teUser], [ LastUpdate FunctionId ]) VALUES ('E071', ' Thawed Aph eresis POO LED CRYOPR ECIPITATE' , 'CRYO AF R Pool Tha w', 3, 15, 0, 0, NUL L, 71, '20 16-07-27 1 1:17:06.00 0', ' RED A CTED ', 0) | |
| 11652 | INSERT INT O [dbo].[P roductType ] ([Produc tTypeCode] , [Product TypeName], [ProductT ypePrintNa me], [Comp onentClass Id], [Iccb baComponen tClassId], [SplitAll owedIndica tor], [Abo RhConfirma tionRequir ed], [Reti reDate], [ SortColumn ], [LastUp dateDate], [LastUpda teUser], [ LastUpdate FunctionId ]) VALUES ('E072', ' CONVALESCE NT PLASMA' , 'PLASMA Conv', 2, 6, 0, 0, N ULL, 72, ' 2016-07-27 11:17:06. 000', ' RED A CTED ', 0) | |
| 11653 | INSERT INT O [dbo].[P roductType ] ([Produc tTypeCode] , [Product TypeName], [ProductT ypePrintNa me], [Comp onentClass Id], [Iccb baComponen tClassId], [SplitAll owedIndica tor], [Abo RhConfirma tionRequir ed], [Reti reDate], [ SortColumn ], [LastUp dateDate], [LastUpda teUser], [ LastUpdate FunctionId ]) VALUES ('E073', ' PLATELET L YSATE', 'P LT Lysed', 4, 10, 0, 0, NULL, 73, '2016- 07-27 11:1 7:06.000', ' RED A CTED ', 0) | |
| 11654 | INSERT INT O [dbo].[P roductType ] ([Produc tTypeCode] , [Product TypeName], [ProductT ypePrintNa me], [Comp onentClass Id], [Iccb baComponen tClassId], [SplitAll owedIndica tor], [Abo RhConfirma tionRequir ed], [Reti reDate], [ SortColumn ], [LastUp dateDate], [LastUpda teUser], [ LastUpdate FunctionId ]) VALUES ('E074', ' Lyophilize d POOLED P LASMA', 'P LASMA Pool Lyfo', 2, 4, 0, 0, NULL, 74, '2016-07-2 7 11:17:06 .000', ' RED A CTED ', 0) | |
| 11655 | INSERT INT O [dbo].[P roductType ] ([Produc tTypeCode] , [Product TypeName], [ProductT ypePrintNa me], [Comp onentClass Id], [Iccb baComponen tClassId], [SplitAll owedIndica tor], [Abo RhConfirma tionRequir ed], [Reti reDate], [ SortColumn ], [LastUp dateDate], [LastUpda teUser], [ LastUpdate FunctionId ]) VALUES ('E075', ' Lyophilize d PLATELET -RICH PLAS MA', 'PLAS MA PltRch Lyfo', 5, 9, 0, 0, N ULL, 75, ' 2016-07-27 11:17:06. 000', ' RED A CTED ', 0) | |
| 11656 | INSERT INT O [dbo].[P roductType ] ([Produc tTypeCode] , [Product TypeName], [ProductT ypePrintNa me], [Comp onentClass Id], [Iccb baComponen tClassId], [SplitAll owedIndica tor], [Abo RhConfirma tionRequir ed], [Reti reDate], [ SortColumn ], [LastUp dateDate], [LastUpda teUser], [ LastUpdate FunctionId ]) VALUES ('E076', ' Frozen SER UM', 'SERU M Froz', 5 , 26, 0, 0 , NULL, 76 , '2016-07 -27 11:17: 06.000', ' RED A CTED ', 0) | |
| 11657 | INSERT INT O [dbo].[P roductType ] ([Produc tTypeCode] , [Product TypeName], [ProductT ypePrintNa me], [Comp onentClass Id], [Iccb baComponen tClassId], [SplitAll owedIndica tor], [Abo RhConfirma tionRequir ed], [Reti reDate], [ SortColumn ], [LastUp dateDate], [LastUpda teUser], [ LastUpdate FunctionId ]) VALUES ('E077', ' Lyophilize d Apheresi s FRESH FR OZEN PLASM A', 'FFP A FR Lyfo', 2, 4, 0, 0 , NULL, 77 , '2016-07 -27 11:17: 06.000', ' RED A CTED ', 0) | |
| 11658 | INSERT INT O [dbo].[P roductType ] ([Produc tTypeCode] , [Product TypeName], [ProductT ypePrintNa me], [Comp onentClass Id], [Iccb baComponen tClassId], [SplitAll owedIndica tor], [Abo RhConfirma tionRequir ed], [Reti reDate], [ SortColumn ], [LastUp dateDate], [LastUpda teUser], [ LastUpdate FunctionId ]) VALUES ('E078', ' IMMUNE PLA SMA', 'PLA SMA Imm', 2, 4, 0, 0 , NULL, 78 , '2016-07 -27 11:17: 06.000', ' RED A CTED ', 0) | |
| 11659 | INSERT INT O [dbo].[P roductType ] ([Produc tTypeCode] , [Product TypeName], [ProductT ypePrintNa me], [Comp onentClass Id], [Iccb baComponen tClassId], [SplitAll owedIndica tor], [Abo RhConfirma tionRequir ed], [Reti reDate], [ SortColumn ], [LastUp dateDate], [LastUpda teUser], [ LastUpdate FunctionId ]) VALUES ('E079', ' Apheresis IMMUNE PLA SMA', 'PLA SMA AFR Im m', 2, 6, 0, 0, NULL , 79, '201 6-07-27 11 :17:06.000 ', ' RED A CTED ', 0) | |
| 11660 | INSERT INT O [dbo].[P roductType ] ([Produc tTypeCode] , [Product TypeName], [ProductT ypePrintNa me], [Comp onentClass Id], [Iccb baComponen tClassId], [SplitAll owedIndica tor], [Abo RhConfirma tionRequir ed], [Reti reDate], [ SortColumn ], [LastUp dateDate], [LastUpda teUser], [ LastUpdate FunctionId ]) VALUES ('E080', ' Apheresis CONVALESCE NT PLASMA' , 'PLASMA AFR Conv', 2, 6, 0, 0, NULL, 8 0, '2016-0 7-27 11:17 :06.000', ' RED A CTED ', 0) | |
| 11661 | -- O peration a pplied to 11 rows ou t of 11 | |
| 11662 | ||
| 11663 | -- A dd rows to [dbo].[Bl oodProduct ] | |
| 11664 | INSERT INT O [dbo].[B loodProduc t] ([Blood ProductGui d], [Produ ctName], [ ProductSho rtName], [ ProductTyp eCode], [P roductAttr ibuteForm] , [Product Volume], [ ProductCod e], [Maxim umStorageT ime], [Cro ssmatchReq uiredIndic ator], [Pr oductModif icationInd icator], [ ProductCod eIndicator ], [Origin alProductT ypeCode], [RetireDat e], [Recor dStatusCod e], [LastU pdateDate] , [LastUpd ateUser], [LastUpdat eFunctionI d]) VALUES ('86171ee 9-ad2e-465 2-ac3c-001 64e52cdf7' , 'Apheres is IMMUNE PLASMA|CPD /XX/<=-25C |For mnf:i njectable| Hepatitis A', 'PLASM A AFR Imm CPD MNFI H epA', 'E01 2', '@A1 A 2 P4', 225 , 'E8778', 8760, 0, 0, 1, 'E07 9', NULL, 'A', '2016 -07-27 11: 17:06.000' , ' RED A CTED ', 0) | |
| 11665 | INSERT INT O [dbo].[B loodProduc t] ([Blood ProductGui d], [Produ ctName], [ ProductSho rtName], [ ProductTyp eCode], [P roductAttr ibuteForm] , [Product Volume], [ ProductCod e], [Maxim umStorageT ime], [Cro ssmatchReq uiredIndic ator], [Pr oductModif icationInd icator], [ ProductCod eIndicator ], [Origin alProductT ypeCode], [RetireDat e], [Recor dStatusCod e], [LastU pdateDate] , [LastUpd ateUser], [LastUpdat eFunctionI d]) VALUES ('079a7e4 d-c6ee-467 9-8f7a-00f c754cc14b' , 'Apheres is PLASMA| ACD-A/XX/< =-18C|>=20 0mL<400mL| RT<=24h fr ozen<=24h' , 'PLASMA AFR ACD-A' , 'E012', '@47 F5 GG ', 225, 'E 8178', 876 0, 0, 0, 1 , 'E014', NULL, 'A', '2016-07- 27 11:17:0 6.000', ' RED A CTED ', 0) | |
| 11666 | INSERT INT O [dbo].[B loodProduc t] ([Blood ProductGui d], [Produ ctName], [ ProductSho rtName], [ ProductTyp eCode], [P roductAttr ibuteForm] , [Product Volume], [ ProductCod e], [Maxim umStorageT ime], [Cro ssmatchReq uiredIndic ator], [Pr oductModif icationInd icator], [ ProductCod eIndicator ], [Origin alProductT ypeCode], [RetireDat e], [Recor dStatusCod e], [LastU pdateDate] , [LastUpd ateUser], [LastUpdat eFunctionI d]) VALUES ('f88f90a a-320d-420 f-ad75-00f d211fac0b' , 'POOLED PLATELETS| PAS-E/XX/2 0-24C|Irra diated|Res Leu:<1E6|B uffy coat plts prep| Approx 120 E9 plts', 'PLT Pool PAS-E IRD LUKOPR BU FCT', 'E02 2', '@D5 C 2 D5 G2 J9 ', 200, 'E 8198', 4, 0, 0, 1, ' E022', NUL L, 'A', '2 016-07-27 11:17:06.0 00', ' RED A CTED ', 0) | |
| 11667 | INSERT INT O [dbo].[B loodProduc t] ([Blood ProductGui d], [Produ ctName], [ ProductSho rtName], [ ProductTyp eCode], [P roductAttr ibuteForm] , [Product Volume], [ ProductCod e], [Maxim umStorageT ime], [Cro ssmatchReq uiredIndic ator], [Pr oductModif icationInd icator], [ ProductCod eIndicator ], [Origin alProductT ypeCode], [RetireDat e], [Recor dStatusCod e], [LastU pdateDate] , [LastUpd ateUser], [LastUpdat eFunctionI d]) VALUES ('ae94505 e-4fd2-464 1-a571-012 37be6f1df' , 'Apheres is PLATELE TS|ACD-A>P AS-C/XX/20 -24C|Open| ResLeu:<5E 6|<3E11 pl ts|Psorale n-treated' , 'PLT AFR ACD-A>PAS OPN LUKOP R Psoraln' , 'E024', '@BH B2 D4 JI K5', 2 00, 'E8785 ', 4, 0, 0 , 1, 'E024 ', NULL, ' A', '2016- 07-27 11:1 7:06.000', ' RED A CTED ', 0) | |
| 11668 | INSERT INT O [dbo].[B loodProduc t] ([Blood ProductGui d], [Produ ctName], [ ProductSho rtName], [ ProductTyp eCode], [P roductAttr ibuteForm] , [Product Volume], [ ProductCod e], [Maxim umStorageT ime], [Cro ssmatchReq uiredIndic ator], [Pr oductModif icationInd icator], [ ProductCod eIndicator ], [Origin alProductT ypeCode], [RetireDat e], [Recor dStatusCod e], [LastU pdateDate] , [LastUpd ateUser], [LastUpdat eFunctionI d]) VALUES ('e45235d 2-4201-4cd 5-852c-013 23ee264dc' , 'Apheres is PLATELE TS|ACD-A>P AS-C/XX/20 -24C|Open| Irradiated |ResLeu:<5 E6|Plasma reduced|1s t containe r', 'PLT A FR ACD-A>P AS-C OPN I RD LUKOPR PLS Red 1C ', 'E024', '@BH B2 C 2 D4 E5 H3 ', 200, 'E 8483', 4, 0, 0, 1, ' E024', NUL L, 'A', '2 016-07-27 11:17:06.0 00', ' RED A CTED ', 0) | |
| 11669 | INSERT INT O [dbo].[B loodProduc t] ([Blood ProductGui d], [Produ ctName], [ ProductSho rtName], [ ProductTyp eCode], [P roductAttr ibuteForm] , [Product Volume], [ ProductCod e], [Maxim umStorageT ime], [Cro ssmatchReq uiredIndic ator], [Pr oductModif icationInd icator], [ ProductCod eIndicator ], [Origin alProductT ypeCode], [RetireDat e], [Recor dStatusCod e], [LastU pdateDate] , [LastUpd ateUser], [LastUpdat eFunctionI d]) VALUES ('1abe6fd 0-7b6a-416 4-b2f6-01b d078ca512' , 'Thawed POOLED CRY OPRECIPITA TE|None/XX /rt|Irradi ated|5 uni ts', 'CRYO Pool Thaw None IRD 5U', 'E031 ', '@83 C2 J5', 100, 'E8668', 6, 0, 0, 1 , 'E031', NULL, 'A', '2016-07- 27 11:17:0 6.000', ' RED A CTED ', 0) | |
| 11670 | INSERT INT O [dbo].[B loodProduc t] ([Blood ProductGui d], [Produ ctName], [ ProductSho rtName], [ ProductTyp eCode], [P roductAttr ibuteForm] , [Product Volume], [ ProductCod e], [Maxim umStorageT ime], [Cro ssmatchReq uiredIndic ator], [Pr oductModif icationInd icator], [ ProductCod eIndicator ], [Origin alProductT ypeCode], [RetireDat e], [Recor dStatusCod e], [LastU pdateDate] , [LastUpd ateUser], [LastUpdat eFunctionI d]) VALUES ('210ac6e b-f4ee-402 f-bc41-01d bc9d8350d' , 'Apheres is PLATELE TS|ACD-A/X X/20-24C|I rradiated| ResLeu:<5E 6|Plasma r educed|2nd container |Psoralen- treated', 'PLT AFR A CD-A IRD L UKOPR PLS Red 2C Pso raln', 'E0 24', '@73 C2 D4 E5 H 4 K5', 200 , 'E8754', 120, 0, 0 , 1, 'E024 ', NULL, ' A', '2016- 07-27 11:1 7:06.000', ' RED A CTED ', 0) | |
| 11671 | INSERT INT O [dbo].[B loodProduc t] ([Blood ProductGui d], [Produ ctName], [ ProductSho rtName], [ ProductTyp eCode], [P roductAttr ibuteForm] , [Product Volume], [ ProductCod e], [Maxim umStorageT ime], [Cro ssmatchReq uiredIndic ator], [Pr oductModif icationInd icator], [ ProductCod eIndicator ], [Origin alProductT ypeCode], [RetireDat e], [Recor dStatusCod e], [LastU pdateDate] , [LastUpd ateUser], [LastUpdat eFunctionI d]) VALUES ('88fc427 d-cea9-472 6-85b7-01f d076c70ba' , 'POOLED PLATELETS| PAS-E/XX/2 0-24C|Irra diated|Res Leu:<1E6|B uffy coat plts prep| Approx 480 E9 plts', 'PLT Pool PAS-E IRD LUKOPR BU FCT', 'E02 2', '@D5 C 2 D5 G2 JF ', 200, 'E 8196', 4, 0, 0, 1, ' E022', NUL L, 'A', '2 016-07-27 11:17:06.0 00', ' RED A CTED ', 0) | |
| 11672 | INSERT INT O [dbo].[B loodProduc t] ([Blood ProductGui d], [Produ ctName], [ ProductSho rtName], [ ProductTyp eCode], [P roductAttr ibuteForm] , [Product Volume], [ ProductCod e], [Maxim umStorageT ime], [Cro ssmatchReq uiredIndic ator], [Pr oductModif icationInd icator], [ ProductCod eIndicator ], [Origin alProductT ypeCode], [RetireDat e], [Recor dStatusCod e], [LastU pdateDate] , [LastUpd ateUser], [LastUpdat eFunctionI d]) VALUES ('f45e8d7 f-797f-48f 2-8091-02c f2d67f009' , 'POOLED FRESH FROZ EN PLASMA| CPD/XX/<=- 25C|Psoral en-treated |From 5 do nors', 'FF P Pool CPD Psoraln 5 DNR', 'E01 0', '@A1 K 5 O6', 500 , 'E8218', 8760, 0, 0, 1, 'E05 9', NULL, 'A', '2016 -07-27 11: 17:06.000' , ' RED A CTED ', 0) | |
| 11673 | INSERT INT O [dbo].[B loodProduc t] ([Blood ProductGui d], [Produ ctName], [ ProductSho rtName], [ ProductTyp eCode], [P roductAttr ibuteForm] , [Product Volume], [ ProductCod e], [Maxim umStorageT ime], [Cro ssmatchReq uiredIndic ator], [Pr oductModif icationInd icator], [ ProductCod eIndicator ], [Origin alProductT ypeCode], [RetireDat e], [Recor dStatusCod e], [LastU pdateDate] , [LastUpd ateUser], [LastUpdat eFunctionI d]) VALUES ('082a0dc 0-29fa-4ce d-8e96-04f 5dbb66bc3' , 'Thawed Apheresis FRESH FROZ EN PLASMA| CPD-50/XX/ refg|Irrad iated|ResL eu:<1E6|Fr ozen <=24h ', 'FFP AF R Thaw CPD -50 IRD LU KOPR', 'E0 13', '@AX C2 D5 G7', 225, 'E81 88', 24, 0 , 0, 1, 'E 013', NULL , 'A', '20 16-07-27 1 1:17:06.00 0', ' RED A CTED ', 0) | |
| 11674 | INSERT INT O [dbo].[B loodProduc t] ([Blood ProductGui d], [Produ ctName], [ ProductSho rtName], [ ProductTyp eCode], [P roductAttr ibuteForm] , [Product Volume], [ ProductCod e], [Maxim umStorageT ime], [Cro ssmatchReq uiredIndic ator], [Pr oductModif icationInd icator], [ ProductCod eIndicator ], [Origin alProductT ypeCode], [RetireDat e], [Recor dStatusCod e], [LastU pdateDate] , [LastUpd ateUser], [LastUpdat eFunctionI d]) VALUES ('e3ea883 2-2d29-422 0-b62d-052 7ec1fab8e' , 'Apheres is PLATELE TS|PAS-C/X X/20-24C|R esLeu:<1E6 |3rd conta iner|Bacte rial test' , 'PLT AFR PAS-C LUK OPR 3C Bac T', 'E024' , '@B5 D5 H5 N3', 20 0, 'E8725' , 120, 0, 0, 1, 'E02 4', NULL, 'A', '2016 -07-27 11: 17:06.000' , ' RED A CTED ', 0) | |
| 11675 | INSERT INT O [dbo].[B loodProduc t] ([Blood ProductGui d], [Produ ctName], [ ProductSho rtName], [ ProductTyp eCode], [P roductAttr ibuteForm] , [Product Volume], [ ProductCod e], [Maxim umStorageT ime], [Cro ssmatchReq uiredIndic ator], [Pr oductModif icationInd icator], [ ProductCod eIndicator ], [Origin alProductT ypeCode], [RetireDat e], [Recor dStatusCod e], [LastU pdateDate] , [LastUpd ateUser], [LastUpdat eFunctionI d]) VALUES ('0a0c7db 3-7762-489 a-8727-05b a2339cf11' , 'Lyophil ized Apher esis FRESH FROZEN PL ASMA|ACD-A /XX/refg', 'FFP AFR Lyfo ACD-A ', 'E012', '@54', 22 5, 'E8674' , 17520, 0 , 0, 1, 'E 077', NULL , 'A', '20 16-07-27 1 1:17:06.00 0', ' RED A CTED ', 0) | |
| 11676 | INSERT INT O [dbo].[B loodProduc t] ([Blood ProductGui d], [Produ ctName], [ ProductSho rtName], [ ProductTyp eCode], [P roductAttr ibuteForm] , [Product Volume], [ ProductCod e], [Maxim umStorageT ime], [Cro ssmatchReq uiredIndic ator], [Pr oductModif icationInd icator], [ ProductCod eIndicator ], [Origin alProductT ypeCode], [RetireDat e], [Recor dStatusCod e], [LastU pdateDate] , [LastUpd ateUser], [LastUpdat eFunctionI d]) VALUES ('67bc958 d-d91c-4ed 0-91fb-05f 624ddf90c' , 'Thawed Apheresis POOLED PLA SMA|ACD-A/ XX/refg|Op en|RT<=24h frozen<=2 4h', 'PLAS MA AFR Poo l Thaw ACD -A OPN', ' E013', '@5 4 B2 GG', 225, 'E856 5', 4, 0, 0, 1, 'E06 3', NULL, 'A', '2016 -07-27 11: 17:06.000' , ' RED A CTED ', 0) | |
| 11677 | INSERT INT O [dbo].[B loodProduc t] ([Blood ProductGui d], [Produ ctName], [ ProductSho rtName], [ ProductTyp eCode], [P roductAttr ibuteForm] , [Product Volume], [ ProductCod e], [Maxim umStorageT ime], [Cro ssmatchReq uiredIndic ator], [Pr oductModif icationInd icator], [ ProductCod eIndicator ], [Origin alProductT ypeCode], [RetireDat e], [Recor dStatusCod e], [LastU pdateDate] , [LastUpd ateUser], [LastUpdat eFunctionI d]) VALUES ('0c45bc7 3-f16f-42b a-bd9f-05f 83a5bc6e2' , 'Washed Apheresis RED BLOOD CELLS|None /XX/refg|O pen|Irradi ated|ResLe u:<5E6|Mul tiple wash cycles', 'RBC AFR W ash None O PN IRD LUK OPR MWC', 'E049', '@ AS B2 C2 D 4 GH', 200 , 'E8542', 24, 0, 0, 1, 'E049' , NULL, 'A ', '2016-0 7-27 11:17 :06.000', ' RED A CTED ', 0) | |
| 11678 | INSERT INT O [dbo].[B loodProduc t] ([Blood ProductGui d], [Produ ctName], [ ProductSho rtName], [ ProductTyp eCode], [P roductAttr ibuteForm] , [Product Volume], [ ProductCod e], [Maxim umStorageT ime], [Cro ssmatchReq uiredIndic ator], [Pr oductModif icationInd icator], [ ProductCod eIndicator ], [Origin alProductT ypeCode], [RetireDat e], [Recor dStatusCod e], [LastU pdateDate] , [LastUpd ateUser], [LastUpdat eFunctionI d]) VALUES ('f8b012a e-112d-4e5 f-a9b0-06a fd641c9ae' , 'Liquid PLASMA|CPD A-1/500mL/ refg', 'PL ASMA Liq C PDA-1', 'E 011', '@08 ', 225, 'E 8591', 624 , 0, 0, 1, 'E016', N ULL, 'A', '2016-07-2 7 11:17:06 .000', ' RED A CTED ', 0) | |
| 11679 | INSERT INT O [dbo].[B loodProduc t] ([Blood ProductGui d], [Produ ctName], [ ProductSho rtName], [ ProductTyp eCode], [P roductAttr ibuteForm] , [Product Volume], [ ProductCod e], [Maxim umStorageT ime], [Cro ssmatchReq uiredIndic ator], [Pr oductModif icationInd icator], [ ProductCod eIndicator ], [Origin alProductT ypeCode], [RetireDat e], [Recor dStatusCod e], [LastU pdateDate] , [LastUpd ateUser], [LastUpdat eFunctionI d]) VALUES ('c6db965 4-a26c-4f4 e-b114-06c 43f90c209' , 'Apheres is PLATELE TS|ACD-A>P AS-C/XX/20 -24C|Open| Irradiated |ResLeu:<5 E6|Superna t reduced| 3rd contai ner', 'PLT AFR ACD-A >PAS-C OPN IRD LUKOP R SUPRed 3 C', 'E024' , '@BH B2 C2 D4 EA H 5', 200, ' E8192', 4, 0, 0, 1, 'E024', NU LL, 'A', ' 2016-07-27 11:17:06. 000', ' RED A CTED ', 0) | |
| 11680 | INSERT INT O [dbo].[B loodProduc t] ([Blood ProductGui d], [Produ ctName], [ ProductSho rtName], [ ProductTyp eCode], [P roductAttr ibuteForm] , [Product Volume], [ ProductCod e], [Maxim umStorageT ime], [Cro ssmatchReq uiredIndic ator], [Pr oductModif icationInd icator], [ ProductCod eIndicator ], [Origin alProductT ypeCode], [RetireDat e], [Recor dStatusCod e], [LastU pdateDate] , [LastUpd ateUser], [LastUpdat eFunctionI d]) VALUES ('1af405e b-c405-407 f-aa2d-06f 1b21d8618' , 'Thawed POOLED CRY OPRECIPITA TE|None/XX /rt|Open|4 units', ' CRYO Pool Thaw None OPN 4U', ' E031', '@8 3 B2 J4', 100, 'E861 1', 4, 0, 0, 1, 'E03 1', NULL, 'A', '2016 -07-27 11: 17:06.000' , ' RED A CTED ', 0) | |
| 11681 | INSERT INT O [dbo].[B loodProduc t] ([Blood ProductGui d], [Produ ctName], [ ProductSho rtName], [ ProductTyp eCode], [P roductAttr ibuteForm] , [Product Volume], [ ProductCod e], [Maxim umStorageT ime], [Cro ssmatchReq uiredIndic ator], [Pr oductModif icationInd icator], [ ProductCod eIndicator ], [Origin alProductT ypeCode], [RetireDat e], [Recor dStatusCod e], [LastU pdateDate] , [LastUpd ateUser], [LastUpdat eFunctionI d]) VALUES ('a869ec4 6-fece-4b0 7-87c1-070 ecd57d51b' , 'Liquid PLASMA|NS/ XX/refg', 'PLASMA Li q', 'E011' , '@CG', 2 25, 'E8555 ', 624, 0, 0, 1, 'E0 16', NULL, 'A', '201 6-07-27 11 :17:06.000 ', ' RED A CTED ', 0) | |
| 11682 | INSERT INT O [dbo].[B loodProduc t] ([Blood ProductGui d], [Produ ctName], [ ProductSho rtName], [ ProductTyp eCode], [P roductAttr ibuteForm] , [Product Volume], [ ProductCod e], [Maxim umStorageT ime], [Cro ssmatchReq uiredIndic ator], [Pr oductModif icationInd icator], [ ProductCod eIndicator ], [Origin alProductT ypeCode], [RetireDat e], [Recor dStatusCod e], [LastU pdateDate] , [LastUpd ateUser], [LastUpdat eFunctionI d]) VALUES ('131d36f d-6492-4cb 2-992d-076 d2348ef5c' , 'Washed POOLED PLA TELETS|PAS -E/XX/20-2 4C|Irradia ted|ResLeu :<1E6', 'P LT Pool Wa sh PAS-E I RD LUKOPR' , 'E023', '@D5 C2 D5 ', 200, 'E 8249', 4, 0, 0, 1, ' E023', NUL L, 'A', '2 016-07-27 11:17:06.0 00', ' RED A CTED ', 0) | |
| 11683 | INSERT INT O [dbo].[B loodProduc t] ([Blood ProductGui d], [Produ ctName], [ ProductSho rtName], [ ProductTyp eCode], [P roductAttr ibuteForm] , [Product Volume], [ ProductCod e], [Maxim umStorageT ime], [Cro ssmatchReq uiredIndic ator], [Pr oductModif icationInd icator], [ ProductCod eIndicator ], [Origin alProductT ypeCode], [RetireDat e], [Recor dStatusCod e], [LastU pdateDate] , [LastUpd ateUser], [LastUpdat eFunctionI d]) VALUES ('192b2e1 b-1dfe-4e9 f-a7c7-07a a25d6060d' , 'POOLED CRYOPRECIP ITATE|NS/X X/<=-25C', 'CRYO Poo l NS', 'E0 30', '@DO' , 100, 'E8 318', 8760 , 0, 0, 1, 'E030', N ULL, 'A', '2016-07-2 7 11:17:06 .000', ' RED A CTED ', 0) | |
| 11684 | INSERT INT O [dbo].[B loodProduc t] ([Blood ProductGui d], [Produ ctName], [ ProductSho rtName], [ ProductTyp eCode], [P roductAttr ibuteForm] , [Product Volume], [ ProductCod e], [Maxim umStorageT ime], [Cro ssmatchReq uiredIndic ator], [Pr oductModif icationInd icator], [ ProductCod eIndicator ], [Origin alProductT ypeCode], [RetireDat e], [Recor dStatusCod e], [LastU pdateDate] , [LastUpd ateUser], [LastUpdat eFunctionI d]) VALUES ('799c8ae 2-059e-4c8 9-9651-07b 679b4367e' , 'PLASMA| CPD/450mL/ <=-30C|Res Leu:<1E6|F rozen <=24 h', 'PLASM A CPD LUKO PR', 'E010 ', '@A5 D5 G7', 225, 'E8261', 8760, 0, 0 , 1, 'E017 ', NULL, ' A', '2016- 07-27 11:1 7:06.000', ' RED A CTED ', 0) | |
| 11685 | INSERT INT O [dbo].[B loodProduc t] ([Blood ProductGui d], [Produ ctName], [ ProductSho rtName], [ ProductTyp eCode], [P roductAttr ibuteForm] , [Product Volume], [ ProductCod e], [Maxim umStorageT ime], [Cro ssmatchReq uiredIndic ator], [Pr oductModif icationInd icator], [ ProductCod eIndicator ], [Origin alProductT ypeCode], [RetireDat e], [Recor dStatusCod e], [LastU pdateDate] , [LastUpd ateUser], [LastUpdat eFunctionI d]) VALUES ('99f96ae 0-8eb3-4ce 2-a912-080 0a3e92d95' , 'FRESH F ROZEN PLAS MA|NS/XX/< =-25C|Meth ylene blue -treated', 'FFP NS M ethyl Blue ', 'E010', '@DO K3', 225, 'E83 14', 8760, 0, 0, 1, 'E010', NU LL, 'A', ' 2016-07-27 11:17:06. 000', ' RED A CTED ', 0) | |
| 11686 | INSERT INT O [dbo].[B loodProduc t] ([Blood ProductGui d], [Produ ctName], [ ProductSho rtName], [ ProductTyp eCode], [P roductAttr ibuteForm] , [Product Volume], [ ProductCod e], [Maxim umStorageT ime], [Cro ssmatchReq uiredIndic ator], [Pr oductModif icationInd icator], [ ProductCod eIndicator ], [Origin alProductT ypeCode], [RetireDat e], [Recor dStatusCod e], [LastU pdateDate] , [LastUpd ateUser], [LastUpdat eFunctionI d]) VALUES ('8409f80 d-0636-468 a-b7a8-082 5939e802a' , 'PLASMA| CPD/XX/<=- 25C|Cryo r educed', ' PLASMA CPD CRYORed', 'E010', ' @A1 E3', 2 25, 'E8772 ', 8760, 0 , 0, 1, 'E 017', NULL , 'A', '20 16-07-27 1 1:17:06.00 0', ' RED A CTED ', 0) | |
| 11687 | INSERT INT O [dbo].[B loodProduc t] ([Blood ProductGui d], [Produ ctName], [ ProductSho rtName], [ ProductTyp eCode], [P roductAttr ibuteForm] , [Product Volume], [ ProductCod e], [Maxim umStorageT ime], [Cro ssmatchReq uiredIndic ator], [Pr oductModif icationInd icator], [ ProductCod eIndicator ], [Origin alProductT ypeCode], [RetireDat e], [Recor dStatusCod e], [LastU pdateDate] , [LastUpd ateUser], [LastUpdat eFunctionI d]) VALUES ('1b84b63 a-bd44-442 8-aed5-093 87161e914' , 'Apheres is RED BLO OD CELLS|A CD-A>AS3/X X/refg|Ope n|ResLeu:N S|Plasma a dded', 'RB C AFR ACD- A>AS3 OPN LUKOPR PA' , 'E009', '@AZ B2 D2 E4', 350, 'E8235', 24, 0, 0, 1, 'E009', NULL, 'A' , '2016-07 -27 11:17: 06.000', ' RED A CTED ', 0) | |
| 11688 | INSERT INT O [dbo].[B loodProduc t] ([Blood ProductGui d], [Produ ctName], [ ProductSho rtName], [ ProductTyp eCode], [P roductAttr ibuteForm] , [Product Volume], [ ProductCod e], [Maxim umStorageT ime], [Cro ssmatchReq uiredIndic ator], [Pr oductModif icationInd icator], [ ProductCod eIndicator ], [Origin alProductT ypeCode], [RetireDat e], [Recor dStatusCod e], [LastU pdateDate] , [LastUpd ateUser], [LastUpdat eFunctionI d]) VALUES ('e448f46 2-e871-4b5 f-8c8e-096 58199ffd6' , 'Washed Apheresis RED BLOOD CELLS|None /XX/refg|O pen|Irradi ated|ResLe u:NS|Plasm a added|2n d containe r', 'RBC A FR Wash No ne OPN IRD LUKOPR PA 2C', 'E04 9', '@AS B 2 C2 D2 E4 H4', 200, 'E8443', 24, 0, 0, 1, 'E049', NULL, 'A' , '2016-07 -27 11:17: 06.000', ' RED A CTED ', 0) | |
| 11689 | INSERT INT O [dbo].[B loodProduc t] ([Blood ProductGui d], [Produ ctName], [ ProductSho rtName], [ ProductTyp eCode], [P roductAttr ibuteForm] , [Product Volume], [ ProductCod e], [Maxim umStorageT ime], [Cro ssmatchReq uiredIndic ator], [Pr oductModif icationInd icator], [ ProductCod eIndicator ], [Origin alProductT ypeCode], [RetireDat e], [Recor dStatusCod e], [LastU pdateDate] , [LastUpd ateUser], [LastUpdat eFunctionI d]) VALUES ('322cb71 b-28b3-40d 4-bb6c-0a6 61eaf4eee' , 'Washed Apheresis RED BLOOD CELLS|SAGM /XX/refg|I rradiated| ResLeu:<1E 6|1st cont ainer|0.5- 0.7', 'RBC AFR Wash SAGM IRD L UKOPR 1C 0 .5-0.7', ' E049', '@A 9 C2 D5 H3 L3', 200, 'E8692', 24, 0, 0, 1, 'E049', NULL, 'A' , '2016-07 -27 11:17: 06.000', ' RED A CTED ', 0) | |
| 11690 | INSERT INT O [dbo].[B loodProduc t] ([Blood ProductGui d], [Produ ctName], [ ProductSho rtName], [ ProductTyp eCode], [P roductAttr ibuteForm] , [Product Volume], [ ProductCod e], [Maxim umStorageT ime], [Cro ssmatchReq uiredIndic ator], [Pr oductModif icationInd icator], [ ProductCod eIndicator ], [Origin alProductT ypeCode], [RetireDat e], [Recor dStatusCod e], [LastU pdateDate] , [LastUpd ateUser], [LastUpdat eFunctionI d]) VALUES ('231d46e 7-6131-48a c-8d09-0a9 3e426bcef' , 'WHOLE B LOOD|NS/XX /refg', 'W B NS', 'E0 01', '@CG' , 450, 'E8 553', 24, 0, 0, 1, ' E001', NUL L, 'A', '2 016-07-27 11:17:06.0 00', ' RED A CTED ', 0) | |
| 11691 | INSERT INT O [dbo].[B loodProduc t] ([Blood ProductGui d], [Produ ctName], [ ProductSho rtName], [ ProductTyp eCode], [P roductAttr ibuteForm] , [Product Volume], [ ProductCod e], [Maxim umStorageT ime], [Cro ssmatchReq uiredIndic ator], [Pr oductModif icationInd icator], [ ProductCod eIndicator ], [Origin alProductT ypeCode], [RetireDat e], [Recor dStatusCod e], [LastU pdateDate] , [LastUpd ateUser], [LastUpdat eFunctionI d]) VALUES ('f69fef8 d-0cc1-4e1 b-803e-0ac c9b454f10' , 'SERUM|N one/XX/<37 C|For mnf: noninjecta ble', 'SER UM None MN FNI', 'E04 6', '@CF A 3', 200, ' E8207', 24 , 0, 0, 1, 'E046', N ULL, 'A', '2016-07-2 7 11:17:06 .000', ' RED A CTED ', 0) | |
| 11692 | INSERT INT O [dbo].[B loodProduc t] ([Blood ProductGui d], [Produ ctName], [ ProductSho rtName], [ ProductTyp eCode], [P roductAttr ibuteForm] , [Product Volume], [ ProductCod e], [Maxim umStorageT ime], [Cro ssmatchReq uiredIndic ator], [Pr oductModif icationInd icator], [ ProductCod eIndicator ], [Origin alProductT ypeCode], [RetireDat e], [Recor dStatusCod e], [LastU pdateDate] , [LastUpd ateUser], [LastUpdat eFunctionI d]) VALUES ('8423cc1 e-0623-431 d-9620-0ae cdf695ac8' , 'FRESH F ROZEN PLAS MA|NS/XX/< =-25C', 'F FP NS', 'E 010', '@DO ', 225, 'E 8312', 876 0, 0, 0, 1 , 'E010', NULL, 'A', '2016-07- 27 11:17:0 6.000', ' RED A CTED ', 0) | |
| 11693 | INSERT INT O [dbo].[B loodProduc t] ([Blood ProductGui d], [Produ ctName], [ ProductSho rtName], [ ProductTyp eCode], [P roductAttr ibuteForm] , [Product Volume], [ ProductCod e], [Maxim umStorageT ime], [Cro ssmatchReq uiredIndic ator], [Pr oductModif icationInd icator], [ ProductCod eIndicator ], [Origin alProductT ypeCode], [RetireDat e], [Recor dStatusCod e], [LastU pdateDate] , [LastUpd ateUser], [LastUpdat eFunctionI d]) VALUES ('5473a99 e-c407-483 4-a81e-0af dd0024202' , 'RED BLO OD CELLS|C PDA-1/500m L/refg|Irr adiated|Pl asma reduc ed', 'RBC CPDA-1 IRD PLS Red', 'E002', ' @08 C2 E5' , 250, 'E8 492', 672, 0, 0, 1, 'E002', NU LL, 'A', ' 2016-07-27 11:17:06. 000', ' RED A CTED ', 0) | |
| 11694 | INSERT INT O [dbo].[B loodProduc t] ([Blood ProductGui d], [Produ ctName], [ ProductSho rtName], [ ProductTyp eCode], [P roductAttr ibuteForm] , [Product Volume], [ ProductCod e], [Maxim umStorageT ime], [Cro ssmatchReq uiredIndic ator], [Pr oductModif icationInd icator], [ ProductCod eIndicator ], [Origin alProductT ypeCode], [RetireDat e], [Recor dStatusCod e], [LastU pdateDate] , [LastUpd ateUser], [LastUpdat eFunctionI d]) VALUES ('7bbae62 5-b652-49b 9-95b9-0b1 a773f1d12' , 'Apheres is PLASMA| ACD-A/XX/< =-20C|For mnf:noninj ectable-so urce', 'PL ASMA AFR A CD-A MNFSN I', 'E012' , '@56 A9' , 225, 'E8 360', 8760 , 0, 0, 1, 'E014', N ULL, 'A', '2016-07-2 7 11:17:06 .000', ' RED A CTED ', 0) | |
| 11695 | INSERT INT O [dbo].[B loodProduc t] ([Blood ProductGui d], [Produ ctName], [ ProductSho rtName], [ ProductTyp eCode], [P roductAttr ibuteForm] , [Product Volume], [ ProductCod e], [Maxim umStorageT ime], [Cro ssmatchReq uiredIndic ator], [Pr oductModif icationInd icator], [ ProductCod eIndicator ], [Origin alProductT ypeCode], [RetireDat e], [Recor dStatusCod e], [LastU pdateDate] , [LastUpd ateUser], [LastUpdat eFunctionI d]) VALUES ('0cd3986 d-e6f8-410 3-9778-0b4 7699d3d74' , 'Washed POOLED PLA TELETS|PAS -E/XX/20-2 4C|ResLeu: <1E6', 'PL T Pool Was h PAS-E LU KOPR', 'E0 23', '@D5 D5', 200, 'E8248', 4 , 0, 0, 1, 'E023', N ULL, 'A', '2016-07-2 7 11:17:06 .000', ' RED A CTED ', 0) | |
| 11696 | INSERT INT O [dbo].[B loodProduc t] ([Blood ProductGui d], [Produ ctName], [ ProductSho rtName], [ ProductTyp eCode], [P roductAttr ibuteForm] , [Product Volume], [ ProductCod e], [Maxim umStorageT ime], [Cro ssmatchReq uiredIndic ator], [Pr oductModif icationInd icator], [ ProductCod eIndicator ], [Origin alProductT ypeCode], [RetireDat e], [Recor dStatusCod e], [LastU pdateDate] , [LastUpd ateUser], [LastUpdat eFunctionI d]) VALUES ('d748c2d 0-3ab5-483 c-a359-0cc 630744a23' , 'Frozen Apheresis PLATELETS| ACD-A/XX/< =-18C|For mnf:noninj ectable|Ir radiated|R esLeu:<5E6 |<3E11 plt s', 'PLT A FR Froz AC D-A MNFNI IRD LUKOPR ', 'E025', '@47 A3 C 2 D4 JI', 200, 'E841 3', 8760, 0, 0, 1, ' E025', NUL L, 'A', '2 016-07-27 11:17:06.0 00', ' RED A CTED ', 0) | |
| 11697 | INSERT INT O [dbo].[B loodProduc t] ([Blood ProductGui d], [Produ ctName], [ ProductSho rtName], [ ProductTyp eCode], [P roductAttr ibuteForm] , [Product Volume], [ ProductCod e], [Maxim umStorageT ime], [Cro ssmatchReq uiredIndic ator], [Pr oductModif icationInd icator], [ ProductCod eIndicator ], [Origin alProductT ypeCode], [RetireDat e], [Recor dStatusCod e], [LastU pdateDate] , [LastUpd ateUser], [LastUpdat eFunctionI d]) VALUES ('e6d7d01 9-2cb3-448 4-9492-0da 2fa2e2e9f' , 'Washed Apheresis PLATELETS| PAS-C/XX/2 0-24C|ResL eu:<1E6|2n d containe r', 'PLT A FR Wash PA S-C LUKOPR 2C', 'E02 7', '@B5 D 5 H4', 200 , 'E8718', 4, 0, 0, 1, 'E027', NULL, 'A' , '2016-07 -27 11:17: 06.000', ' RED A CTED ', 0) | |
| 11698 | INSERT INT O [dbo].[B loodProduc t] ([Blood ProductGui d], [Produ ctName], [ ProductSho rtName], [ ProductTyp eCode], [P roductAttr ibuteForm] , [Product Volume], [ ProductCod e], [Maxim umStorageT ime], [Cro ssmatchReq uiredIndic ator], [Pr oductModif icationInd icator], [ ProductCod eIndicator ], [Origin alProductT ypeCode], [RetireDat e], [Recor dStatusCod e], [LastU pdateDate] , [LastUpd ateUser], [LastUpdat eFunctionI d]) VALUES ('8fef444 9-b88f-4ca 3-86bc-0e4 6edbdfaa1' , 'RED BLO OD CELLS|C PD/XX/refg |Plasma re duced|0.5- 0.6', 'RBC CPD PLS R ed 0.5-0.6 ', 'E002', '@06 E5 L 2', 250, ' E8321', 50 4, 0, 0, 1 , 'E002', NULL, 'A', '2016-07- 27 11:17:0 6.000', ' RED A CTED ', 0) | |
| 11699 | INSERT INT O [dbo].[B loodProduc t] ([Blood ProductGui d], [Produ ctName], [ ProductSho rtName], [ ProductTyp eCode], [P roductAttr ibuteForm] , [Product Volume], [ ProductCod e], [Maxim umStorageT ime], [Cro ssmatchReq uiredIndic ator], [Pr oductModif icationInd icator], [ ProductCod eIndicator ], [Origin alProductT ypeCode], [RetireDat e], [Recor dStatusCod e], [LastU pdateDate] , [LastUpd ateUser], [LastUpdat eFunctionI d]) VALUES ('3598609 8-843f-4a8 9-877f-0e7 a637669e4' , 'Apheres is PLATELE TS|ACD-A/X X/20-24C|I rradiated| ResLeu:<5E 6|3rd cont ainer|Psor alen-treat ed', 'PLT AFR ACD-A IRD LUKOPR 3C Psoral n', 'E024' , '@73 C2 D4 H5 K5', 200, 'E87 50', 120, 0, 0, 1, ' E024', NUL L, 'A', '2 016-07-27 11:17:06.0 00', ' RED A CTED ', 0) | |
| 11700 | INSERT INT O [dbo].[B loodProduc t] ([Blood ProductGui d], [Produ ctName], [ ProductSho rtName], [ ProductTyp eCode], [P roductAttr ibuteForm] , [Product Volume], [ ProductCod e], [Maxim umStorageT ime], [Cro ssmatchReq uiredIndic ator], [Pr oductModif icationInd icator], [ ProductCod eIndicator ], [Origin alProductT ypeCode], [RetireDat e], [Recor dStatusCod e], [LastU pdateDate] , [LastUpd ateUser], [LastUpdat eFunctionI d]) VALUES ('e046589 7-d8c4-4e6 1-9395-0ec 6fefd4af6' , 'POOLED PLATELETS| PAS-E/XX/2 0-24C|ResL eu:<1E6|Bu ffy coat p lts prep|R iboflavin- treated|Fr om 5 donor s', 'PLT P ool PAS-E LUKOPR BUF CT Ribo 5D NR', 'E022 ', '@D5 D5 G2 K6 O6' , 200, 'E8 679', 4, 0 , 0, 1, 'E 022', NULL , 'A', '20 16-07-27 1 1:17:06.00 0', ' RED A CTED ', 0) | |
| 11701 | INSERT INT O [dbo].[B loodProduc t] ([Blood ProductGui d], [Produ ctName], [ ProductSho rtName], [ ProductTyp eCode], [P roductAttr ibuteForm] , [Product Volume], [ ProductCod e], [Maxim umStorageT ime], [Cro ssmatchReq uiredIndic ator], [Pr oductModif icationInd icator], [ ProductCod eIndicator ], [Origin alProductT ypeCode], [RetireDat e], [Recor dStatusCod e], [LastU pdateDate] , [LastUpd ateUser], [LastUpdat eFunctionI d]) VALUES ('a180315 2-041e-4af a-bae5-0fd 37fa6fc42' , 'Apheres is FRESH F ROZEN PLAS MA|CPD/XX/ <=-25C|Met hylene blu e-treated' , 'FFP AFR CPD Methy l Blue', ' E012', '@A 1 K3', 225 , 'E8315', 8760, 0, 0, 1, 'E01 2', NULL, 'A', '2016 -07-27 11: 17:06.000' , ' RED A CTED ', 0) | |
| 11702 | INSERT INT O [dbo].[B loodProduc t] ([Blood ProductGui d], [Produ ctName], [ ProductSho rtName], [ ProductTyp eCode], [P roductAttr ibuteForm] , [Product Volume], [ ProductCod e], [Maxim umStorageT ime], [Cro ssmatchReq uiredIndic ator], [Pr oductModif icationInd icator], [ ProductCod eIndicator ], [Origin alProductT ypeCode], [RetireDat e], [Recor dStatusCod e], [LastU pdateDate] , [LastUpd ateUser], [LastUpdat eFunctionI d]) VALUES ('e396105 7-b45d-4f2 7-96a8-10c 7bee003a1' , 'PLASMA| CPD/350mL/ <=-18C|RT< =24h froze n<=24h', ' PLASMA CPD ', 'E010', '@DW GG', 225, 'E86 18', 8760, 0, 0, 1, 'E017', NU LL, 'A', ' 2016-07-27 11:17:06. 000', ' RED A CTED ', 0) | |
| 11703 | INSERT INT O [dbo].[B loodProduc t] ([Blood ProductGui d], [Produ ctName], [ ProductSho rtName], [ ProductTyp eCode], [P roductAttr ibuteForm] , [Product Volume], [ ProductCod e], [Maxim umStorageT ime], [Cro ssmatchReq uiredIndic ator], [Pr oductModif icationInd icator], [ ProductCod eIndicator ], [Origin alProductT ypeCode], [RetireDat e], [Recor dStatusCod e], [LastU pdateDate] , [LastUpd ateUser], [LastUpdat eFunctionI d]) VALUES ('b4590b0 3-f6aa-423 2-b83c-10e ab0fb4444' , 'Apheres is FRESH F ROZEN PLAS MA|ACD-A/X X/<=-18C|> =400mL<600 mL|Psorale n-treated' , 'FFP AFR ACD-A Pso raln', 'E0 12', '@47 F6 K5', 22 5, 'E8739' , 8760, 0, 0, 1, 'E0 12', NULL, 'A', '201 6-07-27 11 :17:06.000 ', ' RED A CTED ', 0) | |
| 11704 | INSERT INT O [dbo].[B loodProduc t] ([Blood ProductGui d], [Produ ctName], [ ProductSho rtName], [ ProductTyp eCode], [P roductAttr ibuteForm] , [Product Volume], [ ProductCod e], [Maxim umStorageT ime], [Cro ssmatchReq uiredIndic ator], [Pr oductModif icationInd icator], [ ProductCod eIndicator ], [Origin alProductT ypeCode], [RetireDat e], [Recor dStatusCod e], [LastU pdateDate] , [LastUpd ateUser], [LastUpdat eFunctionI d]) VALUES ('9f2ea75 6-b34b-47b 2-8ecd-119 71a13b40c' , 'Apheres is PLATELE TS|ACD-A>P AS-E/XX/20 -24C|Irrad iated|ResL eu:<1E6|Su pernat red uced|1st c ontainer', 'PLT AFR ACD-A>PAS- E IRD LUKO PR SUPRed 1C', 'E024 ', '@DS C2 D5 EA H3' , 200, 'E8 535', 120, 0, 0, 1, 'E024', NU LL, 'A', ' 2016-07-27 11:17:06. 000', ' RED A CTED ', 0) | |
| 11705 | INSERT INT O [dbo].[B loodProduc t] ([Blood ProductGui d], [Produ ctName], [ ProductSho rtName], [ ProductTyp eCode], [P roductAttr ibuteForm] , [Product Volume], [ ProductCod e], [Maxim umStorageT ime], [Cro ssmatchReq uiredIndic ator], [Pr oductModif icationInd icator], [ ProductCod eIndicator ], [Origin alProductT ypeCode], [RetireDat e], [Recor dStatusCod e], [LastU pdateDate] , [LastUpd ateUser], [LastUpdat eFunctionI d]) VALUES ('8cd3bfd 2-7e0e-4ce 0-b1d2-11b d0925952a' , 'Thawed POOLED CRY OPRECIPITA TE|None/XX /rt|Open|I rradiated| 2 units', 'CRYO Pool Thaw None OPN IRD 2 U', 'E031' , '@83 B2 C2 J2', 10 0, 'E8612' , 4, 0, 0, 1, 'E031' , NULL, 'A ', '2016-0 7-27 11:17 :06.000', ' RED A CTED ', 0) | |
| 11706 | INSERT INT O [dbo].[B loodProduc t] ([Blood ProductGui d], [Produ ctName], [ ProductSho rtName], [ ProductTyp eCode], [P roductAttr ibuteForm] , [Product Volume], [ ProductCod e], [Maxim umStorageT ime], [Cro ssmatchReq uiredIndic ator], [Pr oductModif icationInd icator], [ ProductCod eIndicator ], [Origin alProductT ypeCode], [RetireDat e], [Recor dStatusCod e], [LastU pdateDate] , [LastUpd ateUser], [LastUpdat eFunctionI d]) VALUES ('8d07fa3 c-df4c-48d 4-8de2-11c 0cab8c7d0' , 'Apheres is PLATELE TS|ACD-A>P AS-C/XX/20 -24C|Open| Irradiated |ResLeu:<5 E6|3rd con tainer', ' PLT AFR AC D-A>PAS-C OPN IRD LU KOPR 3C', 'E024', '@ BH B2 C2 D 4 H5', 200 , 'E8220', 4, 0, 0, 1, 'E024', NULL, 'A' , '2016-07 -27 11:17: 06.000', ' RED A CTED ', 0) | |
| 11707 | INSERT INT O [dbo].[B loodProduc t] ([Blood ProductGui d], [Produ ctName], [ ProductSho rtName], [ ProductTyp eCode], [P roductAttr ibuteForm] , [Product Volume], [ ProductCod e], [Maxim umStorageT ime], [Cro ssmatchReq uiredIndic ator], [Pr oductModif icationInd icator], [ ProductCod eIndicator ], [Origin alProductT ypeCode], [RetireDat e], [Recor dStatusCod e], [LastU pdateDate] , [LastUpd ateUser], [LastUpdat eFunctionI d]) VALUES ('7c31d08 a-22ca-4dc b-9ff7-122 67e7d9f65' , 'PLASMA| NS/XX/Froz en', 'PLAS MA', 'E010 ', '@DV', 225, 'E855 4', 8760, 0, 0, 1, ' E017', NUL L, 'A', '2 016-07-27 11:17:06.0 00', ' RED A CTED ', 0) | |
| 11708 | INSERT INT O [dbo].[B loodProduc t] ([Blood ProductGui d], [Produ ctName], [ ProductSho rtName], [ ProductTyp eCode], [P roductAttr ibuteForm] , [Product Volume], [ ProductCod e], [Maxim umStorageT ime], [Cro ssmatchReq uiredIndic ator], [Pr oductModif icationInd icator], [ ProductCod eIndicator ], [Origin alProductT ypeCode], [RetireDat e], [Recor dStatusCod e], [LastU pdateDate] , [LastUpd ateUser], [LastUpdat eFunctionI d]) VALUES ('42be13b c-9393-443 2-bf03-123 8bcfabaa9' , 'POOLED PLASMA|CPD A-1/XX/<=- 18C|Frozen <=24h|2 u nits|Psora len-treate d', 'PLASM A Pool CPD A-1 2U Pso raln', 'E0 40', '@36 G7 J2 K5', 225, 'E84 27', 8760, 0, 0, 1, 'E040', NU LL, 'A', ' 2016-07-27 11:17:06. 000', ' RED A CTED ', 0) | |
| 11709 | INSERT INT O [dbo].[B loodProduc t] ([Blood ProductGui d], [Produ ctName], [ ProductSho rtName], [ ProductTyp eCode], [P roductAttr ibuteForm] , [Product Volume], [ ProductCod e], [Maxim umStorageT ime], [Cro ssmatchReq uiredIndic ator], [Pr oductModif icationInd icator], [ ProductCod eIndicator ], [Origin alProductT ypeCode], [RetireDat e], [Recor dStatusCod e], [LastU pdateDate] , [LastUpd ateUser], [LastUpdat eFunctionI d]) VALUES ('26ad4e2 e-e265-464 0-b944-123 9550c85c9' , 'Liquid PLASMA|CPD /500mL/ref g|Irradiat ed', 'PLAS MA Liq CPD IRD', 'E0 11', '@04 C2', 225, 'E8592', 6 24, 0, 0, 1, 'E016', NULL, 'A' , '2016-07 -27 11:17: 06.000', ' RED A CTED ', 0) | |
| 11710 | INSERT INT O [dbo].[B loodProduc t] ([Blood ProductGui d], [Produ ctName], [ ProductSho rtName], [ ProductTyp eCode], [P roductAttr ibuteForm] , [Product Volume], [ ProductCod e], [Maxim umStorageT ime], [Cro ssmatchReq uiredIndic ator], [Pr oductModif icationInd icator], [ ProductCod eIndicator ], [Origin alProductT ypeCode], [RetireDat e], [Recor dStatusCod e], [LastU pdateDate] , [LastUpd ateUser], [LastUpdat eFunctionI d]) VALUES ('baa0e08 f-389f-401 6-b626-12f 401c9f05e' , 'Lyophil ized PLATE LET-RICH P LASMA|CPDA -1/200mL/2 0-24C|For mnf:inject able', 'PL ASMA PltRc h Lyfo CPD A-1 MNFI', 'E019', ' @DX A2', 1 , 'E8594', 1, 0, 0, 1, 'E075', NULL, 'A' , '2016-07 -27 11:17: 06.000', ' RED A CTED ', 0) | |
| 11711 | INSERT INT O [dbo].[B loodProduc t] ([Blood ProductGui d], [Produ ctName], [ ProductSho rtName], [ ProductTyp eCode], [P roductAttr ibuteForm] , [Product Volume], [ ProductCod e], [Maxim umStorageT ime], [Cro ssmatchReq uiredIndic ator], [Pr oductModif icationInd icator], [ ProductCod eIndicator ], [Origin alProductT ypeCode], [RetireDat e], [Recor dStatusCod e], [LastU pdateDate] , [LastUpd ateUser], [LastUpdat eFunctionI d]) VALUES ('777cd51 e-76a3-4b4 3-8129-133 38ece364f' , 'Apheres is PLASMA| NaCitrate/ XX/<=-25C| For mnf:in jectable|F rozen <=24 h', 'PLASM A AFR NaCi t MNFI', ' E012', '@C Q A2 G7', 225, 'E857 0', 8760, 0, 0, 1, ' E014', NUL L, 'A', '2 016-07-27 11:17:06.0 00', ' RED A CTED ', 0) | |
| 11712 | INSERT INT O [dbo].[B loodProduc t] ([Blood ProductGui d], [Produ ctName], [ ProductSho rtName], [ ProductTyp eCode], [P roductAttr ibuteForm] , [Product Volume], [ ProductCod e], [Maxim umStorageT ime], [Cro ssmatchReq uiredIndic ator], [Pr oductModif icationInd icator], [ ProductCod eIndicator ], [Origin alProductT ypeCode], [RetireDat e], [Recor dStatusCod e], [LastU pdateDate] , [LastUpd ateUser], [LastUpdat eFunctionI d]) VALUES ('9f72665 d-9188-47a 0-baf2-139 a8ee8f849' , 'Apheres is PLATELE TS|ACD-A>P AS-B/XX/20 -24C|ResLe u:<1E6', ' PLT AFR AC D-A>PAS-B LUKOPR', ' E024', '@D U D5', 200 , 'E8545', 120, 0, 0 , 1, 'E024 ', NULL, ' A', '2016- 07-27 11:1 7:06.000', ' RED A CTED ', 0) | |
| 11713 | INSERT INT O [dbo].[B loodProduc t] ([Blood ProductGui d], [Produ ctName], [ ProductSho rtName], [ ProductTyp eCode], [P roductAttr ibuteForm] , [Product Volume], [ ProductCod e], [Maxim umStorageT ime], [Cro ssmatchReq uiredIndic ator], [Pr oductModif icationInd icator], [ ProductCod eIndicator ], [Origin alProductT ypeCode], [RetireDat e], [Recor dStatusCod e], [LastU pdateDate] , [LastUpd ateUser], [LastUpdat eFunctionI d]) VALUES ('6f02f9f 0-8d13-424 3-9bf9-13b 0c2d89842' , 'Washed Apheresis PLATELETS| NS/XX/20-2 4C', 'PLT AFR Wash', 'E027', ' @72', 200, 'E8299', 4, 0, 0, 1 , 'E027', NULL, 'A', '2016-07- 27 11:17:0 6.000', ' RED A CTED ', 0) | |
| 11714 | INSERT INT O [dbo].[B loodProduc t] ([Blood ProductGui d], [Produ ctName], [ ProductSho rtName], [ ProductTyp eCode], [P roductAttr ibuteForm] , [Product Volume], [ ProductCod e], [Maxim umStorageT ime], [Cro ssmatchReq uiredIndic ator], [Pr oductModif icationInd icator], [ ProductCod eIndicator ], [Origin alProductT ypeCode], [RetireDat e], [Recor dStatusCod e], [LastU pdateDate] , [LastUpd ateUser], [LastUpdat eFunctionI d]) VALUES ('698bcb0 1-5bdc-419 d-aca5-144 984be2d79' , 'RED BLO OD CELLS|C P2D/500mL/ refg|Open| Irradiated |ResLeu:NS |Plasma re duced/Plas ma added', 'RBC CP2D OPN IRD L UKOPR PLS Red/PA', ' E002', '@1 2 B2 C2 D2 EE', 250, 'E8182', 24, 0, 0, 1, 'E002', NULL, 'A' , '2016-07 -27 11:17: 06.000', ' RED A CTED ', 0) | |
| 11715 | INSERT INT O [dbo].[B loodProduc t] ([Blood ProductGui d], [Produ ctName], [ ProductSho rtName], [ ProductTyp eCode], [P roductAttr ibuteForm] , [Product Volume], [ ProductCod e], [Maxim umStorageT ime], [Cro ssmatchReq uiredIndic ator], [Pr oductModif icationInd icator], [ ProductCod eIndicator ], [Origin alProductT ypeCode], [RetireDat e], [Recor dStatusCod e], [LastU pdateDate] , [LastUpd ateUser], [LastUpdat eFunctionI d]) VALUES ('572e0fd c-8db8-432 d-b948-148 df4f9bf51' , 'POOLED PLATELETS| CPD>PAS-E/ XX/20-24C| ResLeu:<1E 6|Supernat reduced|B uffy coat plts prep| 2 units', 'PLT Pool CPD>PAS-E LUKOPR SUP Red BUFCT 2U', 'E022 ', '@DP D5 EA G2 J2' , 200, 'E8 516', 120, 0, 0, 1, 'E022', NU LL, 'A', ' 2016-07-27 11:17:06. 000', ' RED A CTED ', 0) | |
| 11716 | INSERT INT O [dbo].[B loodProduc t] ([Blood ProductGui d], [Produ ctName], [ ProductSho rtName], [ ProductTyp eCode], [P roductAttr ibuteForm] , [Product Volume], [ ProductCod e], [Maxim umStorageT ime], [Cro ssmatchReq uiredIndic ator], [Pr oductModif icationInd icator], [ ProductCod eIndicator ], [Origin alProductT ypeCode], [RetireDat e], [Recor dStatusCod e], [LastU pdateDate] , [LastUpd ateUser], [LastUpdat eFunctionI d]) VALUES ('577de42 0-2a85-465 e-8c17-14b 7ebdbfb75' , 'Washed Apheresis RED BLOOD CELLS|None /XX/refg|I rradiated| ResLeu:<1E 6|2nd cont ainer|0.5- 0.7', 'RBC AFR Wash None IRD L UKOPR 2C 0 .5-0.7', ' E049', '@A S C2 D5 H4 L3', 200, 'E8689', 24, 0, 0, 1, 'E049', NULL, 'A' , '2016-07 -27 11:17: 06.000', ' RED A CTED ', 0) | |
| 11717 | INSERT INT O [dbo].[B loodProduc t] ([Blood ProductGui d], [Produ ctName], [ ProductSho rtName], [ ProductTyp eCode], [P roductAttr ibuteForm] , [Product Volume], [ ProductCod e], [Maxim umStorageT ime], [Cro ssmatchReq uiredIndic ator], [Pr oductModif icationInd icator], [ ProductCod eIndicator ], [Origin alProductT ypeCode], [RetireDat e], [Recor dStatusCod e], [LastU pdateDate] , [LastUpd ateUser], [LastUpdat eFunctionI d]) VALUES ('aa56d91 a-b865-419 3-9b69-14e c5e78d12b' , 'POOLED CRYOPRECIP ITATE|None /XX/<=-18C |Open|4 un its', 'CRY O Pool Non e OPN 4U', 'E030', ' @84 B2 J4' , 100, 'E8 665', 8760 , 0, 0, 1, 'E030', N ULL, 'A', '2016-07-2 7 11:17:06 .000', ' RED A CTED ', 0) | |
| 11718 | INSERT INT O [dbo].[B loodProduc t] ([Blood ProductGui d], [Produ ctName], [ ProductSho rtName], [ ProductTyp eCode], [P roductAttr ibuteForm] , [Product Volume], [ ProductCod e], [Maxim umStorageT ime], [Cro ssmatchReq uiredIndic ator], [Pr oductModif icationInd icator], [ ProductCod eIndicator ], [Origin alProductT ypeCode], [RetireDat e], [Recor dStatusCod e], [LastU pdateDate] , [LastUpd ateUser], [LastUpdat eFunctionI d]) VALUES ('e68f6b4 7-b544-41d 6-b058-15a b183c0150' , 'Apheres is PLATELE TS|ACD-A>P AS-D/XX/20 -24C', 'PL T AFR ACD- A>PAS-D', 'E024', '@ DH', 200, 'E8550', 1 20, 0, 0, 1, 'E024', NULL, 'A' , '2016-07 -27 11:17: 06.000', ' RED A CTED ', 0) | |
| 11719 | INSERT INT O [dbo].[B loodProduc t] ([Blood ProductGui d], [Produ ctName], [ ProductSho rtName], [ ProductTyp eCode], [P roductAttr ibuteForm] , [Product Volume], [ ProductCod e], [Maxim umStorageT ime], [Cro ssmatchReq uiredIndic ator], [Pr oductModif icationInd icator], [ ProductCod eIndicator ], [Origin alProductT ypeCode], [RetireDat e], [Recor dStatusCod e], [LastU pdateDate] , [LastUpd ateUser], [LastUpdat eFunctionI d]) VALUES ('b0b0498 5-44be-446 d-9210-165 4ce4d7efc' , 'Thawed Apheresis PLATELETS| PAS-C/XX/2 0-24C|Irra diated|Res Leu:<5E6|2 nd contain er', 'PLT AFR Thaw P AS-C IRD L UKOPR 2C', 'E026', ' @B5 C2 D4 H4', 200, 'E8588', 4 , 0, 0, 1, 'E026', N ULL, 'A', '2016-07-2 7 11:17:06 .000', ' RED A CTED ', 0) | |
| 11720 | INSERT INT O [dbo].[B loodProduc t] ([Blood ProductGui d], [Produ ctName], [ ProductSho rtName], [ ProductTyp eCode], [P roductAttr ibuteForm] , [Product Volume], [ ProductCod e], [Maxim umStorageT ime], [Cro ssmatchReq uiredIndic ator], [Pr oductModif icationInd icator], [ ProductCod eIndicator ], [Origin alProductT ypeCode], [RetireDat e], [Recor dStatusCod e], [LastU pdateDate] , [LastUpd ateUser], [LastUpdat eFunctionI d]) VALUES ('8a53f4f 5-a884-437 9-b970-16a 6739b1fb4' , 'Washed Apheresis PLATELETS| None/XX/20 -24C|Open| ResLeu:<5E 6|Psoralen -treated', 'PLT AFR Wash None OPN LUKOPR Psoraln', 'E027', ' @71 B2 D4 K5', 200, 'E8695', 4 , 0, 0, 1, 'E027', N ULL, 'A', '2016-07-2 7 11:17:06 .000', ' RED A CTED ', 0) | |
| 11721 | INSERT INT O [dbo].[B loodProduc t] ([Blood ProductGui d], [Produ ctName], [ ProductSho rtName], [ ProductTyp eCode], [P roductAttr ibuteForm] , [Product Volume], [ ProductCod e], [Maxim umStorageT ime], [Cro ssmatchReq uiredIndic ator], [Pr oductModif icationInd icator], [ ProductCod eIndicator ], [Origin alProductT ypeCode], [RetireDat e], [Recor dStatusCod e], [LastU pdateDate] , [LastUpd ateUser], [LastUpdat eFunctionI d]) VALUES ('d037fc2 2-7c23-4a3 d-94d7-170 63df64c07' , 'Thawed POOLED PLA SMA|CPDA-1 /XX/refg|P soralen-tr eated', 'P LASMA Pool Thaw CPDA -1 Psoraln ', 'E011', '@10 K5', 500, 'E84 01', 4, 0, 0, 1, 'E0 55', NULL, 'A', '201 6-07-27 11 :17:06.000 ', ' RED A CTED ', 0) | |
| 11722 | INSERT INT O [dbo].[B loodProduc t] ([Blood ProductGui d], [Produ ctName], [ ProductSho rtName], [ ProductTyp eCode], [P roductAttr ibuteForm] , [Product Volume], [ ProductCod e], [Maxim umStorageT ime], [Cro ssmatchReq uiredIndic ator], [Pr oductModif icationInd icator], [ ProductCod eIndicator ], [Origin alProductT ypeCode], [RetireDat e], [Recor dStatusCod e], [LastU pdateDate] , [LastUpd ateUser], [LastUpdat eFunctionI d]) VALUES ('12fc223 1-d390-4ba e-b11a-170 cfb28f447' , 'Apheres is PLATELE TS|ACD-A>P AS-C/XX/20 -24C|For m nf:noninje ctable|Res Leu:<5E6|< 3E11 plts' , 'PLT AFR ACD-A>PAS -C MNFNI L UKOPR', 'E 024', '@BH A3 D4 JI' , 200, 'E8 459', 120, 0, 0, 1, 'E024', NU LL, 'A', ' 2016-07-27 11:17:06. 000', ' RED A CTED ', 0) | |
| 11723 | INSERT INT O [dbo].[B loodProduc t] ([Blood ProductGui d], [Produ ctName], [ ProductSho rtName], [ ProductTyp eCode], [P roductAttr ibuteForm] , [Product Volume], [ ProductCod e], [Maxim umStorageT ime], [Cro ssmatchReq uiredIndic ator], [Pr oductModif icationInd icator], [ ProductCod eIndicator ], [Origin alProductT ypeCode], [RetireDat e], [Recor dStatusCod e], [LastU pdateDate] , [LastUpd ateUser], [LastUpdat eFunctionI d]) VALUES ('e3c8971 4-5c9b-4bf b-bff1-179 a1b8d1ad1' , 'Apheres is PLATELE TS|ACD-A/X X/20-24C|I rradiated| ResLeu:<5E 6|Bacteria l test', ' PLT AFR AC D-A IRD LU KOPR BacTe st', 'E024 ', '@73 C2 D4 N3', 2 00, 'E8598 ', 120, 0, 0, 1, 'E0 24', NULL, 'A', '201 6-07-27 11 :17:06.000 ', ' RED A CTED ', 0) | |
| 11724 | INSERT INT O [dbo].[B loodProduc t] ([Blood ProductGui d], [Produ ctName], [ ProductSho rtName], [ ProductTyp eCode], [P roductAttr ibuteForm] , [Product Volume], [ ProductCod e], [Maxim umStorageT ime], [Cro ssmatchReq uiredIndic ator], [Pr oductModif icationInd icator], [ ProductCod eIndicator ], [Origin alProductT ypeCode], [RetireDat e], [Recor dStatusCod e], [LastU pdateDate] , [LastUpd ateUser], [LastUpdat eFunctionI d]) VALUES ('824d8bc 5-9464-43a d-bdc1-17e a0f712726' , 'Apheres is PLATELE TS|ACD-A>P AS-B/XX/20 -24C|Irrad iated|ResL eu:<1E6', 'PLT AFR A CD-A>PAS-B IRD LUKOP R', 'E024' , '@DU C2 D5', 200, 'E8546', 1 20, 0, 0, 1, 'E024', NULL, 'A' , '2016-07 -27 11:17: 06.000', ' RED A CTED ', 0) | |
| 11725 | INSERT INT O [dbo].[B loodProduc t] ([Blood ProductGui d], [Produ ctName], [ ProductSho rtName], [ ProductTyp eCode], [P roductAttr ibuteForm] , [Product Volume], [ ProductCod e], [Maxim umStorageT ime], [Cro ssmatchReq uiredIndic ator], [Pr oductModif icationInd icator], [ ProductCod eIndicator ], [Origin alProductT ypeCode], [RetireDat e], [Recor dStatusCod e], [LastU pdateDate] , [LastUpd ateUser], [LastUpdat eFunctionI d]) VALUES ('635bb21 e-27d5-49f 1-ae9e-186 14e241a07' , 'Apheres is PLASMA| ACD-A/XX/< =-18C|1st container| Psoralen-t reated', ' PLASMA AFR ACD-A 1C Psoraln', 'E012', '@ 47 H3 K5', 225, 'E87 08', 8760, 0, 0, 1, 'E014', NU LL, 'A', ' 2016-07-27 11:17:06. 000', ' RED A CTED ', 0) | |
| 11726 | INSERT INT O [dbo].[B loodProduc t] ([Blood ProductGui d], [Produ ctName], [ ProductSho rtName], [ ProductTyp eCode], [P roductAttr ibuteForm] , [Product Volume], [ ProductCod e], [Maxim umStorageT ime], [Cro ssmatchReq uiredIndic ator], [Pr oductModif icationInd icator], [ ProductCod eIndicator ], [Origin alProductT ypeCode], [RetireDat e], [Recor dStatusCod e], [LastU pdateDate] , [LastUpd ateUser], [LastUpdat eFunctionI d]) VALUES ('432de96 4-23b8-48b 7-9080-19c 906738933' , 'Apheres is FRESH F ROZEN PLAS MA|NaCitra te/XX/<=-2 5C|Irradia ted|ResLeu :<1E6|<200 mL|Frozen <=6h', 'F FP AFR NaC it IRD LUK OPR', 'E01 2', '@CQ C 2 D5 F4 G4 ', 225, 'E 8625', 876 0, 0, 0, 1 , 'E012', NULL, 'A', '2016-07- 27 11:17:0 6.000', ' RED A CTED ', 0) | |
| 11727 | INSERT INT O [dbo].[B loodProduc t] ([Blood ProductGui d], [Produ ctName], [ ProductSho rtName], [ ProductTyp eCode], [P roductAttr ibuteForm] , [Product Volume], [ ProductCod e], [Maxim umStorageT ime], [Cro ssmatchReq uiredIndic ator], [Pr oductModif icationInd icator], [ ProductCod eIndicator ], [Origin alProductT ypeCode], [RetireDat e], [Recor dStatusCod e], [LastU pdateDate] , [LastUpd ateUser], [LastUpdat eFunctionI d]) VALUES ('d21c20a 9-891d-415 8-81f2-1a6 1fe604f6e' , 'Apheres is PLATELE TS|ACD-A>P AS-C/XX/20 -24C|Irrad iated|ResL eu:<5E6|1s t containe r|Psoralen -treated', 'PLT AFR ACD-A>PAS- C IRD LUKO PR 1C Psor aln', 'E02 4', '@BH C 2 D4 H3 K5 ', 200, 'E 8424', 120 , 0, 0, 1, 'E024', N ULL, 'A', '2016-07-2 7 11:17:06 .000', ' RED A CTED ', 0) | |
| 11728 | INSERT INT O [dbo].[B loodProduc t] ([Blood ProductGui d], [Produ ctName], [ ProductSho rtName], [ ProductTyp eCode], [P roductAttr ibuteForm] , [Product Volume], [ ProductCod e], [Maxim umStorageT ime], [Cro ssmatchReq uiredIndic ator], [Pr oductModif icationInd icator], [ ProductCod eIndicator ], [Origin alProductT ypeCode], [RetireDat e], [Recor dStatusCod e], [LastU pdateDate] , [LastUpd ateUser], [LastUpdat eFunctionI d]) VALUES ('5677080 3-1b5e-4cf 8-9b6d-1a8 29b91ceb2' , 'RED BLO OD CELLS|C PD>AS1/500 mL/refg|Op en|ResLeu: NS|Superna t rem/Plas ma added', 'RBC CPD> AS1 OPN LU KOPR SR/PA ', 'E002', '@19 B2 D 2 E8', 350 , 'E8239', 24, 0, 0, 1, 'E002' , NULL, 'A ', '2016-0 7-27 11:17 :06.000', ' RED A CTED ', 0) | |
| 11729 | INSERT INT O [dbo].[B loodProduc t] ([Blood ProductGui d], [Produ ctName], [ ProductSho rtName], [ ProductTyp eCode], [P roductAttr ibuteForm] , [Product Volume], [ ProductCod e], [Maxim umStorageT ime], [Cro ssmatchReq uiredIndic ator], [Pr oductModif icationInd icator], [ ProductCod eIndicator ], [Origin alProductT ypeCode], [RetireDat e], [Recor dStatusCod e], [LastU pdateDate] , [LastUpd ateUser], [LastUpdat eFunctionI d]) VALUES ('5e0d39e 1-4965-49e a-9020-1ad 60d4eec53' , 'Washed Apheresis PLATELETS| PAS-F/XX/2 0-24C|Open |Irradiate d|ResLeu:< 5E6', 'PLT AFR Wash PAS-F OPN IRD LUKOPR ', 'E027', '@DQ B2 C 2 D4', 200 , 'E8419', 4, 0, 0, 1, 'E027', NULL, 'A' , '2016-07 -27 11:17: 06.000', ' RED A CTED ', 0) | |
| 11730 | INSERT INT O [dbo].[B loodProduc t] ([Blood ProductGui d], [Produ ctName], [ ProductSho rtName], [ ProductTyp eCode], [P roductAttr ibuteForm] , [Product Volume], [ ProductCod e], [Maxim umStorageT ime], [Cro ssmatchReq uiredIndic ator], [Pr oductModif icationInd icator], [ ProductCod eIndicator ], [Origin alProductT ypeCode], [RetireDat e], [Recor dStatusCod e], [LastU pdateDate] , [LastUpd ateUser], [LastUpdat eFunctionI d]) VALUES ('55272ab 5-b28b-4fd 7-93fb-1ad 6d616ad37' , 'Washed RED BLOOD CELLS|None /XX/refg|R esLeu:<5E6 |Riboflavi n-treated' , 'RBC Was h None LUK OPR Ribo', 'E003', ' @AS D4 K6' , 200, 'E8 707', 24, 0, 0, 1, ' E003', NUL L, 'A', '2 016-07-27 11:17:06.0 00', ' RED A CTED ', 0) | |
| 11731 | INSERT INT O [dbo].[B loodProduc t] ([Blood ProductGui d], [Produ ctName], [ ProductSho rtName], [ ProductTyp eCode], [P roductAttr ibuteForm] , [Product Volume], [ ProductCod e], [Maxim umStorageT ime], [Cro ssmatchReq uiredIndic ator], [Pr oductModif icationInd icator], [ ProductCod eIndicator ], [Origin alProductT ypeCode], [RetireDat e], [Recor dStatusCod e], [LastU pdateDate] , [LastUpd ateUser], [LastUpdat eFunctionI d]) VALUES ('eed7473 c-ebd0-40d 3-9bcb-1ae 497d4075e' , 'Apheres is PLATELE TS|ACD-A>P AS-C/XX/20 -24C|Open| ResLeu:<5E 6|Supernat reduced', 'PLT AFR ACD-A>PAS- C OPN LUKO PR SUPRed' , 'E024', '@BH B2 D4 EA', 200, 'E8578', 4, 0, 0, 1 , 'E024', NULL, 'A', '2016-07- 27 11:17:0 6.000', ' RED A CTED ', 0) | |
| 11732 | INSERT INT O [dbo].[B loodProduc t] ([Blood ProductGui d], [Produ ctName], [ ProductSho rtName], [ ProductTyp eCode], [P roductAttr ibuteForm] , [Product Volume], [ ProductCod e], [Maxim umStorageT ime], [Cro ssmatchReq uiredIndic ator], [Pr oductModif icationInd icator], [ ProductCod eIndicator ], [Origin alProductT ypeCode], [RetireDat e], [Recor dStatusCod e], [LastU pdateDate] , [LastUpd ateUser], [LastUpdat eFunctionI d]) VALUES ('3280fb2 1-bf67-4b0 a-ace8-1c0 7e486647b' , 'Washed POOLED PLA TELETS|PAS -E/XX/20-2 4C|Open|Re sLeu:<1E6' , 'PLT Poo l Wash PAS -E OPN LUK OPR', 'E02 3', '@D5 B 2 D5', 200 , 'E8250', 4, 0, 0, 1, 'E023', NULL, 'A' , '2016-07 -27 11:17: 06.000', ' RED A CTED ', 0) | |
| 11733 | INSERT INT O [dbo].[B loodProduc t] ([Blood ProductGui d], [Produ ctName], [ ProductSho rtName], [ ProductTyp eCode], [P roductAttr ibuteForm] , [Product Volume], [ ProductCod e], [Maxim umStorageT ime], [Cro ssmatchReq uiredIndic ator], [Pr oductModif icationInd icator], [ ProductCod eIndicator ], [Origin alProductT ypeCode], [RetireDat e], [Recor dStatusCod e], [LastU pdateDate] , [LastUpd ateUser], [LastUpdat eFunctionI d]) VALUES ('ba4396a 8-c811-4b8 b-9da3-1c2 62bd97ca1' , 'POOLED PLATELETS| CPD>PAS-E/ XX/20-24C| Bacterial monitoring ', 'PLT Po ol CPD>PAS -E Bac Mtr ', 'E022', '@DP N2', 200, 'E83 08', 120, 0, 0, 1, ' E022', NUL L, 'A', '2 016-07-27 11:17:06.0 00', ' RED A CTED ', 0) | |
| 11734 | INSERT INT O [dbo].[B loodProduc t] ([Blood ProductGui d], [Produ ctName], [ ProductSho rtName], [ ProductTyp eCode], [P roductAttr ibuteForm] , [Product Volume], [ ProductCod e], [Maxim umStorageT ime], [Cro ssmatchReq uiredIndic ator], [Pr oductModif icationInd icator], [ ProductCod eIndicator ], [Origin alProductT ypeCode], [RetireDat e], [Recor dStatusCod e], [LastU pdateDate] , [LastUpd ateUser], [LastUpdat eFunctionI d]) VALUES ('1801c49 9-d7d1-45d d-9be9-1c2 64e7a2595' , 'Deglyce rolized RE D BLOOD CE LLS|NS/XX/ refg|Open| Irradiated ', 'RBC De g NS OPN I RD', 'E006 ', '@CG B2 C2', 200, 'E8297', 24, 0, 0, 1, 'E006', NULL, 'A' , '2016-07 -27 11:17: 06.000', ' RED A CTED ', 0) | |
| 11735 | INSERT INT O [dbo].[B loodProduc t] ([Blood ProductGui d], [Produ ctName], [ ProductSho rtName], [ ProductTyp eCode], [P roductAttr ibuteForm] , [Product Volume], [ ProductCod e], [Maxim umStorageT ime], [Cro ssmatchReq uiredIndic ator], [Pr oductModif icationInd icator], [ ProductCod eIndicator ], [Origin alProductT ypeCode], [RetireDat e], [Recor dStatusCod e], [LastU pdateDate] , [LastUpd ateUser], [LastUpdat eFunctionI d]) VALUES ('3912bb9 b-fa80-466 e-938d-1c7 9a1ed9b89' , 'Washed Apheresis PLATELETS| None/XX/20 -24C|Open| ResLeu:<5E 6|Supernat reduced|P soralen-tr eated', 'P LT AFR Was h None OPN LUKOPR SU PRed Psora ln', 'E027 ', '@71 B2 D4 EA K5' , 200, 'E8 789', 4, 0 , 0, 1, 'E 027', NULL , 'A', '20 16-07-27 1 1:17:06.00 0', ' RED A CTED ', 0) | |
| 11736 | INSERT INT O [dbo].[B loodProduc t] ([Blood ProductGui d], [Produ ctName], [ ProductSho rtName], [ ProductTyp eCode], [P roductAttr ibuteForm] , [Product Volume], [ ProductCod e], [Maxim umStorageT ime], [Cro ssmatchReq uiredIndic ator], [Pr oductModif icationInd icator], [ ProductCod eIndicator ], [Origin alProductT ypeCode], [RetireDat e], [Recor dStatusCod e], [LastU pdateDate] , [LastUpd ateUser], [LastUpdat eFunctionI d]) VALUES ('1ce1167 1-eb3e-45c c-bd8f-1c9 2f57e7227' , 'RED BLO OD CELLS|C PDA-1/500m L/refg|Ope n|ResLeu:N S|Plasma r educed/Pla sma added' , 'RBC CPD A-1 OPN LU KOPR PLS R ed/PA', 'E 002', '@08 B2 D2 EE' , 250, 'E8 453', 24, 0, 0, 1, ' E002', NUL L, 'A', '2 016-07-27 11:17:06.0 00', ' RED A CTED ', 0) | |
| 11737 | INSERT INT O [dbo].[B loodProduc t] ([Blood ProductGui d], [Produ ctName], [ ProductSho rtName], [ ProductTyp eCode], [P roductAttr ibuteForm] , [Product Volume], [ ProductCod e], [Maxim umStorageT ime], [Cro ssmatchReq uiredIndic ator], [Pr oductModif icationInd icator], [ ProductCod eIndicator ], [Origin alProductT ypeCode], [RetireDat e], [Recor dStatusCod e], [LastU pdateDate] , [LastUpd ateUser], [LastUpdat eFunctionI d]) VALUES ('1858c73 9-dcb7-40f 9-aa58-1cc 69431c198' , 'POOLED PLATELETS| PAS-E/XX/2 0-24C|Irra diated|Res Leu:<1E6', 'PLT Pool PAS-E IRD LUKOPR', 'E022', '@ D5 C2 D5', 200, 'E82 42', 4, 0, 0, 1, 'E0 22', NULL, 'A', '201 6-07-27 11 :17:06.000 ', ' RED A CTED ', 0) | |
| 11738 | INSERT INT O [dbo].[B loodProduc t] ([Blood ProductGui d], [Produ ctName], [ ProductSho rtName], [ ProductTyp eCode], [P roductAttr ibuteForm] , [Product Volume], [ ProductCod e], [Maxim umStorageT ime], [Cro ssmatchReq uiredIndic ator], [Pr oductModif icationInd icator], [ ProductCod eIndicator ], [Origin alProductT ypeCode], [RetireDat e], [Recor dStatusCod e], [LastU pdateDate] , [LastUpd ateUser], [LastUpdat eFunctionI d]) VALUES ('59fdb83 e-eae1-4ac a-a19c-1d5 50602e7cd' , 'Washed Apheresis PLATELETS| PAS-F/XX/2 0-24C|Open |ResLeu:<5 E6|3rd con tainer', ' PLT AFR Wa sh PAS-F O PN LUKOPR 3C', 'E027 ', '@DQ B2 D4 H5', 2 00, 'E8418 ', 4, 0, 0 , 1, 'E027 ', NULL, ' A', '2016- 07-27 11:1 7:06.000', ' RED A CTED ', 0) | |
| 11739 | INSERT INT O [dbo].[B loodProduc t] ([Blood ProductGui d], [Produ ctName], [ ProductSho rtName], [ ProductTyp eCode], [P roductAttr ibuteForm] , [Product Volume], [ ProductCod e], [Maxim umStorageT ime], [Cro ssmatchReq uiredIndic ator], [Pr oductModif icationInd icator], [ ProductCod eIndicator ], [Origin alProductT ypeCode], [RetireDat e], [Recor dStatusCod e], [LastU pdateDate] , [LastUpd ateUser], [LastUpdat eFunctionI d]) VALUES ('d2bbab8 1-48de-4fa 7-b101-1db 8554429d7' , 'Apheres is PLATELE TS|ACD-A/X X/20-24C|R esLeu:<5E6 |3rd conta iner|Pedia tric dose| Psoralen-t reated', ' PLT AFR AC D-A LUKOPR 3C Pedi P soraln', ' E024', '@7 3 D4 H5 JO K5', 200, 'E8339', 120, 0, 0, 1, 'E024' , NULL, 'A ', '2016-0 7-27 11:17 :06.000', ' RED A CTED ', 0) | |
| 11740 | INSERT INT O [dbo].[B loodProduc t] ([Blood ProductGui d], [Produ ctName], [ ProductSho rtName], [ ProductTyp eCode], [P roductAttr ibuteForm] , [Product Volume], [ ProductCod e], [Maxim umStorageT ime], [Cro ssmatchReq uiredIndic ator], [Pr oductModif icationInd icator], [ ProductCod eIndicator ], [Origin alProductT ypeCode], [RetireDat e], [Recor dStatusCod e], [LastU pdateDate] , [LastUpd ateUser], [LastUpdat eFunctionI d]) VALUES ('2cc7d38 c-f98a-418 2-b042-1f5 d6e6199a8' , 'POOLED CRYOPRECIP ITATE|None /XX/<=-18C |3 units', 'CRYO Poo l None 3U' , 'E030', '@84 J3', 100, 'E860 3', 8760, 0, 0, 1, ' E030', NUL L, 'A', '2 016-07-27 11:17:06.0 00', ' RED A CTED ', 0) | |
| 11741 | INSERT INT O [dbo].[B loodProduc t] ([Blood ProductGui d], [Produ ctName], [ ProductSho rtName], [ ProductTyp eCode], [P roductAttr ibuteForm] , [Product Volume], [ ProductCod e], [Maxim umStorageT ime], [Cro ssmatchReq uiredIndic ator], [Pr oductModif icationInd icator], [ ProductCod eIndicator ], [Origin alProductT ypeCode], [RetireDat e], [Recor dStatusCod e], [LastU pdateDate] , [LastUpd ateUser], [LastUpdat eFunctionI d]) VALUES ('59f4ace b-0512-48e 8-9c84-1f9 ca097fbcb' , 'PLASMA| CPD/450mL/ <=-30C|For mnf:injec table|Open ', 'PLASMA CPD MNFI OPN', 'E01 0', '@A5 A 2 B2', 225 , 'E8204', 8760, 0, 0, 1, 'E01 7', NULL, 'A', '2016 -07-27 11: 17:06.000' , ' RED A CTED ', 0) | |
| 11742 | INSERT INT O [dbo].[B loodProduc t] ([Blood ProductGui d], [Produ ctName], [ ProductSho rtName], [ ProductTyp eCode], [P roductAttr ibuteForm] , [Product Volume], [ ProductCod e], [Maxim umStorageT ime], [Cro ssmatchReq uiredIndic ator], [Pr oductModif icationInd icator], [ ProductCod eIndicator ], [Origin alProductT ypeCode], [RetireDat e], [Recor dStatusCod e], [LastU pdateDate] , [LastUpd ateUser], [LastUpdat eFunctionI d]) VALUES ('4865ad2 d-6f9f-44c 7-80e6-1fe c6895cb0d' , 'FRESH F ROZEN PLAS MA|CPD/XX/ <=-25C', ' FFP CPD', 'E010', '@ A1', 225, 'E8313', 8 760, 0, 0, 1, 'E010' , NULL, 'A ', '2016-0 7-27 11:17 :06.000', ' RED A CTED ', 0) | |
| 11743 | INSERT INT O [dbo].[B loodProduc t] ([Blood ProductGui d], [Produ ctName], [ ProductSho rtName], [ ProductTyp eCode], [P roductAttr ibuteForm] , [Product Volume], [ ProductCod e], [Maxim umStorageT ime], [Cro ssmatchReq uiredIndic ator], [Pr oductModif icationInd icator], [ ProductCod eIndicator ], [Origin alProductT ypeCode], [RetireDat e], [Recor dStatusCod e], [LastU pdateDate] , [LastUpd ateUser], [LastUpdat eFunctionI d]) VALUES ('72b7e27 4-f778-417 7-ba9d-204 8f8a84455' , 'Apheres is PLASMA| ACD-A/XX/< =-18C|<200 mL|RT<=24 h frozen<= 24h|2nd co ntainer', 'PLASMA AF R ACD-A Lo wVol 2C', 'E012', '@ 47 F4 GG H 4', 225, ' E8171', 87 60, 0, 0, 1, 'E014', NULL, 'A' , '2016-07 -27 11:17: 06.000', ' RED A CTED ', 0) | |
| 11744 | INSERT INT O [dbo].[B loodProduc t] ([Blood ProductGui d], [Produ ctName], [ ProductSho rtName], [ ProductTyp eCode], [P roductAttr ibuteForm] , [Product Volume], [ ProductCod e], [Maxim umStorageT ime], [Cro ssmatchReq uiredIndic ator], [Pr oductModif icationInd icator], [ ProductCod eIndicator ], [Origin alProductT ypeCode], [RetireDat e], [Recor dStatusCod e], [LastU pdateDate] , [LastUpd ateUser], [LastUpdat eFunctionI d]) VALUES ('9ff246d e-b1a0-463 4-b595-205 fcae96030' , 'Apheres is RED BLO OD CELLS|A CD-A>AS1/X X/refg|Ope n|ResLeu:< 5E6|Saline added', ' RBC AFR AC D-A>AS1 OP N LUKOPR S AL Add', ' E009', '@A Y B2 D4 EK ', 350, 'E 8206', 24, 0, 0, 1, 'E009', NU LL, 'A', ' 2016-07-27 11:17:06. 000', ' RED A CTED ', 0) | |
| 11745 | INSERT INT O [dbo].[B loodProduc t] ([Blood ProductGui d], [Produ ctName], [ ProductSho rtName], [ ProductTyp eCode], [P roductAttr ibuteForm] , [Product Volume], [ ProductCod e], [Maxim umStorageT ime], [Cro ssmatchReq uiredIndic ator], [Pr oductModif icationInd icator], [ ProductCod eIndicator ], [Origin alProductT ypeCode], [RetireDat e], [Recor dStatusCod e], [LastU pdateDate] , [LastUpd ateUser], [LastUpdat eFunctionI d]) VALUES ('526e978 9-b04e-406 1-92b3-20b 207f882b0' , 'Thawed Apheresis PLASMA|ACD -A/XX/refg |>=200mL<4 00mL|Psora len-treate d', 'PLASM A AFR Thaw ACD-A Pso raln', 'E0 13', '@54 F5 K5', 22 5, 'E8388' , 120, 0, 0, 1, 'E01 5', NULL, 'A', '2016 -07-27 11: 17:06.000' , ' RED A CTED ', 0) | |
| 11746 | INSERT INT O [dbo].[B loodProduc t] ([Blood ProductGui d], [Produ ctName], [ ProductSho rtName], [ ProductTyp eCode], [P roductAttr ibuteForm] , [Product Volume], [ ProductCod e], [Maxim umStorageT ime], [Cro ssmatchReq uiredIndic ator], [Pr oductModif icationInd icator], [ ProductCod eIndicator ], [Origin alProductT ypeCode], [RetireDat e], [Recor dStatusCod e], [LastU pdateDate] , [LastUpd ateUser], [LastUpdat eFunctionI d]) VALUES ('ea3c48c e-917f-4d1 9-a22e-20f 4de82f528' , 'Deglyce rolized Ap heresis RE D BLOOD CE LLS|AS3/XX /refg|ResL eu:<5E6', 'RBC AFR D eg AS3 LUK OPR', 'E05 1', '@B6 D 4', 200, ' E8673', 33 6, 0, 0, 1 , 'E051', NULL, 'A', '2016-07- 27 11:17:0 6.000', ' RED A CTED ', 0) | |
| 11747 | INSERT INT O [dbo].[B loodProduc t] ([Blood ProductGui d], [Produ ctName], [ ProductSho rtName], [ ProductTyp eCode], [P roductAttr ibuteForm] , [Product Volume], [ ProductCod e], [Maxim umStorageT ime], [Cro ssmatchReq uiredIndic ator], [Pr oductModif icationInd icator], [ ProductCod eIndicator ], [Origin alProductT ypeCode], [RetireDat e], [Recor dStatusCod e], [LastU pdateDate] , [LastUpd ateUser], [LastUpdat eFunctionI d]) VALUES ('78a847f 7-a113-460 7-b42d-213 45b389d2f' , 'PLASMA| CPD/450mL/ <=-30C|For mnf:injec table|Open |Cryo redu ced', 'PLA SMA CPD MN FI OPN CRY ORed', 'E0 10', '@A5 A2 B2 E3', 225, 'E82 03', 8760, 0, 0, 1, 'E017', NU LL, 'A', ' 2016-07-27 11:17:06. 000', ' RED A CTED ', 0) | |
| 11748 | INSERT INT O [dbo].[B loodProduc t] ([Blood ProductGui d], [Produ ctName], [ ProductSho rtName], [ ProductTyp eCode], [P roductAttr ibuteForm] , [Product Volume], [ ProductCod e], [Maxim umStorageT ime], [Cro ssmatchReq uiredIndic ator], [Pr oductModif icationInd icator], [ ProductCod eIndicator ], [Origin alProductT ypeCode], [RetireDat e], [Recor dStatusCod e], [LastU pdateDate] , [LastUpd ateUser], [LastUpdat eFunctionI d]) VALUES ('0f2a859 6-d5e5-4de 3-a2d3-21c 6a28d219b' , 'Apheres is PLATELE TS|ACD-A/X X/20-24C|R esLeu:<5E6 |Plasma re duced|3rd container| Psoralen-t reated', ' PLT AFR AC D-A LUKOPR PLS Red 3 C Psoraln' , 'E024', '@73 D4 E5 H5 K5', 2 00, 'E8731 ', 120, 0, 0, 1, 'E0 24', NULL, 'A', '201 6-07-27 11 :17:06.000 ', ' RED A CTED ', 0) | |
| 11749 | INSERT INT O [dbo].[B loodProduc t] ([Blood ProductGui d], [Produ ctName], [ ProductSho rtName], [ ProductTyp eCode], [P roductAttr ibuteForm] , [Product Volume], [ ProductCod e], [Maxim umStorageT ime], [Cro ssmatchReq uiredIndic ator], [Pr oductModif icationInd icator], [ ProductCod eIndicator ], [Origin alProductT ypeCode], [RetireDat e], [Recor dStatusCod e], [LastU pdateDate] , [LastUpd ateUser], [LastUpdat eFunctionI d]) VALUES ('c22bdd1 b-b481-482 9-bdcd-21f 80c23c96a' , 'POOLED PLATELETS| PAS-E/XX/2 0-24C|Irra diated|Res Leu:<1E6|B acterial t est', 'PLT Pool PAS- E IRD LUKO PR BacTest ', 'E022', '@D5 C2 D 5 N3', 200 , 'E8244', 120, 0, 0 , 1, 'E022 ', NULL, ' A', '2016- 07-27 11:1 7:06.000', ' RED A CTED ', 0) | |
| 11750 | INSERT INT O [dbo].[B loodProduc t] ([Blood ProductGui d], [Produ ctName], [ ProductSho rtName], [ ProductTyp eCode], [P roductAttr ibuteForm] , [Product Volume], [ ProductCod e], [Maxim umStorageT ime], [Cro ssmatchReq uiredIndic ator], [Pr oductModif icationInd icator], [ ProductCod eIndicator ], [Origin alProductT ypeCode], [RetireDat e], [Recor dStatusCod e], [LastU pdateDate] , [LastUpd ateUser], [LastUpdat eFunctionI d]) VALUES ('349c7bd c-9aa8-40f 2-ab1b-22c eb6de056e' , 'PLATELE T LYSATE|N one/XX/<=- 20C|Not fo r tx or mn f|Open|Res Leu:NS|Fin Con:NS|Mu ltiple was h cycles|S terile fil tered|From multiple donors, nu mber not s pecified', 'PLT Lyse d None NMT OPN LKPR MWC Steril e Fltr M#D NR', 'E020 ', '@DT A4 B2 D2 F2 GH K7 O2', 1, 'E8551 ', 1, 0, 0 , 1, 'E073 ', NULL, ' A', '2016- 07-27 11:1 7:06.000', ' RED A CTED ', 0) | |
| 11751 | INSERT INT O [dbo].[B loodProduc t] ([Blood ProductGui d], [Produ ctName], [ ProductSho rtName], [ ProductTyp eCode], [P roductAttr ibuteForm] , [Product Volume], [ ProductCod e], [Maxim umStorageT ime], [Cro ssmatchReq uiredIndic ator], [Pr oductModif icationInd icator], [ ProductCod eIndicator ], [Origin alProductT ypeCode], [RetireDat e], [Recor dStatusCod e], [LastU pdateDate] , [LastUpd ateUser], [LastUpdat eFunctionI d]) VALUES ('87bbb3f 7-ef88-41e d-b57c-231 d3e2c2155' , 'Thawed POOLED CRY OPRECIPITA TE|None/XX /rt|Open|I rradiated| 3 units', 'CRYO Pool Thaw None OPN IRD 3 U', 'E031' , '@83 B2 C2 J3', 10 0, 'E8613' , 4, 0, 0, 1, 'E031' , NULL, 'A ', '2016-0 7-27 11:17 :06.000', ' RED A CTED ', 0) | |
| 11752 | INSERT INT O [dbo].[B loodProduc t] ([Blood ProductGui d], [Produ ctName], [ ProductSho rtName], [ ProductTyp eCode], [P roductAttr ibuteForm] , [Product Volume], [ ProductCod e], [Maxim umStorageT ime], [Cro ssmatchReq uiredIndic ator], [Pr oductModif icationInd icator], [ ProductCod eIndicator ], [Origin alProductT ypeCode], [RetireDat e], [Recor dStatusCod e], [LastU pdateDate] , [LastUpd ateUser], [LastUpdat eFunctionI d]) VALUES ('50ce290 f-0fa6-4c0 0-b490-234 2fa8768e2' , 'Deglyce rolized Ap heresis RE D BLOOD CE LLS|AS3/XX /refg|Irra diated', ' RBC AFR De g AS3 IRD' , 'E051', '@B6 C2', 200, 'E867 1', 336, 0 , 0, 1, 'E 051', NULL , 'A', '20 16-07-27 1 1:17:06.00 0', ' RED A CTED ', 0) | |
| 11753 | INSERT INT O [dbo].[B loodProduc t] ([Blood ProductGui d], [Produ ctName], [ ProductSho rtName], [ ProductTyp eCode], [P roductAttr ibuteForm] , [Product Volume], [ ProductCod e], [Maxim umStorageT ime], [Cro ssmatchReq uiredIndic ator], [Pr oductModif icationInd icator], [ ProductCod eIndicator ], [Origin alProductT ypeCode], [RetireDat e], [Recor dStatusCod e], [LastU pdateDate] , [LastUpd ateUser], [LastUpdat eFunctionI d]) VALUES ('a2bc3c6 c-9345-415 4-b0d9-237 03919db6e' , 'Washed RED BLOOD CELLS|None /450mL/ref g|ResLeu:< 1E6|Saline added', ' RBC Wash N one LUKOPR SAL Add', 'E003', ' @17 D5 EK' , 200, 'E8 700', 24, 0, 0, 1, ' E003', NUL L, 'A', '2 016-07-27 11:17:06.0 00', ' RED A CTED ', 0) | |
| 11754 | INSERT INT O [dbo].[B loodProduc t] ([Blood ProductGui d], [Produ ctName], [ ProductSho rtName], [ ProductTyp eCode], [P roductAttr ibuteForm] , [Product Volume], [ ProductCod e], [Maxim umStorageT ime], [Cro ssmatchReq uiredIndic ator], [Pr oductModif icationInd icator], [ ProductCod eIndicator ], [Origin alProductT ypeCode], [RetireDat e], [Recor dStatusCod e], [LastU pdateDate] , [LastUpd ateUser], [LastUpdat eFunctionI d]) VALUES ('c9fa9b3 4-cc1a-4f8 5-bdbe-23d a72d384bc' , 'POOLED PLASMA|CP2 D/XX/<=-18 C|Frozen < =24h|Psora len-treate d', 'PLASM A Pool CP2 D Psoraln' , 'E040', '@37 G7 K5 ', 225, 'E 8385', 876 0, 0, 0, 1 , 'E040', NULL, 'A', '2016-07- 27 11:17:0 6.000', ' RED A CTED ', 0) | |
| 11755 | INSERT INT O [dbo].[B loodProduc t] ([Blood ProductGui d], [Produ ctName], [ ProductSho rtName], [ ProductTyp eCode], [P roductAttr ibuteForm] , [Product Volume], [ ProductCod e], [Maxim umStorageT ime], [Cro ssmatchReq uiredIndic ator], [Pr oductModif icationInd icator], [ ProductCod eIndicator ], [Origin alProductT ypeCode], [RetireDat e], [Recor dStatusCod e], [LastU pdateDate] , [LastUpd ateUser], [LastUpdat eFunctionI d]) VALUES ('2404454 0-8c73-448 4-9c63-24e 6f954a5a6' , 'Apheres is FRESH F ROZEN PLAS MA|ACD-A/X X/<=-25C|R esLeu:<1E6 |>=200mL<4 00mL|Froze n <=18h|1s t containe r', 'FFP A FR ACD-A L UKOPR 1C', 'E012', ' @AI D5 F5 G6 H3', 22 5, 'E8637' , 8760, 0, 0, 1, 'E0 12', NULL, 'A', '201 6-07-27 11 :17:06.000 ', ' RED A CTED ', 0) | |
| 11756 | INSERT INT O [dbo].[B loodProduc t] ([Blood ProductGui d], [Produ ctName], [ ProductSho rtName], [ ProductTyp eCode], [P roductAttr ibuteForm] , [Product Volume], [ ProductCod e], [Maxim umStorageT ime], [Cro ssmatchReq uiredIndic ator], [Pr oductModif icationInd icator], [ ProductCod eIndicator ], [Origin alProductT ypeCode], [RetireDat e], [Recor dStatusCod e], [LastU pdateDate] , [LastUpd ateUser], [LastUpdat eFunctionI d]) VALUES ('cf27690 c-2ebb-4b4 4-8585-254 f56898cdf' , 'RED BLO OD CELLS|C PD/450mL/r efg|ResLeu :<1E6|Plas ma reduced /Plasma ad ded|From 2 donors', 'RBC CPD L UKOPR PLS Red/PA 2DN R', 'E002' , '@03 D5 EE O3', 25 0, 'E8211' , 504, 0, 0, 1, 'E00 2', NULL, 'A', '2016 -07-27 11: 17:06.000' , ' RED A CTED ', 0) | |
| 11757 | INSERT INT O [dbo].[B loodProduc t] ([Blood ProductGui d], [Produ ctName], [ ProductSho rtName], [ ProductTyp eCode], [P roductAttr ibuteForm] , [Product Volume], [ ProductCod e], [Maxim umStorageT ime], [Cro ssmatchReq uiredIndic ator], [Pr oductModif icationInd icator], [ ProductCod eIndicator ], [Origin alProductT ypeCode], [RetireDat e], [Recor dStatusCod e], [LastU pdateDate] , [LastUpd ateUser], [LastUpdat eFunctionI d]) VALUES ('4fb5161 2-2e27-486 8-a3e2-255 9885bf249' , 'Thawed Apheresis FRESH FROZ EN PLASMA| ACD-A/XX/r efg|Open|1 st contain er', 'FFP AFR Thaw A CD-A OPN 1 C', 'E013' , '@54 B2 H3', 225, 'E8575', 2 4, 0, 0, 1 , 'E013', NULL, 'A', '2016-07- 27 11:17:0 6.000', ' RED A CTED ', 0) | |
| 11758 | INSERT INT O [dbo].[B loodProduc t] ([Blood ProductGui d], [Produ ctName], [ ProductSho rtName], [ ProductTyp eCode], [P roductAttr ibuteForm] , [Product Volume], [ ProductCod e], [Maxim umStorageT ime], [Cro ssmatchReq uiredIndic ator], [Pr oductModif icationInd icator], [ ProductCod eIndicator ], [Origin alProductT ypeCode], [RetireDat e], [Recor dStatusCod e], [LastU pdateDate] , [LastUpd ateUser], [LastUpdat eFunctionI d]) VALUES ('2f6a77d 5-cbbc-413 7-8e2d-257 36c4011bc' , 'Thawed POOLED PLA TELETS|NS/ XX/20-24C| Irradiated |ResLeu:<1 E6', 'PLT Pool Thaw NS IRD LUK OPR', 'E02 2', '@72 C 2 D5', 200 , 'E8566', 4, 0, 0, 1, 'E061', NULL, 'A' , '2016-07 -27 11:17: 06.000', ' RED A CTED ', 0) | |
| 11759 | INSERT INT O [dbo].[B loodProduc t] ([Blood ProductGui d], [Produ ctName], [ ProductSho rtName], [ ProductTyp eCode], [P roductAttr ibuteForm] , [Product Volume], [ ProductCod e], [Maxim umStorageT ime], [Cro ssmatchReq uiredIndic ator], [Pr oductModif icationInd icator], [ ProductCod eIndicator ], [Origin alProductT ypeCode], [RetireDat e], [Recor dStatusCod e], [LastU pdateDate] , [LastUpd ateUser], [LastUpdat eFunctionI d]) VALUES ('7baceb6 6-167d-425 c-ac81-25e aa830af0e' , 'POOLED PLASMA|CPD A-1/XX/<=- 18C|Psoral en-treated ', 'PLASMA Pool CPDA -1 Psoraln ', 'E040', '@36 K5', 225, 'E83 79', 8760, 0, 0, 1, 'E040', NU LL, 'A', ' 2016-07-27 11:17:06. 000', ' RED A CTED ', 0) | |
| 11760 | INSERT INT O [dbo].[B loodProduc t] ([Blood ProductGui d], [Produ ctName], [ ProductSho rtName], [ ProductTyp eCode], [P roductAttr ibuteForm] , [Product Volume], [ ProductCod e], [Maxim umStorageT ime], [Cro ssmatchReq uiredIndic ator], [Pr oductModif icationInd icator], [ ProductCod eIndicator ], [Origin alProductT ypeCode], [RetireDat e], [Recor dStatusCod e], [LastU pdateDate] , [LastUpd ateUser], [LastUpdat eFunctionI d]) VALUES ('19c5ce7 d-bd77-43c e-8ffb-25e cde058752' , 'Apheres is PLATELE TS|ACD-A>P AS-C/XX/20 -24C|Open| ResLeu:<5E 6|Psoralen -treated', 'PLT AFR ACD-A>PAS OPN LUKOPR Psoraln', 'E024', ' @BH B2 D4 K5', 200, 'E8784', 4 , 0, 0, 1, 'E024', N ULL, 'A', '2016-07-2 7 11:17:06 .000', ' RED A CTED ', 0) | |
| 11761 | INSERT INT O [dbo].[B loodProduc t] ([Blood ProductGui d], [Produ ctName], [ ProductSho rtName], [ ProductTyp eCode], [P roductAttr ibuteForm] , [Product Volume], [ ProductCod e], [Maxim umStorageT ime], [Cro ssmatchReq uiredIndic ator], [Pr oductModif icationInd icator], [ ProductCod eIndicator ], [Origin alProductT ypeCode], [RetireDat e], [Recor dStatusCod e], [LastU pdateDate] , [LastUpd ateUser], [LastUpdat eFunctionI d]) VALUES ('30108ef 1-3264-446 4-9995-260 0eb5008ff' , 'POOLED CRYOPRECIP ITATE|None /XX/<=-18C |Open|2 un its', 'CRY O Pool Non e OPN 2U', 'E030', ' @84 B2 J2' , 100, 'E8 608', 8760 , 0, 0, 1, 'E030', N ULL, 'A', '2016-07-2 7 11:17:06 .000', ' RED A CTED ', 0) | |
| 11762 | INSERT INT O [dbo].[B loodProduc t] ([Blood ProductGui d], [Produ ctName], [ ProductSho rtName], [ ProductTyp eCode], [P roductAttr ibuteForm] , [Product Volume], [ ProductCod e], [Maxim umStorageT ime], [Cro ssmatchReq uiredIndic ator], [Pr oductModif icationInd icator], [ ProductCod eIndicator ], [Origin alProductT ypeCode], [RetireDat e], [Recor dStatusCod e], [LastU pdateDate] , [LastUpd ateUser], [LastUpdat eFunctionI d]) VALUES ('be78389 e-d633-48b 2-a3d5-26e 264e151c5' , 'PLATELE TS|CP2D/50 0mL/20-24C |For mnf:n oninjectab le|Irradia ted', 'PLT CP2D MNFN I IRD', 'E 020', '@69 A3 C2', 5 0, 'E8462' , 120, 0, 0, 1, 'E02 0', NULL, 'A', '2016 -07-27 11: 17:06.000' , ' RED A CTED ', 0) | |
| 11763 | INSERT INT O [dbo].[B loodProduc t] ([Blood ProductGui d], [Produ ctName], [ ProductSho rtName], [ ProductTyp eCode], [P roductAttr ibuteForm] , [Product Volume], [ ProductCod e], [Maxim umStorageT ime], [Cro ssmatchReq uiredIndic ator], [Pr oductModif icationInd icator], [ ProductCod eIndicator ], [Origin alProductT ypeCode], [RetireDat e], [Recor dStatusCod e], [LastU pdateDate] , [LastUpd ateUser], [LastUpdat eFunctionI d]) VALUES ('1e39106 0-a76a-4b7 9-86eb-276 8ed89b274' , 'Apheres is PLASMA| ACD-A/XX/< =-30C|Froz en <=24h', 'PLASMA A FR ACD-A', 'E012', ' @AJ G7', 2 25, 'E8355 ', 8760, 0 , 0, 1, 'E 014', NULL , 'A', '20 16-07-27 1 1:17:06.00 0', ' RED A CTED ', 0) | |
| 11764 | INSERT INT O [dbo].[B loodProduc t] ([Blood ProductGui d], [Produ ctName], [ ProductSho rtName], [ ProductTyp eCode], [P roductAttr ibuteForm] , [Product Volume], [ ProductCod e], [Maxim umStorageT ime], [Cro ssmatchReq uiredIndic ator], [Pr oductModif icationInd icator], [ ProductCod eIndicator ], [Origin alProductT ypeCode], [RetireDat e], [Recor dStatusCod e], [LastU pdateDate] , [LastUpd ateUser], [LastUpdat eFunctionI d]) VALUES ('2f84100 0-c307-488 e-bf2e-281 706e7294f' , 'Washed POOLED PLA TELETS|PAS -E/XX/20-2 4C|ResLeu: <1E6|Buffy coat plts prep|2 un its', 'PLT Pool Wash PAS-E LUK OPR BUFCT 2U', 'E023 ', '@D5 D5 G2 J2', 2 00, 'E8504 ', 4, 0, 0 , 1, 'E023 ', NULL, ' A', '2016- 07-27 11:1 7:06.000', ' RED A CTED ', 0) | |
| 11765 | INSERT INT O [dbo].[B loodProduc t] ([Blood ProductGui d], [Produ ctName], [ ProductSho rtName], [ ProductTyp eCode], [P roductAttr ibuteForm] , [Product Volume], [ ProductCod e], [Maxim umStorageT ime], [Cro ssmatchReq uiredIndic ator], [Pr oductModif icationInd icator], [ ProductCod eIndicator ], [Origin alProductT ypeCode], [RetireDat e], [Recor dStatusCod e], [LastU pdateDate] , [LastUpd ateUser], [LastUpdat eFunctionI d]) VALUES ('980649a 0-fa11-45b d-83bb-28e f01606172' , 'Thawed POOLED PLA SMA|CPD/XX /refg|Froz en <=24h|P soralen-tr eated', 'P LASMA Pool Thaw CPD Psoraln', 'E011', '@ 06 G7 K5', 500, 'E83 98', 4, 0, 0, 1, 'E0 55', NULL, 'A', '201 6-07-27 11 :17:06.000 ', ' RED A CTED ', 0) | |
| 11766 | INSERT INT O [dbo].[B loodProduc t] ([Blood ProductGui d], [Produ ctName], [ ProductSho rtName], [ ProductTyp eCode], [P roductAttr ibuteForm] , [Product Volume], [ ProductCod e], [Maxim umStorageT ime], [Cro ssmatchReq uiredIndic ator], [Pr oductModif icationInd icator], [ ProductCod eIndicator ], [Origin alProductT ypeCode], [RetireDat e], [Recor dStatusCod e], [LastU pdateDate] , [LastUpd ateUser], [LastUpdat eFunctionI d]) VALUES ('8322e3b 0-217e-43d 8-9c60-290 38f144369' , 'Liquid Apheresis PLASMA|ACD -A/XX/refg |2nd conta iner', 'PL ASMA AFR L iq ACD-A 2 C', 'E011' , '@54 H4' , 225, 'E8 741', 120, 0, 0, 1, 'E041', NU LL, 'A', ' 2016-07-27 11:17:06. 000', ' RED A CTED ', 0) | |
| 11767 | INSERT INT O [dbo].[B loodProduc t] ([Blood ProductGui d], [Produ ctName], [ ProductSho rtName], [ ProductTyp eCode], [P roductAttr ibuteForm] , [Product Volume], [ ProductCod e], [Maxim umStorageT ime], [Cro ssmatchReq uiredIndic ator], [Pr oductModif icationInd icator], [ ProductCod eIndicator ], [Origin alProductT ypeCode], [RetireDat e], [Recor dStatusCod e], [LastU pdateDate] , [LastUpd ateUser], [LastUpdat eFunctionI d]) VALUES ('f1ea4ac 7-57f1-43a 0-85cb-294 0c638def8' , 'POOLED PLATELETS| PAS-E/XX/2 0-24C|ResL eu:<1E6|Su pernat red uced', 'PL T Pool PAS -E LUKOPR SUPRed', ' E022', '@D 5 D5 EA', 200, 'E824 5', 4, 0, 0, 1, 'E02 2', NULL, 'A', '2016 -07-27 11: 17:06.000' , ' RED A CTED ', 0) | |
| 11768 | INSERT INT O [dbo].[B loodProduc t] ([Blood ProductGui d], [Produ ctName], [ ProductSho rtName], [ ProductTyp eCode], [P roductAttr ibuteForm] , [Product Volume], [ ProductCod e], [Maxim umStorageT ime], [Cro ssmatchReq uiredIndic ator], [Pr oductModif icationInd icator], [ ProductCod eIndicator ], [Origin alProductT ypeCode], [RetireDat e], [Recor dStatusCod e], [LastU pdateDate] , [LastUpd ateUser], [LastUpdat eFunctionI d]) VALUES ('e39066b 8-64ce-49c d-94b2-294 ac20618fd' , 'Washed Apheresis RED BLOOD CELLS|None /XX/refg|O pen|Irradi ated|ResLe u:NS|Plasm a added', 'RBC AFR W ash None O PN IRD LUK OPR PA', ' E049', '@A S B2 C2 D2 E4', 200, 'E8444', 24, 0, 0, 1, 'E049', NULL, 'A' , '2016-07 -27 11:17: 06.000', ' RED A CTED ', 0) | |
| 11769 | INSERT INT O [dbo].[B loodProduc t] ([Blood ProductGui d], [Produ ctName], [ ProductSho rtName], [ ProductTyp eCode], [P roductAttr ibuteForm] , [Product Volume], [ ProductCod e], [Maxim umStorageT ime], [Cro ssmatchReq uiredIndic ator], [Pr oductModif icationInd icator], [ ProductCod eIndicator ], [Origin alProductT ypeCode], [RetireDat e], [Recor dStatusCod e], [LastU pdateDate] , [LastUpd ateUser], [LastUpdat eFunctionI d]) VALUES ('0dc0f7c 4-57b1-446 d-bc67-299 db3598816' , 'Apheres is RED BLO OD CELLS|C P2D/XX/ref g|Irradiat ed|ResLeu: NS|Plasma added|1st container' , 'RBC AFR CP2D IRD LUKOPR PA 1C', 'E009 ', '@13 C2 D2 E4 H3' , 350, 'E8 440', 504, 0, 0, 1, 'E009', NU LL, 'A', ' 2016-07-27 11:17:06. 000', ' RED A CTED ', 0) | |
| 11770 | INSERT INT O [dbo].[B loodProduc t] ([Blood ProductGui d], [Produ ctName], [ ProductSho rtName], [ ProductTyp eCode], [P roductAttr ibuteForm] , [Product Volume], [ ProductCod e], [Maxim umStorageT ime], [Cro ssmatchReq uiredIndic ator], [Pr oductModif icationInd icator], [ ProductCod eIndicator ], [Origin alProductT ypeCode], [RetireDat e], [Recor dStatusCod e], [LastU pdateDate] , [LastUpd ateUser], [LastUpdat eFunctionI d]) VALUES ('d866d0b 8-fa4e-4e5 e-bcd4-2ab 11978720f' , 'Apheres is PLASMA| ACD-A/XX/< =-18C|>=40 0mL<600mL| RT<=24h fr ozen<=24h| 3rd contai ner', 'PLA SMA AFR AC D-A 3C', ' E012', '@4 7 F6 GG H5 ', 225, 'E 8165', 876 0, 0, 0, 1 , 'E014', NULL, 'A', '2016-07- 27 11:17:0 6.000', ' RED A CTED ', 0) | |
| 11771 | INSERT INT O [dbo].[B loodProduc t] ([Blood ProductGui d], [Produ ctName], [ ProductSho rtName], [ ProductTyp eCode], [P roductAttr ibuteForm] , [Product Volume], [ ProductCod e], [Maxim umStorageT ime], [Cro ssmatchReq uiredIndic ator], [Pr oductModif icationInd icator], [ ProductCod eIndicator ], [Origin alProductT ypeCode], [RetireDat e], [Recor dStatusCod e], [LastU pdateDate] , [LastUpd ateUser], [LastUpdat eFunctionI d]) VALUES ('115d99b 8-0f97-463 6-bb68-2ac 083ba958d' , 'FRESH F ROZEN PLAS MA|CPD/450 mL/<=-30C| Riboflavin -treated', 'FFP CPD Ribo', 'E0 10', '@A5 K6', 225, 'E8280', 8 760, 0, 0, 1, 'E010' , NULL, 'A ', '2016-0 7-27 11:17 :06.000', ' RED A CTED ', 0) | |
| 11772 | INSERT INT O [dbo].[B loodProduc t] ([Blood ProductGui d], [Produ ctName], [ ProductSho rtName], [ ProductTyp eCode], [P roductAttr ibuteForm] , [Product Volume], [ ProductCod e], [Maxim umStorageT ime], [Cro ssmatchReq uiredIndic ator], [Pr oductModif icationInd icator], [ ProductCod eIndicator ], [Origin alProductT ypeCode], [RetireDat e], [Recor dStatusCod e], [LastU pdateDate] , [LastUpd ateUser], [LastUpdat eFunctionI d]) VALUES ('fc8e51f 5-95d0-46b 8-92c5-2be a04eae304' , 'Apheres is PLATELE TS|ACD-A>P AS-C/XX/20 -24C|For m nf:noninje ctable|Irr adiated|Re sLeu:<5E6| 3rd contai ner', 'PLT AFR ACD-A >PAS-C MNF NI IRD LUK OPR 3C', ' E024', '@B H A3 C2 D4 H5', 200, 'E8465', 120, 0, 0, 1, 'E024' , NULL, 'A ', '2016-0 7-27 11:17 :06.000', ' RED A CTED ', 0) | |
| 11773 | INSERT INT O [dbo].[B loodProduc t] ([Blood ProductGui d], [Produ ctName], [ ProductSho rtName], [ ProductTyp eCode], [P roductAttr ibuteForm] , [Product Volume], [ ProductCod e], [Maxim umStorageT ime], [Cro ssmatchReq uiredIndic ator], [Pr oductModif icationInd icator], [ ProductCod eIndicator ], [Origin alProductT ypeCode], [RetireDat e], [Recor dStatusCod e], [LastU pdateDate] , [LastUpd ateUser], [LastUpdat eFunctionI d]) VALUES ('f426705 3-a35e-4f3 7-95d0-2bf cc33eff50' , 'Apheres is PLATELE TS|ACD-A/X X/20-24C|R esLeu:<5E6 |Plasma re duced|2nd container| Psoralen-t reated', ' PLT AFR AC D-A LUKOPR PLS Red 2 C Psoraln' , 'E024', '@73 D4 E5 H4 K5', 2 00, 'E8730 ', 120, 0, 0, 1, 'E0 24', NULL, 'A', '201 6-07-27 11 :17:06.000 ', ' RED A CTED ', 0) | |
| 11774 | INSERT INT O [dbo].[B loodProduc t] ([Blood ProductGui d], [Produ ctName], [ ProductSho rtName], [ ProductTyp eCode], [P roductAttr ibuteForm] , [Product Volume], [ ProductCod e], [Maxim umStorageT ime], [Cro ssmatchReq uiredIndic ator], [Pr oductModif icationInd icator], [ ProductCod eIndicator ], [Origin alProductT ypeCode], [RetireDat e], [Recor dStatusCod e], [LastU pdateDate] , [LastUpd ateUser], [LastUpdat eFunctionI d]) VALUES ('6d21c10 3-2936-423 4-bef2-2c1 bd810cf18' , 'Apheres is PLASMA| NaCitrate/ XX/<=-20C| For mnf:in jectable-s ource|Open ', 'PLASMA AFR NaCit MNFSI OPN ', 'E012', '@58 A8 B 2', 225, ' E8564', 87 60, 0, 0, 1, 'E014', NULL, 'A' , '2016-07 -27 11:17: 06.000', ' RED A CTED ', 0) | |
| 11775 | INSERT INT O [dbo].[B loodProduc t] ([Blood ProductGui d], [Produ ctName], [ ProductSho rtName], [ ProductTyp eCode], [P roductAttr ibuteForm] , [Product Volume], [ ProductCod e], [Maxim umStorageT ime], [Cro ssmatchReq uiredIndic ator], [Pr oductModif icationInd icator], [ ProductCod eIndicator ], [Origin alProductT ypeCode], [RetireDat e], [Recor dStatusCod e], [LastU pdateDate] , [LastUpd ateUser], [LastUpdat eFunctionI d]) VALUES ('aabf42f 5-6030-42b b-ba41-2c6 ed2f764ee' , 'Thawed Apheresis FRESH FROZ EN PLASMA| ACD-A/XX/r efg|For mn f:noninjec table|3rd container' , 'FFP AFR Thaw ACD- A MNFNI 3C ', 'E013', '@54 A3 H 5', 225, ' E8325', 24 , 0, 0, 1, 'E013', N ULL, 'A', '2016-07-2 7 11:17:06 .000', ' RED A CTED ', 0) | |
| 11776 | INSERT INT O [dbo].[B loodProduc t] ([Blood ProductGui d], [Produ ctName], [ ProductSho rtName], [ ProductTyp eCode], [P roductAttr ibuteForm] , [Product Volume], [ ProductCod e], [Maxim umStorageT ime], [Cro ssmatchReq uiredIndic ator], [Pr oductModif icationInd icator], [ ProductCod eIndicator ], [Origin alProductT ypeCode], [RetireDat e], [Recor dStatusCod e], [LastU pdateDate] , [LastUpd ateUser], [LastUpdat eFunctionI d]) VALUES ('b724f2c 5-0beb-450 e-8383-2d2 18402779f' , 'Apheres is PLATELE TS|ACD-A>P AS-E/XX/20 -24C|ResLe u:<1E6|1st container |Riboflavi n-treated' , 'PLT AFR ACD-A>PAS -E LUKOPR 1C Ribo', 'E024', '@ DS D5 H3 K 6', 200, ' E8524', 12 0, 0, 0, 1 , 'E024', NULL, 'A', '2016-07- 27 11:17:0 6.000', ' RED A CTED ', 0) | |
| 11777 | INSERT INT O [dbo].[B loodProduc t] ([Blood ProductGui d], [Produ ctName], [ ProductSho rtName], [ ProductTyp eCode], [P roductAttr ibuteForm] , [Product Volume], [ ProductCod e], [Maxim umStorageT ime], [Cro ssmatchReq uiredIndic ator], [Pr oductModif icationInd icator], [ ProductCod eIndicator ], [Origin alProductT ypeCode], [RetireDat e], [Recor dStatusCod e], [LastU pdateDate] , [LastUpd ateUser], [LastUpdat eFunctionI d]) VALUES ('2fa1a93 d-706f-4a3 9-9e91-2d5 500e4553d' , 'Apheres is PLATELE TS|ACD-A>P AS-C/XX/20 -24C|ResLe u:<5E6|1st container |Pediatric dose|Psor alen-treat ed', 'PLT AFR ACD-A> PAS-C LUKO PR 1C Pedi Psoraln', 'E024', ' @BH D4 H3 JO K5', 20 0, 'E8346' , 120, 0, 0, 1, 'E02 4', NULL, 'A', '2016 -07-27 11: 17:06.000' , ' RED A CTED ', 0) | |
| 11778 | INSERT INT O [dbo].[B loodProduc t] ([Blood ProductGui d], [Produ ctName], [ ProductSho rtName], [ ProductTyp eCode], [P roductAttr ibuteForm] , [Product Volume], [ ProductCod e], [Maxim umStorageT ime], [Cro ssmatchReq uiredIndic ator], [Pr oductModif icationInd icator], [ ProductCod eIndicator ], [Origin alProductT ypeCode], [RetireDat e], [Recor dStatusCod e], [LastU pdateDate] , [LastUpd ateUser], [LastUpdat eFunctionI d]) VALUES ('cf98035 5-ffcf-409 5-8cd8-2ed 388b0696d' , 'RED BLO OD CELLS|C PD/500mL/r efg|Irradi ated|ResLe u:NS|Plasm a added', 'RBC CPD I RD LUKOPR PA', 'E002 ', '@04 C2 D2 E4', 2 50, 'E8521 ', 504, 0, 0, 1, 'E0 02', NULL, 'A', '201 6-07-27 11 :17:06.000 ', ' RED A CTED ', 0) | |
| 11779 | INSERT INT O [dbo].[B loodProduc t] ([Blood ProductGui d], [Produ ctName], [ ProductSho rtName], [ ProductTyp eCode], [P roductAttr ibuteForm] , [Product Volume], [ ProductCod e], [Maxim umStorageT ime], [Cro ssmatchReq uiredIndic ator], [Pr oductModif icationInd icator], [ ProductCod eIndicator ], [Origin alProductT ypeCode], [RetireDat e], [Recor dStatusCod e], [LastU pdateDate] , [LastUpd ateUser], [LastUpdat eFunctionI d]) VALUES ('51ceaf7 b-45ab-443 7-a4b8-2ef 48fc1107a' , 'Apheres is RED BLO OD CELLS|A CD-A>AS3/X X/refg|Irr adiated|Re sLeu:NS|Pl asma added |1st conta iner', 'RB C AFR ACD- A>AS3 IRD LUKOPR PA 1C', 'E009 ', '@AZ C2 D2 E4 H3' , 350, 'E8 437', 672, 0, 0, 1, 'E009', NU LL, 'A', ' 2016-07-27 11:17:06. 000', ' RED A CTED ', 0) | |
| 11780 | INSERT INT O [dbo].[B loodProduc t] ([Blood ProductGui d], [Produ ctName], [ ProductSho rtName], [ ProductTyp eCode], [P roductAttr ibuteForm] , [Product Volume], [ ProductCod e], [Maxim umStorageT ime], [Cro ssmatchReq uiredIndic ator], [Pr oductModif icationInd icator], [ ProductCod eIndicator ], [Origin alProductT ypeCode], [RetireDat e], [Recor dStatusCod e], [LastU pdateDate] , [LastUpd ateUser], [LastUpdat eFunctionI d]) VALUES ('ce70b6a 5-734f-4c2 c-903a-2f7 492171750' , 'Washed POOLED PLA TELETS|PAS -E/XX/20-2 4C|ResLeu: <1E6|Buffy coat plts prep|6 un its', 'PLT Pool Wash PAS-E LUK OPR BUFCT 6U', 'E023 ', '@D5 D5 G2 J6', 2 00, 'E8508 ', 4, 0, 0 , 1, 'E023 ', NULL, ' A', '2016- 07-27 11:1 7:06.000', ' RED A CTED ', 0) | |
| 11781 | INSERT INT O [dbo].[B loodProduc t] ([Blood ProductGui d], [Produ ctName], [ ProductSho rtName], [ ProductTyp eCode], [P roductAttr ibuteForm] , [Product Volume], [ ProductCod e], [Maxim umStorageT ime], [Cro ssmatchReq uiredIndic ator], [Pr oductModif icationInd icator], [ ProductCod eIndicator ], [Origin alProductT ypeCode], [RetireDat e], [Recor dStatusCod e], [LastU pdateDate] , [LastUpd ateUser], [LastUpdat eFunctionI d]) VALUES ('6349b51 8-fd61-444 6-86c4-2f8 5a71556c2' , 'WHOLE B LOOD|CPD/X X/refg|Irr adiated', 'WB CPD IR D', 'E001' , '@06 C2' , 350, 'E8 284', 504, 0, 0, 1, 'E001', NU LL, 'A', ' 2016-07-27 11:17:06. 000', ' RED A CTED ', 0) | |
| 11782 | INSERT INT O [dbo].[B loodProduc t] ([Blood ProductGui d], [Produ ctName], [ ProductSho rtName], [ ProductTyp eCode], [P roductAttr ibuteForm] , [Product Volume], [ ProductCod e], [Maxim umStorageT ime], [Cro ssmatchReq uiredIndic ator], [Pr oductModif icationInd icator], [ ProductCod eIndicator ], [Origin alProductT ypeCode], [RetireDat e], [Recor dStatusCod e], [LastU pdateDate] , [LastUpd ateUser], [LastUpdat eFunctionI d]) VALUES ('17db375 5-417d-431 a-bde1-2fa 5d584ad80' , 'POOLED PLASMA|CPD A-1/XX/<=- 18C|2 unit s|Psoralen -treated', 'PLASMA P ool CPDA-1 2U Psoral n', 'E040' , '@36 J2 K5', 225, 'E8377', 8 760, 0, 0, 1, 'E040' , NULL, 'A ', '2016-0 7-27 11:17 :06.000', ' RED A CTED ', 0) | |
| 11783 | INSERT INT O [dbo].[B loodProduc t] ([Blood ProductGui d], [Produ ctName], [ ProductSho rtName], [ ProductTyp eCode], [P roductAttr ibuteForm] , [Product Volume], [ ProductCod e], [Maxim umStorageT ime], [Cro ssmatchReq uiredIndic ator], [Pr oductModif icationInd icator], [ ProductCod eIndicator ], [Origin alProductT ypeCode], [RetireDat e], [Recor dStatusCod e], [LastU pdateDate] , [LastUpd ateUser], [LastUpdat eFunctionI d]) VALUES ('c7f9aaa 9-2452-4e2 b-9dfb-2fb 12e13f900' , 'Washed RED BLOOD CELLS|SAGM /XX/refg|I rradiated' , 'RBC Was h SAGM IRD ', 'E003', '@A9 C2', 200, 'E82 93', 336, 0, 0, 1, ' E003', NUL L, 'A', '2 016-07-27 11:17:06.0 00', ' RED A CTED ', 0) | |
| 11784 | INSERT INT O [dbo].[B loodProduc t] ([Blood ProductGui d], [Produ ctName], [ ProductSho rtName], [ ProductTyp eCode], [P roductAttr ibuteForm] , [Product Volume], [ ProductCod e], [Maxim umStorageT ime], [Cro ssmatchReq uiredIndic ator], [Pr oductModif icationInd icator], [ ProductCod eIndicator ], [Origin alProductT ypeCode], [RetireDat e], [Recor dStatusCod e], [LastU pdateDate] , [LastUpd ateUser], [LastUpdat eFunctionI d]) VALUES ('ff1168b e-3994-455 0-8a3c-2fd 008a19e36' , 'Thawed Apheresis PLASMA|ACD -A/XX/refg |>=400mL<6 00mL|Psora len-treate d', 'PLASM A AFR Thaw ACD-A Pso raln', 'E0 13', '@54 F6 K5', 22 5, 'E8389' , 120, 0, 0, 1, 'E01 5', NULL, 'A', '2016 -07-27 11: 17:06.000' , ' RED A CTED ', 0) | |
| 11785 | INSERT INT O [dbo].[B loodProduc t] ([Blood ProductGui d], [Produ ctName], [ ProductSho rtName], [ ProductTyp eCode], [P roductAttr ibuteForm] , [Product Volume], [ ProductCod e], [Maxim umStorageT ime], [Cro ssmatchReq uiredIndic ator], [Pr oductModif icationInd icator], [ ProductCod eIndicator ], [Origin alProductT ypeCode], [RetireDat e], [Recor dStatusCod e], [LastU pdateDate] , [LastUpd ateUser], [LastUpdat eFunctionI d]) VALUES ('3be30c9 3-9061-48d a-8bcd-301 4bc57bdb3' , 'IMMUNE PLASMA|CPD /XX/<=-25C |For mnf:i njectable| Hepatitis A', 'PLASM A Imm CPD MNFI HepA' , 'E010', '@A1 A2 P4 ', 225, 'E 8773', 876 0, 0, 0, 1 , 'E078', NULL, 'A', '2016-07- 27 11:17:0 6.000', ' RED A CTED ', 0) | |
| 11786 | INSERT INT O [dbo].[B loodProduc t] ([Blood ProductGui d], [Produ ctName], [ ProductSho rtName], [ ProductTyp eCode], [P roductAttr ibuteForm] , [Product Volume], [ ProductCod e], [Maxim umStorageT ime], [Cro ssmatchReq uiredIndic ator], [Pr oductModif icationInd icator], [ ProductCod eIndicator ], [Origin alProductT ypeCode], [RetireDat e], [Recor dStatusCod e], [LastU pdateDate] , [LastUpd ateUser], [LastUpdat eFunctionI d]) VALUES ('e027862 b-bb09-480 c-9e54-302 22a40f918' , 'WHOLE B LOOD|CPD/5 00mL/refg| For mnf:in jectable|R esLeu:<1E6 ', 'WB CPD MNFI LUKO PR', 'E001 ', '@04 A2 D5', 500, 'E8662', 504, 0, 0, 1, 'E001' , NULL, 'A ', '2016-0 7-27 11:17 :06.000', ' RED A CTED ', 0) | |
| 11787 | INSERT INT O [dbo].[B loodProduc t] ([Blood ProductGui d], [Produ ctName], [ ProductSho rtName], [ ProductTyp eCode], [P roductAttr ibuteForm] , [Product Volume], [ ProductCod e], [Maxim umStorageT ime], [Cro ssmatchReq uiredIndic ator], [Pr oductModif icationInd icator], [ ProductCod eIndicator ], [Origin alProductT ypeCode], [RetireDat e], [Recor dStatusCod e], [LastU pdateDate] , [LastUpd ateUser], [LastUpdat eFunctionI d]) VALUES ('2dc0d41 0-5aff-4ca d-9df9-317 027467e2a' , 'Thawed Apheresis PLATELETS| PAS-C/XX/2 0-24C|Irra diated|Res Leu:<5E6|3 rd contain er', 'PLT AFR Thaw P AS-C IRD L UKOPR 3C', 'E026', ' @B5 C2 D4 H5', 200, 'E8589', 4 , 0, 0, 1, 'E026', N ULL, 'A', '2016-07-2 7 11:17:06 .000', ' RED A CTED ', 0) | |
| 11788 | INSERT INT O [dbo].[B loodProduc t] ([Blood ProductGui d], [Produ ctName], [ ProductSho rtName], [ ProductTyp eCode], [P roductAttr ibuteForm] , [Product Volume], [ ProductCod e], [Maxim umStorageT ime], [Cro ssmatchReq uiredIndic ator], [Pr oductModif icationInd icator], [ ProductCod eIndicator ], [Origin alProductT ypeCode], [RetireDat e], [Recor dStatusCod e], [LastU pdateDate] , [LastUpd ateUser], [LastUpdat eFunctionI d]) VALUES ('3958324 7-eb8f-4e7 1-b86e-31d cd8efcdc6' , 'Washed Apheresis PLATELETS| PAS-F/XX/2 0-24C|Open |ResLeu:<5 E6', 'PLT AFR Wash P AS-F OPN L UKOPR', 'E 027', '@DQ B2 D4', 2 00, 'E8415 ', 4, 0, 0 , 1, 'E027 ', NULL, ' A', '2016- 07-27 11:1 7:06.000', ' RED A CTED ', 0) | |
| 11789 | INSERT INT O [dbo].[B loodProduc t] ([Blood ProductGui d], [Produ ctName], [ ProductSho rtName], [ ProductTyp eCode], [P roductAttr ibuteForm] , [Product Volume], [ ProductCod e], [Maxim umStorageT ime], [Cro ssmatchReq uiredIndic ator], [Pr oductModif icationInd icator], [ ProductCod eIndicator ], [Origin alProductT ypeCode], [RetireDat e], [Recor dStatusCod e], [LastU pdateDate] , [LastUpd ateUser], [LastUpdat eFunctionI d]) VALUES ('95d0a3d f-92a4-43a a-8845-321 6e78cd0c1' , 'Apheres is PLASMA| ACD-A/XX/< =-18C|2nd container| Psoralen-t reated', ' PLASMA AFR ACD-A 2C Psoraln', 'E012', '@ 47 H4 K5', 225, 'E87 09', 8760, 0, 0, 1, 'E014', NU LL, 'A', ' 2016-07-27 11:17:06. 000', ' RED A CTED ', 0) | |
| 11790 | INSERT INT O [dbo].[B loodProduc t] ([Blood ProductGui d], [Produ ctName], [ ProductSho rtName], [ ProductTyp eCode], [P roductAttr ibuteForm] , [Product Volume], [ ProductCod e], [Maxim umStorageT ime], [Cro ssmatchReq uiredIndic ator], [Pr oductModif icationInd icator], [ ProductCod eIndicator ], [Origin alProductT ypeCode], [RetireDat e], [Recor dStatusCod e], [LastU pdateDate] , [LastUpd ateUser], [LastUpdat eFunctionI d]) VALUES ('5dad725 f-82d2-432 c-9f40-32a f2640e511' , 'RED BLO OD CELLS|C PD/XX/refg |0.70-0.85 ', 'RBD CP D 0.70-0.8 5', 'E002' , '@06 L9' , 250, 'E8 320', 504, 0, 0, 1, 'E002', NU LL, 'A', ' 2016-07-27 11:17:06. 000', ' RED A CTED ', 0) | |
| 11791 | INSERT INT O [dbo].[B loodProduc t] ([Blood ProductGui d], [Produ ctName], [ ProductSho rtName], [ ProductTyp eCode], [P roductAttr ibuteForm] , [Product Volume], [ ProductCod e], [Maxim umStorageT ime], [Cro ssmatchReq uiredIndic ator], [Pr oductModif icationInd icator], [ ProductCod eIndicator ], [Origin alProductT ypeCode], [RetireDat e], [Recor dStatusCod e], [LastU pdateDate] , [LastUpd ateUser], [LastUpdat eFunctionI d]) VALUES ('d462671 4-9fde-410 8-b853-32e 68791d59e' , 'Thawed POOLED PLA SMA|CPD/XX /refg|Psor alen-treat ed', 'PLAS MA Pool Th aw CPD Pso raln', 'E0 11', '@06 K5', 500, 'E8395', 4 , 0, 0, 1, 'E055', N ULL, 'A', '2016-07-2 7 11:17:06 .000', ' RED A CTED ', 0) | |
| 11792 | INSERT INT O [dbo].[B loodProduc t] ([Blood ProductGui d], [Produ ctName], [ ProductSho rtName], [ ProductTyp eCode], [P roductAttr ibuteForm] , [Product Volume], [ ProductCod e], [Maxim umStorageT ime], [Cro ssmatchReq uiredIndic ator], [Pr oductModif icationInd icator], [ ProductCod eIndicator ], [Origin alProductT ypeCode], [RetireDat e], [Recor dStatusCod e], [LastU pdateDate] , [LastUpd ateUser], [LastUpdat eFunctionI d]) VALUES ('596ec96 d-89a8-444 3-b89f-336 44a262db3' , 'Apheres is PLATELE TS|ACD-A>P AS-C/XX/20 -24C|Irrad iated|ResL eu:<5E6|<3 E11 plts|P soralen-tr eated', 'P LT AFR ACD -A>PAS-C I RD LUKOPR Psoraln', 'E024', '@ BH C2 D4 J I K5', 200 , 'E8426', 120, 0, 0 , 1, 'E024 ', NULL, ' A', '2016- 07-27 11:1 7:06.000', ' RED A CTED ', 0) | |
| 11793 | INSERT INT O [dbo].[B loodProduc t] ([Blood ProductGui d], [Produ ctName], [ ProductSho rtName], [ ProductTyp eCode], [P roductAttr ibuteForm] , [Product Volume], [ ProductCod e], [Maxim umStorageT ime], [Cro ssmatchReq uiredIndic ator], [Pr oductModif icationInd icator], [ ProductCod eIndicator ], [Origin alProductT ypeCode], [RetireDat e], [Recor dStatusCod e], [LastU pdateDate] , [LastUpd ateUser], [LastUpdat eFunctionI d]) VALUES ('39eadb7 a-d7d3-4e9 2-b190-33f c754839e5' , 'Deglyce rolized RE D BLOOD CE LLS|SAGM/X X/refg', ' RBC Deg SA GM', 'E006 ', '@A9', 200, 'E865 5', 336, 0 , 0, 1, 'E 006', NULL , 'A', '20 16-07-27 1 1:17:06.00 0', ' RED A CTED ', 0) | |
| 11794 | INSERT INT O [dbo].[B loodProduc t] ([Blood ProductGui d], [Produ ctName], [ ProductSho rtName], [ ProductTyp eCode], [P roductAttr ibuteForm] , [Product Volume], [ ProductCod e], [Maxim umStorageT ime], [Cro ssmatchReq uiredIndic ator], [Pr oductModif icationInd icator], [ ProductCod eIndicator ], [Origin alProductT ypeCode], [RetireDat e], [Recor dStatusCod e], [LastU pdateDate] , [LastUpd ateUser], [LastUpdat eFunctionI d]) VALUES ('758fdc7 3-9544-466 3-bc18-340 6a0b8d90d' , 'RED BLO OD CELLS|S AGM/450mL/ refg|Open| ResLeu:<1. 2E9|Plasma removed/S AGM added| 0.4-0.5', 'RBC SAGM OPN LUKOPR PLS Rem/S AGM Add 0. 4-0.5', 'E 002', '@24 B2 D9 EL LA', 350, 'E8497', 2 4, 0, 0, 1 , 'E002', NULL, 'A', '2016-07- 27 11:17:0 6.000', ' RED A CTED ', 0) | |
| 11795 | INSERT INT O [dbo].[B loodProduc t] ([Blood ProductGui d], [Produ ctName], [ ProductSho rtName], [ ProductTyp eCode], [P roductAttr ibuteForm] , [Product Volume], [ ProductCod e], [Maxim umStorageT ime], [Cro ssmatchReq uiredIndic ator], [Pr oductModif icationInd icator], [ ProductCod eIndicator ], [Origin alProductT ypeCode], [RetireDat e], [Recor dStatusCod e], [LastU pdateDate] , [LastUpd ateUser], [LastUpdat eFunctionI d]) VALUES ('4a692db 6-10bc-42d 8-8770-34d 862cba9c7' , 'Washed RED BLOOD CELLS|SAGM /XX/refg', 'RBC Wash SAGM', 'E 003', '@A9 ', 200, 'E 8292', 336 , 0, 0, 1, 'E003', N ULL, 'A', '2016-07-2 7 11:17:06 .000', ' RED A CTED ', 0) | |
| 11796 | INSERT INT O [dbo].[B loodProduc t] ([Blood ProductGui d], [Produ ctName], [ ProductSho rtName], [ ProductTyp eCode], [P roductAttr ibuteForm] , [Product Volume], [ ProductCod e], [Maxim umStorageT ime], [Cro ssmatchReq uiredIndic ator], [Pr oductModif icationInd icator], [ ProductCod eIndicator ], [Origin alProductT ypeCode], [RetireDat e], [Recor dStatusCod e], [LastU pdateDate] , [LastUpd ateUser], [LastUpdat eFunctionI d]) VALUES ('0676532 0-1677-437 1-8390-356 713ff85a3' , 'POOLED PLASMA|CPD /XX/<=-18C |2 units|P soralen-tr eated', 'P LASMA Pool CPD 2U Ps oraln', 'E 040', '@35 J2 K5', 2 25, 'E8371 ', 8760, 0 , 0, 1, 'E 040', NULL , 'A', '20 16-07-27 1 1:17:06.00 0', ' RED A CTED ', 0) | |
| 11797 | INSERT INT O [dbo].[B loodProduc t] ([Blood ProductGui d], [Produ ctName], [ ProductSho rtName], [ ProductTyp eCode], [P roductAttr ibuteForm] , [Product Volume], [ ProductCod e], [Maxim umStorageT ime], [Cro ssmatchReq uiredIndic ator], [Pr oductModif icationInd icator], [ ProductCod eIndicator ], [Origin alProductT ypeCode], [RetireDat e], [Recor dStatusCod e], [LastU pdateDate] , [LastUpd ateUser], [LastUpdat eFunctionI d]) VALUES ('0771bad 0-6153-4c6 b-9e32-364 855b17352' , 'Apheres is FRESH F ROZEN PLAS MA|ACD-A/X X/<=-25C|R esLeu:<1E6 |>=200mL<4 00mL|Froze n <=18h|3r d containe r', 'FFP A FR ACD-A L UKOPR 3C', 'E012', ' @AI D5 F5 G6 H5', 22 5, 'E8639' , 8760, 0, 0, 1, 'E0 12', NULL, 'A', '201 6-07-27 11 :17:06.000 ', ' RED A CTED ', 0) | |
| 11798 | INSERT INT O [dbo].[B loodProduc t] ([Blood ProductGui d], [Produ ctName], [ ProductSho rtName], [ ProductTyp eCode], [P roductAttr ibuteForm] , [Product Volume], [ ProductCod e], [Maxim umStorageT ime], [Cro ssmatchReq uiredIndic ator], [Pr oductModif icationInd icator], [ ProductCod eIndicator ], [Origin alProductT ypeCode], [RetireDat e], [Recor dStatusCod e], [LastU pdateDate] , [LastUpd ateUser], [LastUpdat eFunctionI d]) VALUES ('5eb5c2c d-b88a-425 1-a262-365 77c802672' , 'Frozen Apheresis PLATELETS| ACD-A/XX/< =-18C|For mnf:noninj ectable|Ir radiated|R esLeu:<5E6 |3rd conta iner', 'PL T AFR Froz ACD-A MNF NI IRD LUK OPR 3C', ' E025', '@4 7 A3 C2 D4 H5', 200, 'E8269', 8760, 0, 0 , 1, 'E025 ', NULL, ' A', '2016- 07-27 11:1 7:06.000', ' RED A CTED ', 0) | |
| 11799 | INSERT INT O [dbo].[B loodProduc t] ([Blood ProductGui d], [Produ ctName], [ ProductSho rtName], [ ProductTyp eCode], [P roductAttr ibuteForm] , [Product Volume], [ ProductCod e], [Maxim umStorageT ime], [Cro ssmatchReq uiredIndic ator], [Pr oductModif icationInd icator], [ ProductCod eIndicator ], [Origin alProductT ypeCode], [RetireDat e], [Recor dStatusCod e], [LastU pdateDate] , [LastUpd ateUser], [LastUpdat eFunctionI d]) VALUES ('5e48d8b c-d3ce-44c d-b839-367 55fc9b555' , 'Apheres is POOLED CRYOPRECIP ITATE|None /XX/<=-18C ', 'CRYO A FR Pool No ne', 'E030 ', '@84', 100, 'E843 0', 8760, 0, 0, 1, ' E070', NUL L, 'A', '2 016-07-27 11:17:06.0 00', ' RED A CTED ', 0) | |
| 11800 | INSERT INT O [dbo].[B loodProduc t] ([Blood ProductGui d], [Produ ctName], [ ProductSho rtName], [ ProductTyp eCode], [P roductAttr ibuteForm] , [Product Volume], [ ProductCod e], [Maxim umStorageT ime], [Cro ssmatchReq uiredIndic ator], [Pr oductModif icationInd icator], [ ProductCod eIndicator ], [Origin alProductT ypeCode], [RetireDat e], [Recor dStatusCod e], [LastU pdateDate] , [LastUpd ateUser], [LastUpdat eFunctionI d]) VALUES ('455d225 4-ce13-47e f-be11-367 bd19f23e3' , 'Apheres is PLASMA| ACD-A/XX/< =-18C|>=60 0mL|RT<=24 h frozen<= 24h|4th co ntainer', 'PLASMA AF R ACD-A Lr gVol 4C', 'E012', '@ 47 F7 GG H 6', 225, ' E8160', 87 60, 0, 0, 1, 'E014', NULL, 'A' , '2016-07 -27 11:17: 06.000', ' RED A CTED ', 0) | |
| 11801 | INSERT INT O [dbo].[B loodProduc t] ([Blood ProductGui d], [Produ ctName], [ ProductSho rtName], [ ProductTyp eCode], [P roductAttr ibuteForm] , [Product Volume], [ ProductCod e], [Maxim umStorageT ime], [Cro ssmatchReq uiredIndic ator], [Pr oductModif icationInd icator], [ ProductCod eIndicator ], [Origin alProductT ypeCode], [RetireDat e], [Recor dStatusCod e], [LastU pdateDate] , [LastUpd ateUser], [LastUpdat eFunctionI d]) VALUES ('9b96caa c-0aba-484 d-9df8-368 51f926141' , 'Apheres is PLATELE TS|ACD-A>P AS-E/XX/20 -24C|Irrad iated|ResL eu:<1E6|Su pernat red uced|3rd c ontainer', 'PLT AFR ACD-A>PAS- E IRD LUKO PR SUPRed 3C', 'E024 ', '@DS C2 D5 EA H5' , 200, 'E8 537', 120, 0, 0, 1, 'E024', NU LL, 'A', ' 2016-07-27 11:17:06. 000', ' RED A CTED ', 0) | |
| 11802 | INSERT INT O [dbo].[B loodProduc t] ([Blood ProductGui d], [Produ ctName], [ ProductSho rtName], [ ProductTyp eCode], [P roductAttr ibuteForm] , [Product Volume], [ ProductCod e], [Maxim umStorageT ime], [Cro ssmatchReq uiredIndic ator], [Pr oductModif icationInd icator], [ ProductCod eIndicator ], [Origin alProductT ypeCode], [RetireDat e], [Recor dStatusCod e], [LastU pdateDate] , [LastUpd ateUser], [LastUpdat eFunctionI d]) VALUES ('9fba111 b-4b87-401 3-815e-375 51ef64fa0' , 'Apheres is PLATELE TS|ACD-A/X X/20-24C|I rradiated| ResLeu:<5E 6|Psoralen -treated', 'PLT AFR ACD-A IRD LUKOPR Pso raln', 'E0 24', '@73 C2 D4 K5', 200, 'E87 46', 120, 0, 0, 1, ' E024', NUL L, 'A', '2 016-07-27 11:17:06.0 00', ' RED A CTED ', 0) | |
| 11803 | INSERT INT O [dbo].[B loodProduc t] ([Blood ProductGui d], [Produ ctName], [ ProductSho rtName], [ ProductTyp eCode], [P roductAttr ibuteForm] , [Product Volume], [ ProductCod e], [Maxim umStorageT ime], [Cro ssmatchReq uiredIndic ator], [Pr oductModif icationInd icator], [ ProductCod eIndicator ], [Origin alProductT ypeCode], [RetireDat e], [Recor dStatusCod e], [LastU pdateDate] , [LastUpd ateUser], [LastUpdat eFunctionI d]) VALUES ('e171469 d-7d80-435 0-b1ab-37b 8f555e266' , 'Apheres is PLASMA| ACD-A/XX/< =-18C|>=40 0mL<600mL| Psoralen-t reated', ' PLASMA AFR ACD-A Pso raln', 'E0 12', '@47 F6 K5', 22 5, 'E8352' , 8760, 0, 0, 1, 'E0 14', NULL, 'A', '201 6-07-27 11 :17:06.000 ', ' RED A CTED ', 0) | |
| 11804 | INSERT INT O [dbo].[B loodProduc t] ([Blood ProductGui d], [Produ ctName], [ ProductSho rtName], [ ProductTyp eCode], [P roductAttr ibuteForm] , [Product Volume], [ ProductCod e], [Maxim umStorageT ime], [Cro ssmatchReq uiredIndic ator], [Pr oductModif icationInd icator], [ ProductCod eIndicator ], [Origin alProductT ypeCode], [RetireDat e], [Recor dStatusCod e], [LastU pdateDate] , [LastUpd ateUser], [LastUpdat eFunctionI d]) VALUES ('cbc5030 a-7e7b-448 d-a37d-37c c029b84f3' , 'Apheres is PLASMA| NaCitrate/ XX/<=-20C| For mnf:no ninjectabl e-converte d', 'PLASM A AFR NaCi t MNFCNI', 'E012', ' @58 A7', 2 25, 'E8357 ', 8760, 0 , 0, 1, 'E 014', NULL , 'A', '20 16-07-27 1 1:17:06.00 0', ' RED A CTED ', 0) | |
| 11805 | INSERT INT O [dbo].[B loodProduc t] ([Blood ProductGui d], [Produ ctName], [ ProductSho rtName], [ ProductTyp eCode], [P roductAttr ibuteForm] , [Product Volume], [ ProductCod e], [Maxim umStorageT ime], [Cro ssmatchReq uiredIndic ator], [Pr oductModif icationInd icator], [ ProductCod eIndicator ], [Origin alProductT ypeCode], [RetireDat e], [Recor dStatusCod e], [LastU pdateDate] , [LastUpd ateUser], [LastUpdat eFunctionI d]) VALUES ('acbc41d f-7e50-45e 8-b2a6-381 504e70281' , 'Thawed POOLED FRE SH FROZEN PLASMA|CP2 D/XX/refg| 2 units|Ps oralen-tre ated', 'FF P Pool Tha w CP2D 2U Psoraln', 'E011', '@ 13 J2 K5', 500, 'E83 90', 4, 0, 0, 1, 'E0 56', NULL, 'A', '201 6-07-27 11 :17:06.000 ', ' RED A CTED ', 0) | |
| 11806 | INSERT INT O [dbo].[B loodProduc t] ([Blood ProductGui d], [Produ ctName], [ ProductSho rtName], [ ProductTyp eCode], [P roductAttr ibuteForm] , [Product Volume], [ ProductCod e], [Maxim umStorageT ime], [Cro ssmatchReq uiredIndic ator], [Pr oductModif icationInd icator], [ ProductCod eIndicator ], [Origin alProductT ypeCode], [RetireDat e], [Recor dStatusCod e], [LastU pdateDate] , [LastUpd ateUser], [LastUpdat eFunctionI d]) VALUES ('afc296d 1-bf86-4ad 9-a992-383 21e767b92' , 'POOLED GRANULOCYT ES|CPD/XX/ rt|Irradia ted', 'GRA N Pool CPD IRD', 'E0 36', '@BT C2', 150, 'E8209', 4 , 0, 0, 1, 'E036', N ULL, 'A', '2016-07-2 7 11:17:06 .000', ' RED A CTED ', 0) | |
| 11807 | INSERT INT O [dbo].[B loodProduc t] ([Blood ProductGui d], [Produ ctName], [ ProductSho rtName], [ ProductTyp eCode], [P roductAttr ibuteForm] , [Product Volume], [ ProductCod e], [Maxim umStorageT ime], [Cro ssmatchReq uiredIndic ator], [Pr oductModif icationInd icator], [ ProductCod eIndicator ], [Origin alProductT ypeCode], [RetireDat e], [Recor dStatusCod e], [LastU pdateDate] , [LastUpd ateUser], [LastUpdat eFunctionI d]) VALUES ('1ca19a4 6-bf96-4c3 8-89ad-385 b318071e4' , 'Apheres is PLATELE TS|PAS-C/X X/20-24C|I rradiated| ResLeu:<1E 6|Approx 1 20 E9 plts ', 'PLT AF R PAS-C IR D LUKOPR', 'E024', ' @B5 C2 D5 J9', 200, 'E8450', 1 20, 0, 0, 1, 'E024', NULL, 'A' , '2016-07 -27 11:17: 06.000', ' RED A CTED ', 0) | |
| 11808 | INSERT INT O [dbo].[B loodProduc t] ([Blood ProductGui d], [Produ ctName], [ ProductSho rtName], [ ProductTyp eCode], [P roductAttr ibuteForm] , [Product Volume], [ ProductCod e], [Maxim umStorageT ime], [Cro ssmatchReq uiredIndic ator], [Pr oductModif icationInd icator], [ ProductCod eIndicator ], [Origin alProductT ypeCode], [RetireDat e], [Recor dStatusCod e], [LastU pdateDate] , [LastUpd ateUser], [LastUpdat eFunctionI d]) VALUES ('5cc5fd8 9-c236-46f d-8caa-38d c2fd4757a' , 'Apheres is PLATELE TS|ACD-A/X X/20-24C|F or mnf:non injectable |Irradiate d|ResLeu:< 5E6|<3E11 plts', 'PL T AFR ACD- A MNFNI IR D LUKOPR', 'E024', ' @73 A3 C2 D4 JI', 20 0, 'E8463' , 120, 0, 0, 1, 'E02 4', NULL, 'A', '2016 -07-27 11: 17:06.000' , ' RED A CTED ', 0) | |
| 11809 | INSERT INT O [dbo].[B loodProduc t] ([Blood ProductGui d], [Produ ctName], [ ProductSho rtName], [ ProductTyp eCode], [P roductAttr ibuteForm] , [Product Volume], [ ProductCod e], [Maxim umStorageT ime], [Cro ssmatchReq uiredIndic ator], [Pr oductModif icationInd icator], [ ProductCod eIndicator ], [Origin alProductT ypeCode], [RetireDat e], [Recor dStatusCod e], [LastU pdateDate] , [LastUpd ateUser], [LastUpdat eFunctionI d]) VALUES ('a37f722 3-77a6-409 1-aa27-38e e11131dbb' , 'Washed POOLED PLA TELETS|PAS -E/XX/20-2 4C|ResLeu: <1E6|Buffy coat plts prep|4 un its', 'PLT Pool Wash PAS-E LUK OPR BUFCT 4U', 'E023 ', '@D5 D5 G2 J4', 2 00, 'E8506 ', 4, 0, 0 , 1, 'E023 ', NULL, ' A', '2016- 07-27 11:1 7:06.000', ' RED A CTED ', 0) | |
| 11810 | INSERT INT O [dbo].[B loodProduc t] ([Blood ProductGui d], [Produ ctName], [ ProductSho rtName], [ ProductTyp eCode], [P roductAttr ibuteForm] , [Product Volume], [ ProductCod e], [Maxim umStorageT ime], [Cro ssmatchReq uiredIndic ator], [Pr oductModif icationInd icator], [ ProductCod eIndicator ], [Origin alProductT ypeCode], [RetireDat e], [Recor dStatusCod e], [LastU pdateDate] , [LastUpd ateUser], [LastUpdat eFunctionI d]) VALUES ('0f076a0 1-727f-411 a-b559-392 3456ef981' , 'Thawed POOLED CRY OPRECIPITA TE|None/XX /rt|3 unit s', 'CRYO Pool Thaw None 3U', 'E031', '@ 83 J3', 10 0, 'E8605' , 6, 0, 0, 1, 'E031' , NULL, 'A ', '2016-0 7-27 11:17 :06.000', ' RED A CTED ', 0) | |
| 11811 | INSERT INT O [dbo].[B loodProduc t] ([Blood ProductGui d], [Produ ctName], [ ProductSho rtName], [ ProductTyp eCode], [P roductAttr ibuteForm] , [Product Volume], [ ProductCod e], [Maxim umStorageT ime], [Cro ssmatchReq uiredIndic ator], [Pr oductModif icationInd icator], [ ProductCod eIndicator ], [Origin alProductT ypeCode], [RetireDat e], [Recor dStatusCod e], [LastU pdateDate] , [LastUpd ateUser], [LastUpdat eFunctionI d]) VALUES ('94c96e0 c-0e1d-413 1-a266-39b a44b4cc9d' , 'Thawed POOLED PLA SMA|CPD/XX /refg|2 un its|Psoral en-treated ', 'PLASMA Pool Thaw CPD 2U Ps oraln', 'E 011', '@06 J2 K5', 5 00, 'E8393 ', 4, 0, 0 , 1, 'E055 ', NULL, ' A', '2016- 07-27 11:1 7:06.000', ' RED A CTED ', 0) | |
| 11812 | INSERT INT O [dbo].[B loodProduc t] ([Blood ProductGui d], [Produ ctName], [ ProductSho rtName], [ ProductTyp eCode], [P roductAttr ibuteForm] , [Product Volume], [ ProductCod e], [Maxim umStorageT ime], [Cro ssmatchReq uiredIndic ator], [Pr oductModif icationInd icator], [ ProductCod eIndicator ], [Origin alProductT ypeCode], [RetireDat e], [Recor dStatusCod e], [LastU pdateDate] , [LastUpd ateUser], [LastUpdat eFunctionI d]) VALUES ('edeb048 3-e2bb-405 b-8b8f-3a1 70a41f226' , 'Washed Apheresis PLATELETS| None/XX/20 -24C|Open| ResLeu:<5E 6|2nd cont ainer|Psor alen-treat ed', 'PLT AFR Wash N one OPN LU KOPR 2C Ps oraln', 'E 027', '@71 B2 D4 H4 K5', 200, 'E8697', 4 , 0, 0, 1, 'E027', N ULL, 'A', '2016-07-2 7 11:17:06 .000', ' RED A CTED ', 0) | |
| 11813 | INSERT INT O [dbo].[B loodProduc t] ([Blood ProductGui d], [Produ ctName], [ ProductSho rtName], [ ProductTyp eCode], [P roductAttr ibuteForm] , [Product Volume], [ ProductCod e], [Maxim umStorageT ime], [Cro ssmatchReq uiredIndic ator], [Pr oductModif icationInd icator], [ ProductCod eIndicator ], [Origin alProductT ypeCode], [RetireDat e], [Recor dStatusCod e], [LastU pdateDate] , [LastUpd ateUser], [LastUpdat eFunctionI d]) VALUES ('ca39f22 5-662a-476 7-a147-3a2 770e9d496' , 'Apheres is IMMUNE PLASMA|CPD /XX/<=-25C |For mnf:i njectable| RHD', 'PLA SMA AFR Im m CPD MNFI RHD', 'E0 12', '@A1 A2 P7', 22 5, 'E8780' , 8760, 0, 0, 1, 'E0 79', NULL, 'A', '201 6-07-27 11 :17:06.000 ', ' RED A CTED ', 0) | |
| 11814 | INSERT INT O [dbo].[B loodProduc t] ([Blood ProductGui d], [Produ ctName], [ ProductSho rtName], [ ProductTyp eCode], [P roductAttr ibuteForm] , [Product Volume], [ ProductCod e], [Maxim umStorageT ime], [Cro ssmatchReq uiredIndic ator], [Pr oductModif icationInd icator], [ ProductCod eIndicator ], [Origin alProductT ypeCode], [RetireDat e], [Recor dStatusCod e], [LastU pdateDate] , [LastUpd ateUser], [LastUpdat eFunctionI d]) VALUES ('6872f1e b-21cd-439 f-a67c-3a6 6696b3731' , 'Thawed Apheresis PLASMA|ACD -A/XX/refg |6th conta iner', 'PL ASMA AFR T haw ACD-A 6C', 'E013 ', '@54 HA ', 225, 'E 8275', 120 , 0, 0, 1, 'E015', N ULL, 'A', '2016-07-2 7 11:17:06 .000', ' RED A CTED ', 0) | |
| 11815 | INSERT INT O [dbo].[B loodProduc t] ([Blood ProductGui d], [Produ ctName], [ ProductSho rtName], [ ProductTyp eCode], [P roductAttr ibuteForm] , [Product Volume], [ ProductCod e], [Maxim umStorageT ime], [Cro ssmatchReq uiredIndic ator], [Pr oductModif icationInd icator], [ ProductCod eIndicator ], [Origin alProductT ypeCode], [RetireDat e], [Recor dStatusCod e], [LastU pdateDate] , [LastUpd ateUser], [LastUpdat eFunctionI d]) VALUES ('400c9f0 a-ee15-4e3 3-b861-3a7 ac233a183' , 'Apheres is PLATELE TS|ACD-A>P AS-C/XX/20 -24C|ResLe u:<5E6|3rd container |Psoralen- treated', 'PLT AFR A CD-A>PAS-C LUKOPR 3C Psoraln', 'E024', ' @BH D4 H5 K5', 200, 'E8343', 1 20, 0, 0, 1, 'E024', NULL, 'A' , '2016-07 -27 11:17: 06.000', ' RED A CTED ', 0) | |
| 11816 | INSERT INT O [dbo].[B loodProduc t] ([Blood ProductGui d], [Produ ctName], [ ProductSho rtName], [ ProductTyp eCode], [P roductAttr ibuteForm] , [Product Volume], [ ProductCod e], [Maxim umStorageT ime], [Cro ssmatchReq uiredIndic ator], [Pr oductModif icationInd icator], [ ProductCod eIndicator ], [Origin alProductT ypeCode], [RetireDat e], [Recor dStatusCod e], [LastU pdateDate] , [LastUpd ateUser], [LastUpdat eFunctionI d]) VALUES ('9987882 5-dee8-41b f-84e9-3b0 435d61af2' , 'Apheres is PLATELE TS|ACD-A>P AS-C/XX/20 -24C|Open| ResLeu:<5E 6|2nd cont ainer|Psor alen-treat ed', 'PLT AFR ACD-A> PAS OPN LU KOPR 2C Ps oraln', 'E 024', '@BH B2 D4 H4 K5', 200, 'E8787', 4 , 0, 0, 1, 'E024', N ULL, 'A', '2016-07-2 7 11:17:06 .000', ' RED A CTED ', 0) | |
| 11817 | INSERT INT O [dbo].[B loodProduc t] ([Blood ProductGui d], [Produ ctName], [ ProductSho rtName], [ ProductTyp eCode], [P roductAttr ibuteForm] , [Product Volume], [ ProductCod e], [Maxim umStorageT ime], [Cro ssmatchReq uiredIndic ator], [Pr oductModif icationInd icator], [ ProductCod eIndicator ], [Origin alProductT ypeCode], [RetireDat e], [Recor dStatusCod e], [LastU pdateDate] , [LastUpd ateUser], [LastUpdat eFunctionI d]) VALUES ('300378b 3-f9f3-498 1-98af-3b6 9c2363ccf' , 'Thawed FRESH FROZ EN PLASMA| CPDA-1/450 mL/refg|Fr ozen <=24h ', 'FFP Th aw CPDA-1' , 'E011', '@07 G7', 225, 'E818 0', 24, 0, 0, 1, 'E0 11', NULL, 'A', '201 6-07-27 11 :17:06.000 ', ' RED A CTED ', 0) | |
| 11818 | INSERT INT O [dbo].[B loodProduc t] ([Blood ProductGui d], [Produ ctName], [ ProductSho rtName], [ ProductTyp eCode], [P roductAttr ibuteForm] , [Product Volume], [ ProductCod e], [Maxim umStorageT ime], [Cro ssmatchReq uiredIndic ator], [Pr oductModif icationInd icator], [ ProductCod eIndicator ], [Origin alProductT ypeCode], [RetireDat e], [Recor dStatusCod e], [LastU pdateDate] , [LastUpd ateUser], [LastUpdat eFunctionI d]) VALUES ('84aef55 e-775c-49c 6-a815-3bf f7864a89e' , 'Apheres is PLATELE TS|ACD-A>P AS-C/XX/20 -24C|Open| ResLeu:<5E 6|2nd cont ainer', 'P LT AFR ACD -A>PAS-C O PN LUKOPR 2C', 'E024 ', '@BH B2 D4 H4', 2 00, 'E8363 ', 4, 0, 0 , 1, 'E024 ', NULL, ' A', '2016- 07-27 11:1 7:06.000', ' RED A CTED ', 0) | |
| 11819 | INSERT INT O [dbo].[B loodProduc t] ([Blood ProductGui d], [Produ ctName], [ ProductSho rtName], [ ProductTyp eCode], [P roductAttr ibuteForm] , [Product Volume], [ ProductCod e], [Maxim umStorageT ime], [Cro ssmatchReq uiredIndic ator], [Pr oductModif icationInd icator], [ ProductCod eIndicator ], [Origin alProductT ypeCode], [RetireDat e], [Recor dStatusCod e], [LastU pdateDate] , [LastUpd ateUser], [LastUpdat eFunctionI d]) VALUES ('df379fb 9-c5ee-4f9 0-b287-3c1 ed8d8f13a' , 'Thawed POOLED PLA SMA|CP2D/X X/refg|Fro zen <=24h| Psoralen-t reated', ' PLASMA Poo l Thaw CP2 D Psoraln' , 'E011', '@13 G7 K5 ', 500, 'E 8407', 4, 0, 0, 1, ' E055', NUL L, 'A', '2 016-07-27 11:17:06.0 00', ' RED A CTED ', 0) | |
| 11820 | INSERT INT O [dbo].[B loodProduc t] ([Blood ProductGui d], [Produ ctName], [ ProductSho rtName], [ ProductTyp eCode], [P roductAttr ibuteForm] , [Product Volume], [ ProductCod e], [Maxim umStorageT ime], [Cro ssmatchReq uiredIndic ator], [Pr oductModif icationInd icator], [ ProductCod eIndicator ], [Origin alProductT ypeCode], [RetireDat e], [Recor dStatusCod e], [LastU pdateDate] , [LastUpd ateUser], [LastUpdat eFunctionI d]) VALUES ('e9333be 9-a6ff-40d 0-b52b-3c2 593e5e1c4' , 'Washed RED BLOOD CELLS|None /XX/refg|O pen|ResLeu :NS|Plasma added', ' RBC Wash N one OPN LU KOPR PA', 'E003', '@ AS B2 D2 E 4', 200, ' E8563', 24 , 0, 0, 1, 'E003', N ULL, 'A', '2016-07-2 7 11:17:06 .000', ' RED A CTED ', 0) | |
| 11821 | INSERT INT O [dbo].[B loodProduc t] ([Blood ProductGui d], [Produ ctName], [ ProductSho rtName], [ ProductTyp eCode], [P roductAttr ibuteForm] , [Product Volume], [ ProductCod e], [Maxim umStorageT ime], [Cro ssmatchReq uiredIndic ator], [Pr oductModif icationInd icator], [ ProductCod eIndicator ], [Origin alProductT ypeCode], [RetireDat e], [Recor dStatusCod e], [LastU pdateDate] , [LastUpd ateUser], [LastUpdat eFunctionI d]) VALUES ('146bfa4 1-94a3-4d0 2-ae91-3c2 fe6ded26e' , 'Frozen SERUM|None /XX/<=-25C |Not for t x or mnf', 'SERUM Fr oz None NM T', 'E046' , '@DZ A4' , 200, 'E8 683', 8760 , 0, 0, 1, 'E076', N ULL, 'A', '2016-07-2 7 11:17:06 .000', ' RED A CTED ', 0) | |
| 11822 | INSERT INT O [dbo].[B loodProduc t] ([Blood ProductGui d], [Produ ctName], [ ProductSho rtName], [ ProductTyp eCode], [P roductAttr ibuteForm] , [Product Volume], [ ProductCod e], [Maxim umStorageT ime], [Cro ssmatchReq uiredIndic ator], [Pr oductModif icationInd icator], [ ProductCod eIndicator ], [Origin alProductT ypeCode], [RetireDat e], [Recor dStatusCod e], [LastU pdateDate] , [LastUpd ateUser], [LastUpdat eFunctionI d]) VALUES ('ad8898a f-c18c-4f6 b-a193-3c6 14f260305' , 'Apheres is PLASMA| ACD-A/XX/< =-20C|For mnf:inject able-sourc e', 'PLASM A AFR ACD- A MNFSI', 'E012', '@ 56 A8', 22 5, 'E8358' , 8760, 0, 0, 1, 'E0 14', NULL, 'A', '201 6-07-27 11 :17:06.000 ', ' RED A CTED ', 0) | |
| 11823 | INSERT INT O [dbo].[B loodProduc t] ([Blood ProductGui d], [Produ ctName], [ ProductSho rtName], [ ProductTyp eCode], [P roductAttr ibuteForm] , [Product Volume], [ ProductCod e], [Maxim umStorageT ime], [Cro ssmatchReq uiredIndic ator], [Pr oductModif icationInd icator], [ ProductCod eIndicator ], [Origin alProductT ypeCode], [RetireDat e], [Recor dStatusCod e], [LastU pdateDate] , [LastUpd ateUser], [LastUpdat eFunctionI d]) VALUES ('c18edf4 0-4bb7-4ec 7-92fe-3ce dda9a5011' , 'Apheres is PLATELE TS|ACD-A>P AS-C/XX/20 -24C|For m nf:noninje ctable|Res Leu:<5E6|2 nd contain er', 'PLT AFR ACD-A> PAS-C MNFN I LUKOPR 2 C', 'E024' , '@BH A3 D4 H4', 20 0, 'E8468' , 120, 0, 0, 1, 'E02 4', NULL, 'A', '2016 -07-27 11: 17:06.000' , ' RED A CTED ', 0) | |
| 11824 | INSERT INT O [dbo].[B loodProduc t] ([Blood ProductGui d], [Produ ctName], [ ProductSho rtName], [ ProductTyp eCode], [P roductAttr ibuteForm] , [Product Volume], [ ProductCod e], [Maxim umStorageT ime], [Cro ssmatchReq uiredIndic ator], [Pr oductModif icationInd icator], [ ProductCod eIndicator ], [Origin alProductT ypeCode], [RetireDat e], [Recor dStatusCod e], [LastU pdateDate] , [LastUpd ateUser], [LastUpdat eFunctionI d]) VALUES ('bf84946 1-706a-41f e-83d0-3d4 0fbacd1f7' , 'Apheres is FRESH F ROZEN PLAS MA|CPD-50/ XX/<=-25C| Open|Froze n <=24h', 'FFP AFR C PD-50 OPN' , 'E012', '@AP B2 G7 ', 225, 'E 8224', 876 0, 0, 0, 1 , 'E012', NULL, 'A', '2016-07- 27 11:17:0 6.000', ' RED A CTED ', 0) | |
| 11825 | INSERT INT O [dbo].[B loodProduc t] ([Blood ProductGui d], [Produ ctName], [ ProductSho rtName], [ ProductTyp eCode], [P roductAttr ibuteForm] , [Product Volume], [ ProductCod e], [Maxim umStorageT ime], [Cro ssmatchReq uiredIndic ator], [Pr oductModif icationInd icator], [ ProductCod eIndicator ], [Origin alProductT ypeCode], [RetireDat e], [Recor dStatusCod e], [LastU pdateDate] , [LastUpd ateUser], [LastUpdat eFunctionI d]) VALUES ('1530989 a-cd03-421 4-bf34-3d5 0416bc30b' , 'Frozen POOLED SER UM|None/XX /<=-25C|Fo r mnf:noni njectable| Quar:>=4m/ retested|1 0 units|Fr om 10 dono rs', 'SERU M Pool Fro z None MNF NI QUAR 10 U 10DNR', 'E048', '@ DZ A3 I3 J N O7', 200 , 'E8685', 8760, 0, 0, 1, 'E04 8', NULL, 'A', '2016 -07-27 11: 17:06.000' , ' RED A CTED ', 0) | |
| 11826 | INSERT INT O [dbo].[B loodProduc t] ([Blood ProductGui d], [Produ ctName], [ ProductSho rtName], [ ProductTyp eCode], [P roductAttr ibuteForm] , [Product Volume], [ ProductCod e], [Maxim umStorageT ime], [Cro ssmatchReq uiredIndic ator], [Pr oductModif icationInd icator], [ ProductCod eIndicator ], [Origin alProductT ypeCode], [RetireDat e], [Recor dStatusCod e], [LastU pdateDate] , [LastUpd ateUser], [LastUpdat eFunctionI d]) VALUES ('4dd9cda b-62bc-410 0-b6dc-3e0 264e56df9' , 'POOLED CRYOPRECIP ITATE|None /XX/<=-18C |Open|Irra diated|5 u nits', 'CR YO Pool No ne OPN IRD 5U', 'E03 0', '@84 B 2 C2 J5', 100, 'E860 1', 8760, 0, 0, 1, ' E030', NUL L, 'A', '2 016-07-27 11:17:06.0 00', ' RED A CTED ', 0) | |
| 11827 | INSERT INT O [dbo].[B loodProduc t] ([Blood ProductGui d], [Produ ctName], [ ProductSho rtName], [ ProductTyp eCode], [P roductAttr ibuteForm] , [Product Volume], [ ProductCod e], [Maxim umStorageT ime], [Cro ssmatchReq uiredIndic ator], [Pr oductModif icationInd icator], [ ProductCod eIndicator ], [Origin alProductT ypeCode], [RetireDat e], [Recor dStatusCod e], [LastU pdateDate] , [LastUpd ateUser], [LastUpdat eFunctionI d]) VALUES ('a06ac09 e-5398-417 6-908a-3e0 36e76da67' , 'Apheres is PLATELE TS|PAS-C/X X/20-24C|R esLeu:<1E6 |2nd conta iner|Bacte rial monit oring', 'P LT AFR PAS -C LUKOPR 2C BacM', 'E024', '@ B5 D5 H4 N 2', 200, ' E8715', 12 0, 0, 0, 1 , 'E024', NULL, 'A', '2016-07- 27 11:17:0 6.000', ' RED A CTED ', 0) | |
| 11828 | INSERT INT O [dbo].[B loodProduc t] ([Blood ProductGui d], [Produ ctName], [ ProductSho rtName], [ ProductTyp eCode], [P roductAttr ibuteForm] , [Product Volume], [ ProductCod e], [Maxim umStorageT ime], [Cro ssmatchReq uiredIndic ator], [Pr oductModif icationInd icator], [ ProductCod eIndicator ], [Origin alProductT ypeCode], [RetireDat e], [Recor dStatusCod e], [LastU pdateDate] , [LastUpd ateUser], [LastUpdat eFunctionI d]) VALUES ('a0e14ea e-0310-4a5 d-9858-3eb e8ec9e1e8' , 'Washed Apheresis PLATELETS| None/XX/20 -24C|Open| Irradiated |ResLeu:<5 E6|3rd con tainer|Pso ralen-trea ted', 'PLT AFR Wash None OPN I RD 3C Psor aln', 'E02 7', '@71 B 2 C2 D4 H5 K5', 200, 'E8760', 4, 0, 0, 1 , 'E027', NULL, 'A', '2016-07- 27 11:17:0 6.000', ' RED A CTED ', 0) | |
| 11829 | INSERT INT O [dbo].[B loodProduc t] ([Blood ProductGui d], [Produ ctName], [ ProductSho rtName], [ ProductTyp eCode], [P roductAttr ibuteForm] , [Product Volume], [ ProductCod e], [Maxim umStorageT ime], [Cro ssmatchReq uiredIndic ator], [Pr oductModif icationInd icator], [ ProductCod eIndicator ], [Origin alProductT ypeCode], [RetireDat e], [Recor dStatusCod e], [LastU pdateDate] , [LastUpd ateUser], [LastUpdat eFunctionI d]) VALUES ('3b2b8a4 9-d72e-4ef 8-9018-3ee 3132a6a6d' , 'POOLED PLATELETS| PAS-E/XX/2 0-24C|ResL eu:<1E6|Bu ffy coat p lts prep|R iboflavin- treated|Fr om 4 donor s', 'PLT P ool PAS-E LUKOPR BUF CT Ribo 4D NR', 'E022 ', '@D5 D5 G2 K6 O5' , 200, 'E8 678', 4, 0 , 0, 1, 'E 022', NULL , 'A', '20 16-07-27 1 1:17:06.00 0', ' RED A CTED ', 0) | |
| 11830 | INSERT INT O [dbo].[B loodProduc t] ([Blood ProductGui d], [Produ ctName], [ ProductSho rtName], [ ProductTyp eCode], [P roductAttr ibuteForm] , [Product Volume], [ ProductCod e], [Maxim umStorageT ime], [Cro ssmatchReq uiredIndic ator], [Pr oductModif icationInd icator], [ ProductCod eIndicator ], [Origin alProductT ypeCode], [RetireDat e], [Recor dStatusCod e], [LastU pdateDate] , [LastUpd ateUser], [LastUpdat eFunctionI d]) VALUES ('542ee2b b-c64c-4e7 d-9de4-3ef 3ef2cfb47' , 'Apheres is PLATELE TS|ACD-A>P AS-C/XX/20 -24C|Open| ResLeu:<5E 6|1st cont ainer', 'P LT AFR ACD -A>PAS-C O PN LUKOPR 1C', 'E024 ', '@BH B2 D4 H3', 2 00, 'E8364 ', 4, 0, 0 , 1, 'E024 ', NULL, ' A', '2016- 07-27 11:1 7:06.000', ' RED A CTED ', 0) | |
| 11831 | INSERT INT O [dbo].[B loodProduc t] ([Blood ProductGui d], [Produ ctName], [ ProductSho rtName], [ ProductTyp eCode], [P roductAttr ibuteForm] , [Product Volume], [ ProductCod e], [Maxim umStorageT ime], [Cro ssmatchReq uiredIndic ator], [Pr oductModif icationInd icator], [ ProductCod eIndicator ], [Origin alProductT ypeCode], [RetireDat e], [Recor dStatusCod e], [LastU pdateDate] , [LastUpd ateUser], [LastUpdat eFunctionI d]) VALUES ('645434c 6-ceb5-487 b-a62d-3f1 c0b2380d0' , 'Apheres is PLASMA| ACD-A/XX/< =-18C|3rd container| Psoralen-t reated', ' PLASMA AFR ACD-A 3C Psoraln', 'E012', '@ 47 H5 K5', 225, 'E87 10', 8760, 0, 0, 1, 'E014', NU LL, 'A', ' 2016-07-27 11:17:06. 000', ' RED A CTED ', 0) | |
| 11832 | INSERT INT O [dbo].[B loodProduc t] ([Blood ProductGui d], [Produ ctName], [ ProductSho rtName], [ ProductTyp eCode], [P roductAttr ibuteForm] , [Product Volume], [ ProductCod e], [Maxim umStorageT ime], [Cro ssmatchReq uiredIndic ator], [Pr oductModif icationInd icator], [ ProductCod eIndicator ], [Origin alProductT ypeCode], [RetireDat e], [Recor dStatusCod e], [LastU pdateDate] , [LastUpd ateUser], [LastUpdat eFunctionI d]) VALUES ('622c381 c-588e-4ea 7-a862-3f7 7450e90a9' , 'Washed RED BLOOD CELLS|SAGM /XX/refg|I rradiated| ResLeu:<5E 6|Multiple wash cycl es', 'RBC Wash SAGM IRD LUKOPR MWC', 'E0 03', '@A9 C2 D4 GH', 200, 'E84 51', 336, 0, 0, 1, ' E003', NUL L, 'A', '2 016-07-27 11:17:06.0 00', ' RED A CTED ', 0) | |
| 11833 | INSERT INT O [dbo].[B loodProduc t] ([Blood ProductGui d], [Produ ctName], [ ProductSho rtName], [ ProductTyp eCode], [P roductAttr ibuteForm] , [Product Volume], [ ProductCod e], [Maxim umStorageT ime], [Cro ssmatchReq uiredIndic ator], [Pr oductModif icationInd icator], [ ProductCod eIndicator ], [Origin alProductT ypeCode], [RetireDat e], [Recor dStatusCod e], [LastU pdateDate] , [LastUpd ateUser], [LastUpdat eFunctionI d]) VALUES ('2bf327a e-524b-485 4-ad73-408 4d42c6887' , 'POOLED PLATELETS| PAS-E/XX/2 0-24C|ResL eu:<1E6|Bu ffy coat p lts prep|5 units|Rib oflavin-tr eated', 'P LT Pool PA S-E LUKOPR BUFCT 5U Ribo', 'E0 22', '@D5 D5 G2 J5 K 6', 200, ' E8712', 4, 0, 0, 1, 'E022', NU LL, 'A', ' 2016-07-27 11:17:06. 000', ' RED A CTED ', 0) | |
| 11834 | INSERT INT O [dbo].[B loodProduc t] ([Blood ProductGui d], [Produ ctName], [ ProductSho rtName], [ ProductTyp eCode], [P roductAttr ibuteForm] , [Product Volume], [ ProductCod e], [Maxim umStorageT ime], [Cro ssmatchReq uiredIndic ator], [Pr oductModif icationInd icator], [ ProductCod eIndicator ], [Origin alProductT ypeCode], [RetireDat e], [Recor dStatusCod e], [LastU pdateDate] , [LastUpd ateUser], [LastUpdat eFunctionI d]) VALUES ('30a2e82 5-813d-4db 1-a6ee-413 10e6f755d' , 'FRESH F ROZEN PLAS MA|CPD/450 mL/<=-25C| For mnf:in jectable|R esLeu:<1E6 |Frozen <= 18h', 'FFP MNFI LUKO PR', 'E010 ', '@A2 A2 D5 G6', 2 25, 'E8620 ', 8760, 0 , 0, 1, 'E 010', NULL , 'A', '20 16-07-27 1 1:17:06.00 0', ' RED A CTED ', 0) | |
| 11835 | INSERT INT O [dbo].[B loodProduc t] ([Blood ProductGui d], [Produ ctName], [ ProductSho rtName], [ ProductTyp eCode], [P roductAttr ibuteForm] , [Product Volume], [ ProductCod e], [Maxim umStorageT ime], [Cro ssmatchReq uiredIndic ator], [Pr oductModif icationInd icator], [ ProductCod eIndicator ], [Origin alProductT ypeCode], [RetireDat e], [Recor dStatusCod e], [LastU pdateDate] , [LastUpd ateUser], [LastUpdat eFunctionI d]) VALUES ('ccf11af 6-8b2d-4b3 f-aa05-423 a46ca13dd' , 'Apheres is PLATELE TS|ACD-A>P AS-E/XX/20 -24C|Irrad iated|ResL eu:<1E6|1s t containe r', 'PLT A FR ACD-A>P AS-E IRD L UKOPR 1C', 'E024', ' @DS C2 D5 H3', 200, 'E8532', 1 20, 0, 0, 1, 'E024', NULL, 'A' , '2016-07 -27 11:17: 06.000', ' RED A CTED ', 0) | |
| 11836 | INSERT INT O [dbo].[B loodProduc t] ([Blood ProductGui d], [Produ ctName], [ ProductSho rtName], [ ProductTyp eCode], [P roductAttr ibuteForm] , [Product Volume], [ ProductCod e], [Maxim umStorageT ime], [Cro ssmatchReq uiredIndic ator], [Pr oductModif icationInd icator], [ ProductCod eIndicator ], [Origin alProductT ypeCode], [RetireDat e], [Recor dStatusCod e], [LastU pdateDate] , [LastUpd ateUser], [LastUpdat eFunctionI d]) VALUES ('1ea2a19 5-f41a-4c5 8-90ea-42f 06ec8e36e' , 'Apheres is RED BLO OD CELLS|A CD-A>AS3/X X/refg|Irr adiated|Re sLeu:NS|Pl asma added ', 'RBC AF R ACD-A>AS 3 IRD LUKO PR PA', 'E 009', '@AZ C2 D2 E4' , 350, 'E8 438', 672, 0, 0, 1, 'E009', NU LL, 'A', ' 2016-07-27 11:17:06. 000', ' RED A CTED ', 0) | |
| 11837 | INSERT INT O [dbo].[B loodProduc t] ([Blood ProductGui d], [Produ ctName], [ ProductSho rtName], [ ProductTyp eCode], [P roductAttr ibuteForm] , [Product Volume], [ ProductCod e], [Maxim umStorageT ime], [Cro ssmatchReq uiredIndic ator], [Pr oductModif icationInd icator], [ ProductCod eIndicator ], [Origin alProductT ypeCode], [RetireDat e], [Recor dStatusCod e], [LastU pdateDate] , [LastUpd ateUser], [LastUpdat eFunctionI d]) VALUES ('a70e75c 0-1176-403 8-8809-433 b549a70cb' , 'Apheres is FRESH F ROZEN PLAS MA|ACD-A/X X/<=-25C|R esLeu:<1E6 |>=600mL|F rozen <=18 h', 'FFP A FR ACD-A L UKOPR LrgV ol', 'E012 ', '@AI D5 F7 G6', 2 25, 'E8636 ', 8760, 0 , 0, 1, 'E 012', NULL , 'A', '20 16-07-27 1 1:17:06.00 0', ' RED A CTED ', 0) | |
| 11838 | INSERT INT O [dbo].[B loodProduc t] ([Blood ProductGui d], [Produ ctName], [ ProductSho rtName], [ ProductTyp eCode], [P roductAttr ibuteForm] , [Product Volume], [ ProductCod e], [Maxim umStorageT ime], [Cro ssmatchReq uiredIndic ator], [Pr oductModif icationInd icator], [ ProductCod eIndicator ], [Origin alProductT ypeCode], [RetireDat e], [Recor dStatusCod e], [LastU pdateDate] , [LastUpd ateUser], [LastUpdat eFunctionI d]) VALUES ('dd4024e 9-02a0-40e 4-8706-43c 2708655c0' , 'Apheres is PLATELE TS|ACD-A>P AS-C/XX/20 -24C|For m nf:noninje ctable|Irr adiated|Re sLeu:<5E6| 2nd contai ner', 'PLT AFR ACD-A >PAS-C MNF NI IRD LUK OPR 2C', ' E024', '@B H A3 C2 D4 H4', 200, 'E8467', 120, 0, 0, 1, 'E024' , NULL, 'A ', '2016-0 7-27 11:17 :06.000', ' RED A CTED ', 0) | |
| 11839 | INSERT INT O [dbo].[B loodProduc t] ([Blood ProductGui d], [Produ ctName], [ ProductSho rtName], [ ProductTyp eCode], [P roductAttr ibuteForm] , [Product Volume], [ ProductCod e], [Maxim umStorageT ime], [Cro ssmatchReq uiredIndic ator], [Pr oductModif icationInd icator], [ ProductCod eIndicator ], [Origin alProductT ypeCode], [RetireDat e], [Recor dStatusCod e], [LastU pdateDate] , [LastUpd ateUser], [LastUpdat eFunctionI d]) VALUES ('217d3fd 3-9ca3-46b 7-b9b0-43d e119a7840' , 'Washed POOLED PLA TELETS|PAS -E/XX/20-2 4C|Irradia ted|ResLeu :<1E6|Buff y coat plt s prep|3 u nits', 'PL T Pool Was h PAS-E IR D LUKOPR B UFCT 3U', 'E023', '@ D5 C2 D5 G 2 J3', 200 , 'E8510', 4, 0, 0, 1, 'E023', NULL, 'A' , '2016-07 -27 11:17: 06.000', ' RED A CTED ', 0) | |
| 11840 | INSERT INT O [dbo].[B loodProduc t] ([Blood ProductGui d], [Produ ctName], [ ProductSho rtName], [ ProductTyp eCode], [P roductAttr ibuteForm] , [Product Volume], [ ProductCod e], [Maxim umStorageT ime], [Cro ssmatchReq uiredIndic ator], [Pr oductModif icationInd icator], [ ProductCod eIndicator ], [Origin alProductT ypeCode], [RetireDat e], [Recor dStatusCod e], [LastU pdateDate] , [LastUpd ateUser], [LastUpdat eFunctionI d]) VALUES ('97aae36 6-3257-420 c-934c-44c 52b3b84b4' , 'Deglyce rolized Ap heresis RE D BLOOD CE LLS|None/X X/refg|Irr adiated', 'RBC AFR D eg None IR D', 'E051' , '@AS C2' , 200, 'E8 616', 336, 0, 0, 1, 'E051', NU LL, 'A', ' 2016-07-27 11:17:06. 000', ' RED A CTED ', 0) | |
| 11841 | INSERT INT O [dbo].[B loodProduc t] ([Blood ProductGui d], [Produ ctName], [ ProductSho rtName], [ ProductTyp eCode], [P roductAttr ibuteForm] , [Product Volume], [ ProductCod e], [Maxim umStorageT ime], [Cro ssmatchReq uiredIndic ator], [Pr oductModif icationInd icator], [ ProductCod eIndicator ], [Origin alProductT ypeCode], [RetireDat e], [Recor dStatusCod e], [LastU pdateDate] , [LastUpd ateUser], [LastUpdat eFunctionI d]) VALUES ('4338f29 1-7137-48a 1-93c4-44f 334f60ba8' , 'RED BLO OD CELLS|C PD>SAGM/XX /refg', 'R BC CPD>SAG M', 'E002' , '@CL', 3 50, 'E8288 ', 1008, 0 , 0, 1, 'E 002', NULL , 'A', '20 16-07-27 1 1:17:06.00 0', ' RED A CTED ', 0) | |
| 11842 | INSERT INT O [dbo].[B loodProduc t] ([Blood ProductGui d], [Produ ctName], [ ProductSho rtName], [ ProductTyp eCode], [P roductAttr ibuteForm] , [Product Volume], [ ProductCod e], [Maxim umStorageT ime], [Cro ssmatchReq uiredIndic ator], [Pr oductModif icationInd icator], [ ProductCod eIndicator ], [Origin alProductT ypeCode], [RetireDat e], [Recor dStatusCod e], [LastU pdateDate] , [LastUpd ateUser], [LastUpdat eFunctionI d]) VALUES ('a9836e3 4-8051-4f7 d-af70-450 71461c3c3' , 'Washed Apheresis RED BLOOD CELLS|None /XX/refg|R esLeu:<1E6 |2nd conta iner|0.5-0 .7', 'RBC AFR Wash N one LUKOPR 2C 0.5-0. 7', 'E049' , '@AS D5 H4 L3', 20 0, 'E8687' , 24, 0, 0 , 1, 'E049 ', NULL, ' A', '2016- 07-27 11:1 7:06.000', ' RED A CTED ', 0) | |
| 11843 | INSERT INT O [dbo].[B loodProduc t] ([Blood ProductGui d], [Produ ctName], [ ProductSho rtName], [ ProductTyp eCode], [P roductAttr ibuteForm] , [Product Volume], [ ProductCod e], [Maxim umStorageT ime], [Cro ssmatchReq uiredIndic ator], [Pr oductModif icationInd icator], [ ProductCod eIndicator ], [Origin alProductT ypeCode], [RetireDat e], [Recor dStatusCod e], [LastU pdateDate] , [LastUpd ateUser], [LastUpdat eFunctionI d]) VALUES ('26c03c8 4-b5d8-4c7 0-a6cb-450 ab5bc3d25' , 'Apheres is PLATELE TS|ACD-A/X X/20-24C|O pen|ResLeu :<5E6|Plas ma reduced |Psoralen- treated', 'PLT AFR A CD-A OPN L UKOPR PLS Red Psoral n', 'E024' , '@73 B2 D4 E5 K5', 200, 'E87 03', 4, 0, 0, 1, 'E0 24', NULL, 'A', '201 6-07-27 11 :17:06.000 ', ' RED A CTED ', 0) | |
| 11844 | INSERT INT O [dbo].[B loodProduc t] ([Blood ProductGui d], [Produ ctName], [ ProductSho rtName], [ ProductTyp eCode], [P roductAttr ibuteForm] , [Product Volume], [ ProductCod e], [Maxim umStorageT ime], [Cro ssmatchReq uiredIndic ator], [Pr oductModif icationInd icator], [ ProductCod eIndicator ], [Origin alProductT ypeCode], [RetireDat e], [Recor dStatusCod e], [LastU pdateDate] , [LastUpd ateUser], [LastUpdat eFunctionI d]) VALUES ('143543a 3-218f-4ec e-b1f1-451 4790f7bb3' , 'CRYOPRE CIPITATE|C PD/XX/<=-2 5C', 'CRYO CPD', 'E0 28', '@A1' , 15, 'E83 17', 8760, 0, 0, 1, 'E028', NU LL, 'A', ' 2016-07-27 11:17:06. 000', ' RED A CTED ', 0) | |
| 11845 | INSERT INT O [dbo].[B loodProduc t] ([Blood ProductGui d], [Produ ctName], [ ProductSho rtName], [ ProductTyp eCode], [P roductAttr ibuteForm] , [Product Volume], [ ProductCod e], [Maxim umStorageT ime], [Cro ssmatchReq uiredIndic ator], [Pr oductModif icationInd icator], [ ProductCod eIndicator ], [Origin alProductT ypeCode], [RetireDat e], [Recor dStatusCod e], [LastU pdateDate] , [LastUpd ateUser], [LastUpdat eFunctionI d]) VALUES ('9d6eac1 8-db92-4a4 6-829f-45c ad9f3fad5' , 'Apheres is RED BLO OD CELLS|A CD-A>AS3/X X/refg|Ope n|ResLeu:N S|Plasma a dded|2nd c ontainer', 'RBC AFR ACD-A>AS3 OPN LUKOPR PA 2C', ' E009', '@A Z B2 D2 E4 H4', 350, 'E8233', 24, 0, 0, 1, 'E009', NULL, 'A' , '2016-07 -27 11:17: 06.000', ' RED A CTED ', 0) | |
| 11846 | INSERT INT O [dbo].[B loodProduc t] ([Blood ProductGui d], [Produ ctName], [ ProductSho rtName], [ ProductTyp eCode], [P roductAttr ibuteForm] , [Product Volume], [ ProductCod e], [Maxim umStorageT ime], [Cro ssmatchReq uiredIndic ator], [Pr oductModif icationInd icator], [ ProductCod eIndicator ], [Origin alProductT ypeCode], [RetireDat e], [Recor dStatusCod e], [LastU pdateDate] , [LastUpd ateUser], [LastUpdat eFunctionI d]) VALUES ('701fb41 c-ffbc-48d 3-9346-45f abaa25619' , 'POOLED PLATELETS| CP2D/XX/20 -24C|For m nf:noninje ctable|Res Leu:<5E6|B acterial t est', 'PLT Pool CP2D MNFNI LUK OPR BacTes t', 'E022' , '@B9 A3 D4 N3', 20 0, 'E8461' , 120, 0, 0, 1, 'E02 2', NULL, 'A', '2016 -07-27 11: 17:06.000' , ' RED A CTED ', 0) | |
| 11847 | INSERT INT O [dbo].[B loodProduc t] ([Blood ProductGui d], [Produ ctName], [ ProductSho rtName], [ ProductTyp eCode], [P roductAttr ibuteForm] , [Product Volume], [ ProductCod e], [Maxim umStorageT ime], [Cro ssmatchReq uiredIndic ator], [Pr oductModif icationInd icator], [ ProductCod eIndicator ], [Origin alProductT ypeCode], [RetireDat e], [Recor dStatusCod e], [LastU pdateDate] , [LastUpd ateUser], [LastUpdat eFunctionI d]) VALUES ('51d09d1 a-2485-493 b-9877-469 9c3796adf' , 'Apheres is PLATELE TS|PAS-C/X X/20-24C|R esLeu:<1E6 |1st conta iner|Bacte rial test' , 'PLT AFR PAS-C LUK OPR 1C Bac T', 'E024' , '@B5 D5 H3 N3', 20 0, 'E8723' , 120, 0, 0, 1, 'E02 4', NULL, 'A', '2016 -07-27 11: 17:06.000' , ' RED A CTED ', 0) | |
| 11848 | INSERT INT O [dbo].[B loodProduc t] ([Blood ProductGui d], [Produ ctName], [ ProductSho rtName], [ ProductTyp eCode], [P roductAttr ibuteForm] , [Product Volume], [ ProductCod e], [Maxim umStorageT ime], [Cro ssmatchReq uiredIndic ator], [Pr oductModif icationInd icator], [ ProductCod eIndicator ], [Origin alProductT ypeCode], [RetireDat e], [Recor dStatusCod e], [LastU pdateDate] , [LastUpd ateUser], [LastUpdat eFunctionI d]) VALUES ('b69ff61 4-15fc-435 6-9cf5-46e 002eaacce' , 'POOLED PLATELETS| CPD>PAS-E/ XX/20-24C| Irradiated |ResLeu:<1 E6|Superna t reduced| Buffy coat plts prep |3 units', 'PLT Pool CPD>PAS-E IRD LUKOP R SUPRed B UFCT 3U', 'E022', '@ DP C2 D5 E A G2 J3', 200, 'E851 2', 120, 0 , 0, 1, 'E 022', NULL , 'A', '20 16-07-27 1 1:17:06.00 0', ' RED A CTED ', 0) | |
| 11849 | INSERT INT O [dbo].[B loodProduc t] ([Blood ProductGui d], [Produ ctName], [ ProductSho rtName], [ ProductTyp eCode], [P roductAttr ibuteForm] , [Product Volume], [ ProductCod e], [Maxim umStorageT ime], [Cro ssmatchReq uiredIndic ator], [Pr oductModif icationInd icator], [ ProductCod eIndicator ], [Origin alProductT ypeCode], [RetireDat e], [Recor dStatusCod e], [LastU pdateDate] , [LastUpd ateUser], [LastUpdat eFunctionI d]) VALUES ('0e59924 3-c370-417 8-bc44-473 a44cd897b' , 'Deglyce rolized RE D BLOOD CE LLS|NS/XX/ refg|Irrad iated', 'R BC Deg NS IRD', 'E00 6', '@CG C 2', 200, ' E8296', 33 6, 0, 0, 1 , 'E006', NULL, 'A', '2016-07- 27 11:17:0 6.000', ' RED A CTED ', 0) | |
| 11850 | INSERT INT O [dbo].[B loodProduc t] ([Blood ProductGui d], [Produ ctName], [ ProductSho rtName], [ ProductTyp eCode], [P roductAttr ibuteForm] , [Product Volume], [ ProductCod e], [Maxim umStorageT ime], [Cro ssmatchReq uiredIndic ator], [Pr oductModif icationInd icator], [ ProductCod eIndicator ], [Origin alProductT ypeCode], [RetireDat e], [Recor dStatusCod e], [LastU pdateDate] , [LastUpd ateUser], [LastUpdat eFunctionI d]) VALUES ('fba9eb3 1-765e-4a9 2-aeac-478 99cb56e93' , 'Apheres is PLATELE TS|ACD-A>P AS-C/XX/20 -24C|ResLe u:<1E6', ' PLT AFR AC D-A>PAS-C LUKOPR', ' E024', '@B H D5', 200 , 'E8353', 120, 0, 0 , 1, 'E024 ', NULL, ' A', '2016- 07-27 11:1 7:06.000', ' RED A CTED ', 0) | |
| 11851 | INSERT INT O [dbo].[B loodProduc t] ([Blood ProductGui d], [Produ ctName], [ ProductSho rtName], [ ProductTyp eCode], [P roductAttr ibuteForm] , [Product Volume], [ ProductCod e], [Maxim umStorageT ime], [Cro ssmatchReq uiredIndic ator], [Pr oductModif icationInd icator], [ ProductCod eIndicator ], [Origin alProductT ypeCode], [RetireDat e], [Recor dStatusCod e], [LastU pdateDate] , [LastUpd ateUser], [LastUpdat eFunctionI d]) VALUES ('5875ccd 3-742f-470 8-8b73-47f 8e8e80856' , 'Apheres is PLATELE TS|ACD-A>P AS-C/XX/20 -24C|ResLe u:<5E6|Pso ralen-trea ted', 'PLT AFR ACD-A >PAS-C LUK OPR Psoral n', 'E024' , '@BH D4 K5', 200, 'E8340', 1 20, 0, 0, 1, 'E024', NULL, 'A' , '2016-07 -27 11:17: 06.000', ' RED A CTED ', 0) | |
| 11852 | INSERT INT O [dbo].[B loodProduc t] ([Blood ProductGui d], [Produ ctName], [ ProductSho rtName], [ ProductTyp eCode], [P roductAttr ibuteForm] , [Product Volume], [ ProductCod e], [Maxim umStorageT ime], [Cro ssmatchReq uiredIndic ator], [Pr oductModif icationInd icator], [ ProductCod eIndicator ], [Origin alProductT ypeCode], [RetireDat e], [Recor dStatusCod e], [LastU pdateDate] , [LastUpd ateUser], [LastUpdat eFunctionI d]) VALUES ('3c19c45 f-cc5c-424 1-8802-492 71c0673e6' , 'Washed Apheresis RED BLOOD CELLS|SAGM /XX/refg|I rradiated| ResLeu:<1E 6|2nd cont ainer|0.5- 0.7', 'RBC AFR Wash SAGM IRD L UKOPR 2C 0 .5-0.7', ' E049', '@A 9 C2 D5 H4 L3', 200, 'E8693', 24, 0, 0, 1, 'E049', NULL, 'A' , '2016-07 -27 11:17: 06.000', ' RED A CTED ', 0) | |
| 11853 | INSERT INT O [dbo].[B loodProduc t] ([Blood ProductGui d], [Produ ctName], [ ProductSho rtName], [ ProductTyp eCode], [P roductAttr ibuteForm] , [Product Volume], [ ProductCod e], [Maxim umStorageT ime], [Cro ssmatchReq uiredIndic ator], [Pr oductModif icationInd icator], [ ProductCod eIndicator ], [Origin alProductT ypeCode], [RetireDat e], [Recor dStatusCod e], [LastU pdateDate] , [LastUpd ateUser], [LastUpdat eFunctionI d]) VALUES ('4c69070 2-409d-45c 4-a65c-493 30fcd1b3a' , 'RED BLO OD CELLS|C PD/450mL/r efg|ResLeu :<1E6|0.50 -0.55', 'R BC CPD LUK OPR 0.50-0 .55', 'E00 2', '@03 D 5 L7', 250 , 'E8217', 504, 0, 0 , 1, 'E002 ', NULL, ' A', '2016- 07-27 11:1 7:06.000', ' RED A CTED ', 0) | |
| 11854 | INSERT INT O [dbo].[B loodProduc t] ([Blood ProductGui d], [Produ ctName], [ ProductSho rtName], [ ProductTyp eCode], [P roductAttr ibuteForm] , [Product Volume], [ ProductCod e], [Maxim umStorageT ime], [Cro ssmatchReq uiredIndic ator], [Pr oductModif icationInd icator], [ ProductCod eIndicator ], [Origin alProductT ypeCode], [RetireDat e], [Recor dStatusCod e], [LastU pdateDate] , [LastUpd ateUser], [LastUpdat eFunctionI d]) VALUES ('2f6c668 4-1113-4b0 d-b600-497 98aa69d88' , 'RED BLO OD CELLS|C PD/500mL/r efg|Open|R esLeu:NS|P lasma adde d', 'RBC C PD OPN LUK OPR PA', ' E002', '@0 4 B2 D2 E4 ', 250, 'E 8477', 24, 0, 0, 1, 'E002', NU LL, 'A', ' 2016-07-27 11:17:06. 000', ' RED A CTED ', 0) | |
| 11855 | INSERT INT O [dbo].[B loodProduc t] ([Blood ProductGui d], [Produ ctName], [ ProductSho rtName], [ ProductTyp eCode], [P roductAttr ibuteForm] , [Product Volume], [ ProductCod e], [Maxim umStorageT ime], [Cro ssmatchReq uiredIndic ator], [Pr oductModif icationInd icator], [ ProductCod eIndicator ], [Origin alProductT ypeCode], [RetireDat e], [Recor dStatusCod e], [LastU pdateDate] , [LastUpd ateUser], [LastUpdat eFunctionI d]) VALUES ('5c72294 6-2fe2-41f 3-9dcf-49d cad54140a' , 'Apheres is PLASMA| ACD-A/XX/< =-20C|For mnf:noninj ectable-co nverted', 'PLASMA AF R ACD-A MN FCNI', 'E0 12', '@56 A7', 225, 'E8356', 8 760, 0, 0, 1, 'E014' , NULL, 'A ', '2016-0 7-27 11:17 :06.000', ' RED A CTED ', 0) | |
| 11856 | INSERT INT O [dbo].[B loodProduc t] ([Blood ProductGui d], [Produ ctName], [ ProductSho rtName], [ ProductTyp eCode], [P roductAttr ibuteForm] , [Product Volume], [ ProductCod e], [Maxim umStorageT ime], [Cro ssmatchReq uiredIndic ator], [Pr oductModif icationInd icator], [ ProductCod eIndicator ], [Origin alProductT ypeCode], [RetireDat e], [Recor dStatusCod e], [LastU pdateDate] , [LastUpd ateUser], [LastUpdat eFunctionI d]) VALUES ('fee6e99 9-b86a-41b c-bf7a-49f d8ce49780' , 'Apheres is PLASMA| ACD-A/XX/< =-18C|<200 mL|RT<=24 h frozen<= 24h', 'PLA SMA AFR AC D-A LowVol ', 'E012', '@47 F4 G G', 225, ' E8179', 87 60, 0, 0, 1, 'E014', NULL, 'A' , '2016-07 -27 11:17: 06.000', ' RED A CTED ', 0) | |
| 11857 | INSERT INT O [dbo].[B loodProduc t] ([Blood ProductGui d], [Produ ctName], [ ProductSho rtName], [ ProductTyp eCode], [P roductAttr ibuteForm] , [Product Volume], [ ProductCod e], [Maxim umStorageT ime], [Cro ssmatchReq uiredIndic ator], [Pr oductModif icationInd icator], [ ProductCod eIndicator ], [Origin alProductT ypeCode], [RetireDat e], [Recor dStatusCod e], [LastU pdateDate] , [LastUpd ateUser], [LastUpdat eFunctionI d]) VALUES ('78a7539 3-6e92-4d2 3-a29a-4a0 7fa24cbcd' , 'Thawed Apheresis PLATELETS| PAS-C/XX/2 0-24C|Irra diated|Res Leu:<5E6', 'PLT AFR Thaw PAS-C IRD LUKOP R', 'E026' , '@B5 C2 D4', 200, 'E8586', 4 , 0, 0, 1, 'E026', N ULL, 'A', '2016-07-2 7 11:17:06 .000', ' RED A CTED ', 0) | |
| 11858 | INSERT INT O [dbo].[B loodProduc t] ([Blood ProductGui d], [Produ ctName], [ ProductSho rtName], [ ProductTyp eCode], [P roductAttr ibuteForm] , [Product Volume], [ ProductCod e], [Maxim umStorageT ime], [Cro ssmatchReq uiredIndic ator], [Pr oductModif icationInd icator], [ ProductCod eIndicator ], [Origin alProductT ypeCode], [RetireDat e], [Recor dStatusCod e], [LastU pdateDate] , [LastUpd ateUser], [LastUpdat eFunctionI d]) VALUES ('e81db90 6-d06d-499 d-8ee3-4a7 f576b789f' , 'Thawed POOLED PLA SMA|CPD/XX /refg|Froz en <=24h|3 units|Pso ralen-trea ted', 'PLA SMA Pool T haw CPD 3U Psoraln', 'E011', ' @06 G7 J3 K5', 500, 'E8397', 4 , 0, 0, 1, 'E055', N ULL, 'A', '2016-07-2 7 11:17:06 .000', ' RED A CTED ', 0) | |
| 11859 | INSERT INT O [dbo].[B loodProduc t] ([Blood ProductGui d], [Produ ctName], [ ProductSho rtName], [ ProductTyp eCode], [P roductAttr ibuteForm] , [Product Volume], [ ProductCod e], [Maxim umStorageT ime], [Cro ssmatchReq uiredIndic ator], [Pr oductModif icationInd icator], [ ProductCod eIndicator ], [Origin alProductT ypeCode], [RetireDat e], [Recor dStatusCod e], [LastU pdateDate] , [LastUpd ateUser], [LastUpdat eFunctionI d]) VALUES ('5c6f6ed 7-30ab-4f8 3-bed2-4ad b793e4720' , 'RED BLO OD CELLS|N S/XX/refg' , 'RBC NS' , 'E002', '@CG', 250 , 'E8285', 24, 0, 0, 1, 'E002' , NULL, 'A ', '2016-0 7-27 11:17 :06.000', ' RED A CTED ', 0) | |
| 11860 | INSERT INT O [dbo].[B loodProduc t] ([Blood ProductGui d], [Produ ctName], [ ProductSho rtName], [ ProductTyp eCode], [P roductAttr ibuteForm] , [Product Volume], [ ProductCod e], [Maxim umStorageT ime], [Cro ssmatchReq uiredIndic ator], [Pr oductModif icationInd icator], [ ProductCod eIndicator ], [Origin alProductT ypeCode], [RetireDat e], [Recor dStatusCod e], [LastU pdateDate] , [LastUpd ateUser], [LastUpdat eFunctionI d]) VALUES ('0b13996 d-ad52-440 c-aa5c-4c0 b24c6365c' , 'RED BLO OD CELLS|C PD/450mL/r efg|Irradi ated|ResLe u:<1E6|>0. 7', 'RBC C PD IRD LUK OPR >0.7', 'E002', ' @03 C2 D5 L5', 250, 'E8210', 5 04, 0, 0, 1, 'E002', NULL, 'A' , '2016-07 -27 11:17: 06.000', ' RED A CTED ', 0) | |
| 11861 | INSERT INT O [dbo].[B loodProduc t] ([Blood ProductGui d], [Produ ctName], [ ProductSho rtName], [ ProductTyp eCode], [P roductAttr ibuteForm] , [Product Volume], [ ProductCod e], [Maxim umStorageT ime], [Cro ssmatchReq uiredIndic ator], [Pr oductModif icationInd icator], [ ProductCod eIndicator ], [Origin alProductT ypeCode], [RetireDat e], [Recor dStatusCod e], [LastU pdateDate] , [LastUpd ateUser], [LastUpdat eFunctionI d]) VALUES ('31288f9 3-5615-477 a-88bc-4c1 5680fc6ad' , 'Frozen PLATELETS| CP2D/XX/<= -18C|For m nf:noninje ctable|Res Leu:<8.3E5 ', 'PLT Fr oz CP2D MN FNI LUKOPR ', 'E025', '@37 A3 D 6', 50, 'E 8476', 876 0, 0, 0, 1 , 'E069', NULL, 'A', '2016-07- 27 11:17:0 6.000', ' RED A CTED ', 0) | |
| 11862 | INSERT INT O [dbo].[B loodProduc t] ([Blood ProductGui d], [Produ ctName], [ ProductSho rtName], [ ProductTyp eCode], [P roductAttr ibuteForm] , [Product Volume], [ ProductCod e], [Maxim umStorageT ime], [Cro ssmatchReq uiredIndic ator], [Pr oductModif icationInd icator], [ ProductCod eIndicator ], [Origin alProductT ypeCode], [RetireDat e], [Recor dStatusCod e], [LastU pdateDate] , [LastUpd ateUser], [LastUpdat eFunctionI d]) VALUES ('f250ede f-9bf4-489 8-8c2b-4cd 6bcce8fd3' , 'Apheres is PLATELE TS|ACD-A>P AS-E/XX/20 -24C|ResLe u:<1E6|Sup ernat redu ced|1st co ntainer', 'PLT AFR A CD-A>PAS-E LUKOPR SU PRed 1C', 'E024', '@ DS D5 EA H 3', 200, ' E8529', 12 0, 0, 0, 1 , 'E024', NULL, 'A', '2016-07- 27 11:17:0 6.000', ' RED A CTED ', 0) | |
| 11863 | INSERT INT O [dbo].[B loodProduc t] ([Blood ProductGui d], [Produ ctName], [ ProductSho rtName], [ ProductTyp eCode], [P roductAttr ibuteForm] , [Product Volume], [ ProductCod e], [Maxim umStorageT ime], [Cro ssmatchReq uiredIndic ator], [Pr oductModif icationInd icator], [ ProductCod eIndicator ], [Origin alProductT ypeCode], [RetireDat e], [Recor dStatusCod e], [LastU pdateDate] , [LastUpd ateUser], [LastUpdat eFunctionI d]) VALUES ('0343af6 1-dccc-418 a-95a8-4d7 5635d03cb' , 'Washed Apheresis PLATELETS| PAS-F/XX/2 0-24C|Open |Irradiate d|ResLeu:< 5E6|3rd co ntainer', 'PLT AFR W ash PAS-F OPN IRD LU KOPR 3C', 'E027', '@ DQ B2 C2 D 4 H5', 200 , 'E8422', 4, 0, 0, 1, 'E027', NULL, 'A' , '2016-07 -27 11:17: 06.000', ' RED A CTED ', 0) | |
| 11864 | INSERT INT O [dbo].[B loodProduc t] ([Blood ProductGui d], [Produ ctName], [ ProductSho rtName], [ ProductTyp eCode], [P roductAttr ibuteForm] , [Product Volume], [ ProductCod e], [Maxim umStorageT ime], [Cro ssmatchReq uiredIndic ator], [Pr oductModif icationInd icator], [ ProductCod eIndicator ], [Origin alProductT ypeCode], [RetireDat e], [Recor dStatusCod e], [LastU pdateDate] , [LastUpd ateUser], [LastUpdat eFunctionI d]) VALUES ('6df9b2b 7-7dba-49c 4-b94e-4d9 47a48b617' , 'Apheres is PLATELE TS|ACD-A>P AS-C/XX/20 -24C|Irrad iated|ResL eu:<5E6|2n d containe r|Psoralen -treated', 'PLT AFR ACD-A>PAS- C IRD LUKO PR 2C Psor aln', 'E02 4', '@BH C 2 D4 H4 K5 ', 200, 'E 8425', 120 , 0, 0, 1, 'E024', N ULL, 'A', '2016-07-2 7 11:17:06 .000', ' RED A CTED ', 0) | |
| 11865 | INSERT INT O [dbo].[B loodProduc t] ([Blood ProductGui d], [Produ ctName], [ ProductSho rtName], [ ProductTyp eCode], [P roductAttr ibuteForm] , [Product Volume], [ ProductCod e], [Maxim umStorageT ime], [Cro ssmatchReq uiredIndic ator], [Pr oductModif icationInd icator], [ ProductCod eIndicator ], [Origin alProductT ypeCode], [RetireDat e], [Recor dStatusCod e], [LastU pdateDate] , [LastUpd ateUser], [LastUpdat eFunctionI d]) VALUES ('c8e9b8e 5-1c0f-48d 7-9402-4dc cdb51bb45' , 'Apheres is FRESH F ROZEN PLAS MA|ACD-A/X X/<=-18C|> =200mL<400 mL|Psorale n-treated' , 'FFP AFR ACD-A Pso raln', 'E0 12', '@47 F5 K5', 22 5, 'E8738' , 8760, 0, 0, 1, 'E0 12', NULL, 'A', '201 6-07-27 11 :17:06.000 ', ' RED A CTED ', 0) | |
| 11866 | INSERT INT O [dbo].[B loodProduc t] ([Blood ProductGui d], [Produ ctName], [ ProductSho rtName], [ ProductTyp eCode], [P roductAttr ibuteForm] , [Product Volume], [ ProductCod e], [Maxim umStorageT ime], [Cro ssmatchReq uiredIndic ator], [Pr oductModif icationInd icator], [ ProductCod eIndicator ], [Origin alProductT ypeCode], [RetireDat e], [Recor dStatusCod e], [LastU pdateDate] , [LastUpd ateUser], [LastUpdat eFunctionI d]) VALUES ('f407f98 f-ba64-4db d-966d-4e5 36e40076a' , 'POOLED PLATELETS| CPD/XX/20- 24C|Irradi ated|ResLe u:<1E6|Pla sma reduce d|Buffy co at plts pr ep|4 units ', 'PLT Po ol CPD IRD LUKOPR PL S Red BUFC T 4U', 'E0 22', '@A7 C2 D5 E5 G 2 J4', 200 , 'E8567', 4, 0, 0, 1, 'E022', NULL, 'A' , '2016-07 -27 11:17: 06.000', ' RED A CTED ', 0) | |
| 11867 | INSERT INT O [dbo].[B loodProduc t] ([Blood ProductGui d], [Produ ctName], [ ProductSho rtName], [ ProductTyp eCode], [P roductAttr ibuteForm] , [Product Volume], [ ProductCod e], [Maxim umStorageT ime], [Cro ssmatchReq uiredIndic ator], [Pr oductModif icationInd icator], [ ProductCod eIndicator ], [Origin alProductT ypeCode], [RetireDat e], [Recor dStatusCod e], [LastU pdateDate] , [LastUpd ateUser], [LastUpdat eFunctionI d]) VALUES ('aa42668 5-e172-4c3 9-a22b-4e5 d67383272' , 'RED BLO OD CELLS|C PD/450mL/r efg|Irradi ated|ResLe u:<1E6|0.5 -0.6', 'RB C CPD IRD LUKOPR 0.5 -.06', 'E0 02', '@03 C2 D5 L2', 250, 'E82 12', 504, 0, 0, 1, ' E002', NUL L, 'A', '2 016-07-27 11:17:06.0 00', ' RED A CTED ', 0) | |
| 11868 | INSERT INT O [dbo].[B loodProduc t] ([Blood ProductGui d], [Produ ctName], [ ProductSho rtName], [ ProductTyp eCode], [P roductAttr ibuteForm] , [Product Volume], [ ProductCod e], [Maxim umStorageT ime], [Cro ssmatchReq uiredIndic ator], [Pr oductModif icationInd icator], [ ProductCod eIndicator ], [Origin alProductT ypeCode], [RetireDat e], [Recor dStatusCod e], [LastU pdateDate] , [LastUpd ateUser], [LastUpdat eFunctionI d]) VALUES ('2d6e217 0-630d-47d 6-bca9-4e8 7e63ac7b7' , 'Apheres is PLATELE TS|ACD-A>P AS-E/XX/20 -24C|ResLe u:<1E6|Sup ernat redu ced|2nd co ntainer', 'PLT AFR A CD-A>PAS-E LUKOPR SU PRed 2C', 'E024', '@ DS D5 EA H 4', 200, ' E8530', 12 0, 0, 0, 1 , 'E024', NULL, 'A', '2016-07- 27 11:17:0 6.000', ' RED A CTED ', 0) | |
| 11869 | INSERT INT O [dbo].[B loodProduc t] ([Blood ProductGui d], [Produ ctName], [ ProductSho rtName], [ ProductTyp eCode], [P roductAttr ibuteForm] , [Product Volume], [ ProductCod e], [Maxim umStorageT ime], [Cro ssmatchReq uiredIndic ator], [Pr oductModif icationInd icator], [ ProductCod eIndicator ], [Origin alProductT ypeCode], [RetireDat e], [Recor dStatusCod e], [LastU pdateDate] , [LastUpd ateUser], [LastUpdat eFunctionI d]) VALUES ('9e4da3b d-a3d8-467 7-86f0-4ec 1d46497b4' , 'Thawed POOLED CRY OPRECIPITA TE|None/XX /rt|Irradi ated|2 uni ts', 'CRYO Pool Thaw None IRD 2U', 'E031 ', '@83 C2 J2', 100, 'E8606', 6, 0, 0, 1 , 'E031', NULL, 'A', '2016-07- 27 11:17:0 6.000', ' RED A CTED ', 0) | |
| 11870 | INSERT INT O [dbo].[B loodProduc t] ([Blood ProductGui d], [Produ ctName], [ ProductSho rtName], [ ProductTyp eCode], [P roductAttr ibuteForm] , [Product Volume], [ ProductCod e], [Maxim umStorageT ime], [Cro ssmatchReq uiredIndic ator], [Pr oductModif icationInd icator], [ ProductCod eIndicator ], [Origin alProductT ypeCode], [RetireDat e], [Recor dStatusCod e], [LastU pdateDate] , [LastUpd ateUser], [LastUpdat eFunctionI d]) VALUES ('f0b1c54 8-4bfd-44e 5-a7de-4ed 50719776e' , 'Apheres is PLATELE TS|ACD-A/X X/20-24C|I rradiated| ResLeu:<5E 6|Approx 3 00 E9 plts |Bacterial test', 'P LT AFR ACD -A IRD LUK OPR BacTes t', 'E024' , '@73 C2 D4 JC N3', 200, 'E86 44', 120, 0, 0, 1, ' E024', NUL L, 'A', '2 016-07-27 11:17:06.0 00', ' RED A CTED ', 0) | |
| 11871 | INSERT INT O [dbo].[B loodProduc t] ([Blood ProductGui d], [Produ ctName], [ ProductSho rtName], [ ProductTyp eCode], [P roductAttr ibuteForm] , [Product Volume], [ ProductCod e], [Maxim umStorageT ime], [Cro ssmatchReq uiredIndic ator], [Pr oductModif icationInd icator], [ ProductCod eIndicator ], [Origin alProductT ypeCode], [RetireDat e], [Recor dStatusCod e], [LastU pdateDate] , [LastUpd ateUser], [LastUpdat eFunctionI d]) VALUES ('9046943 3-94e2-41a b-b716-4fa e9bd016f9' , 'Frozen Apheresis PLATELETS| ACD-A/XX/< =-18C|For mnf:noninj ectable re str use|Ir radiated|R esLeu:<5E6 ', 'PLT AF R Froz ACD -A MNFRNI IRD LUKOPR ', 'E025', '@47 A5 C 2 D4', 200 , 'E8228', 8760, 0, 0, 1, 'E02 5', NULL, 'A', '2016 -07-27 11: 17:06.000' , ' RED A CTED ', 0) | |
| 11872 | INSERT INT O [dbo].[B loodProduc t] ([Blood ProductGui d], [Produ ctName], [ ProductSho rtName], [ ProductTyp eCode], [P roductAttr ibuteForm] , [Product Volume], [ ProductCod e], [Maxim umStorageT ime], [Cro ssmatchReq uiredIndic ator], [Pr oductModif icationInd icator], [ ProductCod eIndicator ], [Origin alProductT ypeCode], [RetireDat e], [Recor dStatusCod e], [LastU pdateDate] , [LastUpd ateUser], [LastUpdat eFunctionI d]) VALUES ('88b7afa e-c270-461 f-a8be-504 a0eaf51ae' , 'POOLED PLATELETS| PAS-E/XX/2 0-24C|ResL eu:<1E6|Bu ffy coat p lts prep|A pprox 120 E9 plts', 'PLT Pool PAS-E LUKO PR BUFCT', 'E022', ' @D5 D5 G2 J9', 200, 'E8197', 4 , 0, 0, 1, 'E022', N ULL, 'A', '2016-07-2 7 11:17:06 .000', ' RED A CTED ', 0) | |
| 11873 | INSERT INT O [dbo].[B loodProduc t] ([Blood ProductGui d], [Produ ctName], [ ProductSho rtName], [ ProductTyp eCode], [P roductAttr ibuteForm] , [Product Volume], [ ProductCod e], [Maxim umStorageT ime], [Cro ssmatchReq uiredIndic ator], [Pr oductModif icationInd icator], [ ProductCod eIndicator ], [Origin alProductT ypeCode], [RetireDat e], [Recor dStatusCod e], [LastU pdateDate] , [LastUpd ateUser], [LastUpdat eFunctionI d]) VALUES ('afa4f3e c-9471-410 0-a5a4-50c fabf0eb3a' , 'Thawed Apheresis FRESH FROZ EN PLASMA| ACD-A/XX/r efg|For mn f:noninjec table|4th container' , 'FFP AFR Thaw ACD- A MNFNI 4C ', 'E013', '@54 A3 H 6', 225, ' E8324', 24 , 0, 0, 1, 'E013', N ULL, 'A', '2016-07-2 7 11:17:06 .000', ' RED A CTED ', 0) | |
| 11874 | INSERT INT O [dbo].[B loodProduc t] ([Blood ProductGui d], [Produ ctName], [ ProductSho rtName], [ ProductTyp eCode], [P roductAttr ibuteForm] , [Product Volume], [ ProductCod e], [Maxim umStorageT ime], [Cro ssmatchReq uiredIndic ator], [Pr oductModif icationInd icator], [ ProductCod eIndicator ], [Origin alProductT ypeCode], [RetireDat e], [Recor dStatusCod e], [LastU pdateDate] , [LastUpd ateUser], [LastUpdat eFunctionI d]) VALUES ('aa0ad47 d-83a7-4e4 8-916a-512 654099a9a' , 'Thawed POOLED CRY OPRECIPITA TE|None/XX /rt|Open|3 units', ' CRYO Pool Thaw None OPN 3U', ' E031', '@8 3 B2 J3', 100, 'E861 0', 4, 0, 0, 1, 'E03 1', NULL, 'A', '2016 -07-27 11: 17:06.000' , ' RED A CTED ', 0) | |
| 11875 | INSERT INT O [dbo].[B loodProduc t] ([Blood ProductGui d], [Produ ctName], [ ProductSho rtName], [ ProductTyp eCode], [P roductAttr ibuteForm] , [Product Volume], [ ProductCod e], [Maxim umStorageT ime], [Cro ssmatchReq uiredIndic ator], [Pr oductModif icationInd icator], [ ProductCod eIndicator ], [Origin alProductT ypeCode], [RetireDat e], [Recor dStatusCod e], [LastU pdateDate] , [LastUpd ateUser], [LastUpdat eFunctionI d]) VALUES ('598b331 8-93eb-476 3-aea2-513 a2cfc95ff' , 'RED BLO OD CELLS|C P2D>AS3/50 0mL/refg|I rradiated| ResLeu:<5E 6|Plasma a dded', 'RB C CP2D>AS3 IRD LUKOP R PA', 'E0 02', '@21 C2 D4 E4', 350, 'E85 61', 672, 0, 0, 1, ' E002', NUL L, 'A', '2 016-07-27 11:17:06.0 00', ' RED A CTED ', 0) | |
| 11876 | INSERT INT O [dbo].[B loodProduc t] ([Blood ProductGui d], [Produ ctName], [ ProductSho rtName], [ ProductTyp eCode], [P roductAttr ibuteForm] , [Product Volume], [ ProductCod e], [Maxim umStorageT ime], [Cro ssmatchReq uiredIndic ator], [Pr oductModif icationInd icator], [ ProductCod eIndicator ], [Origin alProductT ypeCode], [RetireDat e], [Recor dStatusCod e], [LastU pdateDate] , [LastUpd ateUser], [LastUpdat eFunctionI d]) VALUES ('bb03863 2-1bbf-498 7-aacb-516 4207d6cc5' , 'Apheres is PLASMA| ACD-A/XX/< =-18C|>=40 0mL<600mL| RT<=24h fr ozen<=24h| 1st contai ner', 'PLA SMA AFR AC D-A 1C', ' E012', '@4 7 F6 GG H3 ', 225, 'E 8173', 876 0, 0, 0, 1 , 'E014', NULL, 'A', '2016-07- 27 11:17:0 6.000', ' RED A CTED ', 0) | |
| 11877 | INSERT INT O [dbo].[B loodProduc t] ([Blood ProductGui d], [Produ ctName], [ ProductSho rtName], [ ProductTyp eCode], [P roductAttr ibuteForm] , [Product Volume], [ ProductCod e], [Maxim umStorageT ime], [Cro ssmatchReq uiredIndic ator], [Pr oductModif icationInd icator], [ ProductCod eIndicator ], [Origin alProductT ypeCode], [RetireDat e], [Recor dStatusCod e], [LastU pdateDate] , [LastUpd ateUser], [LastUpdat eFunctionI d]) VALUES ('6586472 5-d882-464 f-bb22-526 f0d244550' , 'Apheres is PLATELE TS|ACD-A>P AS-E/XX/20 -24C|Irrad iated|ResL eu:<1E6|3r d containe r', 'PLT A FR ACD-A>P AS-E IRD L UKOPR 3C', 'E024', ' @DS C2 D5 H5', 200, 'E8534', 1 20, 0, 0, 1, 'E024', NULL, 'A' , '2016-07 -27 11:17: 06.000', ' RED A CTED ', 0) | |
| 11878 | INSERT INT O [dbo].[B loodProduc t] ([Blood ProductGui d], [Produ ctName], [ ProductSho rtName], [ ProductTyp eCode], [P roductAttr ibuteForm] , [Product Volume], [ ProductCod e], [Maxim umStorageT ime], [Cro ssmatchReq uiredIndic ator], [Pr oductModif icationInd icator], [ ProductCod eIndicator ], [Origin alProductT ypeCode], [RetireDat e], [Recor dStatusCod e], [LastU pdateDate] , [LastUpd ateUser], [LastUpdat eFunctionI d]) VALUES ('3830ba5 9-df53-4f9 c-9783-533 8d29c3095' , 'Apheres is FRESH F ROZEN PLAS MA|ACD-A/X X/<=-30C|R iboflavin- treated', 'FFP AFR A CD-A Ribo' , 'E012', '@AJ K6', 225, 'E828 2', 8760, 0, 0, 1, ' E012', NUL L, 'A', '2 016-07-27 11:17:06.0 00', ' RED A CTED ', 0) | |
| 11879 | INSERT INT O [dbo].[B loodProduc t] ([Blood ProductGui d], [Produ ctName], [ ProductSho rtName], [ ProductTyp eCode], [P roductAttr ibuteForm] , [Product Volume], [ ProductCod e], [Maxim umStorageT ime], [Cro ssmatchReq uiredIndic ator], [Pr oductModif icationInd icator], [ ProductCod eIndicator ], [Origin alProductT ypeCode], [RetireDat e], [Recor dStatusCod e], [LastU pdateDate] , [LastUpd ateUser], [LastUpdat eFunctionI d]) VALUES ('87783bf 5-9215-43f 1-a924-53a 7e805aeb2' , 'POOLED PLASMA|CPD A-1/XX/<=- 18C|Frozen <=24h|Pso ralen-trea ted', 'PLA SMA Pool C PDA-1 Psor aln', 'E04 0', '@36 G 7 K5', 225 , 'E8429', 8760, 0, 0, 1, 'E04 0', NULL, 'A', '2016 -07-27 11: 17:06.000' , ' RED A CTED ', 0) | |
| 11880 | INSERT INT O [dbo].[B loodProduc t] ([Blood ProductGui d], [Produ ctName], [ ProductSho rtName], [ ProductTyp eCode], [P roductAttr ibuteForm] , [Product Volume], [ ProductCod e], [Maxim umStorageT ime], [Cro ssmatchReq uiredIndic ator], [Pr oductModif icationInd icator], [ ProductCod eIndicator ], [Origin alProductT ypeCode], [RetireDat e], [Recor dStatusCod e], [LastU pdateDate] , [LastUpd ateUser], [LastUpdat eFunctionI d]) VALUES ('f467f86 2-fb02-473 e-91b6-53c 660b74389' , 'Apheres is PLASMA| ACD-A/XX/< =-18C|>=60 0mL|RT<=24 h frozen<= 24h|1st co ntainer', 'PLASMA AF R ACD-A Lr gVol 1C', 'E012', '@ 47 F7 GG H 3', 225, ' E8172', 87 60, 0, 0, 1, 'E014', NULL, 'A' , '2016-07 -27 11:17: 06.000', ' RED A CTED ', 0) | |
| 11881 | INSERT INT O [dbo].[B loodProduc t] ([Blood ProductGui d], [Produ ctName], [ ProductSho rtName], [ ProductTyp eCode], [P roductAttr ibuteForm] , [Product Volume], [ ProductCod e], [Maxim umStorageT ime], [Cro ssmatchReq uiredIndic ator], [Pr oductModif icationInd icator], [ ProductCod eIndicator ], [Origin alProductT ypeCode], [RetireDat e], [Recor dStatusCod e], [LastU pdateDate] , [LastUpd ateUser], [LastUpdat eFunctionI d]) VALUES ('fa0e9bf a-5515-4dc 4-80b8-547 51f4e42d4' , 'RED BLO OD CELLS|C PD/500mL/r efg|Open|I rradiated| ResLeu:NS| Plasma red uced/Plasm a added', 'RBC CPD O PN IRD LUK OPR PLS Re d/PA', 'E0 02', '@04 B2 C2 D2 E E', 250, ' E8454', 24 , 0, 0, 1, 'E002', N ULL, 'A', '2016-07-2 7 11:17:06 .000', ' RED A CTED ', 0) | |
| 11882 | INSERT INT O [dbo].[B loodProduc t] ([Blood ProductGui d], [Produ ctName], [ ProductSho rtName], [ ProductTyp eCode], [P roductAttr ibuteForm] , [Product Volume], [ ProductCod e], [Maxim umStorageT ime], [Cro ssmatchReq uiredIndic ator], [Pr oductModif icationInd icator], [ ProductCod eIndicator ], [Origin alProductT ypeCode], [RetireDat e], [Recor dStatusCod e], [LastU pdateDate] , [LastUpd ateUser], [LastUpdat eFunctionI d]) VALUES ('0736d08 9-c99a-4d4 a-836c-547 683cfdd80' , 'Washed Apheresis RED BLOOD CELLS|SAGM /XX/refg|R esLeu:<1E6 |1st conta iner|0.5-0 .7', 'RBC AFR Wash S AGM LUKOPR 1C 0.5-0. 7', 'E049' , '@A9 D5 H3 L3', 20 0, 'E8690' , 24, 0, 0 , 1, 'E049 ', NULL, ' A', '2016- 07-27 11:1 7:06.000', ' RED A CTED ', 0) | |
| 11883 | INSERT INT O [dbo].[B loodProduc t] ([Blood ProductGui d], [Produ ctName], [ ProductSho rtName], [ ProductTyp eCode], [P roductAttr ibuteForm] , [Product Volume], [ ProductCod e], [Maxim umStorageT ime], [Cro ssmatchReq uiredIndic ator], [Pr oductModif icationInd icator], [ ProductCod eIndicator ], [Origin alProductT ypeCode], [RetireDat e], [Recor dStatusCod e], [LastU pdateDate] , [LastUpd ateUser], [LastUpdat eFunctionI d]) VALUES ('f59e110 e-e2cc-4b8 2-8cb7-54a 5a07906bd' , 'Frozen Apheresis PLATELETS| ACD-A/XX/< =-18C|For mnf:noninj ectable|Ir radiated|R esLeu:<5E6 ', 'PLT AF R Froz ACD -A MNFNI I RD LUKOPR' , 'E025', '@47 A3 C2 D4', 200, 'E8265', 8760, 0, 0 , 1, 'E025 ', NULL, ' A', '2016- 07-27 11:1 7:06.000', ' RED A CTED ', 0) | |
| 11884 | INSERT INT O [dbo].[B loodProduc t] ([Blood ProductGui d], [Produ ctName], [ ProductSho rtName], [ ProductTyp eCode], [P roductAttr ibuteForm] , [Product Volume], [ ProductCod e], [Maxim umStorageT ime], [Cro ssmatchReq uiredIndic ator], [Pr oductModif icationInd icator], [ ProductCod eIndicator ], [Origin alProductT ypeCode], [RetireDat e], [Recor dStatusCod e], [LastU pdateDate] , [LastUpd ateUser], [LastUpdat eFunctionI d]) VALUES ('8972528 2-4c3f-44c 8-b898-555 44188dde9' , 'POOLED PLATELETS| CPD/XX/20- 24C|ResLeu :<1E6', 'P LT Pool CP D LUKOPR', 'E022', ' @A7 D5', 2 00, 'E8255 ', 4, 0, 0 , 1, 'E022 ', NULL, ' A', '2016- 07-27 11:1 7:06.000', ' RED A CTED ', 0) | |
| 11885 | INSERT INT O [dbo].[B loodProduc t] ([Blood ProductGui d], [Produ ctName], [ ProductSho rtName], [ ProductTyp eCode], [P roductAttr ibuteForm] , [Product Volume], [ ProductCod e], [Maxim umStorageT ime], [Cro ssmatchReq uiredIndic ator], [Pr oductModif icationInd icator], [ ProductCod eIndicator ], [Origin alProductT ypeCode], [RetireDat e], [Recor dStatusCod e], [LastU pdateDate] , [LastUpd ateUser], [LastUpdat eFunctionI d]) VALUES ('5b9f301 d-3b3a-420 9-9ef8-55a c233e86ce' , 'Apheres is GRANULO CYTES|NaCi trate/XX/r t|Irradiat ed', 'GRAN AFR NaCit IRD', 'E0 35', '@DJ C2', 150, 'E8189', 2 4, 0, 0, 1 , 'E035', NULL, 'A', '2016-07- 27 11:17:0 6.000', ' RED A CTED ', 0) | |
| 11886 | INSERT INT O [dbo].[B loodProduc t] ([Blood ProductGui d], [Produ ctName], [ ProductSho rtName], [ ProductTyp eCode], [P roductAttr ibuteForm] , [Product Volume], [ ProductCod e], [Maxim umStorageT ime], [Cro ssmatchReq uiredIndic ator], [Pr oductModif icationInd icator], [ ProductCod eIndicator ], [Origin alProductT ypeCode], [RetireDat e], [Recor dStatusCod e], [LastU pdateDate] , [LastUpd ateUser], [LastUpdat eFunctionI d]) VALUES ('57312fc 7-80bd-4ea 6-8b8d-55c aa53af0cd' , 'Thawed Apheresis FRESH FROZ EN PLASMA| ACD-A/XX/r efg|Open|2 nd contain er', 'FFP AFR Thaw A CD-A OPN 2 C', 'E013' , '@54 B2 H4', 225, 'E8574', 2 4, 0, 0, 1 , 'E013', NULL, 'A', '2016-07- 27 11:17:0 6.000', ' RED A CTED ', 0) | |
| 11887 | INSERT INT O [dbo].[B loodProduc t] ([Blood ProductGui d], [Produ ctName], [ ProductSho rtName], [ ProductTyp eCode], [P roductAttr ibuteForm] , [Product Volume], [ ProductCod e], [Maxim umStorageT ime], [Cro ssmatchReq uiredIndic ator], [Pr oductModif icationInd icator], [ ProductCod eIndicator ], [Origin alProductT ypeCode], [RetireDat e], [Recor dStatusCod e], [LastU pdateDate] , [LastUpd ateUser], [LastUpdat eFunctionI d]) VALUES ('f4f2d05 4-3688-45b 7-9c6d-55c fd75586a4' , 'Washed POOLED PLA TELETS|PAS -E/XX/20-2 4C|ResLeu: <1E6|Buffy coat plts prep|5 un its', 'PLT Pool Wash PAS-E LUK OPR BUFCT 5U', 'E023 ', '@D5 D5 G2 J5', 2 00, 'E8507 ', 4, 0, 0 , 1, 'E023 ', NULL, ' A', '2016- 07-27 11:1 7:06.000', ' RED A CTED ', 0) | |
| 11888 | INSERT INT O [dbo].[B loodProduc t] ([Blood ProductGui d], [Produ ctName], [ ProductSho rtName], [ ProductTyp eCode], [P roductAttr ibuteForm] , [Product Volume], [ ProductCod e], [Maxim umStorageT ime], [Cro ssmatchReq uiredIndic ator], [Pr oductModif icationInd icator], [ ProductCod eIndicator ], [Origin alProductT ypeCode], [RetireDat e], [Recor dStatusCod e], [LastU pdateDate] , [LastUpd ateUser], [LastUpdat eFunctionI d]) VALUES ('77e4a4c d-ef3d-44b 6-acb8-564 891423f67' , 'Washed POOLED PLA TELETS|PAS -E/XX/20-2 4C|Open|Ir radiated|R esLeu:<1E6 ', 'PLT Po ol Wash PA S-E OPN IR D LUKOPR', 'E023', ' @D5 B2 C2 D5', 200, 'E8251', 4 , 0, 0, 1, 'E023', N ULL, 'A', '2016-07-2 7 11:17:06 .000', ' RED A CTED ', 0) | |
| 11889 | INSERT INT O [dbo].[B loodProduc t] ([Blood ProductGui d], [Produ ctName], [ ProductSho rtName], [ ProductTyp eCode], [P roductAttr ibuteForm] , [Product Volume], [ ProductCod e], [Maxim umStorageT ime], [Cro ssmatchReq uiredIndic ator], [Pr oductModif icationInd icator], [ ProductCod eIndicator ], [Origin alProductT ypeCode], [RetireDat e], [Recor dStatusCod e], [LastU pdateDate] , [LastUpd ateUser], [LastUpdat eFunctionI d]) VALUES ('1f2b067 2-b4b6-4c4 d-8c03-574 5d24748fc' , 'RED BLO OD CELLS|S AGM/XX/ref g|ResLeu:< 1E6', 'RBC SAGM LUKO PR', 'E002 ', '@A9 D5 ', 350, 'E 8770', 100 8, 0, 0, 1 , 'E002', NULL, 'A', '2016-07- 27 11:17:0 6.000', ' RED A CTED ', 0) | |
| 11890 | INSERT INT O [dbo].[B loodProduc t] ([Blood ProductGui d], [Produ ctName], [ ProductSho rtName], [ ProductTyp eCode], [P roductAttr ibuteForm] , [Product Volume], [ ProductCod e], [Maxim umStorageT ime], [Cro ssmatchReq uiredIndic ator], [Pr oductModif icationInd icator], [ ProductCod eIndicator ], [Origin alProductT ypeCode], [RetireDat e], [Recor dStatusCod e], [LastU pdateDate] , [LastUpd ateUser], [LastUpdat eFunctionI d]) VALUES ('3006157 8-aa64-4d8 9-be56-57d 05df182b1' , 'Frozen POOLED PLA TELETS|CPD /XX/<=-18C |For mnf:i njectable| ResLeu:<5E 6', 'PLT P ool Froz C PD MNFI LU KOPR', 'E0 25', '@35 A2 D4', 20 0, 'E8367' , 8760, 0, 0, 1, 'E0 60', NULL, 'A', '201 6-07-27 11 :17:06.000 ', ' RED A CTED ', 0) | |
| 11891 | INSERT INT O [dbo].[B loodProduc t] ([Blood ProductGui d], [Produ ctName], [ ProductSho rtName], [ ProductTyp eCode], [P roductAttr ibuteForm] , [Product Volume], [ ProductCod e], [Maxim umStorageT ime], [Cro ssmatchReq uiredIndic ator], [Pr oductModif icationInd icator], [ ProductCod eIndicator ], [Origin alProductT ypeCode], [RetireDat e], [Recor dStatusCod e], [LastU pdateDate] , [LastUpd ateUser], [LastUpdat eFunctionI d]) VALUES ('73a5a5d 1-c45c-409 7-a183-57e 9f74f37ba' , 'POOLED PLATELETS| PAS-E/XX/2 0-24C|ResL eu:<1E6|Bu ffy coat p lts prep|4 units|Rib oflavin-tr eated', 'P LT Pool PA S-E LUKOPR BUFCT 4U Ribo', 'E0 22', '@D5 D5 G2 J4 K 6', 200, ' E8711', 4, 0, 0, 1, 'E022', NU LL, 'A', ' 2016-07-27 11:17:06. 000', ' RED A CTED ', 0) | |
| 11892 | INSERT INT O [dbo].[B loodProduc t] ([Blood ProductGui d], [Produ ctName], [ ProductSho rtName], [ ProductTyp eCode], [P roductAttr ibuteForm] , [Product Volume], [ ProductCod e], [Maxim umStorageT ime], [Cro ssmatchReq uiredIndic ator], [Pr oductModif icationInd icator], [ ProductCod eIndicator ], [Origin alProductT ypeCode], [RetireDat e], [Recor dStatusCod e], [LastU pdateDate] , [LastUpd ateUser], [LastUpdat eFunctionI d]) VALUES ('75a5f8f 2-c81a-4dc e-8c7f-587 f6d2a2fc5' , 'Apheres is PLATELE TS|ACD-A>P AS-C/XX/20 -24C|Open| ResLeu:<5E 6|3rd cont ainer|Psor alen-treat ed', 'PLT AFR ACD-A> PAS OPN LU KOPR 3C Ps oraln', 'E 024', '@BH B2 D4 H5 K5', 200, 'E8788', 4 , 0, 0, 1, 'E024', N ULL, 'A', '2016-07-2 7 11:17:06 .000', ' RED A CTED ', 0) | |
| 11893 | INSERT INT O [dbo].[B loodProduc t] ([Blood ProductGui d], [Produ ctName], [ ProductSho rtName], [ ProductTyp eCode], [P roductAttr ibuteForm] , [Product Volume], [ ProductCod e], [Maxim umStorageT ime], [Cro ssmatchReq uiredIndic ator], [Pr oductModif icationInd icator], [ ProductCod eIndicator ], [Origin alProductT ypeCode], [RetireDat e], [Recor dStatusCod e], [LastU pdateDate] , [LastUpd ateUser], [LastUpdat eFunctionI d]) VALUES ('ed56b87 3-591d-4bf 2-93fc-597 a83694891' , 'Apheres is PLATELE TS|ACD-A>P AS-C/XX/20 -24C|For m nf:noninje ctable|Res Leu:<5E6', 'PLT AFR ACD-A>PAS- C MNFNI LU KOPR', 'E0 24', '@BH A3 D4', 20 0, 'E8472' , 120, 0, 0, 1, 'E02 4', NULL, 'A', '2016 -07-27 11: 17:06.000' , ' RED A CTED ', 0) | |
| 11894 | INSERT INT O [dbo].[B loodProduc t] ([Blood ProductGui d], [Produ ctName], [ ProductSho rtName], [ ProductTyp eCode], [P roductAttr ibuteForm] , [Product Volume], [ ProductCod e], [Maxim umStorageT ime], [Cro ssmatchReq uiredIndic ator], [Pr oductModif icationInd icator], [ ProductCod eIndicator ], [Origin alProductT ypeCode], [RetireDat e], [Recor dStatusCod e], [LastU pdateDate] , [LastUpd ateUser], [LastUpdat eFunctionI d]) VALUES ('6f34ffe 1-191f-485 1-ac00-59b 3c32c7d84' , 'Thawed Apheresis FRESH FROZ EN PLASMA| CPD-50/XX/ refg|Irrad iated|Froz en <=24h', 'FFP AFR Thaw CPD-5 0 IRD', 'E 013', '@AX C2 G7', 2 25, 'E8186 ', 24, 0, 0, 1, 'E01 3', NULL, 'A', '2016 -07-27 11: 17:06.000' , ' RED A CTED ', 0) | |
| 11895 | INSERT INT O [dbo].[B loodProduc t] ([Blood ProductGui d], [Produ ctName], [ ProductSho rtName], [ ProductTyp eCode], [P roductAttr ibuteForm] , [Product Volume], [ ProductCod e], [Maxim umStorageT ime], [Cro ssmatchReq uiredIndic ator], [Pr oductModif icationInd icator], [ ProductCod eIndicator ], [Origin alProductT ypeCode], [RetireDat e], [Recor dStatusCod e], [LastU pdateDate] , [LastUpd ateUser], [LastUpdat eFunctionI d]) VALUES ('cffd6e8 2-c02c-433 6-9a35-59f c50e7513e' , 'Apheres is PLATELE TS|PAS-E/X X/20-24C|B acterial m onitoring' , 'PLT AFR PAS-E Bac Mtr', 'E0 24', '@D5 N2', 200, 'E8307', 1 20, 0, 0, 1, 'E024', NULL, 'A' , '2016-07 -27 11:17: 06.000', ' RED A CTED ', 0) | |
| 11896 | INSERT INT O [dbo].[B loodProduc t] ([Blood ProductGui d], [Produ ctName], [ ProductSho rtName], [ ProductTyp eCode], [P roductAttr ibuteForm] , [Product Volume], [ ProductCod e], [Maxim umStorageT ime], [Cro ssmatchReq uiredIndic ator], [Pr oductModif icationInd icator], [ ProductCod eIndicator ], [Origin alProductT ypeCode], [RetireDat e], [Recor dStatusCod e], [LastU pdateDate] , [LastUpd ateUser], [LastUpdat eFunctionI d]) VALUES ('558b304 7-3f58-454 7-87fc-5a0 7123197ce' , 'CRYOPRE CIPITATE|C P2D/XX/<=- 18C', 'CRY O CP2D', ' E028', '@3 7', 15, 'E 8648', 876 0, 0, 0, 1 , 'E028', NULL, 'A', '2016-07- 27 11:17:0 6.000', ' RED A CTED ', 0) | |
| 11897 | INSERT INT O [dbo].[B loodProduc t] ([Blood ProductGui d], [Produ ctName], [ ProductSho rtName], [ ProductTyp eCode], [P roductAttr ibuteForm] , [Product Volume], [ ProductCod e], [Maxim umStorageT ime], [Cro ssmatchReq uiredIndic ator], [Pr oductModif icationInd icator], [ ProductCod eIndicator ], [Origin alProductT ypeCode], [RetireDat e], [Recor dStatusCod e], [LastU pdateDate] , [LastUpd ateUser], [LastUpdat eFunctionI d]) VALUES ('abc7a2e f-b69d-401 3-9a1c-5ac f21df90a1' , 'Thawed POOLED PLA SMA|CP2D/X X/refg|2 u nits|Psora len-treate d', 'PLASM A Pool Tha w CP2D 2U Psoraln', 'E011', '@ 13 J2 K5', 500, 'E84 02', 4, 0, 0, 1, 'E0 55', NULL, 'A', '201 6-07-27 11 :17:06.000 ', ' RED A CTED ', 0) | |
| 11898 | INSERT INT O [dbo].[B loodProduc t] ([Blood ProductGui d], [Produ ctName], [ ProductSho rtName], [ ProductTyp eCode], [P roductAttr ibuteForm] , [Product Volume], [ ProductCod e], [Maxim umStorageT ime], [Cro ssmatchReq uiredIndic ator], [Pr oductModif icationInd icator], [ ProductCod eIndicator ], [Origin alProductT ypeCode], [RetireDat e], [Recor dStatusCod e], [LastU pdateDate] , [LastUpd ateUser], [LastUpdat eFunctionI d]) VALUES ('515b0eb d-479a-46a 3-80f5-5ae 324ff02e6' , 'Thawed Apheresis FRESH FROZ EN PLASMA| ACD-A/XX/r efg|For mn f:noninjec table|2nd container' , 'FFP AFR Thaw ACD- A MNFNI 2C ', 'E013', '@54 A3 H 4', 225, ' E8326', 24 , 0, 0, 1, 'E013', N ULL, 'A', '2016-07-2 7 11:17:06 .000', ' RED A CTED ', 0) | |
| 11899 | INSERT INT O [dbo].[B loodProduc t] ([Blood ProductGui d], [Produ ctName], [ ProductSho rtName], [ ProductTyp eCode], [P roductAttr ibuteForm] , [Product Volume], [ ProductCod e], [Maxim umStorageT ime], [Cro ssmatchReq uiredIndic ator], [Pr oductModif icationInd icator], [ ProductCod eIndicator ], [Origin alProductT ypeCode], [RetireDat e], [Recor dStatusCod e], [LastU pdateDate] , [LastUpd ateUser], [LastUpdat eFunctionI d]) VALUES ('d0e739d 4-98ca-419 4-9e2a-5b2 6d40bfea6' , 'Apheres is PLATELE TS|ACD-A>P AS-C/XX/20 -24C|Open| Irradiated |ResLeu:<5 E6|Plasma reduced/Sa line added |2nd conta iner', 'PL T AFR ACD- A>PAS-C OP N IRD LKPR PLS R/SA 2C', 'E024 ', '@BH B2 C2 D4 EJ H4', 200, 'E8486', 4 , 0, 0, 1, 'E024', N ULL, 'A', '2016-07-2 7 11:17:06 .000', ' RED A CTED ', 0) | |
| 11900 | INSERT INT O [dbo].[B loodProduc t] ([Blood ProductGui d], [Produ ctName], [ ProductSho rtName], [ ProductTyp eCode], [P roductAttr ibuteForm] , [Product Volume], [ ProductCod e], [Maxim umStorageT ime], [Cro ssmatchReq uiredIndic ator], [Pr oductModif icationInd icator], [ ProductCod eIndicator ], [Origin alProductT ypeCode], [RetireDat e], [Recor dStatusCod e], [LastU pdateDate] , [LastUpd ateUser], [LastUpdat eFunctionI d]) VALUES ('c439de6 5-40cb-416 8-a40d-5b2 d814d33cf' , 'Frozen SERUM|None /XX/<=-25C |For mnf:n oninjectab le|Quar:>= 4m/reteste d', 'SERUM Froz None MNFNI QUA R', 'E046' , '@DZ A3 I3', 200, 'E8684', 8 760, 0, 0, 1, 'E076' , NULL, 'A ', '2016-0 7-27 11:17 :06.000', ' RED A CTED ', 0) | |
| 11901 | INSERT INT O [dbo].[B loodProduc t] ([Blood ProductGui d], [Produ ctName], [ ProductSho rtName], [ ProductTyp eCode], [P roductAttr ibuteForm] , [Product Volume], [ ProductCod e], [Maxim umStorageT ime], [Cro ssmatchReq uiredIndic ator], [Pr oductModif icationInd icator], [ ProductCod eIndicator ], [Origin alProductT ypeCode], [RetireDat e], [Recor dStatusCod e], [LastU pdateDate] , [LastUpd ateUser], [LastUpdat eFunctionI d]) VALUES ('d5c074c 6-30e2-4e8 5-a0c5-5b4 8177f7ff8' , 'RED BLO OD CELLS|C PDA-1/500m L/refg|Ope n|Irradiat ed|ResLeu: NS|Plasma reduced/Pl asma added ', 'RBC CP DA-1 OPN I RD LUKOPR PLS Red/PA ', 'E002', '@08 B2 C 2 D2 EE', 250, 'E844 5', 24, 0, 0, 1, 'E0 02', NULL, 'A', '201 6-07-27 11 :17:06.000 ', ' RED A CTED ', 0) | |
| 11902 | INSERT INT O [dbo].[B loodProduc t] ([Blood ProductGui d], [Produ ctName], [ ProductSho rtName], [ ProductTyp eCode], [P roductAttr ibuteForm] , [Product Volume], [ ProductCod e], [Maxim umStorageT ime], [Cro ssmatchReq uiredIndic ator], [Pr oductModif icationInd icator], [ ProductCod eIndicator ], [Origin alProductT ypeCode], [RetireDat e], [Recor dStatusCod e], [LastU pdateDate] , [LastUpd ateUser], [LastUpdat eFunctionI d]) VALUES ('3c704b8 e-0090-49d 2-bc14-5b8 2ce280cc7' , 'Washed RED BLOOD CELLS|NS/X X/refg', ' RBC Wash N S', 'E003' , '@CG', 2 00, 'E8290 ', 336, 0, 0, 1, 'E0 03', NULL, 'A', '201 6-07-27 11 :17:06.000 ', ' RED A CTED ', 0) | |
| 11903 | INSERT INT O [dbo].[B loodProduc t] ([Blood ProductGui d], [Produ ctName], [ ProductSho rtName], [ ProductTyp eCode], [P roductAttr ibuteForm] , [Product Volume], [ ProductCod e], [Maxim umStorageT ime], [Cro ssmatchReq uiredIndic ator], [Pr oductModif icationInd icator], [ ProductCod eIndicator ], [Origin alProductT ypeCode], [RetireDat e], [Recor dStatusCod e], [LastU pdateDate] , [LastUpd ateUser], [LastUpdat eFunctionI d]) VALUES ('84bc0a5 1-b5b5-4e7 a-800e-5bd 88f860586' , 'Apheres is PLATELE TS|ACD-A>P AS-E/XX/20 -24C|Irrad iated|ResL eu:<1E6|2n d containe r', 'PLT A FR ACD-A>P AS-E IRD L UKOPR 2C', 'E024', ' @DS C2 D5 H4', 200, 'E8533', 1 20, 0, 0, 1, 'E024', NULL, 'A' , '2016-07 -27 11:17: 06.000', ' RED A CTED ', 0) | |
| 11904 | INSERT INT O [dbo].[B loodProduc t] ([Blood ProductGui d], [Produ ctName], [ ProductSho rtName], [ ProductTyp eCode], [P roductAttr ibuteForm] , [Product Volume], [ ProductCod e], [Maxim umStorageT ime], [Cro ssmatchReq uiredIndic ator], [Pr oductModif icationInd icator], [ ProductCod eIndicator ], [Origin alProductT ypeCode], [RetireDat e], [Recor dStatusCod e], [LastU pdateDate] , [LastUpd ateUser], [LastUpdat eFunctionI d]) VALUES ('b64e994 3-919f-401 1-84f2-5be 6e081b52b' , 'Washed Apheresis RED BLOOD CELLS|SAGM /XX/refg|R esLeu:<1E6 |2nd conta iner|0.5-0 .7', 'RBC AFR Wash S AGM LUKOPR 2C 0.5-0. 7', 'E049' , '@A9 D5 H4 L3', 20 0, 'E8691' , 24, 0, 0 , 1, 'E049 ', NULL, ' A', '2016- 07-27 11:1 7:06.000', ' RED A CTED ', 0) | |
| 11905 | INSERT INT O [dbo].[B loodProduc t] ([Blood ProductGui d], [Produ ctName], [ ProductSho rtName], [ ProductTyp eCode], [P roductAttr ibuteForm] , [Product Volume], [ ProductCod e], [Maxim umStorageT ime], [Cro ssmatchReq uiredIndic ator], [Pr oductModif icationInd icator], [ ProductCod eIndicator ], [Origin alProductT ypeCode], [RetireDat e], [Recor dStatusCod e], [LastU pdateDate] , [LastUpd ateUser], [LastUpdat eFunctionI d]) VALUES ('a25c331 b-1e51-4e4 f-9060-5be 91db09810' , 'PLASMA| CPD/450mL/ <=-30C|Res Leu:<1E6|F rozen <=24 h|Methylen e blue-tre ated', 'PL ASMA CPD M ethyl Blue ', 'E010', '@A5 D5 G 7 K3', 225 , 'E8268', 8760, 0, 0, 1, 'E01 7', NULL, 'A', '2016 -07-27 11: 17:06.000' , ' RED A CTED ', 0) | |
| 11906 | INSERT INT O [dbo].[B loodProduc t] ([Blood ProductGui d], [Produ ctName], [ ProductSho rtName], [ ProductTyp eCode], [P roductAttr ibuteForm] , [Product Volume], [ ProductCod e], [Maxim umStorageT ime], [Cro ssmatchReq uiredIndic ator], [Pr oductModif icationInd icator], [ ProductCod eIndicator ], [Origin alProductT ypeCode], [RetireDat e], [Recor dStatusCod e], [LastU pdateDate] , [LastUpd ateUser], [LastUpdat eFunctionI d]) VALUES ('0452c44 e-0844-4fc 2-9963-5d2 b9a6c9f82' , 'POOLED PLATELETS| CPD>PAS-E/ XX/20-24C| ResLeu:<1E 6|Supernat reduced|B uffy coat plts prep| 6 units', 'PLT Pool CPD>PAS-E LUKOPR SUP Red BUFCT 6U', 'E022 ', '@DP D5 EA G2 J6' , 200, 'E8 520', 120, 0, 0, 1, 'E022', NU LL, 'A', ' 2016-07-27 11:17:06. 000', ' RED A CTED ', 0) | |
| 11907 | INSERT INT O [dbo].[B loodProduc t] ([Blood ProductGui d], [Produ ctName], [ ProductSho rtName], [ ProductTyp eCode], [P roductAttr ibuteForm] , [Product Volume], [ ProductCod e], [Maxim umStorageT ime], [Cro ssmatchReq uiredIndic ator], [Pr oductModif icationInd icator], [ ProductCod eIndicator ], [Origin alProductT ypeCode], [RetireDat e], [Recor dStatusCod e], [LastU pdateDate] , [LastUpd ateUser], [LastUpdat eFunctionI d]) VALUES ('93edf99 2-f204-4c7 3-8883-5d9 98a8df7fa' , 'Thawed POOLED CRY OPRECIPITA TE|None/XX /rt|Irradi ated|3 uni ts', 'CRYO Pool Thaw None IRD 3U', 'E031 ', '@83 C2 J3', 100, 'E8607', 6, 0, 0, 1 , 'E031', NULL, 'A', '2016-07- 27 11:17:0 6.000', ' RED A CTED ', 0) | |
| 11908 | INSERT INT O [dbo].[B loodProduc t] ([Blood ProductGui d], [Produ ctName], [ ProductSho rtName], [ ProductTyp eCode], [P roductAttr ibuteForm] , [Product Volume], [ ProductCod e], [Maxim umStorageT ime], [Cro ssmatchReq uiredIndic ator], [Pr oductModif icationInd icator], [ ProductCod eIndicator ], [Origin alProductT ypeCode], [RetireDat e], [Recor dStatusCod e], [LastU pdateDate] , [LastUpd ateUser], [LastUpdat eFunctionI d]) VALUES ('0de7d62 9-1f4a-4af 4-a63c-5db 1180675be' , 'Apheres is FRESH F ROZEN PLAS MA|NaCitra te/XX/<=-2 5C|Irradia ted|ResLeu :<1E6|>=20 0mL<400mL| Frozen <=6 h|2nd cont ainer|Quar :>=4m/rete sted', 'FF P AFR NaCi t IRD LUKO PR 2C QUAR ', 'E012', '@CQ C2 D 5 F5 G4 H4 I3', 225, 'E8631', 8760, 0, 0 , 1, 'E012 ', NULL, ' A', '2016- 07-27 11:1 7:06.000', ' RED A CTED ', 0) | |
| 11909 | INSERT INT O [dbo].[B loodProduc t] ([Blood ProductGui d], [Produ ctName], [ ProductSho rtName], [ ProductTyp eCode], [P roductAttr ibuteForm] , [Product Volume], [ ProductCod e], [Maxim umStorageT ime], [Cro ssmatchReq uiredIndic ator], [Pr oductModif icationInd icator], [ ProductCod eIndicator ], [Origin alProductT ypeCode], [RetireDat e], [Recor dStatusCod e], [LastU pdateDate] , [LastUpd ateUser], [LastUpdat eFunctionI d]) VALUES ('9487c82 4-0072-409 f-a059-5e0 25bdf3ed3' , 'Apheres is FRESH F ROZEN PLAS MA|NaCitra te/XX/<=-2 5C|ResLeu: <1E6|>=200 mL<400mL|F rozen <=18 h|1st cont ainer', 'F FP AFR NaC it LUKOPR 1C', 'E012 ', '@CQ D5 F5 G6 H3' , 225, 'E8 633', 8760 , 0, 0, 1, 'E012', N ULL, 'A', '2016-07-2 7 11:17:06 .000', ' RED A CTED ', 0) | |
| 11910 | INSERT INT O [dbo].[B loodProduc t] ([Blood ProductGui d], [Produ ctName], [ ProductSho rtName], [ ProductTyp eCode], [P roductAttr ibuteForm] , [Product Volume], [ ProductCod e], [Maxim umStorageT ime], [Cro ssmatchReq uiredIndic ator], [Pr oductModif icationInd icator], [ ProductCod eIndicator ], [Origin alProductT ypeCode], [RetireDat e], [Recor dStatusCod e], [LastU pdateDate] , [LastUpd ateUser], [LastUpdat eFunctionI d]) VALUES ('90f272f a-0f27-47b 7-937a-5ee 1beafb853' , 'Apheres is PLATELE TS|ACD-A>P AS-D/XX/20 -24C|ResLe u:<1E6', ' PLT AFR AC D-A>PAS-D LUKOPR', ' E024', '@D H D5', 200 , 'E8547', 120, 0, 0 , 1, 'E024 ', NULL, ' A', '2016- 07-27 11:1 7:06.000', ' RED A CTED ', 0) | |
| 11911 | INSERT INT O [dbo].[B loodProduc t] ([Blood ProductGui d], [Produ ctName], [ ProductSho rtName], [ ProductTyp eCode], [P roductAttr ibuteForm] , [Product Volume], [ ProductCod e], [Maxim umStorageT ime], [Cro ssmatchReq uiredIndic ator], [Pr oductModif icationInd icator], [ ProductCod eIndicator ], [Origin alProductT ypeCode], [RetireDat e], [Recor dStatusCod e], [LastU pdateDate] , [LastUpd ateUser], [LastUpdat eFunctionI d]) VALUES ('c3f564d 2-9d46-4fb 1-a8a4-5ef 2717174f6' , 'Washed Apheresis PLATELETS| None/XX/20 -24C|Open| Irradiated |ResLeu:<5 E6|2nd con tainer|Pso ralen-trea ted', 'PLT AFR Wash None OPN I RD 2C Psor aln', 'E02 7', '@71 B 2 C2 D4 H4 K5', 200, 'E8759', 4, 0, 0, 1 , 'E027', NULL, 'A', '2016-07- 27 11:17:0 6.000', ' RED A CTED ', 0) | |
| 11912 | INSERT INT O [dbo].[B loodProduc t] ([Blood ProductGui d], [Produ ctName], [ ProductSho rtName], [ ProductTyp eCode], [P roductAttr ibuteForm] , [Product Volume], [ ProductCod e], [Maxim umStorageT ime], [Cro ssmatchReq uiredIndic ator], [Pr oductModif icationInd icator], [ ProductCod eIndicator ], [Origin alProductT ypeCode], [RetireDat e], [Recor dStatusCod e], [LastU pdateDate] , [LastUpd ateUser], [LastUpdat eFunctionI d]) VALUES ('04fd1c5 7-ad51-4d5 d-97ac-5f3 1eae931f9' , 'Apheres is GRANULO CYTES|NaCi trate-Dext ran/XX/rt| Irradiated ', 'GRAN A FR NaCitra te-Dextran IRD', 'E0 35', '@ED C2', 150, 'E8745', 2 4, 0, 0, 1 , 'E035', NULL, 'A', '2016-07- 27 11:17:0 6.000', ' RED A CTED ', 0) | |
| 11913 | INSERT INT O [dbo].[B loodProduc t] ([Blood ProductGui d], [Produ ctName], [ ProductSho rtName], [ ProductTyp eCode], [P roductAttr ibuteForm] , [Product Volume], [ ProductCod e], [Maxim umStorageT ime], [Cro ssmatchReq uiredIndic ator], [Pr oductModif icationInd icator], [ ProductCod eIndicator ], [Origin alProductT ypeCode], [RetireDat e], [Recor dStatusCod e], [LastU pdateDate] , [LastUpd ateUser], [LastUpdat eFunctionI d]) VALUES ('b525b73 c-2cf4-457 d-a9ed-5f7 665e057ad' , 'POOLED PLATELETS| PAS-E/XX/2 0-24C|ResL eu:<1E6|Ba cterial te st', 'PLT Pool PAS-E LUKOPR Ba cTest', 'E 022', '@D5 D5 N3', 2 00, 'E8495 ', 120, 0, 0, 1, 'E0 22', NULL, 'A', '201 6-07-27 11 :17:06.000 ', ' RED A CTED ', 0) | |
| 11914 | INSERT INT O [dbo].[B loodProduc t] ([Blood ProductGui d], [Produ ctName], [ ProductSho rtName], [ ProductTyp eCode], [P roductAttr ibuteForm] , [Product Volume], [ ProductCod e], [Maxim umStorageT ime], [Cro ssmatchReq uiredIndic ator], [Pr oductModif icationInd icator], [ ProductCod eIndicator ], [Origin alProductT ypeCode], [RetireDat e], [Recor dStatusCod e], [LastU pdateDate] , [LastUpd ateUser], [LastUpdat eFunctionI d]) VALUES ('dd03e7a c-054c-47d c-b314-5ff cd6e07e21' , 'Apheres is PLATELE TS|ACD-A/X X/20-24C|I rradiated| <125 mL|2. 0-4.0 E12 plts', 'PL T AFR ACD- A IRD', 'E 024', '@73 C2 FB JR' , 125, 'E8 279', 120, 0, 0, 1, 'E024', NU LL, 'A', ' 2016-07-27 11:17:06. 000', ' RED A CTED ', 0) | |
| 11915 | INSERT INT O [dbo].[B loodProduc t] ([Blood ProductGui d], [Produ ctName], [ ProductSho rtName], [ ProductTyp eCode], [P roductAttr ibuteForm] , [Product Volume], [ ProductCod e], [Maxim umStorageT ime], [Cro ssmatchReq uiredIndic ator], [Pr oductModif icationInd icator], [ ProductCod eIndicator ], [Origin alProductT ypeCode], [RetireDat e], [Recor dStatusCod e], [LastU pdateDate] , [LastUpd ateUser], [LastUpdat eFunctionI d]) VALUES ('09dd034 a-fa58-467 7-b87e-60a 85f8c206b' , 'Apheres is PLATELE TS|ACD-A>P AS-C/XX/20 -24C|For m nf:noninje ctable|Irr adiated|Re sLeu:<5E6' , 'PLT AFR ACD-A>PAS -C MNFNI I RD LUKOPR' , 'E024', '@BH A3 C2 D4', 200, 'E8471', 120, 0, 0, 1, 'E024' , NULL, 'A ', '2016-0 7-27 11:17 :06.000', ' RED A CTED ', 0) | |
| 11916 | INSERT INT O [dbo].[B loodProduc t] ([Blood ProductGui d], [Produ ctName], [ ProductSho rtName], [ ProductTyp eCode], [P roductAttr ibuteForm] , [Product Volume], [ ProductCod e], [Maxim umStorageT ime], [Cro ssmatchReq uiredIndic ator], [Pr oductModif icationInd icator], [ ProductCod eIndicator ], [Origin alProductT ypeCode], [RetireDat e], [Recor dStatusCod e], [LastU pdateDate] , [LastUpd ateUser], [LastUpdat eFunctionI d]) VALUES ('47bf57d 6-d32c-476 5-a02c-617 95306be9e' , 'Apheres is PLATELE TS|ACD-A/X X/20-24C|I rradiated| ResLeu:<5E 6|3rd cont ainer|Appr ox 300 E9 plts|Bacte rial test' , 'PLT AFR ACD-A IRD LUKOPR 3C BacTest', 'E024', ' @73 C2 D4 H5 JC N3', 200, 'E86 45', 120, 0, 0, 1, ' E024', NUL L, 'A', '2 016-07-27 11:17:06.0 00', ' RED A CTED ', 0) | |
| 11917 | INSERT INT O [dbo].[B loodProduc t] ([Blood ProductGui d], [Produ ctName], [ ProductSho rtName], [ ProductTyp eCode], [P roductAttr ibuteForm] , [Product Volume], [ ProductCod e], [Maxim umStorageT ime], [Cro ssmatchReq uiredIndic ator], [Pr oductModif icationInd icator], [ ProductCod eIndicator ], [Origin alProductT ypeCode], [RetireDat e], [Recor dStatusCod e], [LastU pdateDate] , [LastUpd ateUser], [LastUpdat eFunctionI d]) VALUES ('16ab131 0-c90d-4b2 3-8367-61a 0bda50fc2' , 'Apheres is RED BLO OD CELLS|A CD-A>AS1/X X/refg|Ope n|Irradiat ed|ResLeu: <5E6|Salin e added', 'RBC AFR A CD-A>AS1 O PN IRD LUK OPR SAL Ad d', 'E009' , '@AY B2 C2 D4 EK', 350, 'E82 05', 24, 0 , 0, 1, 'E 009', NULL , 'A', '20 16-07-27 1 1:17:06.00 0', ' RED A CTED ', 0) | |
| 11918 | INSERT INT O [dbo].[B loodProduc t] ([Blood ProductGui d], [Produ ctName], [ ProductSho rtName], [ ProductTyp eCode], [P roductAttr ibuteForm] , [Product Volume], [ ProductCod e], [Maxim umStorageT ime], [Cro ssmatchReq uiredIndic ator], [Pr oductModif icationInd icator], [ ProductCod eIndicator ], [Origin alProductT ypeCode], [RetireDat e], [Recor dStatusCod e], [LastU pdateDate] , [LastUpd ateUser], [LastUpdat eFunctionI d]) VALUES ('48f3060 9-83f2-4b6 1-a155-625 0f27c2ea9' , 'Apheres is FRESH F ROZEN PLAS MA|NaCitra te/XX/<=-2 5C|Irradia ted|ResLeu :<1E6|<200 mL|Frozen <=6h|Quar :>=4m/rete sted', 'FF P AFR NaCi t IRD LUKO PR QUAR', 'E012', '@ CQ C2 D5 F 4 G4 I3', 225, 'E862 9', 8760, 0, 0, 1, ' E012', NUL L, 'A', '2 016-07-27 11:17:06.0 00', ' RED A CTED ', 0) | |
| 11919 | INSERT INT O [dbo].[B loodProduc t] ([Blood ProductGui d], [Produ ctName], [ ProductSho rtName], [ ProductTyp eCode], [P roductAttr ibuteForm] , [Product Volume], [ ProductCod e], [Maxim umStorageT ime], [Cro ssmatchReq uiredIndic ator], [Pr oductModif icationInd icator], [ ProductCod eIndicator ], [Origin alProductT ypeCode], [RetireDat e], [Recor dStatusCod e], [LastU pdateDate] , [LastUpd ateUser], [LastUpdat eFunctionI d]) VALUES ('15ad6d8 b-4c1f-4e9 2-9609-626 702a585cd' , 'Apheres is PLATELE TS|ACD-A/X X/20-24C|F or mnf:non injectable |ResLeu:<5 E6|<3E11 p lts', 'PLT AFR ACD-A MNFNI LUK OPR', 'E02 4', '@73 A 3 D4 JI', 200, 'E846 4', 120, 0 , 0, 1, 'E 024', NULL , 'A', '20 16-07-27 1 1:17:06.00 0', ' RED A CTED ', 0) | |
| 11920 | INSERT INT O [dbo].[B loodProduc t] ([Blood ProductGui d], [Produ ctName], [ ProductSho rtName], [ ProductTyp eCode], [P roductAttr ibuteForm] , [Product Volume], [ ProductCod e], [Maxim umStorageT ime], [Cro ssmatchReq uiredIndic ator], [Pr oductModif icationInd icator], [ ProductCod eIndicator ], [Origin alProductT ypeCode], [RetireDat e], [Recor dStatusCod e], [LastU pdateDate] , [LastUpd ateUser], [LastUpdat eFunctionI d]) VALUES ('676ebfa f-06a4-4d6 1-9f78-630 c34e4c999' , 'Apheres is FRESH F ROZEN PLAS MA|ACD-A/X X/<=-18C|3 rd contain er|Psorale n-treated' , 'FFP AFR ACD-A 3C Psoraln', 'E012', '@ 47 H5 K5', 225, 'E87 36', 8760, 0, 0, 1, 'E012', NU LL, 'A', ' 2016-07-27 11:17:06. 000', ' RED A CTED ', 0) | |
| 11921 | INSERT INT O [dbo].[B loodProduc t] ([Blood ProductGui d], [Produ ctName], [ ProductSho rtName], [ ProductTyp eCode], [P roductAttr ibuteForm] , [Product Volume], [ ProductCod e], [Maxim umStorageT ime], [Cro ssmatchReq uiredIndic ator], [Pr oductModif icationInd icator], [ ProductCod eIndicator ], [Origin alProductT ypeCode], [RetireDat e], [Recor dStatusCod e], [LastU pdateDate] , [LastUpd ateUser], [LastUpdat eFunctionI d]) VALUES ('4c8e91f 8-ac0a-4a0 6-9137-637 157560dfc' , 'Thawed POOLED PLA SMA|CPDA-1 /XX/refg|3 units|Pso ralen-trea ted', 'PLA SMA Pool T haw CPDA-1 3U Psoral n', 'E011' , '@10 J3 K5', 500, 'E8400', 4 , 0, 0, 1, 'E055', N ULL, 'A', '2016-07-2 7 11:17:06 .000', ' RED A CTED ', 0) | |
| 11922 | INSERT INT O [dbo].[B loodProduc t] ([Blood ProductGui d], [Produ ctName], [ ProductSho rtName], [ ProductTyp eCode], [P roductAttr ibuteForm] , [Product Volume], [ ProductCod e], [Maxim umStorageT ime], [Cro ssmatchReq uiredIndic ator], [Pr oductModif icationInd icator], [ ProductCod eIndicator ], [Origin alProductT ypeCode], [RetireDat e], [Recor dStatusCod e], [LastU pdateDate] , [LastUpd ateUser], [LastUpdat eFunctionI d]) VALUES ('090c62f 5-23e7-45a e-aa5d-638 d6429e7e3' , 'Apheres is PLASMA| ACD-A/XX/< =-18C|>=60 0mL|RT<=24 h frozen<= 24h|3rd co ntainer', 'PLASMA AF R ACD-A Lr gVol 3C', 'E012', '@ 47 F7 GG H 5', 225, ' E8164', 87 60, 0, 0, 1, 'E014', NULL, 'A' , '2016-07 -27 11:17: 06.000', ' RED A CTED ', 0) | |
| 11923 | INSERT INT O [dbo].[B loodProduc t] ([Blood ProductGui d], [Produ ctName], [ ProductSho rtName], [ ProductTyp eCode], [P roductAttr ibuteForm] , [Product Volume], [ ProductCod e], [Maxim umStorageT ime], [Cro ssmatchReq uiredIndic ator], [Pr oductModif icationInd icator], [ ProductCod eIndicator ], [Origin alProductT ypeCode], [RetireDat e], [Recor dStatusCod e], [LastU pdateDate] , [LastUpd ateUser], [LastUpdat eFunctionI d]) VALUES ('fafedcf c-ee02-4a5 d-8927-63b c2218a004' , 'POOLED PLATELETS| CPD>PAS-E/ XX/20-24C| Irradiated |ResLeu:<1 E6|Superna t reduced| Buffy coat plts prep |6 units', 'PLT Pool CPD>PAS-E IRD LUKOP R SUPRed B UFCT 6U', 'E022', '@ DP C2 D5 E A G2 J6', 200, 'E851 5', 120, 0 , 0, 1, 'E 022', NULL , 'A', '20 16-07-27 1 1:17:06.00 0', ' RED A CTED ', 0) | |
| 11924 | INSERT INT O [dbo].[B loodProduc t] ([Blood ProductGui d], [Produ ctName], [ ProductSho rtName], [ ProductTyp eCode], [P roductAttr ibuteForm] , [Product Volume], [ ProductCod e], [Maxim umStorageT ime], [Cro ssmatchReq uiredIndic ator], [Pr oductModif icationInd icator], [ ProductCod eIndicator ], [Origin alProductT ypeCode], [RetireDat e], [Recor dStatusCod e], [LastU pdateDate] , [LastUpd ateUser], [LastUpdat eFunctionI d]) VALUES ('5654ea1 7-5dca-43d 8-b85f-647 f1c949567' , 'Apheres is PLASMA| ACD-A/XX/< =-20C|For mnf:inject able|>=200 mL<400mL|2 nd contain er', 'PLAS MA AFR ACD -A MNFI 2C ', 'E012', '@56 A2 F 5 H4', 225 , 'E8231', 8760, 0, 0, 1, 'E01 4', NULL, 'A', '2016 -07-27 11: 17:06.000' , ' RED A CTED ', 0) | |
| 11925 | INSERT INT O [dbo].[B loodProduc t] ([Blood ProductGui d], [Produ ctName], [ ProductSho rtName], [ ProductTyp eCode], [P roductAttr ibuteForm] , [Product Volume], [ ProductCod e], [Maxim umStorageT ime], [Cro ssmatchReq uiredIndic ator], [Pr oductModif icationInd icator], [ ProductCod eIndicator ], [Origin alProductT ypeCode], [RetireDat e], [Recor dStatusCod e], [LastU pdateDate] , [LastUpd ateUser], [LastUpdat eFunctionI d]) VALUES ('d1af43b 0-04cf-4f5 2-88fd-64c 1f525f3dc' , 'Thawed Apheresis PLASMA|ACD -A/XX/refg |>=400mL<6 00mL|RT<=2 4h frozen< =24h', 'PL ASMA AFR T haw ACD-A' , 'E013', '@54 F6 GG ', 225, 'E 8694', 24, 0, 0, 1, 'E015', NU LL, 'A', ' 2016-07-27 11:17:06. 000', ' RED A CTED ', 0) | |
| 11926 | INSERT INT O [dbo].[B loodProduc t] ([Blood ProductGui d], [Produ ctName], [ ProductSho rtName], [ ProductTyp eCode], [P roductAttr ibuteForm] , [Product Volume], [ ProductCod e], [Maxim umStorageT ime], [Cro ssmatchReq uiredIndic ator], [Pr oductModif icationInd icator], [ ProductCod eIndicator ], [Origin alProductT ypeCode], [RetireDat e], [Recor dStatusCod e], [LastU pdateDate] , [LastUpd ateUser], [LastUpdat eFunctionI d]) VALUES ('bbbc2d4 a-e01e-401 7-9ba9-64d 98b5a1bfa' , 'Apheres is PLATELE TS|ACD-A>P AS-D/XX/20 -24C|Irrad iated|ResL eu:<1E6', 'PLT AFR A CD-A>PAS-D IRD LUKOP R', 'E024' , '@DH C2 D5', 200, 'E8548', 1 20, 0, 0, 1, 'E024', NULL, 'A' , '2016-07 -27 11:17: 06.000', ' RED A CTED ', 0) | |
| 11927 | INSERT INT O [dbo].[B loodProduc t] ([Blood ProductGui d], [Produ ctName], [ ProductSho rtName], [ ProductTyp eCode], [P roductAttr ibuteForm] , [Product Volume], [ ProductCod e], [Maxim umStorageT ime], [Cro ssmatchReq uiredIndic ator], [Pr oductModif icationInd icator], [ ProductCod eIndicator ], [Origin alProductT ypeCode], [RetireDat e], [Recor dStatusCod e], [LastU pdateDate] , [LastUpd ateUser], [LastUpdat eFunctionI d]) VALUES ('2a16381 8-2baa-433 6-a729-657 d5bac6954' , 'Frozen Apheresis PLATELETS| ACD-A/XX/< =-18C|For mnf:noninj ectable|Re sLeu:<5E6| 3rd contai ner', 'PLT AFR Froz ACD-A MNFN I LUKOPR 3 C', 'E025' , '@47 A3 D4 H5', 20 0, 'E8272' , 8760, 0, 0, 1, 'E0 25', NULL, 'A', '201 6-07-27 11 :17:06.000 ', ' RED A CTED ', 0) | |
| 11928 | INSERT INT O [dbo].[B loodProduc t] ([Blood ProductGui d], [Produ ctName], [ ProductSho rtName], [ ProductTyp eCode], [P roductAttr ibuteForm] , [Product Volume], [ ProductCod e], [Maxim umStorageT ime], [Cro ssmatchReq uiredIndic ator], [Pr oductModif icationInd icator], [ ProductCod eIndicator ], [Origin alProductT ypeCode], [RetireDat e], [Recor dStatusCod e], [LastU pdateDate] , [LastUpd ateUser], [LastUpdat eFunctionI d]) VALUES ('bc5b8c6 1-8656-42b 8-9562-65b 0e6759e69' , 'Apheres is PLASMA| ACD-A/XX/< =-18C|>=20 0mL<400mL| RT<=24h fr ozen<=24h| 3rd contai ner', 'PLA SMA AFR AC D-A 3C', ' E012', '@4 7 F5 GG H5 ', 225, 'E 8166', 876 0, 0, 0, 1 , 'E014', NULL, 'A', '2016-07- 27 11:17:0 6.000', ' RED A CTED ', 0) | |
| 11929 | INSERT INT O [dbo].[B loodProduc t] ([Blood ProductGui d], [Produ ctName], [ ProductSho rtName], [ ProductTyp eCode], [P roductAttr ibuteForm] , [Product Volume], [ ProductCod e], [Maxim umStorageT ime], [Cro ssmatchReq uiredIndic ator], [Pr oductModif icationInd icator], [ ProductCod eIndicator ], [Origin alProductT ypeCode], [RetireDat e], [Recor dStatusCod e], [LastU pdateDate] , [LastUpd ateUser], [LastUpdat eFunctionI d]) VALUES ('dbe6bcc 2-1b1d-46e 6-9c08-660 420e3ec54' , 'Apheres is PLASMA| NaCitrate/ XX/<=-20C| For mnf:in jectable-s ource', 'P LASMA AFR NaCit MNFS I', 'E012' , '@58 A8' , 225, 'E8 359', 8760 , 0, 0, 1, 'E014', N ULL, 'A', '2016-07-2 7 11:17:06 .000', ' RED A CTED ', 0) | |
| 11930 | INSERT INT O [dbo].[B loodProduc t] ([Blood ProductGui d], [Produ ctName], [ ProductSho rtName], [ ProductTyp eCode], [P roductAttr ibuteForm] , [Product Volume], [ ProductCod e], [Maxim umStorageT ime], [Cro ssmatchReq uiredIndic ator], [Pr oductModif icationInd icator], [ ProductCod eIndicator ], [Origin alProductT ypeCode], [RetireDat e], [Recor dStatusCod e], [LastU pdateDate] , [LastUpd ateUser], [LastUpdat eFunctionI d]) VALUES ('2ba2d02 6-2d5e-46a 1-8906-660 9c4338089' , 'Apheres is IMMUNE PLASMA|CPD /XX/<=-25C |For mnf:i njectable| Hepatitis B', 'PLASM A AFR Imm CPD MNFI H epB', 'E01 2', '@A1 A 2 P5', 225 , 'E8781', 8760, 0, 0, 1, 'E07 9', NULL, 'A', '2016 -07-27 11: 17:06.000' , ' RED A CTED ', 0) | |
| 11931 | INSERT INT O [dbo].[B loodProduc t] ([Blood ProductGui d], [Produ ctName], [ ProductSho rtName], [ ProductTyp eCode], [P roductAttr ibuteForm] , [Product Volume], [ ProductCod e], [Maxim umStorageT ime], [Cro ssmatchReq uiredIndic ator], [Pr oductModif icationInd icator], [ ProductCod eIndicator ], [Origin alProductT ypeCode], [RetireDat e], [Recor dStatusCod e], [LastU pdateDate] , [LastUpd ateUser], [LastUpdat eFunctionI d]) VALUES ('bd84dfe b-bf8f-4b6 5-be3d-660 dc1adcb33' , 'Frozen PLATELETS| CPD/XX/<=- 18C|For mn f:injectab le', 'PLT Froz CPD M NFI', 'E02 5', '@35 A 2', 50, 'E 8366', 876 0, 0, 0, 1 , 'E069', NULL, 'A', '2016-07- 27 11:17:0 6.000', ' RED A CTED ', 0) | |
| 11932 | INSERT INT O [dbo].[B loodProduc t] ([Blood ProductGui d], [Produ ctName], [ ProductSho rtName], [ ProductTyp eCode], [P roductAttr ibuteForm] , [Product Volume], [ ProductCod e], [Maxim umStorageT ime], [Cro ssmatchReq uiredIndic ator], [Pr oductModif icationInd icator], [ ProductCod eIndicator ], [Origin alProductT ypeCode], [RetireDat e], [Recor dStatusCod e], [LastU pdateDate] , [LastUpd ateUser], [LastUpdat eFunctionI d]) VALUES ('957a026 6-4b78-46c f-85ee-666 8befdbe64' , 'Apheres is PLASMA| ACD-A/XX/< =-18C|>=20 0mL<400mL| RT<=24h fr ozen<=24h| 1st contai ner', 'PLA SMA AFR AC D-A 1C', ' E012', '@4 7 F5 GG H3 ', 225, 'E 8174', 876 0, 0, 0, 1 , 'E014', NULL, 'A', '2016-07- 27 11:17:0 6.000', ' RED A CTED ', 0) | |
| 11933 | INSERT INT O [dbo].[B loodProduc t] ([Blood ProductGui d], [Produ ctName], [ ProductSho rtName], [ ProductTyp eCode], [P roductAttr ibuteForm] , [Product Volume], [ ProductCod e], [Maxim umStorageT ime], [Cro ssmatchReq uiredIndic ator], [Pr oductModif icationInd icator], [ ProductCod eIndicator ], [Origin alProductT ypeCode], [RetireDat e], [Recor dStatusCod e], [LastU pdateDate] , [LastUpd ateUser], [LastUpdat eFunctionI d]) VALUES ('cd69501 d-71f3-42a 4-836e-66e 1d38f546f' , 'Apheres is CRYOPRE CIPITATE|A CD-A/300mL /<=-25C|2m L|Quar:>=4 m/retested ', 'CRYO A FR ACD-A Q UAR', 'E03 2', '@EC F D I3', 2, 'E8721', 8 760, 0, 0, 1, 'E032' , NULL, 'A ', '2016-0 7-27 11:17 :06.000', ' RED A CTED ', 0) | |
| 11934 | INSERT INT O [dbo].[B loodProduc t] ([Blood ProductGui d], [Produ ctName], [ ProductSho rtName], [ ProductTyp eCode], [P roductAttr ibuteForm] , [Product Volume], [ ProductCod e], [Maxim umStorageT ime], [Cro ssmatchReq uiredIndic ator], [Pr oductModif icationInd icator], [ ProductCod eIndicator ], [Origin alProductT ypeCode], [RetireDat e], [Recor dStatusCod e], [LastU pdateDate] , [LastUpd ateUser], [LastUpdat eFunctionI d]) VALUES ('6809310 9-042f-46b c-8d3d-67a adb4e610b' , 'Apheres is PLATELE TS|ACD-A/X X/20-24C|R esLeu:<5E6 |Psoralen- treated', 'PLT AFR A CD-A LUKOP R Psoraln' , 'E024', '@73 D4 K5 ', 200, 'E 8331', 120 , 0, 0, 1, 'E024', N ULL, 'A', '2016-07-2 7 11:17:06 .000', ' RED A CTED ', 0) | |
| 11935 | INSERT INT O [dbo].[B loodProduc t] ([Blood ProductGui d], [Produ ctName], [ ProductSho rtName], [ ProductTyp eCode], [P roductAttr ibuteForm] , [Product Volume], [ ProductCod e], [Maxim umStorageT ime], [Cro ssmatchReq uiredIndic ator], [Pr oductModif icationInd icator], [ ProductCod eIndicator ], [Origin alProductT ypeCode], [RetireDat e], [Recor dStatusCod e], [LastU pdateDate] , [LastUpd ateUser], [LastUpdat eFunctionI d]) VALUES ('ac03406 3-e0bb-4be 0-9398-67e fea914369' , 'RED BLO OD CELLS|C PD>AS3/450 mL/refg|Re sLeu:<5E6| Riboflavin -treated', 'RBC CPD> AS3 LUKOPR Ribo', 'E 002', '@EB D4 K6', 3 50, 'E8706 ', 1008, 0 , 0, 1, 'E 002', NULL , 'A', '20 16-07-27 1 1:17:06.00 0', ' RED A CTED ', 0) | |
| 11936 | INSERT INT O [dbo].[B loodProduc t] ([Blood ProductGui d], [Produ ctName], [ ProductSho rtName], [ ProductTyp eCode], [P roductAttr ibuteForm] , [Product Volume], [ ProductCod e], [Maxim umStorageT ime], [Cro ssmatchReq uiredIndic ator], [Pr oductModif icationInd icator], [ ProductCod eIndicator ], [Origin alProductT ypeCode], [RetireDat e], [Recor dStatusCod e], [LastU pdateDate] , [LastUpd ateUser], [LastUpdat eFunctionI d]) VALUES ('e9f2b65 2-3235-406 9-b53a-698 12f31b026' , 'Frozen Apheresis PLATELETS| ACD-A/XX/< =-18C|For mnf:noninj ectable|Re sLeu:<5E6| 1st contai ner', 'PLT AFR Froz ACD-A MNFN I LUKOPR 1 C', 'E025' , '@47 A3 D4 H3', 20 0, 'E8274' , 8760, 0, 0, 1, 'E0 25', NULL, 'A', '201 6-07-27 11 :17:06.000 ', ' RED A CTED ', 0) | |
| 11937 | INSERT INT O [dbo].[B loodProduc t] ([Blood ProductGui d], [Produ ctName], [ ProductSho rtName], [ ProductTyp eCode], [P roductAttr ibuteForm] , [Product Volume], [ ProductCod e], [Maxim umStorageT ime], [Cro ssmatchReq uiredIndic ator], [Pr oductModif icationInd icator], [ ProductCod eIndicator ], [Origin alProductT ypeCode], [RetireDat e], [Recor dStatusCod e], [LastU pdateDate] , [LastUpd ateUser], [LastUpdat eFunctionI d]) VALUES ('a21b3d6 1-cc28-40c 1-aebb-6ad eb087a6d6' , 'Apheres is PLASMA| ACD-A/XX/< =-18C|>=20 0mL<400mL| RT<=24h fr ozen<=24h| 4th contai ner', 'PLA SMA AFR AC D-A 4C', ' E012', '@4 7 F5 GG H6 ', 225, 'E 8162', 876 0, 0, 0, 1 , 'E014', NULL, 'A', '2016-07- 27 11:17:0 6.000', ' RED A CTED ', 0) | |
| 11938 | INSERT INT O [dbo].[B loodProduc t] ([Blood ProductGui d], [Produ ctName], [ ProductSho rtName], [ ProductTyp eCode], [P roductAttr ibuteForm] , [Product Volume], [ ProductCod e], [Maxim umStorageT ime], [Cro ssmatchReq uiredIndic ator], [Pr oductModif icationInd icator], [ ProductCod eIndicator ], [Origin alProductT ypeCode], [RetireDat e], [Recor dStatusCod e], [LastU pdateDate] , [LastUpd ateUser], [LastUpdat eFunctionI d]) VALUES ('fada515 b-a585-4a6 5-95a1-6b1 b4c482051' , 'Apheres is PLATELE TS|ACD-A>P AS-E/XX/20 -24C|ResLe u:<1E6|1st container |Bacterial monitorin g', 'PLT A FR ACD-A>P AS-E LUKOP R 1C BacMt r', 'E024' , '@DS D5 H3 N2', 20 0, 'E8526' , 120, 0, 0, 1, 'E02 4', NULL, 'A', '2016 -07-27 11: 17:06.000' , ' RED A CTED ', 0) | |
| 11939 | INSERT INT O [dbo].[B loodProduc t] ([Blood ProductGui d], [Produ ctName], [ ProductSho rtName], [ ProductTyp eCode], [P roductAttr ibuteForm] , [Product Volume], [ ProductCod e], [Maxim umStorageT ime], [Cro ssmatchReq uiredIndic ator], [Pr oductModif icationInd icator], [ ProductCod eIndicator ], [Origin alProductT ypeCode], [RetireDat e], [Recor dStatusCod e], [LastU pdateDate] , [LastUpd ateUser], [LastUpdat eFunctionI d]) VALUES ('9dd9106 1-3a4a-4dd 4-a0ff-6b1 dd3e9faad' , 'Apheres is PLASMA| ACD-A/XX/< =-18C|>=20 0mL<400mL| Psoralen-t reated', ' PLASMA AFR ACD-A Pso raln', 'E0 12', '@47 F5 K5', 22 5, 'E8351' , 8760, 0, 0, 1, 'E0 14', NULL, 'A', '201 6-07-27 11 :17:06.000 ', ' RED A CTED ', 0) | |
| 11940 | INSERT INT O [dbo].[B loodProduc t] ([Blood ProductGui d], [Produ ctName], [ ProductSho rtName], [ ProductTyp eCode], [P roductAttr ibuteForm] , [Product Volume], [ ProductCod e], [Maxim umStorageT ime], [Cro ssmatchReq uiredIndic ator], [Pr oductModif icationInd icator], [ ProductCod eIndicator ], [Origin alProductT ypeCode], [RetireDat e], [Recor dStatusCod e], [LastU pdateDate] , [LastUpd ateUser], [LastUpdat eFunctionI d]) VALUES ('e1e4495 d-ea8f-490 4-b914-6b6 6210d7a3c' , 'IMMUNE PLASMA|CPD /XX/<=-25C |For mnf:i njectable| CMV', 'PLA SMA Imm CP D MNFI CMV ', 'E010', '@A1 A2 P 3', 225, ' E8777', 87 60, 0, 0, 1, 'E078', NULL, 'A' , '2016-07 -27 11:17: 06.000', ' RED A CTED ', 0) | |
| 11941 | INSERT INT O [dbo].[B loodProduc t] ([Blood ProductGui d], [Produ ctName], [ ProductSho rtName], [ ProductTyp eCode], [P roductAttr ibuteForm] , [Product Volume], [ ProductCod e], [Maxim umStorageT ime], [Cro ssmatchReq uiredIndic ator], [Pr oductModif icationInd icator], [ ProductCod eIndicator ], [Origin alProductT ypeCode], [RetireDat e], [Recor dStatusCod e], [LastU pdateDate] , [LastUpd ateUser], [LastUpdat eFunctionI d]) VALUES ('0072383 0-5523-45f 3-8fe8-6b6 bbb235f9b' , 'POOLED FRESH FROZ EN PLASMA| CP2D/XX/<= -18C|Psora len-treate d', 'FFP P ool CP2D P soraln', ' E010', '@3 7 K5', 500 , 'E8370', 8760, 0, 0, 1, 'E05 9', NULL, 'A', '2016 -07-27 11: 17:06.000' , ' RED A CTED ', 0) | |
| 11942 | INSERT INT O [dbo].[B loodProduc t] ([Blood ProductGui d], [Produ ctName], [ ProductSho rtName], [ ProductTyp eCode], [P roductAttr ibuteForm] , [Product Volume], [ ProductCod e], [Maxim umStorageT ime], [Cro ssmatchReq uiredIndic ator], [Pr oductModif icationInd icator], [ ProductCod eIndicator ], [Origin alProductT ypeCode], [RetireDat e], [Recor dStatusCod e], [LastU pdateDate] , [LastUpd ateUser], [LastUpdat eFunctionI d]) VALUES ('d7004fb 3-9075-4d2 e-8229-6b8 2d2b5975e' , 'POOLED PLASMA|CPD /XX/<=-18C |Psoralen- treated', 'PLASMA Po ol CPD Pso raln', 'E0 40', '@35 K5', 225, 'E8373', 8 760, 0, 0, 1, 'E040' , NULL, 'A ', '2016-0 7-27 11:17 :06.000', ' RED A CTED ', 0) | |
| 11943 | INSERT INT O [dbo].[B loodProduc t] ([Blood ProductGui d], [Produ ctName], [ ProductSho rtName], [ ProductTyp eCode], [P roductAttr ibuteForm] , [Product Volume], [ ProductCod e], [Maxim umStorageT ime], [Cro ssmatchReq uiredIndic ator], [Pr oductModif icationInd icator], [ ProductCod eIndicator ], [Origin alProductT ypeCode], [RetireDat e], [Recor dStatusCod e], [LastU pdateDate] , [LastUpd ateUser], [LastUpdat eFunctionI d]) VALUES ('25167c8 a-a8e2-4a7 2-a785-6b8 7f6caae5f' , 'RED BLO OD CELLS|C PDA-1/450m L/refg|Ope n|Irradiat ed|ResLeu: <5E6|Album in added', 'RBC CPDA -1 OPN IRD LUKOPR AL B Add', 'E 002', '@07 B2 C2 D4 E2', 250, 'E8480', 2 4, 0, 0, 1 , 'E002', NULL, 'A', '2016-07- 27 11:17:0 6.000', ' RED A CTED ', 0) | |
| 11944 | INSERT INT O [dbo].[B loodProduc t] ([Blood ProductGui d], [Produ ctName], [ ProductSho rtName], [ ProductTyp eCode], [P roductAttr ibuteForm] , [Product Volume], [ ProductCod e], [Maxim umStorageT ime], [Cro ssmatchReq uiredIndic ator], [Pr oductModif icationInd icator], [ ProductCod eIndicator ], [Origin alProductT ypeCode], [RetireDat e], [Recor dStatusCod e], [LastU pdateDate] , [LastUpd ateUser], [LastUpdat eFunctionI d]) VALUES ('46b6247 a-a649-4a5 3-8d24-6bc 9e6afc486' , 'RED BLO OD CELLS|C P2D/500mL/ refg|Open| ResLeu:<5E 6|Plasma r educed/Pla sma added' , 'RBC CP2 D IRD LUKO PR PLS Red /PA', 'E00 2', '@12 B 2 D4 EE', 250, 'E843 3', 24, 0, 0, 1, 'E0 02', NULL, 'A', '201 6-07-27 11 :17:06.000 ', ' RED A CTED ', 0) | |
| 11945 | INSERT INT O [dbo].[B loodProduc t] ([Blood ProductGui d], [Produ ctName], [ ProductSho rtName], [ ProductTyp eCode], [P roductAttr ibuteForm] , [Product Volume], [ ProductCod e], [Maxim umStorageT ime], [Cro ssmatchReq uiredIndic ator], [Pr oductModif icationInd icator], [ ProductCod eIndicator ], [Origin alProductT ypeCode], [RetireDat e], [Recor dStatusCod e], [LastU pdateDate] , [LastUpd ateUser], [LastUpdat eFunctionI d]) VALUES ('6c464d2 2-295a-442 5-9ad1-6be 324745eb8' , 'IMMUNE PLASMA|CPD /XX/<=-25C |For mnf:i njectable| Varicella zoster', ' PLASMA Imm CPD MNFI Vzoster', 'E010', '@ A1 A2 P6', 225, 'E87 74', 8760, 0, 0, 1, 'E078', NU LL, 'A', ' 2016-07-27 11:17:06. 000', ' RED A CTED ', 0) | |
| 11946 | INSERT INT O [dbo].[B loodProduc t] ([Blood ProductGui d], [Produ ctName], [ ProductSho rtName], [ ProductTyp eCode], [P roductAttr ibuteForm] , [Product Volume], [ ProductCod e], [Maxim umStorageT ime], [Cro ssmatchReq uiredIndic ator], [Pr oductModif icationInd icator], [ ProductCod eIndicator ], [Origin alProductT ypeCode], [RetireDat e], [Recor dStatusCod e], [LastU pdateDate] , [LastUpd ateUser], [LastUpdat eFunctionI d]) VALUES ('fd84f51 6-2977-41c 7-9044-6bf 7490fadcf' , 'POOLED PLASMA|CP2 D/XX/<=-18 C|3 units| Psoralen-t reated', ' PLASMA Poo l CP2D 3U Psoraln', 'E040', '@ 37 J3 K5', 225, 'E83 81', 8760, 0, 0, 1, 'E040', NU LL, 'A', ' 2016-07-27 11:17:06. 000', ' RED A CTED ', 0) | |
| 11947 | INSERT INT O [dbo].[B loodProduc t] ([Blood ProductGui d], [Produ ctName], [ ProductSho rtName], [ ProductTyp eCode], [P roductAttr ibuteForm] , [Product Volume], [ ProductCod e], [Maxim umStorageT ime], [Cro ssmatchReq uiredIndic ator], [Pr oductModif icationInd icator], [ ProductCod eIndicator ], [Origin alProductT ypeCode], [RetireDat e], [Recor dStatusCod e], [LastU pdateDate] , [LastUpd ateUser], [LastUpdat eFunctionI d]) VALUES ('0804baa 6-c2a4-4fc 9-a7d1-6c0 f29f5e5d4' , 'Thawed Apheresis PLASMA|ACD -A/XX/refg |5th conta iner', 'PL ASMA AFR T haw ACD-A 5C', 'E013 ', '@54 H9 ', 225, 'E 8276', 120 , 0, 0, 1, 'E015', N ULL, 'A', '2016-07-2 7 11:17:06 .000', ' RED A CTED ', 0) | |
| 11948 | INSERT INT O [dbo].[B loodProduc t] ([Blood ProductGui d], [Produ ctName], [ ProductSho rtName], [ ProductTyp eCode], [P roductAttr ibuteForm] , [Product Volume], [ ProductCod e], [Maxim umStorageT ime], [Cro ssmatchReq uiredIndic ator], [Pr oductModif icationInd icator], [ ProductCod eIndicator ], [Origin alProductT ypeCode], [RetireDat e], [Recor dStatusCod e], [LastU pdateDate] , [LastUpd ateUser], [LastUpdat eFunctionI d]) VALUES ('d141316 1-1c0a-422 8-a4a4-6df ae2f52cab' , 'RED BLO OD CELLS|C PD>AS3/500 mL/refg|Op en|Superna t rem', 'R BC CPD>AS3 OPN SR', 'E002', '@ CN B2 E7', 350, 'E82 53', 24, 0 , 0, 1, 'E 002', NULL , 'A', '20 16-07-27 1 1:17:06.00 0', ' RED A CTED ', 0) | |
| 11949 | INSERT INT O [dbo].[B loodProduc t] ([Blood ProductGui d], [Produ ctName], [ ProductSho rtName], [ ProductTyp eCode], [P roductAttr ibuteForm] , [Product Volume], [ ProductCod e], [Maxim umStorageT ime], [Cro ssmatchReq uiredIndic ator], [Pr oductModif icationInd icator], [ ProductCod eIndicator ], [Origin alProductT ypeCode], [RetireDat e], [Recor dStatusCod e], [LastU pdateDate] , [LastUpd ateUser], [LastUpdat eFunctionI d]) VALUES ('4535c53 d-ae2e-4d6 b-93f7-6e5 c7b0bcc0d' , 'Apheres is RED BLO OD CELLS|A CD-A>AS3/X X/refg|Ope n|ResLeu:N S|Plasma a dded|1st c ontainer', 'RBC AFR ACD-A>AS3 OPN LUKOPR PA 1C', ' E009', '@A Z B2 D2 E4 H3', 350, 'E8234', 24, 0, 0, 1, 'E009', NULL, 'A' , '2016-07 -27 11:17: 06.000', ' RED A CTED ', 0) | |
| 11950 | INSERT INT O [dbo].[B loodProduc t] ([Blood ProductGui d], [Produ ctName], [ ProductSho rtName], [ ProductTyp eCode], [P roductAttr ibuteForm] , [Product Volume], [ ProductCod e], [Maxim umStorageT ime], [Cro ssmatchReq uiredIndic ator], [Pr oductModif icationInd icator], [ ProductCod eIndicator ], [Origin alProductT ypeCode], [RetireDat e], [Recor dStatusCod e], [LastU pdateDate] , [LastUpd ateUser], [LastUpdat eFunctionI d]) VALUES ('ffb07ce 2-2cce-45c 0-81f7-6ef c05964910' , 'Frozen Apheresis PLATELETS| ACD-A/XX/< =-18C|For mnf:noninj ectable|Re sLeu:<5E6| <3E11 plts ', 'PLT AF R Froz ACD -A MNFNI L UKOPR', 'E 025', '@47 A3 D4 JI' , 200, 'E8 414', 8760 , 0, 0, 1, 'E025', N ULL, 'A', '2016-07-2 7 11:17:06 .000', ' RED A CTED ', 0) | |
| 11951 | INSERT INT O [dbo].[B loodProduc t] ([Blood ProductGui d], [Produ ctName], [ ProductSho rtName], [ ProductTyp eCode], [P roductAttr ibuteForm] , [Product Volume], [ ProductCod e], [Maxim umStorageT ime], [Cro ssmatchReq uiredIndic ator], [Pr oductModif icationInd icator], [ ProductCod eIndicator ], [Origin alProductT ypeCode], [RetireDat e], [Recor dStatusCod e], [LastU pdateDate] , [LastUpd ateUser], [LastUpdat eFunctionI d]) VALUES ('40faaca 9-996c-472 3-892d-6f9 6f79ff796' , 'RED BLO OD CELLS|C P2D>AS3/50 0mL/refg|O pen|ResLeu :<5E6|Supe rnat rem', 'RBC CP2D >AS3 OPN L UKOPR SR', 'E002', ' @21 B2 D4 E7', 350, 'E8410', 2 4, 0, 0, 1 , 'E002', NULL, 'A', '2016-07- 27 11:17:0 6.000', ' RED A CTED ', 0) | |
| 11952 | INSERT INT O [dbo].[B loodProduc t] ([Blood ProductGui d], [Produ ctName], [ ProductSho rtName], [ ProductTyp eCode], [P roductAttr ibuteForm] , [Product Volume], [ ProductCod e], [Maxim umStorageT ime], [Cro ssmatchReq uiredIndic ator], [Pr oductModif icationInd icator], [ ProductCod eIndicator ], [Origin alProductT ypeCode], [RetireDat e], [Recor dStatusCod e], [LastU pdateDate] , [LastUpd ateUser], [LastUpdat eFunctionI d]) VALUES ('e00e5da d-052e-400 b-a391-6fb e3811af40' , 'Washed Apheresis PLATELETS| PAS-F/XX/2 0-24C|Open |ResLeu:<5 E6|1st con tainer', ' PLT AFR Wa sh PAS-F O PN LUKOPR 1C', 'E027 ', '@DQ B2 D4 H3', 2 00, 'E8416 ', 4, 0, 0 , 1, 'E027 ', NULL, ' A', '2016- 07-27 11:1 7:06.000', ' RED A CTED ', 0) | |
| 11953 | INSERT INT O [dbo].[B loodProduc t] ([Blood ProductGui d], [Produ ctName], [ ProductSho rtName], [ ProductTyp eCode], [P roductAttr ibuteForm] , [Product Volume], [ ProductCod e], [Maxim umStorageT ime], [Cro ssmatchReq uiredIndic ator], [Pr oductModif icationInd icator], [ ProductCod eIndicator ], [Origin alProductT ypeCode], [RetireDat e], [Recor dStatusCod e], [LastU pdateDate] , [LastUpd ateUser], [LastUpdat eFunctionI d]) VALUES ('94a52f6 2-efbb-484 4-b0a1-702 b847bf84b' , 'POOLED PLASMA|CPD /XX/<=-18C |Frozen <= 24h|3 unit s|Psoralen -treated', 'PLASMA P ool CPD 3U Psoraln', 'E040', ' @35 G7 J3 K5', 225, 'E8375', 8 760, 0, 0, 1, 'E040' , NULL, 'A ', '2016-0 7-27 11:17 :06.000', ' RED A CTED ', 0) | |
| 11954 | INSERT INT O [dbo].[B loodProduc t] ([Blood ProductGui d], [Produ ctName], [ ProductSho rtName], [ ProductTyp eCode], [P roductAttr ibuteForm] , [Product Volume], [ ProductCod e], [Maxim umStorageT ime], [Cro ssmatchReq uiredIndic ator], [Pr oductModif icationInd icator], [ ProductCod eIndicator ], [Origin alProductT ypeCode], [RetireDat e], [Recor dStatusCod e], [LastU pdateDate] , [LastUpd ateUser], [LastUpdat eFunctionI d]) VALUES ('2eacd17 4-4347-464 e-a9cb-706 b99dd65d5' , 'Thawed Apheresis POOLED CRY OPRECIPITA TE|None/XX /rt', 'CRY O AFR Pool Thaw None ', 'E031', '@83', 10 0, 'E8431' , 6, 0, 0, 1, 'E071' , NULL, 'A ', '2016-0 7-27 11:17 :06.000', ' RED A CTED ', 0) | |
| 11955 | INSERT INT O [dbo].[B loodProduc t] ([Blood ProductGui d], [Produ ctName], [ ProductSho rtName], [ ProductTyp eCode], [P roductAttr ibuteForm] , [Product Volume], [ ProductCod e], [Maxim umStorageT ime], [Cro ssmatchReq uiredIndic ator], [Pr oductModif icationInd icator], [ ProductCod eIndicator ], [Origin alProductT ypeCode], [RetireDat e], [Recor dStatusCod e], [LastU pdateDate] , [LastUpd ateUser], [LastUpdat eFunctionI d]) VALUES ('b983713 c-eaa2-4bc 7-bce5-70a 0f17770e6' , 'Apheres is PLATELE TS|ACD-A>P AS-C/XX/20 -24C|For m nf:noninje ctable|Res Leu:<5E6|3 rd contain er', 'PLT AFR ACD-A> PAS-C MNFN I LUKOPR 3 C', 'E024' , '@BH A3 D4 H5', 20 0, 'E8466' , 120, 0, 0, 1, 'E02 4', NULL, 'A', '2016 -07-27 11: 17:06.000' , ' RED A CTED ', 0) | |
| 11956 | INSERT INT O [dbo].[B loodProduc t] ([Blood ProductGui d], [Produ ctName], [ ProductSho rtName], [ ProductTyp eCode], [P roductAttr ibuteForm] , [Product Volume], [ ProductCod e], [Maxim umStorageT ime], [Cro ssmatchReq uiredIndic ator], [Pr oductModif icationInd icator], [ ProductCod eIndicator ], [Origin alProductT ypeCode], [RetireDat e], [Recor dStatusCod e], [LastU pdateDate] , [LastUpd ateUser], [LastUpdat eFunctionI d]) VALUES ('a95aac2 6-0b83-432 5-a6a6-710 9134a2bfd' , 'Apheres is PLATELE TS|ACD-A>P AS-C/XX/20 -24C|Open| Irradiated |ResLeu:<5 E6|Superna t reduced' , 'PLT AFR ACD-A>PAS -C OPN IRD LUKOPR SU PRed', 'E0 24', '@BH B2 C2 D4 E A', 200, ' E8190', 4, 0, 0, 1, 'E024', NU LL, 'A', ' 2016-07-27 11:17:06. 000', ' RED A CTED ', 0) | |
| 11957 | INSERT INT O [dbo].[B loodProduc t] ([Blood ProductGui d], [Produ ctName], [ ProductSho rtName], [ ProductTyp eCode], [P roductAttr ibuteForm] , [Product Volume], [ ProductCod e], [Maxim umStorageT ime], [Cro ssmatchReq uiredIndic ator], [Pr oductModif icationInd icator], [ ProductCod eIndicator ], [Origin alProductT ypeCode], [RetireDat e], [Recor dStatusCod e], [LastU pdateDate] , [LastUpd ateUser], [LastUpdat eFunctionI d]) VALUES ('9b6b31e 8-8353-459 a-baab-717 95e9c4374' , 'RED BLO OD CELLS|C PD/450mL/r efg|Irradi ated|ResLe u:<1E6|Pla sma reduce d/Plasma a dded|From 2 donors', 'RBC CPD IRD LUKOPR PLS Red/P A 2DNR', ' E002', '@0 3 C2 D5 EE O3', 250, 'E8213', 504, 0, 0, 1, 'E002' , NULL, 'A ', '2016-0 7-27 11:17 :06.000', ' RED A CTED ', 0) | |
| 11958 | INSERT INT O [dbo].[B loodProduc t] ([Blood ProductGui d], [Produ ctName], [ ProductSho rtName], [ ProductTyp eCode], [P roductAttr ibuteForm] , [Product Volume], [ ProductCod e], [Maxim umStorageT ime], [Cro ssmatchReq uiredIndic ator], [Pr oductModif icationInd icator], [ ProductCod eIndicator ], [Origin alProductT ypeCode], [RetireDat e], [Recor dStatusCod e], [LastU pdateDate] , [LastUpd ateUser], [LastUpdat eFunctionI d]) VALUES ('ba4c254 4-e95c-4e5 f-8e3d-717 ca73ca24d' , 'Washed Apheresis RED BLOOD CELLS|None /XX/refg|O pen|Irradi ated|ResLe u:<5E6|Mul tiple wash cycles|2n d containe r', 'RBC A FR Wash No ne OPN IRD LUKOPR MW C 2C', 'E0 49', '@AS B2 C2 D4 G H H4', 200 , 'E8544', 24, 0, 0, 1, 'E049' , NULL, 'A ', '2016-0 7-27 11:17 :06.000', ' RED A CTED ', 0) | |
| 11959 | INSERT INT O [dbo].[B loodProduc t] ([Blood ProductGui d], [Produ ctName], [ ProductSho rtName], [ ProductTyp eCode], [P roductAttr ibuteForm] , [Product Volume], [ ProductCod e], [Maxim umStorageT ime], [Cro ssmatchReq uiredIndic ator], [Pr oductModif icationInd icator], [ ProductCod eIndicator ], [Origin alProductT ypeCode], [RetireDat e], [Recor dStatusCod e], [LastU pdateDate] , [LastUpd ateUser], [LastUpdat eFunctionI d]) VALUES ('77a2eba 9-d237-4a3 a-9538-724 6b0c29f35' , 'Thawed Apheresis FRESH FROZ EN PLASMA| NaCitrate/ XX/refg|Re sLeu:<1E6| >=200mL<40 0mL|Frozen <=24h|Qua r:>=112d/r etested', 'FFP AFR T haw NaCit LUKOPR QUA R', 'E013' , '@55 D5 F5 G7 I4', 225, 'E86 49', 24, 0 , 0, 1, 'E 013', NULL , 'A', '20 16-07-27 1 1:17:06.00 0', ' RED A CTED ', 0) | |
| 11960 | INSERT INT O [dbo].[B loodProduc t] ([Blood ProductGui d], [Produ ctName], [ ProductSho rtName], [ ProductTyp eCode], [P roductAttr ibuteForm] , [Product Volume], [ ProductCod e], [Maxim umStorageT ime], [Cro ssmatchReq uiredIndic ator], [Pr oductModif icationInd icator], [ ProductCod eIndicator ], [Origin alProductT ypeCode], [RetireDat e], [Recor dStatusCod e], [LastU pdateDate] , [LastUpd ateUser], [LastUpdat eFunctionI d]) VALUES ('3f35341 2-9af1-497 2-905f-72b 04f829674' , 'Apheres is CRYOPRE CIPITATE|A CD-A/300mL /<=-25C|1m L|Quar:>=4 m/retested ', 'CRYO A FR ACD-A Q UAR', 'E03 2', '@EC F C I3', 1, 'E8720', 8 760, 0, 0, 1, 'E032' , NULL, 'A ', '2016-0 7-27 11:17 :06.000', ' RED A CTED ', 0) | |
| 11961 | INSERT INT O [dbo].[B loodProduc t] ([Blood ProductGui d], [Produ ctName], [ ProductSho rtName], [ ProductTyp eCode], [P roductAttr ibuteForm] , [Product Volume], [ ProductCod e], [Maxim umStorageT ime], [Cro ssmatchReq uiredIndic ator], [Pr oductModif icationInd icator], [ ProductCod eIndicator ], [Origin alProductT ypeCode], [RetireDat e], [Recor dStatusCod e], [LastU pdateDate] , [LastUpd ateUser], [LastUpdat eFunctionI d]) VALUES ('171e507 8-ce71-425 d-93f3-72c 5ad4d2baa' , 'POOLED PLATELETS| PAS-C/XX/2 0-24C|ResL eu:<5E6|Fr om 5 donor s', 'PLT P ool PAS-C LUKOPR 5DN RD', 'E022 ', '@B5 D4 O6', 200, 'E8664', 4, 0, 0, 1 , 'E022', NULL, 'A', '2016-07- 27 11:17:0 6.000', ' RED A CTED ', 0) | |
| 11962 | INSERT INT O [dbo].[B loodProduc t] ([Blood ProductGui d], [Produ ctName], [ ProductSho rtName], [ ProductTyp eCode], [P roductAttr ibuteForm] , [Product Volume], [ ProductCod e], [Maxim umStorageT ime], [Cro ssmatchReq uiredIndic ator], [Pr oductModif icationInd icator], [ ProductCod eIndicator ], [Origin alProductT ypeCode], [RetireDat e], [Recor dStatusCod e], [LastU pdateDate] , [LastUpd ateUser], [LastUpdat eFunctionI d]) VALUES ('c63af6b 4-17b7-479 8-926f-72c ff52f6a94' , 'Apheres is PLATELE TS|ACD-A/X X/20-24C|O pen|ResLeu :<5E6|Plas ma reduced /Saline ad ded', 'PLT AFR ACD-A OPN LUKOP R PLS Red/ SAL Add', 'E024', '@ 73 B2 D4 E J', 200, ' E8559', 4, 0, 0, 1, 'E024', NU LL, 'A', ' 2016-07-27 11:17:06. 000', ' RED A CTED ', 0) | |
| 11963 | INSERT INT O [dbo].[B loodProduc t] ([Blood ProductGui d], [Produ ctName], [ ProductSho rtName], [ ProductTyp eCode], [P roductAttr ibuteForm] , [Product Volume], [ ProductCod e], [Maxim umStorageT ime], [Cro ssmatchReq uiredIndic ator], [Pr oductModif icationInd icator], [ ProductCod eIndicator ], [Origin alProductT ypeCode], [RetireDat e], [Recor dStatusCod e], [LastU pdateDate] , [LastUpd ateUser], [LastUpdat eFunctionI d]) VALUES ('d461150 f-86ac-4a4 c-8acb-733 45aeff1c6' , 'Apheres is FRESH F ROZEN PLAS MA|NaCitra te/XX/<=-2 5C|ResLeu: <1E6|>=600 mL|Frozen <=18h', 'F FP AFR NaC it LUKOPR LrgVol', ' E012', '@C Q D5 F7 G6 ', 225, 'E 8632', 876 0, 0, 0, 1 , 'E012', NULL, 'A', '2016-07- 27 11:17:0 6.000', ' RED A CTED ', 0) | |
| 11964 | INSERT INT O [dbo].[B loodProduc t] ([Blood ProductGui d], [Produ ctName], [ ProductSho rtName], [ ProductTyp eCode], [P roductAttr ibuteForm] , [Product Volume], [ ProductCod e], [Maxim umStorageT ime], [Cro ssmatchReq uiredIndic ator], [Pr oductModif icationInd icator], [ ProductCod eIndicator ], [Origin alProductT ypeCode], [RetireDat e], [Recor dStatusCod e], [LastU pdateDate] , [LastUpd ateUser], [LastUpdat eFunctionI d]) VALUES ('0065c84 b-24d4-481 2-be5f-733 c16c900b8' , 'POOLED PLATELETS| CPD>PAS-E/ XX/20-24C| Irradiated |Bacterial monitorin g', 'PLT P ool CPD>PA S-E IRD Ba c Mtr', 'E 022', '@DP C2 N2', 2 00, 'E8311 ', 120, 0, 0, 1, 'E0 22', NULL, 'A', '201 6-07-27 11 :17:06.000 ', ' RED A CTED ', 0) | |
| 11965 | INSERT INT O [dbo].[B loodProduc t] ([Blood ProductGui d], [Produ ctName], [ ProductSho rtName], [ ProductTyp eCode], [P roductAttr ibuteForm] , [Product Volume], [ ProductCod e], [Maxim umStorageT ime], [Cro ssmatchReq uiredIndic ator], [Pr oductModif icationInd icator], [ ProductCod eIndicator ], [Origin alProductT ypeCode], [RetireDat e], [Recor dStatusCod e], [LastU pdateDate] , [LastUpd ateUser], [LastUpdat eFunctionI d]) VALUES ('a0909ae f-5ca7-4d1 d-a2ec-736 bce36a4ea' , 'Deglyce rolized RE D BLOOD CE LLS|AS3/45 0mL/refg|R esLeu:<5E6 ', 'RBC De g AS3 LUKO PR', 'E006 ', '@D3 D4 ', 200, 'E 8478', 336 , 0, 0, 1, 'E006', N ULL, 'A', '2016-07-2 7 11:17:06 .000', ' RED A CTED ', 0) | |
| 11966 | INSERT INT O [dbo].[B loodProduc t] ([Blood ProductGui d], [Produ ctName], [ ProductSho rtName], [ ProductTyp eCode], [P roductAttr ibuteForm] , [Product Volume], [ ProductCod e], [Maxim umStorageT ime], [Cro ssmatchReq uiredIndic ator], [Pr oductModif icationInd icator], [ ProductCod eIndicator ], [Origin alProductT ypeCode], [RetireDat e], [Recor dStatusCod e], [LastU pdateDate] , [LastUpd ateUser], [LastUpdat eFunctionI d]) VALUES ('4656d37 0-80f9-47c 8-be39-73a 50b0fb6ab' , 'RED BLO OD CELLS|C P2D>AS3/50 0mL/refg|O pen|Irradi ated|ResLe u:NS|Super nat rem/Pl asma added ', 'RBC CP 2D>AS3 OPN IRD LUKOP R SR/PA', 'E002', '@ 21 B2 C2 D 2 E8', 350 , 'E8184', 24, 0, 0, 1, 'E002' , NULL, 'A ', '2016-0 7-27 11:17 :06.000', ' RED A CTED ', 0) | |
| 11967 | INSERT INT O [dbo].[B loodProduc t] ([Blood ProductGui d], [Produ ctName], [ ProductSho rtName], [ ProductTyp eCode], [P roductAttr ibuteForm] , [Product Volume], [ ProductCod e], [Maxim umStorageT ime], [Cro ssmatchReq uiredIndic ator], [Pr oductModif icationInd icator], [ ProductCod eIndicator ], [Origin alProductT ypeCode], [RetireDat e], [Recor dStatusCod e], [LastU pdateDate] , [LastUpd ateUser], [LastUpdat eFunctionI d]) VALUES ('5ecc541 5-58b0-443 2-b464-73d c66b1fe87' , 'Apheres is PLATELE TS|ACD-A>P AS-C/XX/20 -24C|Open| ResLeu:<5E 6|Supernat reduced|2 nd contain er', 'PLT AFR ACD-A> PAS-C OPN LUKOPR SUP Red 2C', ' E024', '@B H B2 D4 EA H4', 200, 'E8580', 4, 0, 0, 1 , 'E024', NULL, 'A', '2016-07- 27 11:17:0 6.000', ' RED A CTED ', 0) | |
| 11968 | INSERT INT O [dbo].[B loodProduc t] ([Blood ProductGui d], [Produ ctName], [ ProductSho rtName], [ ProductTyp eCode], [P roductAttr ibuteForm] , [Product Volume], [ ProductCod e], [Maxim umStorageT ime], [Cro ssmatchReq uiredIndic ator], [Pr oductModif icationInd icator], [ ProductCod eIndicator ], [Origin alProductT ypeCode], [RetireDat e], [Recor dStatusCod e], [LastU pdateDate] , [LastUpd ateUser], [LastUpdat eFunctionI d]) VALUES ('f2462cd f-cc0e-4bb 1-80f3-74d b7c89e309' , 'PLATELE TS|NS/XX/2 0-24C|Irra diated', ' PLT NS IRD ', 'E020', '@72 C2', 50, 'E830 0', 120, 0 , 0, 1, 'E 020', NULL , 'A', '20 16-07-27 1 1:17:06.00 0', ' RED A CTED ', 0) | |
| 11969 | INSERT INT O [dbo].[B loodProduc t] ([Blood ProductGui d], [Produ ctName], [ ProductSho rtName], [ ProductTyp eCode], [P roductAttr ibuteForm] , [Product Volume], [ ProductCod e], [Maxim umStorageT ime], [Cro ssmatchReq uiredIndic ator], [Pr oductModif icationInd icator], [ ProductCod eIndicator ], [Origin alProductT ypeCode], [RetireDat e], [Recor dStatusCod e], [LastU pdateDate] , [LastUpd ateUser], [LastUpdat eFunctionI d]) VALUES ('5737569 a-89eb-4a4 f-8670-74d dd4b0f3b4' , 'Washed Apheresis PLATELETS| None/XX/20 -24C|Open| ResLeu:<5E 6|Supernat reduced|1 st contain er|Psorale n-treated' , 'PLT AFR Wash None OPN LUKOP R SUPRed 1 C Psoraln' , 'E027', '@71 B2 D4 EA H3 K5' , 200, 'E8 791', 4, 0 , 0, 1, 'E 027', NULL , 'A', '20 16-07-27 1 1:17:06.00 0', ' RED A CTED ', 0) | |
| 11970 | INSERT INT O [dbo].[B loodProduc t] ([Blood ProductGui d], [Produ ctName], [ ProductSho rtName], [ ProductTyp eCode], [P roductAttr ibuteForm] , [Product Volume], [ ProductCod e], [Maxim umStorageT ime], [Cro ssmatchReq uiredIndic ator], [Pr oductModif icationInd icator], [ ProductCod eIndicator ], [Origin alProductT ypeCode], [RetireDat e], [Recor dStatusCod e], [LastU pdateDate] , [LastUpd ateUser], [LastUpdat eFunctionI d]) VALUES ('9f9968c 1-c551-474 f-ad7b-753 dc0ec0b7d' , 'Apheres is FRESH F ROZEN PLAS MA|NaCitra te/XX/<=-2 5C|ResLeu: <1E6|>=200 mL<400mL|F rozen <=18 h|3rd cont ainer', 'F FP AFR NaC it LUKOPR 3C', 'E012 ', '@CQ D5 F5 G6 H5' , 225, 'E8 635', 8760 , 0, 0, 1, 'E012', N ULL, 'A', '2016-07-2 7 11:17:06 .000', ' RED A CTED ', 0) | |
| 11971 | INSERT INT O [dbo].[B loodProduc t] ([Blood ProductGui d], [Produ ctName], [ ProductSho rtName], [ ProductTyp eCode], [P roductAttr ibuteForm] , [Product Volume], [ ProductCod e], [Maxim umStorageT ime], [Cro ssmatchReq uiredIndic ator], [Pr oductModif icationInd icator], [ ProductCod eIndicator ], [Origin alProductT ypeCode], [RetireDat e], [Recor dStatusCod e], [LastU pdateDate] , [LastUpd ateUser], [LastUpdat eFunctionI d]) VALUES ('c7a2e66 3-4b53-401 e-81d8-759 65c915a5d' , 'Apheres is RED BLO OD CELLS|A CD-A>AS1/X X/refg|Ope n|ResLeu:N S|Supernat rem/Plasm a added|1s t containe r', 'RBC A FR ACD-A>A S1 OPN LUK OPR SR/PA 1C', 'E009 ', '@AY B2 D2 E8 H3' , 350, 'E8 237', 24, 0, 0, 1, ' E009', NUL L, 'A', '2 016-07-27 11:17:06.0 00', ' RED A CTED ', 0) | |
| 11972 | INSERT INT O [dbo].[B loodProduc t] ([Blood ProductGui d], [Produ ctName], [ ProductSho rtName], [ ProductTyp eCode], [P roductAttr ibuteForm] , [Product Volume], [ ProductCod e], [Maxim umStorageT ime], [Cro ssmatchReq uiredIndic ator], [Pr oductModif icationInd icator], [ ProductCod eIndicator ], [Origin alProductT ypeCode], [RetireDat e], [Recor dStatusCod e], [LastU pdateDate] , [LastUpd ateUser], [LastUpdat eFunctionI d]) VALUES ('f418e1a 0-3536-4b7 e-9d71-76a 02cefbda4' , 'Apheres is PLATELE TS|ACD-A/X X/20-24C|R esLeu:<5E6 |Plasma re duced/Plas ma added|< 3E11 plts' , 'PLT AFR ACD-A LUK OPR PLS Re d/PA', 'E0 24', '@73 D4 EE JI', 200, 'E85 76', 120, 0, 0, 1, ' E024', NUL L, 'A', '2 016-07-27 11:17:06.0 00', ' RED A CTED ', 0) | |
| 11973 | INSERT INT O [dbo].[B loodProduc t] ([Blood ProductGui d], [Produ ctName], [ ProductSho rtName], [ ProductTyp eCode], [P roductAttr ibuteForm] , [Product Volume], [ ProductCod e], [Maxim umStorageT ime], [Cro ssmatchReq uiredIndic ator], [Pr oductModif icationInd icator], [ ProductCod eIndicator ], [Origin alProductT ypeCode], [RetireDat e], [Recor dStatusCod e], [LastU pdateDate] , [LastUpd ateUser], [LastUpdat eFunctionI d]) VALUES ('aa09b0a 2-7095-4ff 4-86a8-77f 86c0c7545' , 'POOLED PLASMA|CPD /XX/<=-18C |Frozen <= 24h|Psoral en-treated ', 'PLASMA Pool CPD Psoraln', 'E040', '@ 35 G7 K5', 225, 'E83 76', 8760, 0, 0, 1, 'E040', NU LL, 'A', ' 2016-07-27 11:17:06. 000', ' RED A CTED ', 0) | |
| 11974 | INSERT INT O [dbo].[B loodProduc t] ([Blood ProductGui d], [Produ ctName], [ ProductSho rtName], [ ProductTyp eCode], [P roductAttr ibuteForm] , [Product Volume], [ ProductCod e], [Maxim umStorageT ime], [Cro ssmatchReq uiredIndic ator], [Pr oductModif icationInd icator], [ ProductCod eIndicator ], [Origin alProductT ypeCode], [RetireDat e], [Recor dStatusCod e], [LastU pdateDate] , [LastUpd ateUser], [LastUpdat eFunctionI d]) VALUES ('d179119 d-d58c-415 b-b861-781 bde3760bf' , 'Apheres is PLATELE TS|ACD-A/X X/20-24C|O pen|ResLeu :<5E6|Plas ma reduced |2nd conta iner|Psora len-treate d', 'PLT A FR ACD-A O PN LUKOPR PLS Red 2C Psoraln', 'E024', ' @73 B2 D4 E5 H4 K5', 200, 'E87 05', 4, 0, 0, 1, 'E0 24', NULL, 'A', '201 6-07-27 11 :17:06.000 ', ' RED A CTED ', 0) | |
| 11975 | INSERT INT O [dbo].[B loodProduc t] ([Blood ProductGui d], [Produ ctName], [ ProductSho rtName], [ ProductTyp eCode], [P roductAttr ibuteForm] , [Product Volume], [ ProductCod e], [Maxim umStorageT ime], [Cro ssmatchReq uiredIndic ator], [Pr oductModif icationInd icator], [ ProductCod eIndicator ], [Origin alProductT ypeCode], [RetireDat e], [Recor dStatusCod e], [LastU pdateDate] , [LastUpd ateUser], [LastUpdat eFunctionI d]) VALUES ('da1276b 1-a855-467 5-a9ad-785 9d9abcfb7' , 'Apheres is PLATELE TS|ACD-A/X X/20-24C|R esLeu:<5E6 |Bacterial test', 'P LT AFR ACD -A LUKOPR BacTest', 'E024', '@ 73 D4 N3', 200, 'E87 61', 120, 0, 0, 1, ' E024', NUL L, 'A', '2 016-07-27 11:17:06.0 00', ' RED A CTED ', 0) | |
| 11976 | INSERT INT O [dbo].[B loodProduc t] ([Blood ProductGui d], [Produ ctName], [ ProductSho rtName], [ ProductTyp eCode], [P roductAttr ibuteForm] , [Product Volume], [ ProductCod e], [Maxim umStorageT ime], [Cro ssmatchReq uiredIndic ator], [Pr oductModif icationInd icator], [ ProductCod eIndicator ], [Origin alProductT ypeCode], [RetireDat e], [Recor dStatusCod e], [LastU pdateDate] , [LastUpd ateUser], [LastUpdat eFunctionI d]) VALUES ('786d043 6-dbb2-409 7-a905-79c 12caa9d7f' , 'Apheres is PLATELE TS|ACD-A/X X/20-24C|I rradiated| ResLeu:<5E 6|3rd cont ainer|Appr ox 300 E9 plts', 'PL T AFR ACD- A IRD LUKO PR 3C', 'E 024', '@73 C2 D4 H5 JC', 200, 'E8641', 1 20, 0, 0, 1, 'E024', NULL, 'A' , '2016-07 -27 11:17: 06.000', ' RED A CTED ', 0) | |
| 11977 | INSERT INT O [dbo].[B loodProduc t] ([Blood ProductGui d], [Produ ctName], [ ProductSho rtName], [ ProductTyp eCode], [P roductAttr ibuteForm] , [Product Volume], [ ProductCod e], [Maxim umStorageT ime], [Cro ssmatchReq uiredIndic ator], [Pr oductModif icationInd icator], [ ProductCod eIndicator ], [Origin alProductT ypeCode], [RetireDat e], [Recor dStatusCod e], [LastU pdateDate] , [LastUpd ateUser], [LastUpdat eFunctionI d]) VALUES ('e624851 6-7916-489 0-83ff-7a1 c61c35ac7' , 'POOLED CRYOPRECIP ITATE|None /XX/<=-18C |Open|Irra diated|3 u nits', 'CR YO Pool No ne OPN IRD 3U', 'E03 0', '@84 B 2 C2 J3', 100, 'E860 0', 8760, 0, 0, 1, ' E030', NUL L, 'A', '2 016-07-27 11:17:06.0 00', ' RED A CTED ', 0) | |
| 11978 | INSERT INT O [dbo].[B loodProduc t] ([Blood ProductGui d], [Produ ctName], [ ProductSho rtName], [ ProductTyp eCode], [P roductAttr ibuteForm] , [Product Volume], [ ProductCod e], [Maxim umStorageT ime], [Cro ssmatchReq uiredIndic ator], [Pr oductModif icationInd icator], [ ProductCod eIndicator ], [Origin alProductT ypeCode], [RetireDat e], [Recor dStatusCod e], [LastU pdateDate] , [LastUpd ateUser], [LastUpdat eFunctionI d]) VALUES ('0e439d0 e-fc70-48b 7-9efb-7a7 d6a85c7dc' , 'Apheres is PLATELE TS|ACD-A>P AS-C/XX/20 -24C|For m nf:noninje ctable|Irr adiated|Re sLeu:<5E6| 1st contai ner', 'PLT AFR ACD-A >PAS-C MNF NI IRD LUK OPR 1C', ' E024', '@B H A3 C2 D4 H3', 200, 'E8469', 120, 0, 0, 1, 'E024' , NULL, 'A ', '2016-0 7-27 11:17 :06.000', ' RED A CTED ', 0) | |
| 11979 | INSERT INT O [dbo].[B loodProduc t] ([Blood ProductGui d], [Produ ctName], [ ProductSho rtName], [ ProductTyp eCode], [P roductAttr ibuteForm] , [Product Volume], [ ProductCod e], [Maxim umStorageT ime], [Cro ssmatchReq uiredIndic ator], [Pr oductModif icationInd icator], [ ProductCod eIndicator ], [Origin alProductT ypeCode], [RetireDat e], [Recor dStatusCod e], [LastU pdateDate] , [LastUpd ateUser], [LastUpdat eFunctionI d]) VALUES ('bdbb238 5-84ef-498 b-bdf0-7b0 a020e8d0a' , 'WHOLE B LOOD|Hepar in/450mL/r efg|ResLeu :<5E6', 'W B HEP LUKO PR', 'E001 ', '@15 D4 ', 450, 'E 8328', 24, 0, 0, 1, 'E001', NU LL, 'A', ' 2016-07-27 11:17:06. 000', ' RED A CTED ', 0) | |
| 11980 | INSERT INT O [dbo].[B loodProduc t] ([Blood ProductGui d], [Produ ctName], [ ProductSho rtName], [ ProductTyp eCode], [P roductAttr ibuteForm] , [Product Volume], [ ProductCod e], [Maxim umStorageT ime], [Cro ssmatchReq uiredIndic ator], [Pr oductModif icationInd icator], [ ProductCod eIndicator ], [Origin alProductT ypeCode], [RetireDat e], [Recor dStatusCod e], [LastU pdateDate] , [LastUpd ateUser], [LastUpdat eFunctionI d]) VALUES ('5ab85b3 7-15cb-46e 5-8332-7b3 941c3593f' , 'Thawed POOLED PLA SMA|CP2D/X X/refg|Pso ralen-trea ted', 'PLA SMA Pool T haw CP2D P soraln', ' E011', '@1 3 K5', 500 , 'E8404', 4, 0, 0, 1, 'E055', NULL, 'A' , '2016-07 -27 11:17: 06.000', ' RED A CTED ', 0) | |
| 11981 | INSERT INT O [dbo].[B loodProduc t] ([Blood ProductGui d], [Produ ctName], [ ProductSho rtName], [ ProductTyp eCode], [P roductAttr ibuteForm] , [Product Volume], [ ProductCod e], [Maxim umStorageT ime], [Cro ssmatchReq uiredIndic ator], [Pr oductModif icationInd icator], [ ProductCod eIndicator ], [Origin alProductT ypeCode], [RetireDat e], [Recor dStatusCod e], [LastU pdateDate] , [LastUpd ateUser], [LastUpdat eFunctionI d]) VALUES ('1481dfe a-24fc-4d4 1-b96c-7b7 cdc50945c' , 'Apheres is PLATELE TS|ACD-A>P AS-C/XX/20 -24C|Open| ResLeu:<5E 6|Supernat reduced|1 st contain er', 'PLT AFR ACD-A> PAS-C OPN LUKOPR SUP Red 1C', ' E024', '@B H B2 D4 EA H3', 200, 'E8579', 4, 0, 0, 1 , 'E024', NULL, 'A', '2016-07- 27 11:17:0 6.000', ' RED A CTED ', 0) | |
| 11982 | INSERT INT O [dbo].[B loodProduc t] ([Blood ProductGui d], [Produ ctName], [ ProductSho rtName], [ ProductTyp eCode], [P roductAttr ibuteForm] , [Product Volume], [ ProductCod e], [Maxim umStorageT ime], [Cro ssmatchReq uiredIndic ator], [Pr oductModif icationInd icator], [ ProductCod eIndicator ], [Origin alProductT ypeCode], [RetireDat e], [Recor dStatusCod e], [LastU pdateDate] , [LastUpd ateUser], [LastUpdat eFunctionI d]) VALUES ('e8c57f8 b-88b9-426 0-be4d-7b8 0da94119d' , 'Apheres is PLATELE TS|ACD-A/X X/20-24C|R esLeu:<5E6 |Plasma re duced/Sali ne added', 'PLT AFR ACD-A LUKO PR PLS Red /SAL Add', 'E024', ' @73 D4 EJ' , 200, 'E8 558', 120, 0, 0, 1, 'E024', NU LL, 'A', ' 2016-07-27 11:17:06. 000', ' RED A CTED ', 0) | |
| 11983 | INSERT INT O [dbo].[B loodProduc t] ([Blood ProductGui d], [Produ ctName], [ ProductSho rtName], [ ProductTyp eCode], [P roductAttr ibuteForm] , [Product Volume], [ ProductCod e], [Maxim umStorageT ime], [Cro ssmatchReq uiredIndic ator], [Pr oductModif icationInd icator], [ ProductCod eIndicator ], [Origin alProductT ypeCode], [RetireDat e], [Recor dStatusCod e], [LastU pdateDate] , [LastUpd ateUser], [LastUpdat eFunctionI d]) VALUES ('f4414c1 4-8c6f-419 e-96e8-7bd 23b09cd76' , 'Apheres is PLATELE TS|ACD-A/X X/20-24C|R esLeu:<5E6 |2nd conta iner|Pedia tric dose| Psoralen-t reated', ' PLT AFR AC D-A LUKOPR 2C Pedi P soraln', ' E024', '@7 3 D4 H4 JO K5', 200, 'E8338', 120, 0, 0, 1, 'E024' , NULL, 'A ', '2016-0 7-27 11:17 :06.000', ' RED A CTED ', 0) | |
| 11984 | INSERT INT O [dbo].[B loodProduc t] ([Blood ProductGui d], [Produ ctName], [ ProductSho rtName], [ ProductTyp eCode], [P roductAttr ibuteForm] , [Product Volume], [ ProductCod e], [Maxim umStorageT ime], [Cro ssmatchReq uiredIndic ator], [Pr oductModif icationInd icator], [ ProductCod eIndicator ], [Origin alProductT ypeCode], [RetireDat e], [Recor dStatusCod e], [LastU pdateDate] , [LastUpd ateUser], [LastUpdat eFunctionI d]) VALUES ('2c622f3 0-977d-4a7 9-babc-7c3 916df415c' , 'RED BLO OD CELLS|C P2D/500mL/ refg|Open| Irradiated |ResLeu:NS |Plasma ad ded', 'RBC CP2D OPN IRD LUKOPR PA', 'E00 2', '@12 B 2 C2 D2 E4 ', 250, 'E 8646', 24, 0, 0, 1, 'E002', NU LL, 'A', ' 2016-07-27 11:17:06. 000', ' RED A CTED ', 0) | |
| 11985 | INSERT INT O [dbo].[B loodProduc t] ([Blood ProductGui d], [Produ ctName], [ ProductSho rtName], [ ProductTyp eCode], [P roductAttr ibuteForm] , [Product Volume], [ ProductCod e], [Maxim umStorageT ime], [Cro ssmatchReq uiredIndic ator], [Pr oductModif icationInd icator], [ ProductCod eIndicator ], [Origin alProductT ypeCode], [RetireDat e], [Recor dStatusCod e], [LastU pdateDate] , [LastUpd ateUser], [LastUpdat eFunctionI d]) VALUES ('e42dded a-d977-46a 7-8b29-7c5 08d1faa18' , 'Apheres is PLATELE TS|ACD-A>P AS-C/XX/20 -24C|Open| Irradiated |ResLeu:<5 E6|Plasma reduced/Sa line added |1st conta iner', 'PL T AFR ACD- A>PAS-C OP N IRD LKPR PLS R/SA 1C', 'E024 ', '@BH B2 C2 D4 EJ H3', 200, 'E8484', 4 , 0, 0, 1, 'E024', N ULL, 'A', '2016-07-2 7 11:17:06 .000', ' RED A CTED ', 0) | |
| 11986 | INSERT INT O [dbo].[B loodProduc t] ([Blood ProductGui d], [Produ ctName], [ ProductSho rtName], [ ProductTyp eCode], [P roductAttr ibuteForm] , [Product Volume], [ ProductCod e], [Maxim umStorageT ime], [Cro ssmatchReq uiredIndic ator], [Pr oductModif icationInd icator], [ ProductCod eIndicator ], [Origin alProductT ypeCode], [RetireDat e], [Recor dStatusCod e], [LastU pdateDate] , [LastUpd ateUser], [LastUpdat eFunctionI d]) VALUES ('975110f 9-7645-49e b-8b5d-7ca 7a1729874' , 'POOLED PLATELETS| CPD>PAS-E/ XX/20-24C| Irradiated ', 'PLT Po ol CPD>PAS -E IRD', ' E022', '@D P C2', 200 , 'E8309', 120, 0, 0 , 1, 'E022 ', NULL, ' A', '2016- 07-27 11:1 7:06.000', ' RED A CTED ', 0) | |
| 11987 | INSERT INT O [dbo].[B loodProduc t] ([Blood ProductGui d], [Produ ctName], [ ProductSho rtName], [ ProductTyp eCode], [P roductAttr ibuteForm] , [Product Volume], [ ProductCod e], [Maxim umStorageT ime], [Cro ssmatchReq uiredIndic ator], [Pr oductModif icationInd icator], [ ProductCod eIndicator ], [Origin alProductT ypeCode], [RetireDat e], [Recor dStatusCod e], [LastU pdateDate] , [LastUpd ateUser], [LastUpdat eFunctionI d]) VALUES ('2e85597 2-faa3-4fb 6-a9c0-7cb a503159b6' , 'Washed RED BLOOD CELLS|None /XX/refg|O pen|Irradi ated|ResLe u:<5E6|Mul tiple wash cycles', 'RBC Wash None OPN I RD LUKOPR MWC', 'E00 3', '@AS B 2 C2 D4 GH ', 200, 'E 8490', 24, 0, 0, 1, 'E003', NU LL, 'A', ' 2016-07-27 11:17:06. 000', ' RED A CTED ', 0) | |
| 11988 | INSERT INT O [dbo].[B loodProduc t] ([Blood ProductGui d], [Produ ctName], [ ProductSho rtName], [ ProductTyp eCode], [P roductAttr ibuteForm] , [Product Volume], [ ProductCod e], [Maxim umStorageT ime], [Cro ssmatchReq uiredIndic ator], [Pr oductModif icationInd icator], [ ProductCod eIndicator ], [Origin alProductT ypeCode], [RetireDat e], [Recor dStatusCod e], [LastU pdateDate] , [LastUpd ateUser], [LastUpdat eFunctionI d]) VALUES ('e1a9fd7 3-ba79-467 9-b5b1-7cd 4f300ce57' , 'POOLED FRESH FROZ EN PLASMA| CP2D/XX/<= -18C|2 uni ts|Psorale n-treated' , 'FFP Poo l CP2D 2U Psoraln', 'E010', '@ 37 J2 K5', 500, 'E83 68', 8760, 0, 0, 1, 'E059', NU LL, 'A', ' 2016-07-27 11:17:06. 000', ' RED A CTED ', 0) | |
| 11989 | INSERT INT O [dbo].[B loodProduc t] ([Blood ProductGui d], [Produ ctName], [ ProductSho rtName], [ ProductTyp eCode], [P roductAttr ibuteForm] , [Product Volume], [ ProductCod e], [Maxim umStorageT ime], [Cro ssmatchReq uiredIndic ator], [Pr oductModif icationInd icator], [ ProductCod eIndicator ], [Origin alProductT ypeCode], [RetireDat e], [Recor dStatusCod e], [LastU pdateDate] , [LastUpd ateUser], [LastUpdat eFunctionI d]) VALUES ('dad8886 d-a9ab-40e a-9ca7-7d3 3c46d6eef' , 'POOLED CRYOPRECIP ITATE|CPD/ 450mL/<=-2 5C|Ribofla vin-treate d', 'CRYO Pool CPD R ibo', 'E03 0', '@A2 K 6', 100, ' E8281', 87 60, 0, 0, 1, 'E030', NULL, 'A' , '2016-07 -27 11:17: 06.000', ' RED A CTED ', 0) | |
| 11990 | INSERT INT O [dbo].[B loodProduc t] ([Blood ProductGui d], [Produ ctName], [ ProductSho rtName], [ ProductTyp eCode], [P roductAttr ibuteForm] , [Product Volume], [ ProductCod e], [Maxim umStorageT ime], [Cro ssmatchReq uiredIndic ator], [Pr oductModif icationInd icator], [ ProductCod eIndicator ], [Origin alProductT ypeCode], [RetireDat e], [Recor dStatusCod e], [LastU pdateDate] , [LastUpd ateUser], [LastUpdat eFunctionI d]) VALUES ('aea55fa 6-529a-404 6-a781-7e7 4de355a26' , 'Apheres is RED BLO OD CELLS|C P2D/XX/ref g|Irradiat ed|ResLeu: NS|Plasma added', 'R BC AFR CP2 D IRD LUKO PR PA', 'E 009', '@13 C2 D2 E4' , 350, 'E8 441', 504, 0, 0, 1, 'E009', NU LL, 'A', ' 2016-07-27 11:17:06. 000', ' RED A CTED ', 0) | |
| 11991 | INSERT INT O [dbo].[B loodProduc t] ([Blood ProductGui d], [Produ ctName], [ ProductSho rtName], [ ProductTyp eCode], [P roductAttr ibuteForm] , [Product Volume], [ ProductCod e], [Maxim umStorageT ime], [Cro ssmatchReq uiredIndic ator], [Pr oductModif icationInd icator], [ ProductCod eIndicator ], [Origin alProductT ypeCode], [RetireDat e], [Recor dStatusCod e], [LastU pdateDate] , [LastUpd ateUser], [LastUpdat eFunctionI d]) VALUES ('757c9a4 b-7f27-4ca d-9a19-7e8 5d56be71f' , 'Apheres is PLATELE TS|PAS-C/X X/20-24C|R esLeu:<1E6 |2nd conta iner|Bacte rial test' , 'PLT AFR PAS-C LUK OPR 2C Bac T', 'E024' , '@B5 D5 H4 N3', 20 0, 'E8724' , 120, 0, 0, 1, 'E02 4', NULL, 'A', '2016 -07-27 11: 17:06.000' , ' RED A CTED ', 0) | |
| 11992 | INSERT INT O [dbo].[B loodProduc t] ([Blood ProductGui d], [Produ ctName], [ ProductSho rtName], [ ProductTyp eCode], [P roductAttr ibuteForm] , [Product Volume], [ ProductCod e], [Maxim umStorageT ime], [Cro ssmatchReq uiredIndic ator], [Pr oductModif icationInd icator], [ ProductCod eIndicator ], [Origin alProductT ypeCode], [RetireDat e], [Recor dStatusCod e], [LastU pdateDate] , [LastUpd ateUser], [LastUpdat eFunctionI d]) VALUES ('4248195 9-b615-47f 9-a511-7ea 697ce9af6' , 'POOLED PLATELETS| PAS-E/XX/2 0-24C|Irra diated|Res Leu:<1E6|S upernat re duced', 'P LT Pool PA S-E IRD LU KOPR SUPRe d', 'E022' , '@D5 C2 D5 EA', 20 0, 'E8246' , 4, 0, 0, 1, 'E022' , NULL, 'A ', '2016-0 7-27 11:17 :06.000', ' RED A CTED ', 0) | |
| 11993 | INSERT INT O [dbo].[B loodProduc t] ([Blood ProductGui d], [Produ ctName], [ ProductSho rtName], [ ProductTyp eCode], [P roductAttr ibuteForm] , [Product Volume], [ ProductCod e], [Maxim umStorageT ime], [Cro ssmatchReq uiredIndic ator], [Pr oductModif icationInd icator], [ ProductCod eIndicator ], [Origin alProductT ypeCode], [RetireDat e], [Recor dStatusCod e], [LastU pdateDate] , [LastUpd ateUser], [LastUpdat eFunctionI d]) VALUES ('6b927cf 8-d42b-442 d-9d2b-7eb bff666c9f' , 'POOLED PLATELETS| PAS-E/XX/2 0-24C|ResL eu:<1E6', 'PLT Pool PAS-E LUKO PR', 'E022 ', '@D5 D5 ', 200, 'E 8241', 4, 0, 0, 1, ' E022', NUL L, 'A', '2 016-07-27 11:17:06.0 00', ' RED A CTED ', 0) | |
| 11994 | INSERT INT O [dbo].[B loodProduc t] ([Blood ProductGui d], [Produ ctName], [ ProductSho rtName], [ ProductTyp eCode], [P roductAttr ibuteForm] , [Product Volume], [ ProductCod e], [Maxim umStorageT ime], [Cro ssmatchReq uiredIndic ator], [Pr oductModif icationInd icator], [ ProductCod eIndicator ], [Origin alProductT ypeCode], [RetireDat e], [Recor dStatusCod e], [LastU pdateDate] , [LastUpd ateUser], [LastUpdat eFunctionI d]) VALUES ('9db08ac 0-6cc2-40f 7-862a-7fa 32c39127e' , 'POOLED PLATELETS| CPD/XX/20- 24C|ResLeu :<1E6|Plas ma reduced ', 'PLT Po ol CPD LUK OPR PLS Re d', 'E022' , '@A7 D5 E5', 200, 'E8257', 4 , 0, 0, 1, 'E022', N ULL, 'A', '2016-07-2 7 11:17:06 .000', ' RED A CTED ', 0) | |
| 11995 | INSERT INT O [dbo].[B loodProduc t] ([Blood ProductGui d], [Produ ctName], [ ProductSho rtName], [ ProductTyp eCode], [P roductAttr ibuteForm] , [Product Volume], [ ProductCod e], [Maxim umStorageT ime], [Cro ssmatchReq uiredIndic ator], [Pr oductModif icationInd icator], [ ProductCod eIndicator ], [Origin alProductT ypeCode], [RetireDat e], [Recor dStatusCod e], [LastU pdateDate] , [LastUpd ateUser], [LastUpdat eFunctionI d]) VALUES ('9eca385 e-bc2d-487 d-9e69-7fe c10afc415' , 'Washed Apheresis PLATELETS| NS/XX/20-2 4C|Irradia ted', 'PLT AFR Wash IRD', 'E02 7', '@72 C 2', 200, ' E8301', 4, 0, 0, 1, 'E027', NU LL, 'A', ' 2016-07-27 11:17:06. 000', ' RED A CTED ', 0) | |
| 11996 | INSERT INT O [dbo].[B loodProduc t] ([Blood ProductGui d], [Produ ctName], [ ProductSho rtName], [ ProductTyp eCode], [P roductAttr ibuteForm] , [Product Volume], [ ProductCod e], [Maxim umStorageT ime], [Cro ssmatchReq uiredIndic ator], [Pr oductModif icationInd icator], [ ProductCod eIndicator ], [Origin alProductT ypeCode], [RetireDat e], [Recor dStatusCod e], [LastU pdateDate] , [LastUpd ateUser], [LastUpdat eFunctionI d]) VALUES ('ac1a447 c-1563-4d0 b-867c-804 5af8c63aa' , 'Thawed FRESH FROZ EN PLASMA| CPD/450mL/ refg|Irrad iated|Froz en <=24h', 'FFP Thaw CPD IRD', 'E011', ' @03 C2 G7' , 225, 'E8 254', 24, 0, 0, 1, ' E011', NUL L, 'A', '2 016-07-27 11:17:06.0 00', ' RED A CTED ', 0) | |
| 11997 | INSERT INT O [dbo].[B loodProduc t] ([Blood ProductGui d], [Produ ctName], [ ProductSho rtName], [ ProductTyp eCode], [P roductAttr ibuteForm] , [Product Volume], [ ProductCod e], [Maxim umStorageT ime], [Cro ssmatchReq uiredIndic ator], [Pr oductModif icationInd icator], [ ProductCod eIndicator ], [Origin alProductT ypeCode], [RetireDat e], [Recor dStatusCod e], [LastU pdateDate] , [LastUpd ateUser], [LastUpdat eFunctionI d]) VALUES ('33437b1 d-116b-491 3-8ff5-806 e5322e822' , 'Apheres is PLATELE TS|ACD-A/X X/20-24C|I rradiated| ResLeu:<5E 6|1st cont ainer|Bact erial test ', 'PLT AF R ACD-A IR D LUKOPR 1 C BacTest' , 'E024', '@73 C2 D4 H3 N3', 2 00, 'E8597 ', 120, 0, 0, 1, 'E0 24', NULL, 'A', '201 6-07-27 11 :17:06.000 ', ' RED A CTED ', 0) | |
| 11998 | INSERT INT O [dbo].[B loodProduc t] ([Blood ProductGui d], [Produ ctName], [ ProductSho rtName], [ ProductTyp eCode], [P roductAttr ibuteForm] , [Product Volume], [ ProductCod e], [Maxim umStorageT ime], [Cro ssmatchReq uiredIndic ator], [Pr oductModif icationInd icator], [ ProductCod eIndicator ], [Origin alProductT ypeCode], [RetireDat e], [Recor dStatusCod e], [LastU pdateDate] , [LastUpd ateUser], [LastUpdat eFunctionI d]) VALUES ('857955d 7-cb99-4ca 9-bb6b-814 297ad7045' , 'Frozen Apheresis PLATELETS| ACD-A/XX/< =-18C|For mnf:noninj ectable|Re sLeu:<5E6' , 'PLT AFR Froz ACD- A MNFNI LU KOPR', 'E0 25', '@47 A3 D4', 20 0, 'E8266' , 8760, 0, 0, 1, 'E0 25', NULL, 'A', '201 6-07-27 11 :17:06.000 ', ' RED A CTED ', 0) | |
| 11999 | INSERT INT O [dbo].[B loodProduc t] ([Blood ProductGui d], [Produ ctName], [ ProductSho rtName], [ ProductTyp eCode], [P roductAttr ibuteForm] , [Product Volume], [ ProductCod e], [Maxim umStorageT ime], [Cro ssmatchReq uiredIndic ator], [Pr oductModif icationInd icator], [ ProductCod eIndicator ], [Origin alProductT ypeCode], [RetireDat e], [Recor dStatusCod e], [LastU pdateDate] , [LastUpd ateUser], [LastUpdat eFunctionI d]) VALUES ('15e0e6e 8-31cf-4c2 e-bb85-821 2162e055a' , 'Lyophil ized Apher esis FRESH FROZEN PL ASMA|ACD-A /XX/rt', ' FFP AFR Ly fo ACD-A', 'E012', ' @93', 225, 'E8675', 17520, 0, 0, 1, 'E07 7', NULL, 'A', '2016 -07-27 11: 17:06.000' , ' RED A CTED ', 0) | |
| 12000 | INSERT INT O [dbo].[B loodProduc t] ([Blood ProductGui d], [Produ ctName], [ ProductSho rtName], [ ProductTyp eCode], [P roductAttr ibuteForm] , [Product Volume], [ ProductCod e], [Maxim umStorageT ime], [Cro ssmatchReq uiredIndic ator], [Pr oductModif icationInd icator], [ ProductCod eIndicator ], [Origin alProductT ypeCode], [RetireDat e], [Recor dStatusCod e], [LastU pdateDate] , [LastUpd ateUser], [LastUpdat eFunctionI d]) VALUES ('7fa30d0 e-0d09-473 6-b09a-831 78209a5b6' , 'Apheres is PLATELE TS|ACD-A/X X/20-24C|I rradiated| ResLeu:<5E 6|2nd cont ainer|Appr ox 300 E9 plts|Bacte rial test' , 'PLT AFR ACD-A IRD LUKOPR 2C BacTest', 'E024', ' @73 C2 D4 H4 JC N3', 200, 'E86 42', 120, 0, 0, 1, ' E024', NUL L, 'A', '2 016-07-27 11:17:06.0 00', ' RED A CTED ', 0) | |
| 12001 | INSERT INT O [dbo].[B loodProduc t] ([Blood ProductGui d], [Produ ctName], [ ProductSho rtName], [ ProductTyp eCode], [P roductAttr ibuteForm] , [Product Volume], [ ProductCod e], [Maxim umStorageT ime], [Cro ssmatchReq uiredIndic ator], [Pr oductModif icationInd icator], [ ProductCod eIndicator ], [Origin alProductT ypeCode], [RetireDat e], [Recor dStatusCod e], [LastU pdateDate] , [LastUpd ateUser], [LastUpdat eFunctionI d]) VALUES ('4bf2164 8-3f0b-407 5-a877-834 058ca7611' , 'Apheres is PLATELE TS|ACD-A>P AS-C/XX/20 -24C|Open| Irradiated |ResLeu:<5 E6|2nd con tainer', ' PLT AFR AC D-A>PAS-C OPN IRD LU KOPR 2C', 'E024', '@ BH B2 C2 D 4 H4', 200 , 'E8221', 4, 0, 0, 1, 'E024', NULL, 'A' , '2016-07 -27 11:17: 06.000', ' RED A CTED ', 0) | |
| 12002 | INSERT INT O [dbo].[B loodProduc t] ([Blood ProductGui d], [Produ ctName], [ ProductSho rtName], [ ProductTyp eCode], [P roductAttr ibuteForm] , [Product Volume], [ ProductCod e], [Maxim umStorageT ime], [Cro ssmatchReq uiredIndic ator], [Pr oductModif icationInd icator], [ ProductCod eIndicator ], [Origin alProductT ypeCode], [RetireDat e], [Recor dStatusCod e], [LastU pdateDate] , [LastUpd ateUser], [LastUpdat eFunctionI d]) VALUES ('e0eb0ba 2-ad6d-4e1 0-8769-837 977307f88' , 'Frozen POOLED PLA TELETS|CPD /XX/<=-18C |For mnf:i njectable| ResLeu:<8. 3E5', 'PLT Pool Froz CPD MNFI LUKOPR', ' E025', '@3 5 A2 D6', 200, 'E833 0', 8760, 0, 0, 1, ' E060', '20 14-11-21 0 0:00:00.00 0', 'A', ' 2016-07-27 11:17:06. 000', ' RED A CTED ', 0) | |
| 12003 | INSERT INT O [dbo].[B loodProduc t] ([Blood ProductGui d], [Produ ctName], [ ProductSho rtName], [ ProductTyp eCode], [P roductAttr ibuteForm] , [Product Volume], [ ProductCod e], [Maxim umStorageT ime], [Cro ssmatchReq uiredIndic ator], [Pr oductModif icationInd icator], [ ProductCod eIndicator ], [Origin alProductT ypeCode], [RetireDat e], [Recor dStatusCod e], [LastU pdateDate] , [LastUpd ateUser], [LastUpdat eFunctionI d]) VALUES ('a5e15a7 e-0e8e-47e 0-8f8d-83d f80f06983' , 'Washed Apheresis PLATELETS| PAS-F/XX/2 0-24C|Open |Irradiate d|ResLeu:< 5E6|2nd co ntainer', 'PLT AFR W ash PAS-F OPN IRD LU KOPR 2C', 'E027', '@ DQ B2 C2 D 4 H4', 200 , 'E8421', 4, 0, 0, 1, 'E027', NULL, 'A' , '2016-07 -27 11:17: 06.000', ' RED A CTED ', 0) | |
| 12004 | INSERT INT O [dbo].[B loodProduc t] ([Blood ProductGui d], [Produ ctName], [ ProductSho rtName], [ ProductTyp eCode], [P roductAttr ibuteForm] , [Product Volume], [ ProductCod e], [Maxim umStorageT ime], [Cro ssmatchReq uiredIndic ator], [Pr oductModif icationInd icator], [ ProductCod eIndicator ], [Origin alProductT ypeCode], [RetireDat e], [Recor dStatusCod e], [LastU pdateDate] , [LastUpd ateUser], [LastUpdat eFunctionI d]) VALUES ('5b15fbe 2-3588-449 3-8587-83f 218082d27' , 'RED BLO OD CELLS|C PD/XX/refg |Irradiate d', 'RBC C PD IRD', ' E002', '@0 6 C2', 250 , 'E8287', 504, 0, 0 , 1, 'E002 ', NULL, ' A', '2016- 07-27 11:1 7:06.000', ' RED A CTED ', 0) | |
| 12005 | INSERT INT O [dbo].[B loodProduc t] ([Blood ProductGui d], [Produ ctName], [ ProductSho rtName], [ ProductTyp eCode], [P roductAttr ibuteForm] , [Product Volume], [ ProductCod e], [Maxim umStorageT ime], [Cro ssmatchReq uiredIndic ator], [Pr oductModif icationInd icator], [ ProductCod eIndicator ], [Origin alProductT ypeCode], [RetireDat e], [Recor dStatusCod e], [LastU pdateDate] , [LastUpd ateUser], [LastUpdat eFunctionI d]) VALUES ('ff9c6b8 9-e3eb-4ca c-bad4-846 d125af331' , 'Apheres is PLATELE TS|ACD-A>P AS-C/XX/20 -24C|Open| Irradiated |ResLeu:<5 E6|1st con tainer', ' PLT AFR AC D-A>PAS-C OPN IRD LU KOPR 1C', 'E024', '@ BH B2 C2 D 4 H3', 200 , 'E8222', 4, 0, 0, 1, 'E024', NULL, 'A' , '2016-07 -27 11:17: 06.000', ' RED A CTED ', 0) | |
| 12006 | INSERT INT O [dbo].[B loodProduc t] ([Blood ProductGui d], [Produ ctName], [ ProductSho rtName], [ ProductTyp eCode], [P roductAttr ibuteForm] , [Product Volume], [ ProductCod e], [Maxim umStorageT ime], [Cro ssmatchReq uiredIndic ator], [Pr oductModif icationInd icator], [ ProductCod eIndicator ], [Origin alProductT ypeCode], [RetireDat e], [Recor dStatusCod e], [LastU pdateDate] , [LastUpd ateUser], [LastUpdat eFunctionI d]) VALUES ('f1e9afd 2-862a-4fc 3-b22d-848 42fe45bf9' , 'Deglyce rolized Ap heresis RE D BLOOD CE LLS|AS3/XX /refg', 'R BC AFR Deg AS3', 'E0 51', '@B6' , 200, 'E8 670', 336, 0, 0, 1, 'E051', NU LL, 'A', ' 2016-07-27 11:17:06. 000', ' RED A CTED ', 0) | |
| 12007 | INSERT INT O [dbo].[B loodProduc t] ([Blood ProductGui d], [Produ ctName], [ ProductSho rtName], [ ProductTyp eCode], [P roductAttr ibuteForm] , [Product Volume], [ ProductCod e], [Maxim umStorageT ime], [Cro ssmatchReq uiredIndic ator], [Pr oductModif icationInd icator], [ ProductCod eIndicator ], [Origin alProductT ypeCode], [RetireDat e], [Recor dStatusCod e], [LastU pdateDate] , [LastUpd ateUser], [LastUpdat eFunctionI d]) VALUES ('fc7f916 3-1355-4e2 9-a2a7-849 4c2f25ca7' , 'POOLED PLATELETS| CPD>PAS-E/ XX/20-24C| Not for tx or mnf|Ir radiated|R esLeu:<1E6 |4 units', 'PLT Pool CPD>PAS-E NMT IRD L UKOPR 4U', 'E022', ' @DP A4 C2 D5 J4', 20 0, 'E8783' , 120, 0, 0, 1, 'E02 2', NULL, 'A', '2016 -07-27 11: 17:06.000' , ' RED A CTED ', 0) | |
| 12008 | INSERT INT O [dbo].[B loodProduc t] ([Blood ProductGui d], [Produ ctName], [ ProductSho rtName], [ ProductTyp eCode], [P roductAttr ibuteForm] , [Product Volume], [ ProductCod e], [Maxim umStorageT ime], [Cro ssmatchReq uiredIndic ator], [Pr oductModif icationInd icator], [ ProductCod eIndicator ], [Origin alProductT ypeCode], [RetireDat e], [Recor dStatusCod e], [LastU pdateDate] , [LastUpd ateUser], [LastUpdat eFunctionI d]) VALUES ('ec86d68 1-46b5-4fe 5-b505-851 1ec0b18cd' , 'Apheres is PLATELE TS|ACD-A>P AS-C/XX/20 -24C|Irrad iated|ResL eu:<1E6', 'PLT AFR A CD-A>PAS-C IRD LUKOP R', 'E024' , '@BH C2 D5', 200, 'E8354', 1 20, 0, 0, 1, 'E024', NULL, 'A' , '2016-07 -27 11:17: 06.000', ' RED A CTED ', 0) | |
| 12009 | INSERT INT O [dbo].[B loodProduc t] ([Blood ProductGui d], [Produ ctName], [ ProductSho rtName], [ ProductTyp eCode], [P roductAttr ibuteForm] , [Product Volume], [ ProductCod e], [Maxim umStorageT ime], [Cro ssmatchReq uiredIndic ator], [Pr oductModif icationInd icator], [ ProductCod eIndicator ], [Origin alProductT ypeCode], [RetireDat e], [Recor dStatusCod e], [LastU pdateDate] , [LastUpd ateUser], [LastUpdat eFunctionI d]) VALUES ('ba676e8 e-0a09-411 0-b917-85a e80ff4bf8' , 'Apheres is PLATELE TS|ACD-A>P AS-E/XX/20 -24C|ResLe u:<1E6|2nd container |Bacterial monitorin g', 'PLT A FR ACD-A>P AS-E LUKOP R 2C BacMt r', 'E024' , '@DS D5 H4 N2', 20 0, 'E8527' , 120, 0, 0, 1, 'E02 4', NULL, 'A', '2016 -07-27 11: 17:06.000' , ' RED A CTED ', 0) | |
| 12010 | INSERT INT O [dbo].[B loodProduc t] ([Blood ProductGui d], [Produ ctName], [ ProductSho rtName], [ ProductTyp eCode], [P roductAttr ibuteForm] , [Product Volume], [ ProductCod e], [Maxim umStorageT ime], [Cro ssmatchReq uiredIndic ator], [Pr oductModif icationInd icator], [ ProductCod eIndicator ], [Origin alProductT ypeCode], [RetireDat e], [Recor dStatusCod e], [LastU pdateDate] , [LastUpd ateUser], [LastUpdat eFunctionI d]) VALUES ('6ef6037 2-4930-4ee 8-a994-85f 775aa5a55' , 'Apheres is PLATELE TS|ACD-A/X X/20-24C|R esLeu:<5E6 |Plasma re duced|<3E1 1 plts|Pso ralen-trea ted', 'PLT AFR ACD-A LUKOPR PL S Red Psor aln', 'E02 4', '@73 D 4 E5 JI K5 ', 200, 'E 8732', 120 , 0, 0, 1, 'E024', N ULL, 'A', '2016-07-2 7 11:17:06 .000', ' RED A CTED ', 0) | |
| 12011 | INSERT INT O [dbo].[B loodProduc t] ([Blood ProductGui d], [Produ ctName], [ ProductSho rtName], [ ProductTyp eCode], [P roductAttr ibuteForm] , [Product Volume], [ ProductCod e], [Maxim umStorageT ime], [Cro ssmatchReq uiredIndic ator], [Pr oductModif icationInd icator], [ ProductCod eIndicator ], [Origin alProductT ypeCode], [RetireDat e], [Recor dStatusCod e], [LastU pdateDate] , [LastUpd ateUser], [LastUpdat eFunctionI d]) VALUES ('5a1c5bf 8-a3e4-4ad e-ba60-884 7cc90412e' , 'Apheres is FRESH F ROZEN PLAS MA|NaCitra te/XX/<=-2 5C|ResLeu: <1E6|>=200 mL<400mL|F rozen <=6h |3rd conta iner', 'FF P AFR NaCi t LUKOPR 3 C', 'E012' , '@CQ D5 F5 G4 H5', 225, 'E86 24', 8760, 0, 0, 1, 'E012', NU LL, 'A', ' 2016-07-27 11:17:06. 000', ' RED A CTED ', 0) | |
| 12012 | INSERT INT O [dbo].[B loodProduc t] ([Blood ProductGui d], [Produ ctName], [ ProductSho rtName], [ ProductTyp eCode], [P roductAttr ibuteForm] , [Product Volume], [ ProductCod e], [Maxim umStorageT ime], [Cro ssmatchReq uiredIndic ator], [Pr oductModif icationInd icator], [ ProductCod eIndicator ], [Origin alProductT ypeCode], [RetireDat e], [Recor dStatusCod e], [LastU pdateDate] , [LastUpd ateUser], [LastUpdat eFunctionI d]) VALUES ('28c0af6 6-75a4-458 3-9529-88b 90f77a946' , 'Apheres is PLATELE TS|ACD-A>P AS-C/XX/20 -24C|Open| Irradiated |ResLeu:<5 E6|Plasma reduced', 'PLT AFR A CD-A>PAS-C OPN IRD L UKOPR PLS Red', 'E02 4', '@BH B 2 C2 D4 E5 ', 200, 'E 8481', 4, 0, 0, 1, ' E024', NUL L, 'A', '2 016-07-27 11:17:06.0 00', ' RED A CTED ', 0) | |
| 12013 | INSERT INT O [dbo].[B loodProduc t] ([Blood ProductGui d], [Produ ctName], [ ProductSho rtName], [ ProductTyp eCode], [P roductAttr ibuteForm] , [Product Volume], [ ProductCod e], [Maxim umStorageT ime], [Cro ssmatchReq uiredIndic ator], [Pr oductModif icationInd icator], [ ProductCod eIndicator ], [Origin alProductT ypeCode], [RetireDat e], [Recor dStatusCod e], [LastU pdateDate] , [LastUpd ateUser], [LastUpdat eFunctionI d]) VALUES ('3bba78c b-9fad-44e 4-bfb8-88d 73fa894f6' , 'Apheres is PLATELE TS|ACD-A/X X/20-24C|O pen|ResLeu :<5E6|Plas ma reduced |1st conta iner|Psora len-treate d', 'PLT A FR ACD-A O PN LUKOPR PLS Red 1C Psoraln', 'E024', ' @73 B2 D4 E5 H3 K5', 200, 'E87 04', 4, 0, 0, 1, 'E0 24', NULL, 'A', '201 6-07-27 11 :17:06.000 ', ' RED A CTED ', 0) | |
| 12014 | INSERT INT O [dbo].[B loodProduc t] ([Blood ProductGui d], [Produ ctName], [ ProductSho rtName], [ ProductTyp eCode], [P roductAttr ibuteForm] , [Product Volume], [ ProductCod e], [Maxim umStorageT ime], [Cro ssmatchReq uiredIndic ator], [Pr oductModif icationInd icator], [ ProductCod eIndicator ], [Origin alProductT ypeCode], [RetireDat e], [Recor dStatusCod e], [LastU pdateDate] , [LastUpd ateUser], [LastUpdat eFunctionI d]) VALUES ('8fb40fe 7-587f-4b3 d-adc0-899 09d0e43ee' , 'Apheres is PLATELE TS|ACD-A/X X/20-24C|R esLeu:<5E6 |Plasma re duced|Psor alen-treat ed', 'PLT AFR ACD-A LUKOPR PLS Red Psora ln', 'E024 ', '@73 D4 E5 K5', 2 00, 'E8728 ', 120, 0, 0, 1, 'E0 24', NULL, 'A', '201 6-07-27 11 :17:06.000 ', ' RED A CTED ', 0) | |
| 12015 | INSERT INT O [dbo].[B loodProduc t] ([Blood ProductGui d], [Produ ctName], [ ProductSho rtName], [ ProductTyp eCode], [P roductAttr ibuteForm] , [Product Volume], [ ProductCod e], [Maxim umStorageT ime], [Cro ssmatchReq uiredIndic ator], [Pr oductModif icationInd icator], [ ProductCod eIndicator ], [Origin alProductT ypeCode], [RetireDat e], [Recor dStatusCod e], [LastU pdateDate] , [LastUpd ateUser], [LastUpdat eFunctionI d]) VALUES ('76433de 1-049f-47d 6-8806-8ac 397faf5e7' , 'Apheres is PLATELE TS|ACD-A/X X/20-24C|I rradiated| ResLeu:<5E 6|Plasma r educed|<3E 11 plts|Ps oralen-tre ated', 'PL T AFR ACD- A IRD LUKO PR PLS Red Psoraln', 'E024', ' @73 C2 D4 E5 JI K5', 200, 'E87 52', 120, 0, 0, 1, ' E024', NUL L, 'A', '2 016-07-27 11:17:06.0 00', ' RED A CTED ', 0) | |
| 12016 | INSERT INT O [dbo].[B loodProduc t] ([Blood ProductGui d], [Produ ctName], [ ProductSho rtName], [ ProductTyp eCode], [P roductAttr ibuteForm] , [Product Volume], [ ProductCod e], [Maxim umStorageT ime], [Cro ssmatchReq uiredIndic ator], [Pr oductModif icationInd icator], [ ProductCod eIndicator ], [Origin alProductT ypeCode], [RetireDat e], [Recor dStatusCod e], [LastU pdateDate] , [LastUpd ateUser], [LastUpdat eFunctionI d]) VALUES ('c9819cc c-893a-47e f-8a36-8ad bcee6c59b' , 'Apheres is RED BLO OD CELLS|A CD-A>AS1/X X/refg|For mnf:injec table|Irra diated', ' RBC AFR AC D-A>AS1 MN FI IRD', ' E009', '@A Y A2 C2', 350, 'E847 9', 672, 0 , 0, 1, 'E 009', NULL , 'A', '20 16-07-27 1 1:17:06.00 0', ' RED A CTED ', 0) | |
| 12017 | INSERT INT O [dbo].[B loodProduc t] ([Blood ProductGui d], [Produ ctName], [ ProductSho rtName], [ ProductTyp eCode], [P roductAttr ibuteForm] , [Product Volume], [ ProductCod e], [Maxim umStorageT ime], [Cro ssmatchReq uiredIndic ator], [Pr oductModif icationInd icator], [ ProductCod eIndicator ], [Origin alProductT ypeCode], [RetireDat e], [Recor dStatusCod e], [LastU pdateDate] , [LastUpd ateUser], [LastUpdat eFunctionI d]) VALUES ('48a01c5 2-fb2d-43d a-9ad3-8b0 774c74920' , 'Apheres is CRYOPRE CIPITATE|A CD-A/300mL /<=-25C|5m L|Quar:>=4 m/retested ', 'CRYO A FR ACD-A Q UAR', 'E03 2', '@EC F E I3', 5, 'E8722', 8 760, 0, 0, 1, 'E032' , NULL, 'A ', '2016-0 7-27 11:17 :06.000', ' RED A CTED ', 0) | |
| 12018 | INSERT INT O [dbo].[B loodProduc t] ([Blood ProductGui d], [Produ ctName], [ ProductSho rtName], [ ProductTyp eCode], [P roductAttr ibuteForm] , [Product Volume], [ ProductCod e], [Maxim umStorageT ime], [Cro ssmatchReq uiredIndic ator], [Pr oductModif icationInd icator], [ ProductCod eIndicator ], [Origin alProductT ypeCode], [RetireDat e], [Recor dStatusCod e], [LastU pdateDate] , [LastUpd ateUser], [LastUpdat eFunctionI d]) VALUES ('604eb8b f-8673-4bf 4-bee2-8b2 603e84e5b' , 'Apheres is PLASMA| ACD-A/XX/< =-18C|<200 mL|RT<=24 h frozen<= 24h|4th co ntainer', 'PLASMA AF R ACD-A Lo wVol 4C', 'E012', '@ 47 F4 GG H 6', 225, ' E8163', 87 60, 0, 0, 1, 'E014', NULL, 'A' , '2016-07 -27 11:17: 06.000', ' RED A CTED ', 0) | |
| 12019 | INSERT INT O [dbo].[B loodProduc t] ([Blood ProductGui d], [Produ ctName], [ ProductSho rtName], [ ProductTyp eCode], [P roductAttr ibuteForm] , [Product Volume], [ ProductCod e], [Maxim umStorageT ime], [Cro ssmatchReq uiredIndic ator], [Pr oductModif icationInd icator], [ ProductCod eIndicator ], [Origin alProductT ypeCode], [RetireDat e], [Recor dStatusCod e], [LastU pdateDate] , [LastUpd ateUser], [LastUpdat eFunctionI d]) VALUES ('78da117 e-3645-48b 4-a441-8b3 7585c0d73' , 'Thawed Apheresis PLATELETS| PAS-C/XX/2 0-24C|Open |Irradiate d|ResLeu:< 5E6|1st co ntainer', 'PLT AFR T haw PAS-C OPN IRD LU KOPR 1C', 'E026', '@ B5 B2 C2 D 4 H3', 200 , 'E8583', 4, 0, 0, 1, 'E026', NULL, 'A' , '2016-07 -27 11:17: 06.000', ' RED A CTED ', 0) | |
| 12020 | INSERT INT O [dbo].[B loodProduc t] ([Blood ProductGui d], [Produ ctName], [ ProductSho rtName], [ ProductTyp eCode], [P roductAttr ibuteForm] , [Product Volume], [ ProductCod e], [Maxim umStorageT ime], [Cro ssmatchReq uiredIndic ator], [Pr oductModif icationInd icator], [ ProductCod eIndicator ], [Origin alProductT ypeCode], [RetireDat e], [Recor dStatusCod e], [LastU pdateDate] , [LastUpd ateUser], [LastUpdat eFunctionI d]) VALUES ('cfa626d e-5785-49a 6-baf9-8b9 b4d6cf0c2' , 'Liquid PLASMA|CPD A-1/500mL/ refg|Irrad iated', 'P LASMA Liq CPDA-1 IRD ', 'E011', '@08 C2', 225, 'E85 90', 624, 0, 0, 1, ' E016', NUL L, 'A', '2 016-07-27 11:17:06.0 00', ' RED A CTED ', 0) | |
| 12021 | INSERT INT O [dbo].[B loodProduc t] ([Blood ProductGui d], [Produ ctName], [ ProductSho rtName], [ ProductTyp eCode], [P roductAttr ibuteForm] , [Product Volume], [ ProductCod e], [Maxim umStorageT ime], [Cro ssmatchReq uiredIndic ator], [Pr oductModif icationInd icator], [ ProductCod eIndicator ], [Origin alProductT ypeCode], [RetireDat e], [Recor dStatusCod e], [LastU pdateDate] , [LastUpd ateUser], [LastUpdat eFunctionI d]) VALUES ('50e6446 a-954f-4f9 0-8758-8bb 43530755a' , 'Deglyce rolized Ap heresis RE D BLOOD CE LLS|None/X X/refg', ' RBC AFR De g None', ' E051', '@A S', 200, ' E8615', 33 6, 0, 0, 1 , 'E051', NULL, 'A', '2016-07- 27 11:17:0 6.000', ' RED A CTED ', 0) | |
| 12022 | INSERT INT O [dbo].[B loodProduc t] ([Blood ProductGui d], [Produ ctName], [ ProductSho rtName], [ ProductTyp eCode], [P roductAttr ibuteForm] , [Product Volume], [ ProductCod e], [Maxim umStorageT ime], [Cro ssmatchReq uiredIndic ator], [Pr oductModif icationInd icator], [ ProductCod eIndicator ], [Origin alProductT ypeCode], [RetireDat e], [Recor dStatusCod e], [LastU pdateDate] , [LastUpd ateUser], [LastUpdat eFunctionI d]) VALUES ('21f32bd 4-7df6-4d3 4-8ca6-8c2 7e52e4361' , 'Liquid Apheresis PLASMA|ACD -A/XX/refg |1st conta iner', 'PL ASMA AFR L iq ACD-A 1 C', 'E011' , '@54 H3' , 225, 'E8 740', 120, 0, 0, 1, 'E041', NU LL, 'A', ' 2016-07-27 11:17:06. 000', ' RED A CTED ', 0) | |
| 12023 | INSERT INT O [dbo].[B loodProduc t] ([Blood ProductGui d], [Produ ctName], [ ProductSho rtName], [ ProductTyp eCode], [P roductAttr ibuteForm] , [Product Volume], [ ProductCod e], [Maxim umStorageT ime], [Cro ssmatchReq uiredIndic ator], [Pr oductModif icationInd icator], [ ProductCod eIndicator ], [Origin alProductT ypeCode], [RetireDat e], [Recor dStatusCod e], [LastU pdateDate] , [LastUpd ateUser], [LastUpdat eFunctionI d]) VALUES ('898881e 1-4323-4b5 5-8ee6-8c6 1d0a20a4e' , 'POOLED PLATELETS| CPD>PAS-E/ XX/20-24C' , 'PLT Poo l CPD>PAS- E', 'E022' , '@DP', 2 00, 'E8306 ', 120, 0, 0, 1, 'E0 22', NULL, 'A', '201 6-07-27 11 :17:06.000 ', ' RED A CTED ', 0) | |
| 12024 | INSERT INT O [dbo].[B loodProduc t] ([Blood ProductGui d], [Produ ctName], [ ProductSho rtName], [ ProductTyp eCode], [P roductAttr ibuteForm] , [Product Volume], [ ProductCod e], [Maxim umStorageT ime], [Cro ssmatchReq uiredIndic ator], [Pr oductModif icationInd icator], [ ProductCod eIndicator ], [Origin alProductT ypeCode], [RetireDat e], [Recor dStatusCod e], [LastU pdateDate] , [LastUpd ateUser], [LastUpdat eFunctionI d]) VALUES ('09c11ee 5-5b8d-48a 2-be39-8d0 da580b578' , 'RED BLO OD CELLS|C PD>AS3/500 mL/refg|Su pernat rem ', 'RBC CP D>AS3 SR', 'E002', ' @CN E7', 3 50, 'E8252 ', 1008, 0 , 0, 1, 'E 002', NULL , 'A', '20 16-07-27 1 1:17:06.00 0', ' RED A CTED ', 0) | |
| 12025 | INSERT INT O [dbo].[B loodProduc t] ([Blood ProductGui d], [Produ ctName], [ ProductSho rtName], [ ProductTyp eCode], [P roductAttr ibuteForm] , [Product Volume], [ ProductCod e], [Maxim umStorageT ime], [Cro ssmatchReq uiredIndic ator], [Pr oductModif icationInd icator], [ ProductCod eIndicator ], [Origin alProductT ypeCode], [RetireDat e], [Recor dStatusCod e], [LastU pdateDate] , [LastUpd ateUser], [LastUpdat eFunctionI d]) VALUES ('0fdd026 2-96ad-452 1-865f-8d5 23ffeabae' , 'Thawed FRESH FROZ EN PLASMA| CPDA-1/450 mL/refg|Fr ozen <=24h |Quar:>=6m /retested' , 'FFP Tha w CPDA-1 Q UAR', 'E01 1', '@07 G 7 I2', 225 , 'E8322', 24, 0, 0, 1, 'E011' , NULL, 'A ', '2016-0 7-27 11:17 :06.000', ' RED A CTED ', 0) | |
| 12026 | INSERT INT O [dbo].[B loodProduc t] ([Blood ProductGui d], [Produ ctName], [ ProductSho rtName], [ ProductTyp eCode], [P roductAttr ibuteForm] , [Product Volume], [ ProductCod e], [Maxim umStorageT ime], [Cro ssmatchReq uiredIndic ator], [Pr oductModif icationInd icator], [ ProductCod eIndicator ], [Origin alProductT ypeCode], [RetireDat e], [Recor dStatusCod e], [LastU pdateDate] , [LastUpd ateUser], [LastUpdat eFunctionI d]) VALUES ('66d2d47 c-7f8f-40a c-8bd3-8d7 e7e042873' , 'Apheres is IMMUNE PLASMA|CPD /XX/<=-25C |For mnf:i njectable| CMV', 'PLA SMA AFR Im m CPD MNFI CMV', 'E0 12', '@A1 A2 P3', 22 5, 'E8782' , 8760, 0, 0, 1, 'E0 79', NULL, 'A', '201 6-07-27 11 :17:06.000 ', ' RED A CTED ', 0) | |
| 12027 | INSERT INT O [dbo].[B loodProduc t] ([Blood ProductGui d], [Produ ctName], [ ProductSho rtName], [ ProductTyp eCode], [P roductAttr ibuteForm] , [Product Volume], [ ProductCod e], [Maxim umStorageT ime], [Cro ssmatchReq uiredIndic ator], [Pr oductModif icationInd icator], [ ProductCod eIndicator ], [Origin alProductT ypeCode], [RetireDat e], [Recor dStatusCod e], [LastU pdateDate] , [LastUpd ateUser], [LastUpdat eFunctionI d]) VALUES ('a179cc9 f-b86c-4df c-836b-8db 9f746ebe9' , 'POOLED PLATELETS| CP2D/XX/20 -24C|For m nf:noninje ctable|Irr adiated|Re sLeu:<5E6| Bacterial test', 'PL T Pool CP2 D MNFNI IR D LUKOPR B acTest', ' E022', '@B 9 A3 C2 D4 N3', 200, 'E8460', 120, 0, 0, 1, 'E022' , NULL, 'A ', '2016-0 7-27 11:17 :06.000', ' RED A CTED ', 0) | |
| 12028 | INSERT INT O [dbo].[B loodProduc t] ([Blood ProductGui d], [Produ ctName], [ ProductSho rtName], [ ProductTyp eCode], [P roductAttr ibuteForm] , [Product Volume], [ ProductCod e], [Maxim umStorageT ime], [Cro ssmatchReq uiredIndic ator], [Pr oductModif icationInd icator], [ ProductCod eIndicator ], [Origin alProductT ypeCode], [RetireDat e], [Recor dStatusCod e], [LastU pdateDate] , [LastUpd ateUser], [LastUpdat eFunctionI d]) VALUES ('b7200a1 9-0da1-4cb 7-9b40-8dd 48cd42305' , 'Apheres is PLATELE TS|ACD-A/X X/20-24C|R esLeu:<5E6 |1st conta iner|Bacte rial test' , 'PLT AFR ACD-A LUK OPR 1C Bac Test', 'E0 24', '@73 D4 H3 N3', 200, 'E87 62', 120, 0, 0, 1, ' E024', NUL L, 'A', '2 016-07-27 11:17:06.0 00', ' RED A CTED ', 0) | |
| 12029 | INSERT INT O [dbo].[B loodProduc t] ([Blood ProductGui d], [Produ ctName], [ ProductSho rtName], [ ProductTyp eCode], [P roductAttr ibuteForm] , [Product Volume], [ ProductCod e], [Maxim umStorageT ime], [Cro ssmatchReq uiredIndic ator], [Pr oductModif icationInd icator], [ ProductCod eIndicator ], [Origin alProductT ypeCode], [RetireDat e], [Recor dStatusCod e], [LastU pdateDate] , [LastUpd ateUser], [LastUpdat eFunctionI d]) VALUES ('1f1b2a1 3-04e3-4ef 2-8e3c-8df acfede045' , 'Washed POOLED PLA TELETS|PAS -E/XX/20-2 4C|Irradia ted|ResLeu :<1E6|Buff y coat plt s prep|2 u nits', 'PL T Pool Was h PAS-E IR D LUKOPR B UFCT 2U', 'E023', '@ D5 C2 D5 G 2 J2', 200 , 'E8509', 4, 0, 0, 1, 'E023', NULL, 'A' , '2016-07 -27 11:17: 06.000', ' RED A CTED ', 0) | |
| 12030 | INSERT INT O [dbo].[B loodProduc t] ([Blood ProductGui d], [Produ ctName], [ ProductSho rtName], [ ProductTyp eCode], [P roductAttr ibuteForm] , [Product Volume], [ ProductCod e], [Maxim umStorageT ime], [Cro ssmatchReq uiredIndic ator], [Pr oductModif icationInd icator], [ ProductCod eIndicator ], [Origin alProductT ypeCode], [RetireDat e], [Recor dStatusCod e], [LastU pdateDate] , [LastUpd ateUser], [LastUpdat eFunctionI d]) VALUES ('58ea907 9-ee54-409 c-8d9e-8e2 da4d43568' , 'POOLED PLATELETS| PAS-E/XX/2 0-24C|ResL eu:<1E6|Ap prox 240 E 9 plts', ' PLT Pool P AS-E LUKOP R', 'E022' , '@D5 D5 JB', 200, 'E8447', 4 , 0, 0, 1, 'E022', N ULL, 'A', '2016-07-2 7 11:17:06 .000', ' RED A CTED ', 0) | |
| 12031 | INSERT INT O [dbo].[B loodProduc t] ([Blood ProductGui d], [Produ ctName], [ ProductSho rtName], [ ProductTyp eCode], [P roductAttr ibuteForm] , [Product Volume], [ ProductCod e], [Maxim umStorageT ime], [Cro ssmatchReq uiredIndic ator], [Pr oductModif icationInd icator], [ ProductCod eIndicator ], [Origin alProductT ypeCode], [RetireDat e], [Recor dStatusCod e], [LastU pdateDate] , [LastUpd ateUser], [LastUpdat eFunctionI d]) VALUES ('da92cf8 c-099e-4c3 d-91cc-8e7 bd3663ce0' , 'Apheres is PLATELE TS|ACD-A>P AS-E/XX/20 -24C|Irrad iated|ResL eu:<1E6|Su pernat red uced|2nd c ontainer', 'PLT AFR ACD-A>PAS- E IRD LUKO PR SUPRed 2C', 'E024 ', '@DS C2 D5 EA H4' , 200, 'E8 536', 120, 0, 0, 1, 'E024', NU LL, 'A', ' 2016-07-27 11:17:06. 000', ' RED A CTED ', 0) | |
| 12032 | INSERT INT O [dbo].[B loodProduc t] ([Blood ProductGui d], [Produ ctName], [ ProductSho rtName], [ ProductTyp eCode], [P roductAttr ibuteForm] , [Product Volume], [ ProductCod e], [Maxim umStorageT ime], [Cro ssmatchReq uiredIndic ator], [Pr oductModif icationInd icator], [ ProductCod eIndicator ], [Origin alProductT ypeCode], [RetireDat e], [Recor dStatusCod e], [LastU pdateDate] , [LastUpd ateUser], [LastUpdat eFunctionI d]) VALUES ('43bdea3 b-9a8c-4e9 4-8d11-8ed 096eb0b5c' , 'Apheres is LEUKOCY TES|ACD-A/ XX/rt|Not for tx or mnf|Open|I rradiated' , 'LEUK AF R ACD-A NM T OPN IRD' , 'E039', '@93 A4 B2 C2', 200, 'E8726', 24, 0, 0, 1, 'E039', NULL, 'A' , '2016-07 -27 11:17: 06.000', ' RED A CTED ', 0) | |
| 12033 | INSERT INT O [dbo].[B loodProduc t] ([Blood ProductGui d], [Produ ctName], [ ProductSho rtName], [ ProductTyp eCode], [P roductAttr ibuteForm] , [Product Volume], [ ProductCod e], [Maxim umStorageT ime], [Cro ssmatchReq uiredIndic ator], [Pr oductModif icationInd icator], [ ProductCod eIndicator ], [Origin alProductT ypeCode], [RetireDat e], [Recor dStatusCod e], [LastU pdateDate] , [LastUpd ateUser], [LastUpdat eFunctionI d]) VALUES ('37e9566 1-c529-48b 0-a1d8-8f1 6735e8edc' , 'Apheres is FRESH F ROZEN PLAS MA|ACD-A/X X/<=-18C|2 nd contain er|Psorale n-treated' , 'FFP AFR ACD-A 2C Psoraln', 'E012', '@ 47 H4 K5', 225, 'E87 35', 8760, 0, 0, 1, 'E012', NU LL, 'A', ' 2016-07-27 11:17:06. 000', ' RED A CTED ', 0) | |
| 12034 | INSERT INT O [dbo].[B loodProduc t] ([Blood ProductGui d], [Produ ctName], [ ProductSho rtName], [ ProductTyp eCode], [P roductAttr ibuteForm] , [Product Volume], [ ProductCod e], [Maxim umStorageT ime], [Cro ssmatchReq uiredIndic ator], [Pr oductModif icationInd icator], [ ProductCod eIndicator ], [Origin alProductT ypeCode], [RetireDat e], [Recor dStatusCod e], [LastU pdateDate] , [LastUpd ateUser], [LastUpdat eFunctionI d]) VALUES ('d7af66f 9-c406-4a9 f-a698-8f3 9319e36d8' , 'Frozen POOLED PLA TELETS|DMS O/XX/<=-80 C|Open|Irr adiated|Re sLeu:<1E6| Supernat r em|Buffy c oat plts p rep|5 unit s', 'PLT P ool Froz D MSO IRD LU KOPR SR BU FCT 5U', ' E025', '@C P B2 C2 D5 E7 G2 J5' , 200, 'E8 681', 8760 , 0, 0, 1, 'E060', N ULL, 'A', '2016-07-2 7 11:17:06 .000', ' RED A CTED ', 0) | |
| 12035 | INSERT INT O [dbo].[B loodProduc t] ([Blood ProductGui d], [Produ ctName], [ ProductSho rtName], [ ProductTyp eCode], [P roductAttr ibuteForm] , [Product Volume], [ ProductCod e], [Maxim umStorageT ime], [Cro ssmatchReq uiredIndic ator], [Pr oductModif icationInd icator], [ ProductCod eIndicator ], [Origin alProductT ypeCode], [RetireDat e], [Recor dStatusCod e], [LastU pdateDate] , [LastUpd ateUser], [LastUpdat eFunctionI d]) VALUES ('b649b67 a-3273-47e c-91ed-8fa 84d989475' , 'IMMUNE PLASMA|CPD /XX/<=-25C |For mnf:i njectable| Hepatitis B', 'PLASM A Imm CPD MNFI HepB' , 'E010', '@A1 A2 P5 ', 225, 'E 8776', 876 0, 0, 0, 1 , 'E078', NULL, 'A', '2016-07- 27 11:17:0 6.000', ' RED A CTED ', 0) | |
| 12036 | INSERT INT O [dbo].[B loodProduc t] ([Blood ProductGui d], [Produ ctName], [ ProductSho rtName], [ ProductTyp eCode], [P roductAttr ibuteForm] , [Product Volume], [ ProductCod e], [Maxim umStorageT ime], [Cro ssmatchReq uiredIndic ator], [Pr oductModif icationInd icator], [ ProductCod eIndicator ], [Origin alProductT ypeCode], [RetireDat e], [Recor dStatusCod e], [LastU pdateDate] , [LastUpd ateUser], [LastUpdat eFunctionI d]) VALUES ('d4d6584 e-4519-4c1 0-90f9-8fd ef32ef2ea' , 'Thawed PLASMA|CPD /450mL/ref g|ResLeu:N S|Frozen < =24h', 'PL ASMA Thaw CPD LUKOPR ', 'E011', '@03 D2 G 7', 225, ' E8457', 24 , 0, 0, 1, 'E018', N ULL, 'A', '2016-07-2 7 11:17:06 .000', ' RED A CTED ', 0) | |
| 12037 | INSERT INT O [dbo].[B loodProduc t] ([Blood ProductGui d], [Produ ctName], [ ProductSho rtName], [ ProductTyp eCode], [P roductAttr ibuteForm] , [Product Volume], [ ProductCod e], [Maxim umStorageT ime], [Cro ssmatchReq uiredIndic ator], [Pr oductModif icationInd icator], [ ProductCod eIndicator ], [Origin alProductT ypeCode], [RetireDat e], [Recor dStatusCod e], [LastU pdateDate] , [LastUpd ateUser], [LastUpdat eFunctionI d]) VALUES ('afa3f36 9-ccf3-4d7 4-84d1-901 5fe6c3a4c' , 'Thawed POOLED PLA SMA|CPD/XX /refg|3 un its|Psoral en-treated ', 'PLASMA Pool Thaw CPD 3U Ps oraln', 'E 011', '@06 J3 K5', 5 00, 'E8394 ', 4, 0, 0 , 1, 'E055 ', NULL, ' A', '2016- 07-27 11:1 7:06.000', ' RED A CTED ', 0) | |
| 12038 | INSERT INT O [dbo].[B loodProduc t] ([Blood ProductGui d], [Produ ctName], [ ProductSho rtName], [ ProductTyp eCode], [P roductAttr ibuteForm] , [Product Volume], [ ProductCod e], [Maxim umStorageT ime], [Cro ssmatchReq uiredIndic ator], [Pr oductModif icationInd icator], [ ProductCod eIndicator ], [Origin alProductT ypeCode], [RetireDat e], [Recor dStatusCod e], [LastU pdateDate] , [LastUpd ateUser], [LastUpdat eFunctionI d]) VALUES ('4a194b2 6-8da2-4d5 0-97aa-902 c09614baa' , 'Apheres is PLATELE TS|ACD-A>P AS-C/XX/20 -24C|Open| Irradiated |ResLeu:<5 E6|Plasma reduced|3r d containe r', 'PLT A FR ACD-A>P AS-C OPN I RD LUKOPR PLS Red 3C ', 'E024', '@BH B2 C 2 D4 E5 H5 ', 200, 'E 8487', 4, 0, 0, 1, ' E024', NUL L, 'A', '2 016-07-27 11:17:06.0 00', ' RED A CTED ', 0) | |
| 12039 | INSERT INT O [dbo].[B loodProduc t] ([Blood ProductGui d], [Produ ctName], [ ProductSho rtName], [ ProductTyp eCode], [P roductAttr ibuteForm] , [Product Volume], [ ProductCod e], [Maxim umStorageT ime], [Cro ssmatchReq uiredIndic ator], [Pr oductModif icationInd icator], [ ProductCod eIndicator ], [Origin alProductT ypeCode], [RetireDat e], [Recor dStatusCod e], [LastU pdateDate] , [LastUpd ateUser], [LastUpdat eFunctionI d]) VALUES ('35ac430 b-f449-43b 4-91c6-905 e91f6dbb6' , 'RED BLO OD CELLS|C P2D>AS3/50 0mL/refg|I rradiated| ResLeu:<5E 6|Supernat rem', 'RB C CP2D>AS3 IRD LUKOP R SR', 'E0 02', '@21 C2 D4 E7', 350, 'E84 11', 672, 0, 0, 1, ' E002', NUL L, 'A', '2 016-07-27 11:17:06.0 00', ' RED A CTED ', 0) | |
| 12040 | INSERT INT O [dbo].[B loodProduc t] ([Blood ProductGui d], [Produ ctName], [ ProductSho rtName], [ ProductTyp eCode], [P roductAttr ibuteForm] , [Product Volume], [ ProductCod e], [Maxim umStorageT ime], [Cro ssmatchReq uiredIndic ator], [Pr oductModif icationInd icator], [ ProductCod eIndicator ], [Origin alProductT ypeCode], [RetireDat e], [Recor dStatusCod e], [LastU pdateDate] , [LastUpd ateUser], [LastUpdat eFunctionI d]) VALUES ('f7cdf24 d-7b9e-433 c-8397-906 7c5738262' , 'Lyophil ized POOLE D PLASMA|A CD-A/XX/rt ', 'PLASMA Pool Lyfo ACD-A', ' E019', '@9 3', 500, ' E8538', 17 520, 0, 0, 1, 'E074' , NULL, 'A ', '2016-0 7-27 11:17 :06.000', ' RED A CTED ', 0) | |
| 12041 | INSERT INT O [dbo].[B loodProduc t] ([Blood ProductGui d], [Produ ctName], [ ProductSho rtName], [ ProductTyp eCode], [P roductAttr ibuteForm] , [Product Volume], [ ProductCod e], [Maxim umStorageT ime], [Cro ssmatchReq uiredIndic ator], [Pr oductModif icationInd icator], [ ProductCod eIndicator ], [Origin alProductT ypeCode], [RetireDat e], [Recor dStatusCod e], [LastU pdateDate] , [LastUpd ateUser], [LastUpdat eFunctionI d]) VALUES ('dcbdaed 1-7c39-429 3-a891-908 0f04abcd5' , 'Apheres is PLASMA| ACD-A/XX/< =-18C|>=40 0mL<600mL| RT<=24h fr ozen<=24h| 4th contai ner', 'PLA SMA AFR AC D-A 4C', ' E012', '@4 7 F6 GG H6 ', 225, 'E 8161', 876 0, 0, 0, 1 , 'E014', NULL, 'A', '2016-07- 27 11:17:0 6.000', ' RED A CTED ', 0) | |
| 12042 | INSERT INT O [dbo].[B loodProduc t] ([Blood ProductGui d], [Produ ctName], [ ProductSho rtName], [ ProductTyp eCode], [P roductAttr ibuteForm] , [Product Volume], [ ProductCod e], [Maxim umStorageT ime], [Cro ssmatchReq uiredIndic ator], [Pr oductModif icationInd icator], [ ProductCod eIndicator ], [Origin alProductT ypeCode], [RetireDat e], [Recor dStatusCod e], [LastU pdateDate] , [LastUpd ateUser], [LastUpdat eFunctionI d]) VALUES ('881fc8b d-286f-45f 7-a097-911 0bec879b2' , 'Apheres is FRESH F ROZEN PLAS MA|NaCitra te/XX/<=-2 5C|Irradia ted|ResLeu :<1E6|>=20 0mL<400mL| Frozen <=6 h|1st cont ainer', 'F FP AFR NaC it IRD LUK OPR 1C', ' E012', '@C Q C2 D5 F5 G4 H3', 2 25, 'E8626 ', 8760, 0 , 0, 1, 'E 012', NULL , 'A', '20 16-07-27 1 1:17:06.00 0', ' RED A CTED ', 0) | |
| 12043 | INSERT INT O [dbo].[B loodProduc t] ([Blood ProductGui d], [Produ ctName], [ ProductSho rtName], [ ProductTyp eCode], [P roductAttr ibuteForm] , [Product Volume], [ ProductCod e], [Maxim umStorageT ime], [Cro ssmatchReq uiredIndic ator], [Pr oductModif icationInd icator], [ ProductCod eIndicator ], [Origin alProductT ypeCode], [RetireDat e], [Recor dStatusCod e], [LastU pdateDate] , [LastUpd ateUser], [LastUpdat eFunctionI d]) VALUES ('6070a8d 3-8121-417 7-8fca-917 b8d020e13' , 'Apheres is PLATELE TS|ACD-A/X X/20-24C|I rradiated| ResLeu:<5E 6|2nd cont ainer|Psor alen-treat ed', 'PLT AFR ACD-A IRD LUKOPR 2C Psoral n', 'E024' , '@73 C2 D4 H4 K5', 200, 'E87 49', 120, 0, 0, 1, ' E024', NUL L, 'A', '2 016-07-27 11:17:06.0 00', ' RED A CTED ', 0) | |
| 12044 | INSERT INT O [dbo].[B loodProduc t] ([Blood ProductGui d], [Produ ctName], [ ProductSho rtName], [ ProductTyp eCode], [P roductAttr ibuteForm] , [Product Volume], [ ProductCod e], [Maxim umStorageT ime], [Cro ssmatchReq uiredIndic ator], [Pr oductModif icationInd icator], [ ProductCod eIndicator ], [Origin alProductT ypeCode], [RetireDat e], [Recor dStatusCod e], [LastU pdateDate] , [LastUpd ateUser], [LastUpdat eFunctionI d]) VALUES ('7cdb63e 6-e1e5-448 c-bf55-91f 8ec3e920b' , 'Washed Apheresis RED BLOOD CELLS|None /XX/refg|R esLeu:<1E6 |1st conta iner|0.5-0 .7', 'RBC AFR Wash N one LUKOPR 1C 0.5-0. 7', 'E049' , '@AS D5 H3 L3', 20 0, 'E8686' , 24, 0, 0 , 1, 'E049 ', NULL, ' A', '2016- 07-27 11:1 7:06.000', ' RED A CTED ', 0) | |
| 12045 | INSERT INT O [dbo].[B loodProduc t] ([Blood ProductGui d], [Produ ctName], [ ProductSho rtName], [ ProductTyp eCode], [P roductAttr ibuteForm] , [Product Volume], [ ProductCod e], [Maxim umStorageT ime], [Cro ssmatchReq uiredIndic ator], [Pr oductModif icationInd icator], [ ProductCod eIndicator ], [Origin alProductT ypeCode], [RetireDat e], [Recor dStatusCod e], [LastU pdateDate] , [LastUpd ateUser], [LastUpdat eFunctionI d]) VALUES ('6e0e262 f-d48a-4e3 3-95a6-935 cb0bdc6b0' , 'Frozen POOLED PLA TELETS|DMS O/XX/<=-80 C|Open|Res Leu:<1E6|S upernat re m|Buffy co at plts pr ep|5 units ', 'PLT Po ol Froz DM SO LUKOPR SR BUFCT 5 U', 'E025' , '@CP B2 D5 E7 G2 J 5', 200, ' E8680', 87 60, 0, 0, 1, 'E060', NULL, 'A' , '2016-07 -27 11:17: 06.000', ' RED A CTED ', 0) | |
| 12046 | INSERT INT O [dbo].[B loodProduc t] ([Blood ProductGui d], [Produ ctName], [ ProductSho rtName], [ ProductTyp eCode], [P roductAttr ibuteForm] , [Product Volume], [ ProductCod e], [Maxim umStorageT ime], [Cro ssmatchReq uiredIndic ator], [Pr oductModif icationInd icator], [ ProductCod eIndicator ], [Origin alProductT ypeCode], [RetireDat e], [Recor dStatusCod e], [LastU pdateDate] , [LastUpd ateUser], [LastUpdat eFunctionI d]) VALUES ('e9e4cf6 8-d867-4df 7-b547-941 d3c67fcc0' , 'Apheres is PLATELE TS|ACD-A/X X/20-24C|I rradiated| ResLeu:<5E 6|Plasma r educed|1st container |Psoralen- treated', 'PLT AFR A CD-A IRD L UKOPR PLS Red 1C Pso raln', 'E0 24', '@73 C2 D4 E5 H 3 K5', 200 , 'E8753', 120, 0, 0 , 1, 'E024 ', NULL, ' A', '2016- 07-27 11:1 7:06.000', ' RED A CTED ', 0) | |
| 12047 | INSERT INT O [dbo].[B loodProduc t] ([Blood ProductGui d], [Produ ctName], [ ProductSho rtName], [ ProductTyp eCode], [P roductAttr ibuteForm] , [Product Volume], [ ProductCod e], [Maxim umStorageT ime], [Cro ssmatchReq uiredIndic ator], [Pr oductModif icationInd icator], [ ProductCod eIndicator ], [Origin alProductT ypeCode], [RetireDat e], [Recor dStatusCod e], [LastU pdateDate] , [LastUpd ateUser], [LastUpdat eFunctionI d]) VALUES ('25b0e27 0-0420-4ae a-a468-948 9968eb510' , 'POOLED PLASMA|CPD /XX/<=-18C |Frozen <= 24h|2 unit s|Psoralen -treated', 'PLASMA P ool CPD 2U Psoraln', 'E040', ' @35 G7 J2 K5', 225, 'E8374', 8 760, 0, 0, 1, 'E040' , NULL, 'A ', '2016-0 7-27 11:17 :06.000', ' RED A CTED ', 0) | |
| 12048 | INSERT INT O [dbo].[B loodProduc t] ([Blood ProductGui d], [Produ ctName], [ ProductSho rtName], [ ProductTyp eCode], [P roductAttr ibuteForm] , [Product Volume], [ ProductCod e], [Maxim umStorageT ime], [Cro ssmatchReq uiredIndic ator], [Pr oductModif icationInd icator], [ ProductCod eIndicator ], [Origin alProductT ypeCode], [RetireDat e], [Recor dStatusCod e], [LastU pdateDate] , [LastUpd ateUser], [LastUpdat eFunctionI d]) VALUES ('2ba344f b-56ae-46c 5-863d-94b a0ac2279b' , 'POOLED PLASMA|CPD A-1/XX/<=- 18C|Frozen <=24h|3 u nits|Psora len-treate d', 'PLASM A Pool CPD A-1 3U Pso raln', 'E0 40', '@36 G7 J3 K5', 225, 'E84 28', 8760, 0, 0, 1, 'E040', NU LL, 'A', ' 2016-07-27 11:17:06. 000', ' RED A CTED ', 0) | |
| 12049 | INSERT INT O [dbo].[B loodProduc t] ([Blood ProductGui d], [Produ ctName], [ ProductSho rtName], [ ProductTyp eCode], [P roductAttr ibuteForm] , [Product Volume], [ ProductCod e], [Maxim umStorageT ime], [Cro ssmatchReq uiredIndic ator], [Pr oductModif icationInd icator], [ ProductCod eIndicator ], [Origin alProductT ypeCode], [RetireDat e], [Recor dStatusCod e], [LastU pdateDate] , [LastUpd ateUser], [LastUpdat eFunctionI d]) VALUES ('ad7137e d-8629-4e7 3-a697-94d b8c9a3ce8' , 'Thawed Apheresis PLATELETS| PAS-C/XX/2 0-24C|Open |Irradiate d|ResLeu:< 5E6|2nd co ntainer', 'PLT AFR T haw PAS-C OPN IRD LU KOPR 2C', 'E026', '@ B5 B2 C2 D 4 H4', 200 , 'E8584', 4, 0, 0, 1, 'E026', NULL, 'A' , '2016-07 -27 11:17: 06.000', ' RED A CTED ', 0) | |
| 12050 | INSERT INT O [dbo].[B loodProduc t] ([Blood ProductGui d], [Produ ctName], [ ProductSho rtName], [ ProductTyp eCode], [P roductAttr ibuteForm] , [Product Volume], [ ProductCod e], [Maxim umStorageT ime], [Cro ssmatchReq uiredIndic ator], [Pr oductModif icationInd icator], [ ProductCod eIndicator ], [Origin alProductT ypeCode], [RetireDat e], [Recor dStatusCod e], [LastU pdateDate] , [LastUpd ateUser], [LastUpdat eFunctionI d]) VALUES ('e62529f 4-45cc-498 0-94bf-958 be23b2210' , 'PLATELE TS|NS/XX/2 0-24C', 'P LT NS', 'E 020', '@72 ', 50, 'E8 298', 120, 0, 0, 1, 'E020', NU LL, 'A', ' 2016-07-27 11:17:06. 000', ' RED A CTED ', 0) | |
| 12051 | INSERT INT O [dbo].[B loodProduc t] ([Blood ProductGui d], [Produ ctName], [ ProductSho rtName], [ ProductTyp eCode], [P roductAttr ibuteForm] , [Product Volume], [ ProductCod e], [Maxim umStorageT ime], [Cro ssmatchReq uiredIndic ator], [Pr oductModif icationInd icator], [ ProductCod eIndicator ], [Origin alProductT ypeCode], [RetireDat e], [Recor dStatusCod e], [LastU pdateDate] , [LastUpd ateUser], [LastUpdat eFunctionI d]) VALUES ('0ebad76 d-c2b8-479 b-a7e8-960 a6520383b' , 'POOLED CRYOPRECIP ITATE|None /XX/<=-18C |Open|Irra diated|4 u nits', 'CR YO Pool No ne OPN IRD 4U', 'E03 0', '@84 B 2 C2 J4', 100, 'E866 6', 8760, 0, 0, 1, ' E030', NUL L, 'A', '2 016-07-27 11:17:06.0 00', ' RED A CTED ', 0) | |
| 12052 | INSERT INT O [dbo].[B loodProduc t] ([Blood ProductGui d], [Produ ctName], [ ProductSho rtName], [ ProductTyp eCode], [P roductAttr ibuteForm] , [Product Volume], [ ProductCod e], [Maxim umStorageT ime], [Cro ssmatchReq uiredIndic ator], [Pr oductModif icationInd icator], [ ProductCod eIndicator ], [Origin alProductT ypeCode], [RetireDat e], [Recor dStatusCod e], [LastU pdateDate] , [LastUpd ateUser], [LastUpdat eFunctionI d]) VALUES ('15c8d37 6-7cf6-462 9-8392-968 e6c69d81e' , 'Liquid Apheresis PLASMA|ACD -A/XX/refg |3rd conta iner', 'PL ASMA AFR L iq ACD-A 3 C', 'E011' , '@54 H5' , 225, 'E8 742', 120, 0, 0, 1, 'E041', NU LL, 'A', ' 2016-07-27 11:17:06. 000', ' RED A CTED ', 0) | |
| 12053 | INSERT INT O [dbo].[B loodProduc t] ([Blood ProductGui d], [Produ ctName], [ ProductSho rtName], [ ProductTyp eCode], [P roductAttr ibuteForm] , [Product Volume], [ ProductCod e], [Maxim umStorageT ime], [Cro ssmatchReq uiredIndic ator], [Pr oductModif icationInd icator], [ ProductCod eIndicator ], [Origin alProductT ypeCode], [RetireDat e], [Recor dStatusCod e], [LastU pdateDate] , [LastUpd ateUser], [LastUpdat eFunctionI d]) VALUES ('f0ee2b4 5-67dc-490 1-96b6-972 787f63a96' , 'Apheres is PLATELE TS|ACD-A/X X/20-24C|R esLeu:<5E6 |<3E11 plt s|Psoralen -treated', 'PLT AFR ACD-A LUKO PR Psoraln ', 'E024', '@73 D4 J I K5', 200 , 'E8335', 120, 0, 0 , 1, 'E024 ', NULL, ' A', '2016- 07-27 11:1 7:06.000', ' RED A CTED ', 0) | |
| 12054 | INSERT INT O [dbo].[B loodProduc t] ([Blood ProductGui d], [Produ ctName], [ ProductSho rtName], [ ProductTyp eCode], [P roductAttr ibuteForm] , [Product Volume], [ ProductCod e], [Maxim umStorageT ime], [Cro ssmatchReq uiredIndic ator], [Pr oductModif icationInd icator], [ ProductCod eIndicator ], [Origin alProductT ypeCode], [RetireDat e], [Recor dStatusCod e], [LastU pdateDate] , [LastUpd ateUser], [LastUpdat eFunctionI d]) VALUES ('c02798c 4-6d42-478 5-8f66-983 129c4ea3c' , 'Apheres is PLATELE TS|ACD-A>P AS-C/XX/20 -24C|Open| Irradiated |ResLeu:<5 E6|Plasma reduced/Sa line added ', 'PLT AF R ACD-A>PA S-C OPN IR D LKPR PLS Red/SAL A dd', 'E024 ', '@BH B2 C2 D4 EJ' , 200, 'E8 482', 4, 0 , 0, 1, 'E 024', NULL , 'A', '20 16-07-27 1 1:17:06.00 0', ' RED A CTED ', 0) | |
| 12055 | INSERT INT O [dbo].[B loodProduc t] ([Blood ProductGui d], [Produ ctName], [ ProductSho rtName], [ ProductTyp eCode], [P roductAttr ibuteForm] , [Product Volume], [ ProductCod e], [Maxim umStorageT ime], [Cro ssmatchReq uiredIndic ator], [Pr oductModif icationInd icator], [ ProductCod eIndicator ], [Origin alProductT ypeCode], [RetireDat e], [Recor dStatusCod e], [LastU pdateDate] , [LastUpd ateUser], [LastUpdat eFunctionI d]) VALUES ('bdbf407 9-282f-4ac 9-b142-985 b72f21b9d' , 'Thawed Apheresis FRESH FROZ EN PLASMA| ACD-A/XX/r efg|Open|3 rd contain er', 'FFP AFR Thaw A CD-A OPN 3 C', 'E013' , '@54 B2 H5', 225, 'E8573', 2 4, 0, 0, 1 , 'E013', NULL, 'A', '2016-07- 27 11:17:0 6.000', ' RED A CTED ', 0) | |
| 12056 | INSERT INT O [dbo].[B loodProduc t] ([Blood ProductGui d], [Produ ctName], [ ProductSho rtName], [ ProductTyp eCode], [P roductAttr ibuteForm] , [Product Volume], [ ProductCod e], [Maxim umStorageT ime], [Cro ssmatchReq uiredIndic ator], [Pr oductModif icationInd icator], [ ProductCod eIndicator ], [Origin alProductT ypeCode], [RetireDat e], [Recor dStatusCod e], [LastU pdateDate] , [LastUpd ateUser], [LastUpdat eFunctionI d]) VALUES ('f61c5c9 a-0e2c-401 a-8fff-98b b142c8d93' , 'PLASMA| CPD/450mL/ <=-30C|Res Leu:<1E6|M ethylene b lue-treate d', 'PLASM A CPD LUKO PR Methyl Blue', 'E0 10', '@A5 D5 K3', 22 5, 'E8263' , 8760, 0, 0, 1, 'E0 17', NULL, 'A', '201 6-07-27 11 :17:06.000 ', ' RED A CTED ', 0) | |
| 12057 | INSERT INT O [dbo].[B loodProduc t] ([Blood ProductGui d], [Produ ctName], [ ProductSho rtName], [ ProductTyp eCode], [P roductAttr ibuteForm] , [Product Volume], [ ProductCod e], [Maxim umStorageT ime], [Cro ssmatchReq uiredIndic ator], [Pr oductModif icationInd icator], [ ProductCod eIndicator ], [Origin alProductT ypeCode], [RetireDat e], [Recor dStatusCod e], [LastU pdateDate] , [LastUpd ateUser], [LastUpdat eFunctionI d]) VALUES ('459d1c7 f-1bec-468 e-8270-98f b8fd9b789' , 'Apheres is PLATELE TS|ACD-A>P AS-C/XX/20 -24C|Open| Irradiated |ResLeu:<5 E6|Plasma reduced|2n d containe r', 'PLT A FR ACD-A>P AS-C OPN I RD LUKOPR PLS Red 2C ', 'E024', '@BH B2 C 2 D4 E5 H4 ', 200, 'E 8485', 4, 0, 0, 1, ' E024', NUL L, 'A', '2 016-07-27 11:17:06.0 00', ' RED A CTED ', 0) | |
| 12058 | INSERT INT O [dbo].[B loodProduc t] ([Blood ProductGui d], [Produ ctName], [ ProductSho rtName], [ ProductTyp eCode], [P roductAttr ibuteForm] , [Product Volume], [ ProductCod e], [Maxim umStorageT ime], [Cro ssmatchReq uiredIndic ator], [Pr oductModif icationInd icator], [ ProductCod eIndicator ], [Origin alProductT ypeCode], [RetireDat e], [Recor dStatusCod e], [LastU pdateDate] , [LastUpd ateUser], [LastUpdat eFunctionI d]) VALUES ('5c7867a e-3e6f-483 1-8982-996 4d3a40aca' , 'Washed POOLED PLA TELETS|PAS -E/XX/20-2 4C|ResLeu: <1E6|Buffy coat plts prep|3 un its', 'PLT Pool Wash PAS-E LUK OPR BUFCT 3U', 'E023 ', '@D5 D5 G2 J3', 2 00, 'E8505 ', 4, 0, 0 , 1, 'E023 ', NULL, ' A', '2016- 07-27 11:1 7:06.000', ' RED A CTED ', 0) | |
| 12059 | INSERT INT O [dbo].[B loodProduc t] ([Blood ProductGui d], [Produ ctName], [ ProductSho rtName], [ ProductTyp eCode], [P roductAttr ibuteForm] , [Product Volume], [ ProductCod e], [Maxim umStorageT ime], [Cro ssmatchReq uiredIndic ator], [Pr oductModif icationInd icator], [ ProductCod eIndicator ], [Origin alProductT ypeCode], [RetireDat e], [Recor dStatusCod e], [LastU pdateDate] , [LastUpd ateUser], [LastUpdat eFunctionI d]) VALUES ('18a791b c-6db7-475 7-b5f8-99c ababef402' , 'Apheres is PLASMA| ACD-A/XX/< =-18C|Psor alen-treat ed', 'PLAS MA AFR ACD -A Psoraln ', 'E012', '@47 K5', 225, 'E83 49', 8760, 0, 0, 1, 'E014', NU LL, 'A', ' 2016-07-27 11:17:06. 000', ' RED A CTED ', 0) | |
| 12060 | INSERT INT O [dbo].[B loodProduc t] ([Blood ProductGui d], [Produ ctName], [ ProductSho rtName], [ ProductTyp eCode], [P roductAttr ibuteForm] , [Product Volume], [ ProductCod e], [Maxim umStorageT ime], [Cro ssmatchReq uiredIndic ator], [Pr oductModif icationInd icator], [ ProductCod eIndicator ], [Origin alProductT ypeCode], [RetireDat e], [Recor dStatusCod e], [LastU pdateDate] , [LastUpd ateUser], [LastUpdat eFunctionI d]) VALUES ('59daedd 8-75d4-406 1-b0f1-9a0 4782b0ab3' , 'Apheres is PLATELE TS|ACD-A>P AS-C/XX/20 -24C|Open| ResLeu:<5E 6|3rd cont ainer', 'P LT AFR ACD -A>PAS-C O PN LUKOPR 3C', 'E024 ', '@BH B2 D4 H5', 2 00, 'E8362 ', 4, 0, 0 , 1, 'E024 ', NULL, ' A', '2016- 07-27 11:1 7:06.000', ' RED A CTED ', 0) | |
| 12061 | INSERT INT O [dbo].[B loodProduc t] ([Blood ProductGui d], [Produ ctName], [ ProductSho rtName], [ ProductTyp eCode], [P roductAttr ibuteForm] , [Product Volume], [ ProductCod e], [Maxim umStorageT ime], [Cro ssmatchReq uiredIndic ator], [Pr oductModif icationInd icator], [ ProductCod eIndicator ], [Origin alProductT ypeCode], [RetireDat e], [Recor dStatusCod e], [LastU pdateDate] , [LastUpd ateUser], [LastUpdat eFunctionI d]) VALUES ('af2ebd6 6-3083-485 5-afe2-9a9 5d2e330e0' , 'RED BLO OD CELLS|S AGM/450mL/ refg|Open| Irradiated |ResLeu:<1 .2E9|Plasm a removed/ SAGM added |0.4-0.5', 'RBC SAGM OPN IRD L UKOPR PLS Rem/SAGM A dd 0.4-0.5 ', 'E002', '@24 B2 C 2 D9 EL LA ', 350, 'E 8498', 24, 0, 0, 1, 'E002', NU LL, 'A', ' 2016-07-27 11:17:06. 000', ' RED A CTED ', 0) | |
| 12062 | INSERT INT O [dbo].[B loodProduc t] ([Blood ProductGui d], [Produ ctName], [ ProductSho rtName], [ ProductTyp eCode], [P roductAttr ibuteForm] , [Product Volume], [ ProductCod e], [Maxim umStorageT ime], [Cro ssmatchReq uiredIndic ator], [Pr oductModif icationInd icator], [ ProductCod eIndicator ], [Origin alProductT ypeCode], [RetireDat e], [Recor dStatusCod e], [LastU pdateDate] , [LastUpd ateUser], [LastUpdat eFunctionI d]) VALUES ('0dfcb5a 3-7b6d-43c 3-91f7-9ab 7fede4a63' , 'CRYOPRE CIPITATE|N S/XX/<=-25 C|Methylen e blue-tre ated', 'CR YO NS Meth yl Blue', 'E028', '@ DO K3', 15 , 'E8304', 8760, 0, 0, 1, 'E02 8', NULL, 'A', '2016 -07-27 11: 17:06.000' , ' RED A CTED ', 0) | |
| 12063 | INSERT INT O [dbo].[B loodProduc t] ([Blood ProductGui d], [Produ ctName], [ ProductSho rtName], [ ProductTyp eCode], [P roductAttr ibuteForm] , [Product Volume], [ ProductCod e], [Maxim umStorageT ime], [Cro ssmatchReq uiredIndic ator], [Pr oductModif icationInd icator], [ ProductCod eIndicator ], [Origin alProductT ypeCode], [RetireDat e], [Recor dStatusCod e], [LastU pdateDate] , [LastUpd ateUser], [LastUpdat eFunctionI d]) VALUES ('fd7d55e 2-0d21-451 8-87f8-9af 857e668c7' , 'POOLED PLATELETS| CPD>PAS-E/ XX/20-24C| ResLeu:<1E 6|Buffy co at plts pr ep|2 units |Bacterial monitorin g', 'PLT P ool CPD>PA S-E LUKOPR BUFCT 2U BacMtr', ' E022', '@D P D5 G2 J2 N2', 200, 'E8499', 120, 0, 0, 1, 'E022' , NULL, 'A ', '2016-0 7-27 11:17 :06.000', ' RED A CTED ', 0) | |
| 12064 | INSERT INT O [dbo].[B loodProduc t] ([Blood ProductGui d], [Produ ctName], [ ProductSho rtName], [ ProductTyp eCode], [P roductAttr ibuteForm] , [Product Volume], [ ProductCod e], [Maxim umStorageT ime], [Cro ssmatchReq uiredIndic ator], [Pr oductModif icationInd icator], [ ProductCod eIndicator ], [Origin alProductT ypeCode], [RetireDat e], [Recor dStatusCod e], [LastU pdateDate] , [LastUpd ateUser], [LastUpdat eFunctionI d]) VALUES ('50a70a1 2-ae26-4f1 7-b265-9b9 c881d597a' , 'Liquid PLASMA|CPD /450mL/ref g|For mnf: noninjecta ble', 'PLA SMA Liq CP D MNFNI', 'E011', '@ 03 A3', 22 5, 'E8496' , 624, 0, 0, 1, 'E01 6', NULL, 'A', '2016 -07-27 11: 17:06.000' , ' RED A CTED ', 0) | |
| 12065 | INSERT INT O [dbo].[B loodProduc t] ([Blood ProductGui d], [Produ ctName], [ ProductSho rtName], [ ProductTyp eCode], [P roductAttr ibuteForm] , [Product Volume], [ ProductCod e], [Maxim umStorageT ime], [Cro ssmatchReq uiredIndic ator], [Pr oductModif icationInd icator], [ ProductCod eIndicator ], [Origin alProductT ypeCode], [RetireDat e], [Recor dStatusCod e], [LastU pdateDate] , [LastUpd ateUser], [LastUpdat eFunctionI d]) VALUES ('d70a95d d-d52d-4ac a-a17c-9be 5b396170b' , 'Apheres is RED BLO OD CELLS|A CD-A>AS3/X X/refg|Irr adiated|Re sLeu:NS|Pl asma added |2nd conta iner', 'RB C AFR ACD- A>AS3 IRD LUKOPR PA 2C', 'E009 ', '@AZ C2 D2 E4 H4' , 350, 'E8 436', 672, 0, 0, 1, 'E009', NU LL, 'A', ' 2016-07-27 11:17:06. 000', ' RED A CTED ', 0) | |
| 12066 | INSERT INT O [dbo].[B loodProduc t] ([Blood ProductGui d], [Produ ctName], [ ProductSho rtName], [ ProductTyp eCode], [P roductAttr ibuteForm] , [Product Volume], [ ProductCod e], [Maxim umStorageT ime], [Cro ssmatchReq uiredIndic ator], [Pr oductModif icationInd icator], [ ProductCod eIndicator ], [Origin alProductT ypeCode], [RetireDat e], [Recor dStatusCod e], [LastU pdateDate] , [LastUpd ateUser], [LastUpdat eFunctionI d]) VALUES ('650e7f1 f-a40e-43e 9-a7ef-9bf 8e9b9a456' , 'Apheres is PLATELE TS|ACD-A>P AS-E/XX/20 -24C|ResLe u:<1E6|Sup ernat redu ced|3rd co ntainer', 'PLT AFR A CD-A>PAS-E LUKOPR SU PRed 3C', 'E024', '@ DS D5 EA H 5', 200, ' E8531', 12 0, 0, 0, 1 , 'E024', NULL, 'A', '2016-07- 27 11:17:0 6.000', ' RED A CTED ', 0) | |
| 12067 | INSERT INT O [dbo].[B loodProduc t] ([Blood ProductGui d], [Produ ctName], [ ProductSho rtName], [ ProductTyp eCode], [P roductAttr ibuteForm] , [Product Volume], [ ProductCod e], [Maxim umStorageT ime], [Cro ssmatchReq uiredIndic ator], [Pr oductModif icationInd icator], [ ProductCod eIndicator ], [Origin alProductT ypeCode], [RetireDat e], [Recor dStatusCod e], [LastU pdateDate] , [LastUpd ateUser], [LastUpdat eFunctionI d]) VALUES ('dc49741 2-3c5d-4d1 9-9846-9c4 20d26f07b' , 'Thawed POOLED FRE SH FROZEN PLASMA|CP2 D/XX/refg| Psoralen-t reated', ' FFP Pool T haw CP2D P soraln', ' E011', '@1 3 K5', 500 , 'E8392', 4, 0, 0, 1, 'E056', NULL, 'A' , '2016-07 -27 11:17: 06.000', ' RED A CTED ', 0) | |
| 12068 | INSERT INT O [dbo].[B loodProduc t] ([Blood ProductGui d], [Produ ctName], [ ProductSho rtName], [ ProductTyp eCode], [P roductAttr ibuteForm] , [Product Volume], [ ProductCod e], [Maxim umStorageT ime], [Cro ssmatchReq uiredIndic ator], [Pr oductModif icationInd icator], [ ProductCod eIndicator ], [Origin alProductT ypeCode], [RetireDat e], [Recor dStatusCod e], [LastU pdateDate] , [LastUpd ateUser], [LastUpdat eFunctionI d]) VALUES ('3a6ac98 3-a14f-44c 2-b2b9-9d2 1211c3a95' , 'Frozen Apheresis PLATELETS| ACD-A/XX/< =-18C|For mnf:noninj ectable re str use|Ir radiated|R esLeu:<5E6 |1st conta iner', 'PL T AFR Froz ACD-A MNF RNI IRD LU KOPR 1C', 'E025', '@ 47 A5 C2 D 4 H3', 200 , 'E8227', 8760, 0, 0, 1, 'E02 5', NULL, 'A', '2016 -07-27 11: 17:06.000' , ' RED A CTED ', 0) | |
| 12069 | INSERT INT O [dbo].[B loodProduc t] ([Blood ProductGui d], [Produ ctName], [ ProductSho rtName], [ ProductTyp eCode], [P roductAttr ibuteForm] , [Product Volume], [ ProductCod e], [Maxim umStorageT ime], [Cro ssmatchReq uiredIndic ator], [Pr oductModif icationInd icator], [ ProductCod eIndicator ], [Origin alProductT ypeCode], [RetireDat e], [Recor dStatusCod e], [LastU pdateDate] , [LastUpd ateUser], [LastUpdat eFunctionI d]) VALUES ('1874813 4-ea78-48a 7-b46c-9d7 0cb112c3b' , 'Washed RED BLOOD CELLS|None /XX/refg|O pen|Irradi ated|ResLe u:NS|Super nat rem/Pl asma added ', 'RBC Wa sh None OP N IRD LUKO PR SR/PA', 'E003', ' @AS B2 C2 D2 E8', 20 0, 'E8408' , 24, 0, 0 , 1, 'E003 ', NULL, ' A', '2016- 07-27 11:1 7:06.000', ' RED A CTED ', 0) | |
| 12070 | INSERT INT O [dbo].[B loodProduc t] ([Blood ProductGui d], [Produ ctName], [ ProductSho rtName], [ ProductTyp eCode], [P roductAttr ibuteForm] , [Product Volume], [ ProductCod e], [Maxim umStorageT ime], [Cro ssmatchReq uiredIndic ator], [Pr oductModif icationInd icator], [ ProductCod eIndicator ], [Origin alProductT ypeCode], [RetireDat e], [Recor dStatusCod e], [LastU pdateDate] , [LastUpd ateUser], [LastUpdat eFunctionI d]) VALUES ('039bb0d 7-7c89-4c4 6-b661-9e3 aab6cda6d' , 'Apheres is PLATELE TS|ACD-A/X X/20-24C|I rradiated| ResLeu:<5E 6|Plasma r educed|3rd container |Psoralen- treated', 'PLT AFR A CD-A IRD L UKOPR PLS Red 3C Pso raln', 'E0 24', '@73 C2 D4 E5 H 5 K5', 200 , 'E8755', 120, 0, 0 , 1, 'E024 ', NULL, ' A', '2016- 07-27 11:1 7:06.000', ' RED A CTED ', 0) | |
| 12071 | INSERT INT O [dbo].[B loodProduc t] ([Blood ProductGui d], [Produ ctName], [ ProductSho rtName], [ ProductTyp eCode], [P roductAttr ibuteForm] , [Product Volume], [ ProductCod e], [Maxim umStorageT ime], [Cro ssmatchReq uiredIndic ator], [Pr oductModif icationInd icator], [ ProductCod eIndicator ], [Origin alProductT ypeCode], [RetireDat e], [Recor dStatusCod e], [LastU pdateDate] , [LastUpd ateUser], [LastUpdat eFunctionI d]) VALUES ('e4bda25 3-7a68-4b3 2-8626-9e4 7b4ca4728' , 'Liquid Apheresis PLASMA|ACD -A/XX/refg |4th conta iner', 'PL ASMA AFR L iq ACD-A 4 C', 'E011' , '@54 H6' , 225, 'E8 743', 120, 0, 0, 1, 'E041', NU LL, 'A', ' 2016-07-27 11:17:06. 000', ' RED A CTED ', 0) | |
| 12072 | INSERT INT O [dbo].[B loodProduc t] ([Blood ProductGui d], [Produ ctName], [ ProductSho rtName], [ ProductTyp eCode], [P roductAttr ibuteForm] , [Product Volume], [ ProductCod e], [Maxim umStorageT ime], [Cro ssmatchReq uiredIndic ator], [Pr oductModif icationInd icator], [ ProductCod eIndicator ], [Origin alProductT ypeCode], [RetireDat e], [Recor dStatusCod e], [LastU pdateDate] , [LastUpd ateUser], [LastUpdat eFunctionI d]) VALUES ('f23e711 d-b071-493 e-a290-9eb 922ecb7b3' , 'Thawed POOLED CRY OPRECIPITA TE|None/XX /rt|2 unit s', 'CRYO Pool Thaw None 2U', 'E031', '@ 83 J2', 10 0, 'E8604' , 6, 0, 0, 1, 'E031' , NULL, 'A ', '2016-0 7-27 11:17 :06.000', ' RED A CTED ', 0) | |
| 12073 | INSERT INT O [dbo].[B loodProduc t] ([Blood ProductGui d], [Produ ctName], [ ProductSho rtName], [ ProductTyp eCode], [P roductAttr ibuteForm] , [Product Volume], [ ProductCod e], [Maxim umStorageT ime], [Cro ssmatchReq uiredIndic ator], [Pr oductModif icationInd icator], [ ProductCod eIndicator ], [Origin alProductT ypeCode], [RetireDat e], [Recor dStatusCod e], [LastU pdateDate] , [LastUpd ateUser], [LastUpdat eFunctionI d]) VALUES ('3c63756 d-723a-4af 7-8964-9f3 e10209f4b' , 'POOLED PLATELETS| PAS-C/XX/2 0-24C|Irra diated|Res Leu:<5E6|F rom 5 dono rs', 'PLT Pool PAS-C IRD LUKOP R 5DNRD', 'E022', '@ B5 C2 D4 O 6', 200, ' E8663', 4, 0, 0, 1, 'E022', NU LL, 'A', ' 2016-07-27 11:17:06. 000', ' RED A CTED ', 0) | |
| 12074 | INSERT INT O [dbo].[B loodProduc t] ([Blood ProductGui d], [Produ ctName], [ ProductSho rtName], [ ProductTyp eCode], [P roductAttr ibuteForm] , [Product Volume], [ ProductCod e], [Maxim umStorageT ime], [Cro ssmatchReq uiredIndic ator], [Pr oductModif icationInd icator], [ ProductCod eIndicator ], [Origin alProductT ypeCode], [RetireDat e], [Recor dStatusCod e], [LastU pdateDate] , [LastUpd ateUser], [LastUpdat eFunctionI d]) VALUES ('c1ba9de 7-1294-486 4-a81c-9f7 e761416a1' , 'Washed Apheresis PLATELETS| None/XX/20 -24C|Open| ResLeu:<5E 6|<3E11 pl ts|Psorale n-treated' , 'PLT AFR Wash None OPN LUKOP R Psoraln' , 'E027', '@71 B2 D4 JI K5', 2 00, 'E8727 ', 4, 0, 0 , 1, 'E027 ', NULL, ' A', '2016- 07-27 11:1 7:06.000', ' RED A CTED ', 0) | |
| 12075 | INSERT INT O [dbo].[B loodProduc t] ([Blood ProductGui d], [Produ ctName], [ ProductSho rtName], [ ProductTyp eCode], [P roductAttr ibuteForm] , [Product Volume], [ ProductCod e], [Maxim umStorageT ime], [Cro ssmatchReq uiredIndic ator], [Pr oductModif icationInd icator], [ ProductCod eIndicator ], [Origin alProductT ypeCode], [RetireDat e], [Recor dStatusCod e], [LastU pdateDate] , [LastUpd ateUser], [LastUpdat eFunctionI d]) VALUES ('d7f1d02 d-d0b4-435 d-bb71-9fc 58f610bf2' , 'POOLED FRESH FROZ EN PLASMA| CP2D/XX/<= -18C|3 uni ts|Psorale n-treated' , 'FFP Poo l CP2D 3U Psoraln', 'E010', '@ 37 J3 K5', 500, 'E83 69', 8760, 0, 0, 1, 'E059', NU LL, 'A', ' 2016-07-27 11:17:06. 000', ' RED A CTED ', 0) | |
| 12076 | INSERT INT O [dbo].[B loodProduc t] ([Blood ProductGui d], [Produ ctName], [ ProductSho rtName], [ ProductTyp eCode], [P roductAttr ibuteForm] , [Product Volume], [ ProductCod e], [Maxim umStorageT ime], [Cro ssmatchReq uiredIndic ator], [Pr oductModif icationInd icator], [ ProductCod eIndicator ], [Origin alProductT ypeCode], [RetireDat e], [Recor dStatusCod e], [LastU pdateDate] , [LastUpd ateUser], [LastUpdat eFunctionI d]) VALUES ('1c9bd63 9-aca9-494 d-b5d1-a00 e440d904f' , 'POOLED PLATELETS| PAS-E/XX/2 0-24C|Irra diated|Res Leu:<1E6|A pprox 240 E9 plts', 'PLT Pool PAS-E IRD LUKOPR', ' E022', '@D 5 C2 D5 JB ', 200, 'E 8448', 4, 0, 0, 1, ' E022', NUL L, 'A', '2 016-07-27 11:17:06.0 00', ' RED A CTED ', 0) | |
| 12077 | INSERT INT O [dbo].[B loodProduc t] ([Blood ProductGui d], [Produ ctName], [ ProductSho rtName], [ ProductTyp eCode], [P roductAttr ibuteForm] , [Product Volume], [ ProductCod e], [Maxim umStorageT ime], [Cro ssmatchReq uiredIndic ator], [Pr oductModif icationInd icator], [ ProductCod eIndicator ], [Origin alProductT ypeCode], [RetireDat e], [Recor dStatusCod e], [LastU pdateDate] , [LastUpd ateUser], [LastUpdat eFunctionI d]) VALUES ('8679612 6-85ce-4cb 6-899b-a01 e22495b58' , 'Apheres is FRESH F ROZEN PLAS MA|NaCitra te/XX/<=-2 5C|ResLeu: <1E6|>=200 mL<400mL|F rozen <=6h |2nd conta iner', 'FF P AFR NaCi t LUKOPR 2 C', 'E012' , '@CQ D5 F5 G4 H4', 225, 'E86 23', 8760, 0, 0, 1, 'E012', NU LL, 'A', ' 2016-07-27 11:17:06. 000', ' RED A CTED ', 0) | |
| 12078 | INSERT INT O [dbo].[B loodProduc t] ([Blood ProductGui d], [Produ ctName], [ ProductSho rtName], [ ProductTyp eCode], [P roductAttr ibuteForm] , [Product Volume], [ ProductCod e], [Maxim umStorageT ime], [Cro ssmatchReq uiredIndic ator], [Pr oductModif icationInd icator], [ ProductCod eIndicator ], [Origin alProductT ypeCode], [RetireDat e], [Recor dStatusCod e], [LastU pdateDate] , [LastUpd ateUser], [LastUpdat eFunctionI d]) VALUES ('ee398b4 e-d45c-4f1 7-9a7b-a0f bb724c627' , 'Frozen POOLED PLA TELETS|CP2 D/XX/<=-18 C|For mnf: noninjecta ble|ResLeu :<5E6', 'P LT Pool Fr oz CP2D MN FNI LUKOPR ', 'E025', '@37 A3 D 4', 200, ' E8475', 87 60, 0, 0, 1, 'E060', NULL, 'A' , '2016-07 -27 11:17: 06.000', ' RED A CTED ', 0) | |
| 12079 | INSERT INT O [dbo].[B loodProduc t] ([Blood ProductGui d], [Produ ctName], [ ProductSho rtName], [ ProductTyp eCode], [P roductAttr ibuteForm] , [Product Volume], [ ProductCod e], [Maxim umStorageT ime], [Cro ssmatchReq uiredIndic ator], [Pr oductModif icationInd icator], [ ProductCod eIndicator ], [Origin alProductT ypeCode], [RetireDat e], [Recor dStatusCod e], [LastU pdateDate] , [LastUpd ateUser], [LastUpdat eFunctionI d]) VALUES ('7bb6b3e 2-3645-4af 2-ba94-a10 10e55a7af' , 'Washed Apheresis RED BLOOD CELLS|None /XX/refg|O pen|ResLeu :<5E6|Mult iple wash cycles', ' RBC AFR Wa sh None OP N LUKOPR M WC', 'E049 ', '@AS B2 D4 GH', 2 00, 'E8539 ', 24, 0, 0, 1, 'E04 9', NULL, 'A', '2016 -07-27 11: 17:06.000' , ' RED A CTED ', 0) | |
| 12080 | INSERT INT O [dbo].[B loodProduc t] ([Blood ProductGui d], [Produ ctName], [ ProductSho rtName], [ ProductTyp eCode], [P roductAttr ibuteForm] , [Product Volume], [ ProductCod e], [Maxim umStorageT ime], [Cro ssmatchReq uiredIndic ator], [Pr oductModif icationInd icator], [ ProductCod eIndicator ], [Origin alProductT ypeCode], [RetireDat e], [Recor dStatusCod e], [LastU pdateDate] , [LastUpd ateUser], [LastUpdat eFunctionI d]) VALUES ('145c1f4 f-e93a-4e9 7-abeb-a13 1fd441d10' , 'Apheres is PLATELE TS|ACD-A>P AS-C/XX/20 -24C|ResLe u:<5E6|Ped iatric dos e|Psoralen -treated', 'PLT AFR ACD-A>PAS- C LUKOPR P edi Psoral n', 'E024' , '@BH D4 JO K5', 20 0, 'E8345' , 120, 0, 0, 1, 'E02 4', NULL, 'A', '2016 -07-27 11: 17:06.000' , ' RED A CTED ', 0) | |
| 12081 | INSERT INT O [dbo].[B loodProduc t] ([Blood ProductGui d], [Produ ctName], [ ProductSho rtName], [ ProductTyp eCode], [P roductAttr ibuteForm] , [Product Volume], [ ProductCod e], [Maxim umStorageT ime], [Cro ssmatchReq uiredIndic ator], [Pr oductModif icationInd icator], [ ProductCod eIndicator ], [Origin alProductT ypeCode], [RetireDat e], [Recor dStatusCod e], [LastU pdateDate] , [LastUpd ateUser], [LastUpdat eFunctionI d]) VALUES ('98a776d f-97bf-487 d-b47f-a1b 1d31e0f98' , 'Apheres is PLATELE TS|PAS-C/X X/20-24C|R esLeu:<1E6 |Approx 12 0 E9 plts' , 'PLT AFR PAS-C LUK OPR', 'E02 4', '@B5 D 5 J9', 200 , 'E8449', 120, 0, 0 , 1, 'E024 ', NULL, ' A', '2016- 07-27 11:1 7:06.000', ' RED A CTED ', 0) | |
| 12082 | INSERT INT O [dbo].[B loodProduc t] ([Blood ProductGui d], [Produ ctName], [ ProductSho rtName], [ ProductTyp eCode], [P roductAttr ibuteForm] , [Product Volume], [ ProductCod e], [Maxim umStorageT ime], [Cro ssmatchReq uiredIndic ator], [Pr oductModif icationInd icator], [ ProductCod eIndicator ], [Origin alProductT ypeCode], [RetireDat e], [Recor dStatusCod e], [LastU pdateDate] , [LastUpd ateUser], [LastUpdat eFunctionI d]) VALUES ('457f10e 1-cd46-4f0 0-ad2e-a1d 1be2e7426' , 'POOLED PLATELETS| PAS-E/XX/2 0-24C|Irra diated|Res Leu:<1E6|B acterial m onitoring' , 'PLT Poo l PAS-E IR D LUKOPR B acMtr', 'E 022', '@D5 C2 D5 N2' , 200, 'E8 243', 120, 0, 0, 1, 'E022', NU LL, 'A', ' 2016-07-27 11:17:06. 000', ' RED A CTED ', 0) | |
| 12083 | INSERT INT O [dbo].[B loodProduc t] ([Blood ProductGui d], [Produ ctName], [ ProductSho rtName], [ ProductTyp eCode], [P roductAttr ibuteForm] , [Product Volume], [ ProductCod e], [Maxim umStorageT ime], [Cro ssmatchReq uiredIndic ator], [Pr oductModif icationInd icator], [ ProductCod eIndicator ], [Origin alProductT ypeCode], [RetireDat e], [Recor dStatusCod e], [LastU pdateDate] , [LastUpd ateUser], [LastUpdat eFunctionI d]) VALUES ('a50666d 2-3850-4ca c-9bf9-a1e ffb3b68d9' , 'Apheres is PLASMA| ACD-A/XX/< =-18C|<200 mL|Psoral en-treated ', 'PLASMA AFR ACD-A LowVol Ps oraln', 'E 012', '@47 F4 K5', 2 25, 'E8350 ', 8760, 0 , 0, 1, 'E 014', NULL , 'A', '20 16-07-27 1 1:17:06.00 0', ' RED A CTED ', 0) | |
| 12084 | INSERT INT O [dbo].[B loodProduc t] ([Blood ProductGui d], [Produ ctName], [ ProductSho rtName], [ ProductTyp eCode], [P roductAttr ibuteForm] , [Product Volume], [ ProductCod e], [Maxim umStorageT ime], [Cro ssmatchReq uiredIndic ator], [Pr oductModif icationInd icator], [ ProductCod eIndicator ], [Origin alProductT ypeCode], [RetireDat e], [Recor dStatusCod e], [LastU pdateDate] , [LastUpd ateUser], [LastUpdat eFunctionI d]) VALUES ('8132719 e-5b86-4fe 8-9fce-a36 8ae2397ef' , 'POOLED PLATELETS| PAS-C/XX/2 0-24C|Buff y coat plt s prep|Pso ralen-trea ted', 'PLT Pool PAS- C BUFCT Ps oraln', 'E 022', '@B5 G2 K5', 2 00, 'E8259 ', 4, 0, 0 , 1, 'E022 ', NULL, ' A', '2016- 07-27 11:1 7:06.000', ' RED A CTED ', 0) | |
| 12085 | INSERT INT O [dbo].[B loodProduc t] ([Blood ProductGui d], [Produ ctName], [ ProductSho rtName], [ ProductTyp eCode], [P roductAttr ibuteForm] , [Product Volume], [ ProductCod e], [Maxim umStorageT ime], [Cro ssmatchReq uiredIndic ator], [Pr oductModif icationInd icator], [ ProductCod eIndicator ], [Origin alProductT ypeCode], [RetireDat e], [Recor dStatusCod e], [LastU pdateDate] , [LastUpd ateUser], [LastUpdat eFunctionI d]) VALUES ('1f93310 1-9287-439 0-aa4d-a3f a78c41a64' , 'WHOLE B LOOD|CPD/5 00mL/rt|Fo r mnf:inje ctable', ' WB CPD MNF I', 'E001' , '@86 A2' , 500, 'E8 661', 504, 0, 0, 1, 'E001', NU LL, 'A', ' 2016-07-27 11:17:06. 000', ' RED A CTED ', 0) | |
| 12086 | INSERT INT O [dbo].[B loodProduc t] ([Blood ProductGui d], [Produ ctName], [ ProductSho rtName], [ ProductTyp eCode], [P roductAttr ibuteForm] , [Product Volume], [ ProductCod e], [Maxim umStorageT ime], [Cro ssmatchReq uiredIndic ator], [Pr oductModif icationInd icator], [ ProductCod eIndicator ], [Origin alProductT ypeCode], [RetireDat e], [Recor dStatusCod e], [LastU pdateDate] , [LastUpd ateUser], [LastUpdat eFunctionI d]) VALUES ('ea8688f 1-a12c-447 2-869c-a51 cc34bb16a' , 'Apheres is PLASMA| ACD-A/XX/< =-18C|>=60 0mL|RT<=24 h frozen<= 24h', 'PLA SMA AFR AC D-A LrgVol ', 'E012', '@47 F7 G G', 225, ' E8176', 87 60, 0, 0, 1, 'E014', NULL, 'A' , '2016-07 -27 11:17: 06.000', ' RED A CTED ', 0) | |
| 12087 | INSERT INT O [dbo].[B loodProduc t] ([Blood ProductGui d], [Produ ctName], [ ProductSho rtName], [ ProductTyp eCode], [P roductAttr ibuteForm] , [Product Volume], [ ProductCod e], [Maxim umStorageT ime], [Cro ssmatchReq uiredIndic ator], [Pr oductModif icationInd icator], [ ProductCod eIndicator ], [Origin alProductT ypeCode], [RetireDat e], [Recor dStatusCod e], [LastU pdateDate] , [LastUpd ateUser], [LastUpdat eFunctionI d]) VALUES ('78c421c 6-bb1e-46d c-a4f0-a52 a415a680b' , 'POOLED PLATELETS| PAS-E/XX/2 0-24C|ResL eu:<1E6|Bu ffy coat p lts prep|A pprox 360 E9 plts', 'PLT Pool PAS-E LUKO PR BUFCT', 'E022', ' @D5 D5 G2 JD', 200, 'E8193', 4 , 0, 0, 1, 'E022', N ULL, 'A', '2016-07-2 7 11:17:06 .000', ' RED A CTED ', 0) | |
| 12088 | INSERT INT O [dbo].[B loodProduc t] ([Blood ProductGui d], [Produ ctName], [ ProductSho rtName], [ ProductTyp eCode], [P roductAttr ibuteForm] , [Product Volume], [ ProductCod e], [Maxim umStorageT ime], [Cro ssmatchReq uiredIndic ator], [Pr oductModif icationInd icator], [ ProductCod eIndicator ], [Origin alProductT ypeCode], [RetireDat e], [Recor dStatusCod e], [LastU pdateDate] , [LastUpd ateUser], [LastUpdat eFunctionI d]) VALUES ('0b1dcab b-d97e-485 d-8fc2-a54 8c6a0b944' , 'PLATELE TS|CPD/500 mL/20-24C| ResLeu:<1E 6|Plasma a dded', 'PL T CPD LUKO PR PA', 'E 020', '@65 D5 E4', 5 0, 'E8650' , 120, 0, 0, 1, 'E02 0', NULL, 'A', '2016 -07-27 11: 17:06.000' , ' RED A CTED ', 0) | |
| 12089 | INSERT INT O [dbo].[B loodProduc t] ([Blood ProductGui d], [Produ ctName], [ ProductSho rtName], [ ProductTyp eCode], [P roductAttr ibuteForm] , [Product Volume], [ ProductCod e], [Maxim umStorageT ime], [Cro ssmatchReq uiredIndic ator], [Pr oductModif icationInd icator], [ ProductCod eIndicator ], [Origin alProductT ypeCode], [RetireDat e], [Recor dStatusCod e], [LastU pdateDate] , [LastUpd ateUser], [LastUpdat eFunctionI d]) VALUES ('ce0ac90 9-d525-4c4 9-a3df-a57 bb4bf4baa' , 'Apheres is FRESH F ROZEN PLAS MA|NaCitra te/XX/<=-2 5C|ResLeu: <1E6|>=200 mL<400mL|F rozen <=18 h|2nd cont ainer', 'F FP AFR NaC it LUKOPR 2C', 'E012 ', '@CQ D5 F5 G6 H4' , 225, 'E8 634', 8760 , 0, 0, 1, 'E012', N ULL, 'A', '2016-07-2 7 11:17:06 .000', ' RED A CTED ', 0) | |
| 12090 | INSERT INT O [dbo].[B loodProduc t] ([Blood ProductGui d], [Produ ctName], [ ProductSho rtName], [ ProductTyp eCode], [P roductAttr ibuteForm] , [Product Volume], [ ProductCod e], [Maxim umStorageT ime], [Cro ssmatchReq uiredIndic ator], [Pr oductModif icationInd icator], [ ProductCod eIndicator ], [Origin alProductT ypeCode], [RetireDat e], [Recor dStatusCod e], [LastU pdateDate] , [LastUpd ateUser], [LastUpdat eFunctionI d]) VALUES ('a1190ef 7-fb4d-43f 7-9003-a58 4d02757ca' , 'Deglyce rolized RE D BLOOD CE LLS|SAGM/X X/refg|Res Leu:<1E6', 'RBC Deg SAGM LUKOP R', 'E006' , '@A9 D5' , 200, 'E8 657', 336, 0, 0, 1, 'E006', NU LL, 'A', ' 2016-07-27 11:17:06. 000', ' RED A CTED ', 0) | |
| 12091 | INSERT INT O [dbo].[B loodProduc t] ([Blood ProductGui d], [Produ ctName], [ ProductSho rtName], [ ProductTyp eCode], [P roductAttr ibuteForm] , [Product Volume], [ ProductCod e], [Maxim umStorageT ime], [Cro ssmatchReq uiredIndic ator], [Pr oductModif icationInd icator], [ ProductCod eIndicator ], [Origin alProductT ypeCode], [RetireDat e], [Recor dStatusCod e], [LastU pdateDate] , [LastUpd ateUser], [LastUpdat eFunctionI d]) VALUES ('cd41f2b 6-e841-408 b-aecc-a5e 99554f683' , 'Frozen PLATELETS| CPD/XX/<=- 18C|For mn f:injectab le|ResLeu: <8.3E5', ' PLT Froz C PD MNFI LU KOPR', 'E0 25', '@35 A2 D6', 50 , 'E8329', 8760, 0, 0, 1, 'E06 9', NULL, 'A', '2016 -07-27 11: 17:06.000' , ' RED A CTED ', 0) | |
| 12092 | INSERT INT O [dbo].[B loodProduc t] ([Blood ProductGui d], [Produ ctName], [ ProductSho rtName], [ ProductTyp eCode], [P roductAttr ibuteForm] , [Product Volume], [ ProductCod e], [Maxim umStorageT ime], [Cro ssmatchReq uiredIndic ator], [Pr oductModif icationInd icator], [ ProductCod eIndicator ], [Origin alProductT ypeCode], [RetireDat e], [Recor dStatusCod e], [LastU pdateDate] , [LastUpd ateUser], [LastUpdat eFunctionI d]) VALUES ('a9e4ac3 8-69d2-40d 7-902e-a5e df53c102c' , 'POOLED PLATELETS| CPD>PAS-E/ XX/20-24C| Irradiated |ResLeu:<1 E6|Superna t reduced| Buffy coat plts prep |5 units', 'PLT Pool CPD>PAS-E IRD LUKOP R SUPRed B UFCT 5U', 'E022', '@ DP C2 D5 E A G2 J5', 200, 'E851 4', 120, 0 , 0, 1, 'E 022', NULL , 'A', '20 16-07-27 1 1:17:06.00 0', ' RED A CTED ', 0) | |
| 12093 | INSERT INT O [dbo].[B loodProduc t] ([Blood ProductGui d], [Produ ctName], [ ProductSho rtName], [ ProductTyp eCode], [P roductAttr ibuteForm] , [Product Volume], [ ProductCod e], [Maxim umStorageT ime], [Cro ssmatchReq uiredIndic ator], [Pr oductModif icationInd icator], [ ProductCod eIndicator ], [Origin alProductT ypeCode], [RetireDat e], [Recor dStatusCod e], [LastU pdateDate] , [LastUpd ateUser], [LastUpdat eFunctionI d]) VALUES ('a589b0f d-004e-42b d-95cb-a7e 070734abf' , 'Thawed Apheresis PLASMA|ACD -A/XX/refg |<200 mL|P soralen-tr eated', 'P LASMA AFR Thaw ACD-A LowVol Ps oraln', 'E 013', '@54 F4 K5', 2 25, 'E8387 ', 120, 0, 0, 1, 'E0 15', NULL, 'A', '201 6-07-27 11 :17:06.000 ', ' RED A CTED ', 0) | |
| 12094 | INSERT INT O [dbo].[B loodProduc t] ([Blood ProductGui d], [Produ ctName], [ ProductSho rtName], [ ProductTyp eCode], [P roductAttr ibuteForm] , [Product Volume], [ ProductCod e], [Maxim umStorageT ime], [Cro ssmatchReq uiredIndic ator], [Pr oductModif icationInd icator], [ ProductCod eIndicator ], [Origin alProductT ypeCode], [RetireDat e], [Recor dStatusCod e], [LastU pdateDate] , [LastUpd ateUser], [LastUpdat eFunctionI d]) VALUES ('4948fd2 8-0d41-467 4-8434-a83 6a6ccb328' , 'Thawed POOLED PLA SMA|CPD/XX /refg|Froz en <=24h|2 units|Pso ralen-trea ted', 'PLA SMA Pool T haw CPD 2U Psoraln', 'E011', ' @06 G7 J2 K5', 500, 'E8396', 4 , 0, 0, 1, 'E055', N ULL, 'A', '2016-07-2 7 11:17:06 .000', ' RED A CTED ', 0) | |
| 12095 | INSERT INT O [dbo].[B loodProduc t] ([Blood ProductGui d], [Produ ctName], [ ProductSho rtName], [ ProductTyp eCode], [P roductAttr ibuteForm] , [Product Volume], [ ProductCod e], [Maxim umStorageT ime], [Cro ssmatchReq uiredIndic ator], [Pr oductModif icationInd icator], [ ProductCod eIndicator ], [Origin alProductT ypeCode], [RetireDat e], [Recor dStatusCod e], [LastU pdateDate] , [LastUpd ateUser], [LastUpdat eFunctionI d]) VALUES ('425dc25 8-c540-4fe 4-aec7-a8b 12afacc09' , 'POOLED PLATELETS| CPD/XX/20- 24C|Irradi ated|ResLe u:<1E6|Pla sma reduce d|Buffy co at plts pr ep|5 units ', 'PLT Po ol CPD IRD LUKOPR PL S Red BUFC T 5U', 'E0 22', '@A7 C2 D5 E5 G 2 J5', 200 , 'E8568', 4, 0, 0, 1, 'E022', NULL, 'A' , '2016-07 -27 11:17: 06.000', ' RED A CTED ', 0) | |
| 12096 | INSERT INT O [dbo].[B loodProduc t] ([Blood ProductGui d], [Produ ctName], [ ProductSho rtName], [ ProductTyp eCode], [P roductAttr ibuteForm] , [Product Volume], [ ProductCod e], [Maxim umStorageT ime], [Cro ssmatchReq uiredIndic ator], [Pr oductModif icationInd icator], [ ProductCod eIndicator ], [Origin alProductT ypeCode], [RetireDat e], [Recor dStatusCod e], [LastU pdateDate] , [LastUpd ateUser], [LastUpdat eFunctionI d]) VALUES ('093b96b 1-f20b-463 1-9379-a9a e83713fa0' , 'Frozen Apheresis PLATELETS| ACD-A/XX/< =-18C|For mnf:noninj ectable|Ir radiated|R esLeu:<5E6 |2nd conta iner', 'PL T AFR Froz ACD-A MNF NI IRD LUK OPR 2C', ' E025', '@4 7 A3 C2 D4 H4', 200, 'E8270', 8760, 0, 0 , 1, 'E025 ', NULL, ' A', '2016- 07-27 11:1 7:06.000', ' RED A CTED ', 0) | |
| 12097 | INSERT INT O [dbo].[B loodProduc t] ([Blood ProductGui d], [Produ ctName], [ ProductSho rtName], [ ProductTyp eCode], [P roductAttr ibuteForm] , [Product Volume], [ ProductCod e], [Maxim umStorageT ime], [Cro ssmatchReq uiredIndic ator], [Pr oductModif icationInd icator], [ ProductCod eIndicator ], [Origin alProductT ypeCode], [RetireDat e], [Recor dStatusCod e], [LastU pdateDate] , [LastUpd ateUser], [LastUpdat eFunctionI d]) VALUES ('a9dc664 a-b311-41a 2-875b-a9d 32e8f828b' , 'Apheres is GRANULO CYTES|NaCi trate-HES/ XX/rt|RBC content re duced', 'G RAN AFR Na Cit-HES RB C Red', 'E 035', '@91 EC', 150, 'E8323', 24, 0, 0, 1, 'E035', NULL, 'A' , '2016-07 -27 11:17: 06.000', ' RED A CTED ', 0) | |
| 12098 | INSERT INT O [dbo].[B loodProduc t] ([Blood ProductGui d], [Produ ctName], [ ProductSho rtName], [ ProductTyp eCode], [P roductAttr ibuteForm] , [Product Volume], [ ProductCod e], [Maxim umStorageT ime], [Cro ssmatchReq uiredIndic ator], [Pr oductModif icationInd icator], [ ProductCod eIndicator ], [Origin alProductT ypeCode], [RetireDat e], [Recor dStatusCod e], [LastU pdateDate] , [LastUpd ateUser], [LastUpdat eFunctionI d]) VALUES ('391c739 a-81a7-476 f-a884-aa7 bff71ab50' , 'Washed Apheresis RED BLOOD CELLS|None /XX/refg|O pen|ResLeu :<5E6|Mult iple wash cycles|2nd container ', 'RBC AF R Wash Non e OPN LUKO PR MWC 2C' , 'E049', '@AS B2 D4 GH H4', 2 00, 'E8541 ', 24, 0, 0, 1, 'E04 9', NULL, 'A', '2016 -07-27 11: 17:06.000' , ' RED A CTED ', 0) | |
| 12099 | INSERT INT O [dbo].[B loodProduc t] ([Blood ProductGui d], [Produ ctName], [ ProductSho rtName], [ ProductTyp eCode], [P roductAttr ibuteForm] , [Product Volume], [ ProductCod e], [Maxim umStorageT ime], [Cro ssmatchReq uiredIndic ator], [Pr oductModif icationInd icator], [ ProductCod eIndicator ], [Origin alProductT ypeCode], [RetireDat e], [Recor dStatusCod e], [LastU pdateDate] , [LastUpd ateUser], [LastUpdat eFunctionI d]) VALUES ('4cbdf7b 9-599d-413 9-9dcf-aa9 7edd4905f' , 'RED BLO OD CELLS|S AGM/XX/ref g|Not for tx or mnf' , 'RBC SAG M NMT', 'E 002', '@A9 A4', 350, 'E8769', 1008, 0, 0 , 1, 'E002 ', NULL, ' A', '2016- 07-27 11:1 7:06.000', ' RED A CTED ', 0) | |
| 12100 | INSERT INT O [dbo].[B loodProduc t] ([Blood ProductGui d], [Produ ctName], [ ProductSho rtName], [ ProductTyp eCode], [P roductAttr ibuteForm] , [Product Volume], [ ProductCod e], [Maxim umStorageT ime], [Cro ssmatchReq uiredIndic ator], [Pr oductModif icationInd icator], [ ProductCod eIndicator ], [Origin alProductT ypeCode], [RetireDat e], [Recor dStatusCod e], [LastU pdateDate] , [LastUpd ateUser], [LastUpdat eFunctionI d]) VALUES ('b1b557c 4-1c5b-46a 8-aee5-aa9 f3aab94f1' , 'Thawed Apheresis FRESH FROZ EN PLASMA| ACD-A/XX/r efg|For mn f:noninjec table|1st container' , 'FFP AFR Thaw ACD- A MNFNI 1C ', 'E013', '@54 A3 H 3', 225, ' E8327', 24 , 0, 0, 1, 'E013', N ULL, 'A', '2016-07-2 7 11:17:06 .000', ' RED A CTED ', 0) | |
| 12101 | INSERT INT O [dbo].[B loodProduc t] ([Blood ProductGui d], [Produ ctName], [ ProductSho rtName], [ ProductTyp eCode], [P roductAttr ibuteForm] , [Product Volume], [ ProductCod e], [Maxim umStorageT ime], [Cro ssmatchReq uiredIndic ator], [Pr oductModif icationInd icator], [ ProductCod eIndicator ], [Origin alProductT ypeCode], [RetireDat e], [Recor dStatusCod e], [LastU pdateDate] , [LastUpd ateUser], [LastUpdat eFunctionI d]) VALUES ('e0c9a1b 8-f5e9-490 7-b62f-ab7 2355c3503' , 'Apheres is PLATELE TS|ACD-A>P AS-C/XX/20 -24C|Open| Irradiated |ResLeu:<5 E6|<3E11 p lts', 'PLT AFR ACD-A >PAS-C OPN IRD LUKOP R', 'E024' , '@BH B2 C2 D4 JI', 200, 'E84 35', 4, 0, 0, 1, 'E0 24', NULL, 'A', '201 6-07-27 11 :17:06.000 ', ' RED A CTED ', 0) | |
| 12102 | INSERT INT O [dbo].[B loodProduc t] ([Blood ProductGui d], [Produ ctName], [ ProductSho rtName], [ ProductTyp eCode], [P roductAttr ibuteForm] , [Product Volume], [ ProductCod e], [Maxim umStorageT ime], [Cro ssmatchReq uiredIndic ator], [Pr oductModif icationInd icator], [ ProductCod eIndicator ], [Origin alProductT ypeCode], [RetireDat e], [Recor dStatusCod e], [LastU pdateDate] , [LastUpd ateUser], [LastUpdat eFunctionI d]) VALUES ('dd56d24 8-39d6-45e e-ba95-abb f30ca044c' , 'Apheres is PLATELE TS|PAS-C/X X/20-24C|R esLeu:<1E6 |1st conta iner|Bacte rial monit oring', 'P LT AFR PAS -C LUKOPR 1C BacM', 'E024', '@ B5 D5 H3 N 2', 200, ' E8714', 12 0, 0, 0, 1 , 'E024', NULL, 'A', '2016-07- 27 11:17:0 6.000', ' RED A CTED ', 0) | |
| 12103 | INSERT INT O [dbo].[B loodProduc t] ([Blood ProductGui d], [Produ ctName], [ ProductSho rtName], [ ProductTyp eCode], [P roductAttr ibuteForm] , [Product Volume], [ ProductCod e], [Maxim umStorageT ime], [Cro ssmatchReq uiredIndic ator], [Pr oductModif icationInd icator], [ ProductCod eIndicator ], [Origin alProductT ypeCode], [RetireDat e], [Recor dStatusCod e], [LastU pdateDate] , [LastUpd ateUser], [LastUpdat eFunctionI d]) VALUES ('e35c562 8-e731-435 f-b1b8-ac3 e84ae0bb5' , 'RED BLO OD CELLS|C PD/450mL/r efg|ResLeu :<1E6|0.5- 0.6', 'RBC CPD LUKOP R 0.5-0.6' , 'E002', '@03 D5 L2 ', 250, 'E 8215', 504 , 0, 0, 1, 'E002', N ULL, 'A', '2016-07-2 7 11:17:06 .000', ' RED A CTED ', 0) | |
| 12104 | INSERT INT O [dbo].[B loodProduc t] ([Blood ProductGui d], [Produ ctName], [ ProductSho rtName], [ ProductTyp eCode], [P roductAttr ibuteForm] , [Product Volume], [ ProductCod e], [Maxim umStorageT ime], [Cro ssmatchReq uiredIndic ator], [Pr oductModif icationInd icator], [ ProductCod eIndicator ], [Origin alProductT ypeCode], [RetireDat e], [Recor dStatusCod e], [LastU pdateDate] , [LastUpd ateUser], [LastUpdat eFunctionI d]) VALUES ('40c2315 5-a7dc-4b4 4-9f1e-ac4 26c1cd921' , 'POOLED PLATELETS| CPD/XX/20- 24C|Irradi ated|ResLe u:<5E6|4 u nits', 'PL T Pool CPD IRD LUKOP R 4U', 'E0 22', '@A7 C2 D4 J4', 200, 'E86 77', 4, 0, 0, 1, 'E0 22', NULL, 'A', '201 6-07-27 11 :17:06.000 ', ' RED A CTED ', 0) | |
| 12105 | INSERT INT O [dbo].[B loodProduc t] ([Blood ProductGui d], [Produ ctName], [ ProductSho rtName], [ ProductTyp eCode], [P roductAttr ibuteForm] , [Product Volume], [ ProductCod e], [Maxim umStorageT ime], [Cro ssmatchReq uiredIndic ator], [Pr oductModif icationInd icator], [ ProductCod eIndicator ], [Origin alProductT ypeCode], [RetireDat e], [Recor dStatusCod e], [LastU pdateDate] , [LastUpd ateUser], [LastUpdat eFunctionI d]) VALUES ('d1acc63 7-230a-494 2-9031-ac4 af6aadea2' , 'POOLED PLASMA|CP2 D/XX/<=-18 C|Frozen < =24h|2 uni ts|Psorale n-treated' , 'PLASMA Pool CP2D 2U Psoraln ', 'E040', '@37 G7 J 2 K5', 225 , 'E8383', 8760, 0, 0, 1, 'E04 0', NULL, 'A', '2016 -07-27 11: 17:06.000' , ' RED A CTED ', 0) | |
| 12106 | INSERT INT O [dbo].[B loodProduc t] ([Blood ProductGui d], [Produ ctName], [ ProductSho rtName], [ ProductTyp eCode], [P roductAttr ibuteForm] , [Product Volume], [ ProductCod e], [Maxim umStorageT ime], [Cro ssmatchReq uiredIndic ator], [Pr oductModif icationInd icator], [ ProductCod eIndicator ], [Origin alProductT ypeCode], [RetireDat e], [Recor dStatusCod e], [LastU pdateDate] , [LastUpd ateUser], [LastUpdat eFunctionI d]) VALUES ('121db07 7-bbd5-491 7-b819-aca f01041735' , 'Frozen RED BLOOD CELLS|Gly1 7%/450mL/< =-120C', ' RBC Froz G ly17%', 'E 004', '@AA ', 200, 'E 8653', 876 00, 0, 0, 1, 'E004', NULL, 'A' , '2016-07 -27 11:17: 06.000', ' RED A CTED ', 0) | |
| 12107 | INSERT INT O [dbo].[B loodProduc t] ([Blood ProductGui d], [Produ ctName], [ ProductSho rtName], [ ProductTyp eCode], [P roductAttr ibuteForm] , [Product Volume], [ ProductCod e], [Maxim umStorageT ime], [Cro ssmatchReq uiredIndic ator], [Pr oductModif icationInd icator], [ ProductCod eIndicator ], [Origin alProductT ypeCode], [RetireDat e], [Recor dStatusCod e], [LastU pdateDate] , [LastUpd ateUser], [LastUpdat eFunctionI d]) VALUES ('2961227 3-bee8-493 c-837c-aea e4260edd2' , 'Washed Apheresis PLATELETS| PAS-F/XX/2 0-24C|Open |ResLeu:<5 E6|2nd con tainer', ' PLT AFR Wa sh PAS-F O PN LUKOPR 2C', 'E027 ', '@DQ B2 D4 H4', 2 00, 'E8417 ', 4, 0, 0 , 1, 'E027 ', NULL, ' A', '2016- 07-27 11:1 7:06.000', ' RED A CTED ', 0) | |
| 12108 | INSERT INT O [dbo].[B loodProduc t] ([Blood ProductGui d], [Produ ctName], [ ProductSho rtName], [ ProductTyp eCode], [P roductAttr ibuteForm] , [Product Volume], [ ProductCod e], [Maxim umStorageT ime], [Cro ssmatchReq uiredIndic ator], [Pr oductModif icationInd icator], [ ProductCod eIndicator ], [Origin alProductT ypeCode], [RetireDat e], [Recor dStatusCod e], [LastU pdateDate] , [LastUpd ateUser], [LastUpdat eFunctionI d]) VALUES ('b64e15c 1-a547-4c5 8-b9af-aeb 51f154dfd' , 'PLASMA| CPD/450mL/ <=-30C|Fro zen <=24h' , 'PLASMA CPD', 'E01 0', '@A5 G 7', 225, ' E8260', 87 60, 0, 0, 1, 'E017', NULL, 'A' , '2016-07 -27 11:17: 06.000', ' RED A CTED ', 0) | |
| 12109 | INSERT INT O [dbo].[B loodProduc t] ([Blood ProductGui d], [Produ ctName], [ ProductSho rtName], [ ProductTyp eCode], [P roductAttr ibuteForm] , [Product Volume], [ ProductCod e], [Maxim umStorageT ime], [Cro ssmatchReq uiredIndic ator], [Pr oductModif icationInd icator], [ ProductCod eIndicator ], [Origin alProductT ypeCode], [RetireDat e], [Recor dStatusCod e], [LastU pdateDate] , [LastUpd ateUser], [LastUpdat eFunctionI d]) VALUES ('3c7e33d 5-cf21-4db 3-a9c8-aec 32c47d195' , 'Apheres is PLATELE TS|ACD-A>P AS-C/XX/20 -24C|ResLe u:<5E6|1st container |Psoralen- treated', 'PLT AFR A CD-A>PAS-C LUKOPR 1C Psoraln', 'E024', ' @BH D4 H3 K5', 200, 'E8341', 1 20, 0, 0, 1, 'E024', NULL, 'A' , '2016-07 -27 11:17: 06.000', ' RED A CTED ', 0) | |
| 12110 | INSERT INT O [dbo].[B loodProduc t] ([Blood ProductGui d], [Produ ctName], [ ProductSho rtName], [ ProductTyp eCode], [P roductAttr ibuteForm] , [Product Volume], [ ProductCod e], [Maxim umStorageT ime], [Cro ssmatchReq uiredIndic ator], [Pr oductModif icationInd icator], [ ProductCod eIndicator ], [Origin alProductT ypeCode], [RetireDat e], [Recor dStatusCod e], [LastU pdateDate] , [LastUpd ateUser], [LastUpdat eFunctionI d]) VALUES ('03f7ee4 d-4999-406 c-ad45-aed 033dced18' , 'Apheres is PLATELE TS|ACD-A>P AS-C/XX/20 -24C|Open| Irradiated |ResLeu:<5 E6|Plasma reduced/Sa line added |3rd conta iner', 'PL T AFR ACD- A>PAS-C OP N IRD LKPR PLS R/SA 3C', 'E024 ', '@BH B2 C2 D4 EJ H5', 200, 'E8488', 4 , 0, 0, 1, 'E024', N ULL, 'A', '2016-07-2 7 11:17:06 .000', ' RED A CTED ', 0) | |
| 12111 | INSERT INT O [dbo].[B loodProduc t] ([Blood ProductGui d], [Produ ctName], [ ProductSho rtName], [ ProductTyp eCode], [P roductAttr ibuteForm] , [Product Volume], [ ProductCod e], [Maxim umStorageT ime], [Cro ssmatchReq uiredIndic ator], [Pr oductModif icationInd icator], [ ProductCod eIndicator ], [Origin alProductT ypeCode], [RetireDat e], [Recor dStatusCod e], [LastU pdateDate] , [LastUpd ateUser], [LastUpdat eFunctionI d]) VALUES ('1a50a56 9-dc52-4c2 2-a93b-aed ea90239e8' , 'Apheres is PLATELE TS|ACD-A>P AS-C/XX/20 -24C|For m nf:noninje ctable|Irr adiated|Re sLeu:<5E6| <3E11 plts ', 'PLT AF R ACD-A>PA S-C MNFNI IRD LUKOPR ', 'E024', '@BH A3 C 2 D4 JI', 200, 'E845 8', 120, 0 , 0, 1, 'E 024', NULL , 'A', '20 16-07-27 1 1:17:06.00 0', ' RED A CTED ', 0) | |
| 12112 | INSERT INT O [dbo].[B loodProduc t] ([Blood ProductGui d], [Produ ctName], [ ProductSho rtName], [ ProductTyp eCode], [P roductAttr ibuteForm] , [Product Volume], [ ProductCod e], [Maxim umStorageT ime], [Cro ssmatchReq uiredIndic ator], [Pr oductModif icationInd icator], [ ProductCod eIndicator ], [Origin alProductT ypeCode], [RetireDat e], [Recor dStatusCod e], [LastU pdateDate] , [LastUpd ateUser], [LastUpdat eFunctionI d]) VALUES ('59aa6ef f-5e5b-49a 5-b38d-af9 0f17f10b1' , 'Washed RED BLOOD CELLS|SAGM /XX/refg|R esLeu:<5E6 |Multiple wash cycle s', 'RBC W ash SAGM L UKOPR MWC' , 'E003', '@A9 D4 GH ', 200, 'E 8452', 336 , 0, 0, 1, 'E003', N ULL, 'A', '2016-07-2 7 11:17:06 .000', ' RED A CTED ', 0) | |
| 12113 | INSERT INT O [dbo].[B loodProduc t] ([Blood ProductGui d], [Produ ctName], [ ProductSho rtName], [ ProductTyp eCode], [P roductAttr ibuteForm] , [Product Volume], [ ProductCod e], [Maxim umStorageT ime], [Cro ssmatchReq uiredIndic ator], [Pr oductModif icationInd icator], [ ProductCod eIndicator ], [Origin alProductT ypeCode], [RetireDat e], [Recor dStatusCod e], [LastU pdateDate] , [LastUpd ateUser], [LastUpdat eFunctionI d]) VALUES ('b88cc7c 8-ad11-4c0 8-9835-b0e 9fa9e5a64' , 'Frozen SERUM|None /XX/<=-25C ', 'SERUM Froz None' , 'E046', '@DZ', 200 , 'E8766', 8760, 0, 0, 1, 'E07 6', NULL, 'A', '2016 -07-27 11: 17:06.000' , ' RED A CTED ', 0) | |
| 12114 | INSERT INT O [dbo].[B loodProduc t] ([Blood ProductGui d], [Produ ctName], [ ProductSho rtName], [ ProductTyp eCode], [P roductAttr ibuteForm] , [Product Volume], [ ProductCod e], [Maxim umStorageT ime], [Cro ssmatchReq uiredIndic ator], [Pr oductModif icationInd icator], [ ProductCod eIndicator ], [Origin alProductT ypeCode], [RetireDat e], [Recor dStatusCod e], [LastU pdateDate] , [LastUpd ateUser], [LastUpdat eFunctionI d]) VALUES ('5e848d5 9-08e3-49a 8-ad9b-b10 749e00bb1' , 'Apheres is PLATELE TS|ACD-A>P AS-C/XX/20 -24C|Open| ResLeu:<5E 6', 'PLT A FR ACD-A>P AS-C OPN L UKOPR', 'E 024', '@BH B2 D4', 2 00, 'E8365 ', 4, 0, 0 , 1, 'E024 ', NULL, ' A', '2016- 07-27 11:1 7:06.000', ' RED A CTED ', 0) | |
| 12115 | INSERT INT O [dbo].[B loodProduc t] ([Blood ProductGui d], [Produ ctName], [ ProductSho rtName], [ ProductTyp eCode], [P roductAttr ibuteForm] , [Product Volume], [ ProductCod e], [Maxim umStorageT ime], [Cro ssmatchReq uiredIndic ator], [Pr oductModif icationInd icator], [ ProductCod eIndicator ], [Origin alProductT ypeCode], [RetireDat e], [Recor dStatusCod e], [LastU pdateDate] , [LastUpd ateUser], [LastUpdat eFunctionI d]) VALUES ('5f539a2 1-6356-4a4 5-baf5-b12 8a7c264e0' , 'Apheres is PLATELE TS|ACD-A/X X/20-24C|I rradiated| ResLeu:<5E 6|1st cont ainer|Psor alen-treat ed', 'PLT AFR ACD-A IRD LUKOPR 1C Psoral n', 'E024' , '@73 C2 D4 H3 K5', 200, 'E87 48', 120, 0, 0, 1, ' E024', NUL L, 'A', '2 016-07-27 11:17:06.0 00', ' RED A CTED ', 0) | |
| 12116 | INSERT INT O [dbo].[B loodProduc t] ([Blood ProductGui d], [Produ ctName], [ ProductSho rtName], [ ProductTyp eCode], [P roductAttr ibuteForm] , [Product Volume], [ ProductCod e], [Maxim umStorageT ime], [Cro ssmatchReq uiredIndic ator], [Pr oductModif icationInd icator], [ ProductCod eIndicator ], [Origin alProductT ypeCode], [RetireDat e], [Recor dStatusCod e], [LastU pdateDate] , [LastUpd ateUser], [LastUpdat eFunctionI d]) VALUES ('c4adb09 f-9400-436 f-86fd-b14 333eccb8c' , 'RED BLO OD CELLS|N S/XX/refg| Irradiated ', 'RBC NS IRD', 'E0 02', '@CG C2', 250, 'E8286', 2 4, 0, 0, 1 , 'E002', NULL, 'A', '2016-07- 27 11:17:0 6.000', ' RED A CTED ', 0) | |
| 12117 | INSERT INT O [dbo].[B loodProduc t] ([Blood ProductGui d], [Produ ctName], [ ProductSho rtName], [ ProductTyp eCode], [P roductAttr ibuteForm] , [Product Volume], [ ProductCod e], [Maxim umStorageT ime], [Cro ssmatchReq uiredIndic ator], [Pr oductModif icationInd icator], [ ProductCod eIndicator ], [Origin alProductT ypeCode], [RetireDat e], [Recor dStatusCod e], [LastU pdateDate] , [LastUpd ateUser], [LastUpdat eFunctionI d]) VALUES ('814ab7c 1-c2aa-491 e-94c9-b15 39113978c' , 'Washed RED BLOOD CELLS|None /XX/refg|O pen|ResLeu :<5E6|Mult iple wash cycles', ' RBC Wash N one OPN LU KOPR MWC', 'E003', ' @AS B2 D4 GH', 200, 'E8491', 2 4, 0, 0, 1 , 'E003', NULL, 'A', '2016-07- 27 11:17:0 6.000', ' RED A CTED ', 0) | |
| 12118 | INSERT INT O [dbo].[B loodProduc t] ([Blood ProductGui d], [Produ ctName], [ ProductSho rtName], [ ProductTyp eCode], [P roductAttr ibuteForm] , [Product Volume], [ ProductCod e], [Maxim umStorageT ime], [Cro ssmatchReq uiredIndic ator], [Pr oductModif icationInd icator], [ ProductCod eIndicator ], [Origin alProductT ypeCode], [RetireDat e], [Recor dStatusCod e], [LastU pdateDate] , [LastUpd ateUser], [LastUpdat eFunctionI d]) VALUES ('4b391e8 d-0dd1-4ca 9-8d71-b1c 0c25a8d9e' , 'Apheres is PLATELE TS|ACD-A>P AS-C/XX/20 -24C|Irrad iated|ResL eu:<5E6|Ps oralen-tre ated', 'PL T AFR ACD- A>PAS-C IR D LUKOPR P soraln', ' E024', '@B H C2 D4 K5 ', 200, 'E 8423', 120 , 0, 0, 1, 'E024', N ULL, 'A', '2016-07-2 7 11:17:06 .000', ' RED A CTED ', 0) | |
| 12119 | INSERT INT O [dbo].[B loodProduc t] ([Blood ProductGui d], [Produ ctName], [ ProductSho rtName], [ ProductTyp eCode], [P roductAttr ibuteForm] , [Product Volume], [ ProductCod e], [Maxim umStorageT ime], [Cro ssmatchReq uiredIndic ator], [Pr oductModif icationInd icator], [ ProductCod eIndicator ], [Origin alProductT ypeCode], [RetireDat e], [Recor dStatusCod e], [LastU pdateDate] , [LastUpd ateUser], [LastUpdat eFunctionI d]) VALUES ('3e4d6de 8-428e-460 1-9c7a-b20 310137b16' , 'POOLED PLATELETS| PAS-E/XX/2 0-24C|ResL eu:<1E6|Ps oralen-tre ated', 'PL T Pool PAS -E LUKOPR Psoraln', 'E022', '@ D5 D5 K5', 200, 'E82 47', 4, 0, 0, 1, 'E0 22', NULL, 'A', '201 6-07-27 11 :17:06.000 ', ' RED A CTED ', 0) | |
| 12120 | INSERT INT O [dbo].[B loodProduc t] ([Blood ProductGui d], [Produ ctName], [ ProductSho rtName], [ ProductTyp eCode], [P roductAttr ibuteForm] , [Product Volume], [ ProductCod e], [Maxim umStorageT ime], [Cro ssmatchReq uiredIndic ator], [Pr oductModif icationInd icator], [ ProductCod eIndicator ], [Origin alProductT ypeCode], [RetireDat e], [Recor dStatusCod e], [LastU pdateDate] , [LastUpd ateUser], [LastUpdat eFunctionI d]) VALUES ('d344668 d-813c-497 4-8005-b20 f99727342' , 'Apheres is GRANULO CYTES|NaCi trate-HES/ XX/rt|Irra diated|RBC content r educed', ' GRAN AFR N aCit-HES I RD RBC Red ', 'E035', '@91 C2 E C', 150, ' E8277', 24 , 0, 0, 1, 'E035', N ULL, 'A', '2016-07-2 7 11:17:06 .000', ' RED A CTED ', 0) | |
| 12121 | INSERT INT O [dbo].[B loodProduc t] ([Blood ProductGui d], [Produ ctName], [ ProductSho rtName], [ ProductTyp eCode], [P roductAttr ibuteForm] , [Product Volume], [ ProductCod e], [Maxim umStorageT ime], [Cro ssmatchReq uiredIndic ator], [Pr oductModif icationInd icator], [ ProductCod eIndicator ], [Origin alProductT ypeCode], [RetireDat e], [Recor dStatusCod e], [LastU pdateDate] , [LastUpd ateUser], [LastUpdat eFunctionI d]) VALUES ('ab61c9c 8-4792-479 f-84cb-b25 8caf3f3fa' , 'Apheres is PLATELE TS|ACD-A>P AS-C/XX/20 -24C|ResLe u:<5E6|2nd container |Psoralen- treated', 'PLT AFR A CD-A>PAS-C LUKOPR 2C Psoraln', 'E024', ' @BH D4 H4 K5', 200, 'E8342', 1 20, 0, 0, 1, 'E024', NULL, 'A' , '2016-07 -27 11:17: 06.000', ' RED A CTED ', 0) | |
| 12122 | INSERT INT O [dbo].[B loodProduc t] ([Blood ProductGui d], [Produ ctName], [ ProductSho rtName], [ ProductTyp eCode], [P roductAttr ibuteForm] , [Product Volume], [ ProductCod e], [Maxim umStorageT ime], [Cro ssmatchReq uiredIndic ator], [Pr oductModif icationInd icator], [ ProductCod eIndicator ], [Origin alProductT ypeCode], [RetireDat e], [Recor dStatusCod e], [LastU pdateDate] , [LastUpd ateUser], [LastUpdat eFunctionI d]) VALUES ('0716735 1-5fa1-4cc d-b0e8-b2c b95ac1c8d' , 'Apheres is PLATELE TS|ACD-A/X X/20-24C|I rradiated| ResLeu:<5E 6|1st cont ainer|Appr ox 300 E9 plts|Bacte rial test' , 'PLT AFR ACD-A IRD LUKOPR 1C BacTest', 'E024', ' @73 C2 D4 H3 JC N3', 200, 'E86 43', 120, 0, 0, 1, ' E024', NUL L, 'A', '2 016-07-27 11:17:06.0 00', ' RED A CTED ', 0) | |
| 12123 | INSERT INT O [dbo].[B loodProduc t] ([Blood ProductGui d], [Produ ctName], [ ProductSho rtName], [ ProductTyp eCode], [P roductAttr ibuteForm] , [Product Volume], [ ProductCod e], [Maxim umStorageT ime], [Cro ssmatchReq uiredIndic ator], [Pr oductModif icationInd icator], [ ProductCod eIndicator ], [Origin alProductT ypeCode], [RetireDat e], [Recor dStatusCod e], [LastU pdateDate] , [LastUpd ateUser], [LastUpdat eFunctionI d]) VALUES ('2918b70 d-4961-410 2-b9ea-b2d 6df2bbe7a' , 'Apheres is PLASMA| ACD-A/XX/< =-18C|>=60 0mL|RT<=24 h frozen<= 24h|2nd co ntainer', 'PLASMA AF R ACD-A Lr gVol 2C', 'E012', '@ 47 F7 GG H 4', 225, ' E8168', 87 60, 0, 0, 1, 'E014', NULL, 'A' , '2016-07 -27 11:17: 06.000', ' RED A CTED ', 0) | |
| 12124 | INSERT INT O [dbo].[B loodProduc t] ([Blood ProductGui d], [Produ ctName], [ ProductSho rtName], [ ProductTyp eCode], [P roductAttr ibuteForm] , [Product Volume], [ ProductCod e], [Maxim umStorageT ime], [Cro ssmatchReq uiredIndic ator], [Pr oductModif icationInd icator], [ ProductCod eIndicator ], [Origin alProductT ypeCode], [RetireDat e], [Recor dStatusCod e], [LastU pdateDate] , [LastUpd ateUser], [LastUpdat eFunctionI d]) VALUES ('a89ace1 d-8dde-4c7 6-a876-b3f a5fe71c9d' , 'FRESH F ROZEN PLAS MA|CPD/450 mL/<=-25C| For mnf:in jectable|R esLeu:<1E6 |Frozen <= 24h', 'FFP MNFI LUKO PR', 'E010 ', '@A2 A2 D5 G7', 2 25, 'E8640 ', 8760, 0 , 0, 1, 'E 010', NULL , 'A', '20 16-07-27 1 1:17:06.00 0', ' RED A CTED ', 0) | |
| 12125 | INSERT INT O [dbo].[B loodProduc t] ([Blood ProductGui d], [Produ ctName], [ ProductSho rtName], [ ProductTyp eCode], [P roductAttr ibuteForm] , [Product Volume], [ ProductCod e], [Maxim umStorageT ime], [Cro ssmatchReq uiredIndic ator], [Pr oductModif icationInd icator], [ ProductCod eIndicator ], [Origin alProductT ypeCode], [RetireDat e], [Recor dStatusCod e], [LastU pdateDate] , [LastUpd ateUser], [LastUpdat eFunctionI d]) VALUES ('de0c704 8-bff3-410 9-b1b7-b41 c19ddb982' , 'Apheres is PLASMA| NaCitrate/ XX/<=-20C| For mnf:no ninjectabl e-source', 'PLASMA A FR NaCit M NFSNI', 'E 012', '@58 A9', 225, 'E8361', 8760, 0, 0 , 1, 'E014 ', NULL, ' A', '2016- 07-27 11:1 7:06.000', ' RED A CTED ', 0) | |
| 12126 | INSERT INT O [dbo].[B loodProduc t] ([Blood ProductGui d], [Produ ctName], [ ProductSho rtName], [ ProductTyp eCode], [P roductAttr ibuteForm] , [Product Volume], [ ProductCod e], [Maxim umStorageT ime], [Cro ssmatchReq uiredIndic ator], [Pr oductModif icationInd icator], [ ProductCod eIndicator ], [Origin alProductT ypeCode], [RetireDat e], [Recor dStatusCod e], [LastU pdateDate] , [LastUpd ateUser], [LastUpdat eFunctionI d]) VALUES ('09e32c3 7-5c9f-4d6 8-a20e-b51 27706a43e' , 'Thawed Apheresis FRESH FROZ EN PLASMA| CPD-50/XX/ refg|ResLe u:<1E6|Fro zen <=24h' , 'FFP AFR Thaw CPD- 50 LUKOPR' , 'E013', '@AX D5 G7 ', 225, 'E 8187', 24, 0, 0, 1, 'E013', NU LL, 'A', ' 2016-07-27 11:17:06. 000', ' RED A CTED ', 0) | |
| 12127 | INSERT INT O [dbo].[B loodProduc t] ([Blood ProductGui d], [Produ ctName], [ ProductSho rtName], [ ProductTyp eCode], [P roductAttr ibuteForm] , [Product Volume], [ ProductCod e], [Maxim umStorageT ime], [Cro ssmatchReq uiredIndic ator], [Pr oductModif icationInd icator], [ ProductCod eIndicator ], [Origin alProductT ypeCode], [RetireDat e], [Recor dStatusCod e], [LastU pdateDate] , [LastUpd ateUser], [LastUpdat eFunctionI d]) VALUES ('0926896 4-339c-4e1 1-b84c-b59 b9ebabac4' , 'Apheres is PLASMA| NaCitrate/ XX/<=-25C| Cryo reduc ed', 'PLAS MA AFR NaC it CRYORed ', 'E012', '@CQ E3', 225, 'E85 23', 8760, 0, 0, 1, 'E014', NU LL, 'A', ' 2016-07-27 11:17:06. 000', ' RED A CTED ', 0) | |
| 12128 | INSERT INT O [dbo].[B loodProduc t] ([Blood ProductGui d], [Produ ctName], [ ProductSho rtName], [ ProductTyp eCode], [P roductAttr ibuteForm] , [Product Volume], [ ProductCod e], [Maxim umStorageT ime], [Cro ssmatchReq uiredIndic ator], [Pr oductModif icationInd icator], [ ProductCod eIndicator ], [Origin alProductT ypeCode], [RetireDat e], [Recor dStatusCod e], [LastU pdateDate] , [LastUpd ateUser], [LastUpdat eFunctionI d]) VALUES ('0c3f9d7 2-456d-4a5 a-846f-b67 1b53bd4a7' , 'Frozen RED BLOOD CELLS|Gly1 7%/XX/<=-1 20C', 'RBC Froz Gly1 7%', 'E004 ', '@EA', 200, 'E865 9', 87600, 0, 0, 1, 'E004', NU LL, 'A', ' 2016-07-27 11:17:06. 000', ' RED A CTED ', 0) | |
| 12129 | INSERT INT O [dbo].[B loodProduc t] ([Blood ProductGui d], [Produ ctName], [ ProductSho rtName], [ ProductTyp eCode], [P roductAttr ibuteForm] , [Product Volume], [ ProductCod e], [Maxim umStorageT ime], [Cro ssmatchReq uiredIndic ator], [Pr oductModif icationInd icator], [ ProductCod eIndicator ], [Origin alProductT ypeCode], [RetireDat e], [Recor dStatusCod e], [LastU pdateDate] , [LastUpd ateUser], [LastUpdat eFunctionI d]) VALUES ('6b2d6ed c-d45b-41f 3-ab2d-b7d 52cc0b80d' , 'POOLED PLATELETS| CPD>PAS-E/ XX/20-24C| Plasma red uced', 'PL T Pool CPD >PAS-E PLS Red', 'E0 22', '@DP E5', 200, 'E8305', 1 20, 0, 0, 1, 'E022', NULL, 'A' , '2016-07 -27 11:17: 06.000', ' RED A CTED ', 0) | |
| 12130 | INSERT INT O [dbo].[B loodProduc t] ([Blood ProductGui d], [Produ ctName], [ ProductSho rtName], [ ProductTyp eCode], [P roductAttr ibuteForm] , [Product Volume], [ ProductCod e], [Maxim umStorageT ime], [Cro ssmatchReq uiredIndic ator], [Pr oductModif icationInd icator], [ ProductCod eIndicator ], [Origin alProductT ypeCode], [RetireDat e], [Recor dStatusCod e], [LastU pdateDate] , [LastUpd ateUser], [LastUpdat eFunctionI d]) VALUES ('ba74597 4-09d8-45c 6-a5d6-b7e d118fd5b8' , 'POOLED PLATELETS| CPD>PAS-E/ XX/20-24C| ResLeu:<1E 6|Supernat reduced|B uffy coat plts prep| 3 units', 'PLT Pool CPD>PAS-E LUKOPR SUP Red BUFCT 3U', 'E022 ', '@DP D5 EA G2 J3' , 200, 'E8 517', 120, 0, 0, 1, 'E022', NU LL, 'A', ' 2016-07-27 11:17:06. 000', ' RED A CTED ', 0) | |
| 12131 | INSERT INT O [dbo].[B loodProduc t] ([Blood ProductGui d], [Produ ctName], [ ProductSho rtName], [ ProductTyp eCode], [P roductAttr ibuteForm] , [Product Volume], [ ProductCod e], [Maxim umStorageT ime], [Cro ssmatchReq uiredIndic ator], [Pr oductModif icationInd icator], [ ProductCod eIndicator ], [Origin alProductT ypeCode], [RetireDat e], [Recor dStatusCod e], [LastU pdateDate] , [LastUpd ateUser], [LastUpdat eFunctionI d]) VALUES ('45525a9 6-8b39-48c e-820d-b7e e304bdb32' , 'Thawed POOLED CRY OPRECIPITA TE|None/XX /rt|Irradi ated|4 uni ts', 'CRYO Pool Thaw None IRD 4U', 'E031 ', '@83 C2 J4', 100, 'E8667', 6, 0, 0, 1 , 'E031', NULL, 'A', '2016-07- 27 11:17:0 6.000', ' RED A CTED ', 0) | |
| 12132 | INSERT INT O [dbo].[B loodProduc t] ([Blood ProductGui d], [Produ ctName], [ ProductSho rtName], [ ProductTyp eCode], [P roductAttr ibuteForm] , [Product Volume], [ ProductCod e], [Maxim umStorageT ime], [Cro ssmatchReq uiredIndic ator], [Pr oductModif icationInd icator], [ ProductCod eIndicator ], [Origin alProductT ypeCode], [RetireDat e], [Recor dStatusCod e], [LastU pdateDate] , [LastUpd ateUser], [LastUpdat eFunctionI d]) VALUES ('65553d1 2-62d8-4fd 0-93bc-b82 f1cd2c14f' , 'Thawed PLASMA|CPD /450mL/ref g|ResLeu:N S', 'PLASM A Thaw CPD LUKOPR', 'E011', '@ 03 D2', 22 5, 'E8456' , 120, 0, 0, 1, 'E01 8', NULL, 'A', '2016 -07-27 11: 17:06.000' , ' RED A CTED ', 0) | |
| 12133 | INSERT INT O [dbo].[B loodProduc t] ([Blood ProductGui d], [Produ ctName], [ ProductSho rtName], [ ProductTyp eCode], [P roductAttr ibuteForm] , [Product Volume], [ ProductCod e], [Maxim umStorageT ime], [Cro ssmatchReq uiredIndic ator], [Pr oductModif icationInd icator], [ ProductCod eIndicator ], [Origin alProductT ypeCode], [RetireDat e], [Recor dStatusCod e], [LastU pdateDate] , [LastUpd ateUser], [LastUpdat eFunctionI d]) VALUES ('a6d30fe 2-3618-49b 3-b98f-b86 dda4a7480' , 'Thawed POOLED PLA SMA|CP2D/X X/refg|3 u nits|Psora len-treate d', 'PLASM A Pool Tha w CP2D 3U Psoraln', 'E011', '@ 13 J3 K5', 500, 'E84 03', 4, 0, 0, 1, 'E0 55', NULL, 'A', '201 6-07-27 11 :17:06.000 ', ' RED A CTED ', 0) | |
| 12134 | INSERT INT O [dbo].[B loodProduc t] ([Blood ProductGui d], [Produ ctName], [ ProductSho rtName], [ ProductTyp eCode], [P roductAttr ibuteForm] , [Product Volume], [ ProductCod e], [Maxim umStorageT ime], [Cro ssmatchReq uiredIndic ator], [Pr oductModif icationInd icator], [ ProductCod eIndicator ], [Origin alProductT ypeCode], [RetireDat e], [Recor dStatusCod e], [LastU pdateDate] , [LastUpd ateUser], [LastUpdat eFunctionI d]) VALUES ('3d46d7c 8-d2bb-4f0 6-addc-b88 287579323' , 'Apheres is PLATELE TS|ACD-A>P AS-C/XX/20 -24C|For m nf:noninje ctable|Res Leu:<5E6|1 st contain er', 'PLT AFR ACD-A> PAS-C MNFN I LUKOPR 1 C', 'E024' , '@BH A3 D4 H3', 20 0, 'E8470' , 120, 0, 0, 1, 'E02 4', NULL, 'A', '2016 -07-27 11: 17:06.000' , ' RED A CTED ', 0) | |
| 12135 | INSERT INT O [dbo].[B loodProduc t] ([Blood ProductGui d], [Produ ctName], [ ProductSho rtName], [ ProductTyp eCode], [P roductAttr ibuteForm] , [Product Volume], [ ProductCod e], [Maxim umStorageT ime], [Cro ssmatchReq uiredIndic ator], [Pr oductModif icationInd icator], [ ProductCod eIndicator ], [Origin alProductT ypeCode], [RetireDat e], [Recor dStatusCod e], [LastU pdateDate] , [LastUpd ateUser], [LastUpdat eFunctionI d]) VALUES ('3b451fc 1-d23b-495 e-b65c-b8a 230b2840d' , 'Deglyce rolized RE D BLOOD CE LLS|SAGM/X X/refg|Res Leu:<5E6', 'RBC Deg SAGM LUKOP R', 'E006' , '@A9 D4' , 200, 'E8 656', 336, 0, 0, 1, 'E006', NU LL, 'A', ' 2016-07-27 11:17:06. 000', ' RED A CTED ', 0) | |
| 12136 | INSERT INT O [dbo].[B loodProduc t] ([Blood ProductGui d], [Produ ctName], [ ProductSho rtName], [ ProductTyp eCode], [P roductAttr ibuteForm] , [Product Volume], [ ProductCod e], [Maxim umStorageT ime], [Cro ssmatchReq uiredIndic ator], [Pr oductModif icationInd icator], [ ProductCod eIndicator ], [Origin alProductT ypeCode], [RetireDat e], [Recor dStatusCod e], [LastU pdateDate] , [LastUpd ateUser], [LastUpdat eFunctionI d]) VALUES ('9dd5da5 9-05f0-4b4 3-bdc2-b9e 2940c3776' , 'POOLED PLATELETS| CPD>PAS-E/ XX/20-24C| ResLeu:<1E 6|Supernat reduced|B uffy coat plts prep| 5 units', 'PLT Pool CPD>PAS-E LUKOPR SUP Red BUFCT 5U', 'E022 ', '@DP D5 EA G2 J5' , 200, 'E8 519', 120, 0, 0, 1, 'E022', NU LL, 'A', ' 2016-07-27 11:17:06. 000', ' RED A CTED ', 0) | |
| 12137 | INSERT INT O [dbo].[B loodProduc t] ([Blood ProductGui d], [Produ ctName], [ ProductSho rtName], [ ProductTyp eCode], [P roductAttr ibuteForm] , [Product Volume], [ ProductCod e], [Maxim umStorageT ime], [Cro ssmatchReq uiredIndic ator], [Pr oductModif icationInd icator], [ ProductCod eIndicator ], [Origin alProductT ypeCode], [RetireDat e], [Recor dStatusCod e], [LastU pdateDate] , [LastUpd ateUser], [LastUpdat eFunctionI d]) VALUES ('f3dd47f 6-3ab1-474 b-9b09-bad 2d67ca87d' , 'Apheres is FRESH F ROZEN PLAS MA|NaCitra te/XX/<=-2 5C|Not for tx or mnf ', 'FFP AF R NaCit NM T', 'E012' , '@CQ A4' , 225, 'E8 682', 8760 , 0, 0, 1, 'E012', N ULL, 'A', '2016-07-2 7 11:17:06 .000', ' RED A CTED ', 0) | |
| 12138 | INSERT INT O [dbo].[B loodProduc t] ([Blood ProductGui d], [Produ ctName], [ ProductSho rtName], [ ProductTyp eCode], [P roductAttr ibuteForm] , [Product Volume], [ ProductCod e], [Maxim umStorageT ime], [Cro ssmatchReq uiredIndic ator], [Pr oductModif icationInd icator], [ ProductCod eIndicator ], [Origin alProductT ypeCode], [RetireDat e], [Recor dStatusCod e], [LastU pdateDate] , [LastUpd ateUser], [LastUpdat eFunctionI d]) VALUES ('1311d8f c-f7b5-434 a-a343-bb6 830621141' , 'LEUKOCY TES|CPD/XX /<37C|Not for tx or mnf|Irradi ated', 'LE UK CPD NMT IRD', 'E0 38', '@61 A4 C2', 20 0, 'E8699' , 24, 0, 0 , 1, 'E038 ', NULL, ' A', '2016- 07-27 11:1 7:06.000', ' RED A CTED ', 0) | |
| 12139 | INSERT INT O [dbo].[B loodProduc t] ([Blood ProductGui d], [Produ ctName], [ ProductSho rtName], [ ProductTyp eCode], [P roductAttr ibuteForm] , [Product Volume], [ ProductCod e], [Maxim umStorageT ime], [Cro ssmatchReq uiredIndic ator], [Pr oductModif icationInd icator], [ ProductCod eIndicator ], [Origin alProductT ypeCode], [RetireDat e], [Recor dStatusCod e], [LastU pdateDate] , [LastUpd ateUser], [LastUpdat eFunctionI d]) VALUES ('63af379 7-1b0f-41b e-89bc-bc5 7e180e0a4' , 'Thawed POOLED CRY OPRECIPITA TE|None/XX /rt|Open|I rradiated| 4 units', 'CRYO Pool Thaw None OPN IRD 4 U', 'E031' , '@83 B2 C2 J4', 10 0, 'E8614' , 4, 0, 0, 1, 'E031' , NULL, 'A ', '2016-0 7-27 11:17 :06.000', ' RED A CTED ', 0) | |
| 12140 | INSERT INT O [dbo].[B loodProduc t] ([Blood ProductGui d], [Produ ctName], [ ProductSho rtName], [ ProductTyp eCode], [P roductAttr ibuteForm] , [Product Volume], [ ProductCod e], [Maxim umStorageT ime], [Cro ssmatchReq uiredIndic ator], [Pr oductModif icationInd icator], [ ProductCod eIndicator ], [Origin alProductT ypeCode], [RetireDat e], [Recor dStatusCod e], [LastU pdateDate] , [LastUpd ateUser], [LastUpdat eFunctionI d]) VALUES ('3514fa3 1-e193-4c3 b-8839-bd0 e20527f4c' , 'POOLED CRYOPRECIP ITATE|None /XX/<=-18C |2 units', 'CRYO Poo l None 2U' , 'E030', '@84 J2', 100, 'E860 2', 8760, 0, 0, 1, ' E030', NUL L, 'A', '2 016-07-27 11:17:06.0 00', ' RED A CTED ', 0) | |
| 12141 | INSERT INT O [dbo].[B loodProduc t] ([Blood ProductGui d], [Produ ctName], [ ProductSho rtName], [ ProductTyp eCode], [P roductAttr ibuteForm] , [Product Volume], [ ProductCod e], [Maxim umStorageT ime], [Cro ssmatchReq uiredIndic ator], [Pr oductModif icationInd icator], [ ProductCod eIndicator ], [Origin alProductT ypeCode], [RetireDat e], [Recor dStatusCod e], [LastU pdateDate] , [LastUpd ateUser], [LastUpdat eFunctionI d]) VALUES ('7fa4150 5-36e5-4fe 2-82c1-bd1 5b04ec6fb' , 'Apheres is GRANULO CYTES|NaCi trate-HES/ XX/rt|Irra diated|Pla sma reduce d', 'GRAN AFR NaCit- HES IRD PL S Red', 'E 035', '@91 C2 E5', 1 50, 'E8278 ', 24, 0, 0, 1, 'E03 5', NULL, 'A', '2016 -07-27 11: 17:06.000' , ' RED A CTED ', 0) | |
| 12142 | INSERT INT O [dbo].[B loodProduc t] ([Blood ProductGui d], [Produ ctName], [ ProductSho rtName], [ ProductTyp eCode], [P roductAttr ibuteForm] , [Product Volume], [ ProductCod e], [Maxim umStorageT ime], [Cro ssmatchReq uiredIndic ator], [Pr oductModif icationInd icator], [ ProductCod eIndicator ], [Origin alProductT ypeCode], [RetireDat e], [Recor dStatusCod e], [LastU pdateDate] , [LastUpd ateUser], [LastUpdat eFunctionI d]) VALUES ('23702d1 4-f637-4f4 2-8f20-bd5 cdcddb630' , 'Apheres is PLATELE TS|ACD-A/X X/20-24C|R esLeu:<5E6 |Plasma re duced|1st container| Psoralen-t reated', ' PLT AFR AC D-A LUKOPR PLS Red 1 C Psoraln' , 'E024', '@73 D4 E5 H3 K5', 2 00, 'E8729 ', 120, 0, 0, 1, 'E0 24', NULL, 'A', '201 6-07-27 11 :17:06.000 ', ' RED A CTED ', 0) | |
| 12143 | INSERT INT O [dbo].[B loodProduc t] ([Blood ProductGui d], [Produ ctName], [ ProductSho rtName], [ ProductTyp eCode], [P roductAttr ibuteForm] , [Product Volume], [ ProductCod e], [Maxim umStorageT ime], [Cro ssmatchReq uiredIndic ator], [Pr oductModif icationInd icator], [ ProductCod eIndicator ], [Origin alProductT ypeCode], [RetireDat e], [Recor dStatusCod e], [LastU pdateDate] , [LastUpd ateUser], [LastUpdat eFunctionI d]) VALUES ('cb4c349 2-2c0f-48b 6-b4a5-bd9 a0e1b179d' , 'PLATELE TS|NS/XX/r t', 'PLT N S', 'E020' , '@92', 5 0, 'E8556' , 120, 0, 0, 1, 'E02 0', NULL, 'A', '2016 -07-27 11: 17:06.000' , ' RED A CTED ', 0) | |
| 12144 | INSERT INT O [dbo].[B loodProduc t] ([Blood ProductGui d], [Produ ctName], [ ProductSho rtName], [ ProductTyp eCode], [P roductAttr ibuteForm] , [Product Volume], [ ProductCod e], [Maxim umStorageT ime], [Cro ssmatchReq uiredIndic ator], [Pr oductModif icationInd icator], [ ProductCod eIndicator ], [Origin alProductT ypeCode], [RetireDat e], [Recor dStatusCod e], [LastU pdateDate] , [LastUpd ateUser], [LastUpdat eFunctionI d]) VALUES ('32cb412 e-6ec3-42a f-83ef-bd9 d59262f40' , 'Apheres is PLATELE TS|PAS-C/X X/20-24C|I rradiated| ResLeu:<1E 6|Supernat rem', 'PL T AFR PAS- C IRD LUKO PR SR', 'E 024', '@B5 C2 D5 E7' , 200, 'E8 652', 120, 0, 0, 1, 'E024', NU LL, 'A', ' 2016-07-27 11:17:06. 000', ' RED A CTED ', 0) | |
| 12145 | INSERT INT O [dbo].[B loodProduc t] ([Blood ProductGui d], [Produ ctName], [ ProductSho rtName], [ ProductTyp eCode], [P roductAttr ibuteForm] , [Product Volume], [ ProductCod e], [Maxim umStorageT ime], [Cro ssmatchReq uiredIndic ator], [Pr oductModif icationInd icator], [ ProductCod eIndicator ], [Origin alProductT ypeCode], [RetireDat e], [Recor dStatusCod e], [LastU pdateDate] , [LastUpd ateUser], [LastUpdat eFunctionI d]) VALUES ('02e4bf7 6-e27a-410 c-925b-be0 d48a4b722' , 'POOLED PLATELETS| CPD>PAS-E/ XX/20-24C| Irradiated |ResLeu:<1 E6|Superna t reduced| Buffy coat plts prep |2 units', 'PLT Pool CPD>PAS-E IRD LUKOP R SUPRed B UFCT 2U', 'E022', '@ DP C2 D5 E A G2 J2', 200, 'E851 1', 120, 0 , 0, 1, 'E 022', NULL , 'A', '20 16-07-27 1 1:17:06.00 0', ' RED A CTED ', 0) | |
| 12146 | INSERT INT O [dbo].[B loodProduc t] ([Blood ProductGui d], [Produ ctName], [ ProductSho rtName], [ ProductTyp eCode], [P roductAttr ibuteForm] , [Product Volume], [ ProductCod e], [Maxim umStorageT ime], [Cro ssmatchReq uiredIndic ator], [Pr oductModif icationInd icator], [ ProductCod eIndicator ], [Origin alProductT ypeCode], [RetireDat e], [Recor dStatusCod e], [LastU pdateDate] , [LastUpd ateUser], [LastUpdat eFunctionI d]) VALUES ('49c610b d-0515-4ed 1-9db0-be0 d8647f9fe' , 'Apheres is FRESH F ROZEN PLAS MA|ACD-A/X X/<=-18C|1 st contain er|Psorale n-treated' , 'FFP AFR ACD-A 1C Psoraln', 'E012', '@ 47 H3 K5', 225, 'E87 34', 8760, 0, 0, 1, 'E012', NU LL, 'A', ' 2016-07-27 11:17:06. 000', ' RED A CTED ', 0) | |
| 12147 | INSERT INT O [dbo].[B loodProduc t] ([Blood ProductGui d], [Produ ctName], [ ProductSho rtName], [ ProductTyp eCode], [P roductAttr ibuteForm] , [Product Volume], [ ProductCod e], [Maxim umStorageT ime], [Cro ssmatchReq uiredIndic ator], [Pr oductModif icationInd icator], [ ProductCod eIndicator ], [Origin alProductT ypeCode], [RetireDat e], [Recor dStatusCod e], [LastU pdateDate] , [LastUpd ateUser], [LastUpdat eFunctionI d]) VALUES ('6416789 5-7b31-460 5-9c84-be3 eab23651a' , 'POOLED PLATELETS| CPD>PAS-E/ XX/20-24C| Irradiated |ResLeu:<1 E6|Superna t reduced| Buffy coat plts prep |4 units', 'PLT Pool CPD>PAS-E IRD LUKOP R SUPRed B UFCT 4U', 'E022', '@ DP C2 D5 E A G2 J4', 200, 'E851 3', 120, 0 , 0, 1, 'E 022', NULL , 'A', '20 16-07-27 1 1:17:06.00 0', ' RED A CTED ', 0) | |
| 12148 | INSERT INT O [dbo].[B loodProduc t] ([Blood ProductGui d], [Produ ctName], [ ProductSho rtName], [ ProductTyp eCode], [P roductAttr ibuteForm] , [Product Volume], [ ProductCod e], [Maxim umStorageT ime], [Cro ssmatchReq uiredIndic ator], [Pr oductModif icationInd icator], [ ProductCod eIndicator ], [Origin alProductT ypeCode], [RetireDat e], [Recor dStatusCod e], [LastU pdateDate] , [LastUpd ateUser], [LastUpdat eFunctionI d]) VALUES ('9b0174d 8-0cec-4d3 9-9e8f-be6 2175144cc' , 'POOLED PLATELETS| CPD/XX/20- 24C|ResLeu :<5E6|4 un its|Bacter ial test', 'PLT Pool CPD LUKOP R 4U BacTe st', 'E022 ', '@A7 D4 J4 N3', 2 00, 'E8474 ', 120, 0, 0, 1, 'E0 22', NULL, 'A', '201 6-07-27 11 :17:06.000 ', ' RED A CTED ', 0) | |
| 12149 | INSERT INT O [dbo].[B loodProduc t] ([Blood ProductGui d], [Produ ctName], [ ProductSho rtName], [ ProductTyp eCode], [P roductAttr ibuteForm] , [Product Volume], [ ProductCod e], [Maxim umStorageT ime], [Cro ssmatchReq uiredIndic ator], [Pr oductModif icationInd icator], [ ProductCod eIndicator ], [Origin alProductT ypeCode], [RetireDat e], [Recor dStatusCod e], [LastU pdateDate] , [LastUpd ateUser], [LastUpdat eFunctionI d]) VALUES ('8d5f443 5-a65b-441 4-ba32-bf1 926bce9c8' , 'RED BLO OD CELLS|C P2D>AS3/50 0mL/refg|O pen|ResLeu :<5E6|Supe rnat rem/P lasma adde d', 'RBC C P2D OPN LU KOPR PLS R ed/PA', 'E 002', '@21 B2 D4 E8' , 350, 'E8 434', 24, 0, 0, 1, ' E002', NUL L, 'A', '2 016-07-27 11:17:06.0 00', ' RED A CTED ', 0) | |
| 12150 | INSERT INT O [dbo].[B loodProduc t] ([Blood ProductGui d], [Produ ctName], [ ProductSho rtName], [ ProductTyp eCode], [P roductAttr ibuteForm] , [Product Volume], [ ProductCod e], [Maxim umStorageT ime], [Cro ssmatchReq uiredIndic ator], [Pr oductModif icationInd icator], [ ProductCod eIndicator ], [Origin alProductT ypeCode], [RetireDat e], [Recor dStatusCod e], [LastU pdateDate] , [LastUpd ateUser], [LastUpdat eFunctionI d]) VALUES ('303c8f2 d-c760-4fe d-ba17-c02 f9e9fcaaa' , 'PLASMA| CPD/450mL/ <=-25C|Cry o reduced' , 'PLASMA CPD CRYORe d', 'E010' , '@A2 E3' , 225, 'E8 569', 8760 , 0, 0, 1, 'E017', N ULL, 'A', '2016-07-2 7 11:17:06 .000', ' RED A CTED ', 0) | |
| 12151 | INSERT INT O [dbo].[B loodProduc t] ([Blood ProductGui d], [Produ ctName], [ ProductSho rtName], [ ProductTyp eCode], [P roductAttr ibuteForm] , [Product Volume], [ ProductCod e], [Maxim umStorageT ime], [Cro ssmatchReq uiredIndic ator], [Pr oductModif icationInd icator], [ ProductCod eIndicator ], [Origin alProductT ypeCode], [RetireDat e], [Recor dStatusCod e], [LastU pdateDate] , [LastUpd ateUser], [LastUpdat eFunctionI d]) VALUES ('6e02042 0-2a89-474 5-9d9a-c0a 25b164c13' , 'Apheres is PLASMA| NaCitrate/ XX/<=-20C| For mnf:in jectable|O pen|Frozen <=24h', ' PLASMA AFR NaCit MNF I OPN', 'E 012', '@58 A2 B2 G7' , 225, 'E8 713', 8760 , 0, 0, 1, 'E014', N ULL, 'A', '2016-07-2 7 11:17:06 .000', ' RED A CTED ', 0) | |
| 12152 | INSERT INT O [dbo].[B loodProduc t] ([Blood ProductGui d], [Produ ctName], [ ProductSho rtName], [ ProductTyp eCode], [P roductAttr ibuteForm] , [Product Volume], [ ProductCod e], [Maxim umStorageT ime], [Cro ssmatchReq uiredIndic ator], [Pr oductModif icationInd icator], [ ProductCod eIndicator ], [Origin alProductT ypeCode], [RetireDat e], [Recor dStatusCod e], [LastU pdateDate] , [LastUpd ateUser], [LastUpdat eFunctionI d]) VALUES ('d6c7d4e e-c578-481 e-9d8e-c1a 3d841bef1' , 'Thawed POOLED PLA SMA|CP2D/X X/refg|Fro zen <=24h| 3 units|Ps oralen-tre ated', 'PL ASMA Pool Thaw CP2D 3U Psoraln ', 'E011', '@13 G7 J 3 K5', 500 , 'E8406', 4, 0, 0, 1, 'E055', NULL, 'A' , '2016-07 -27 11:17: 06.000', ' RED A CTED ', 0) | |
| 12153 | INSERT INT O [dbo].[B loodProduc t] ([Blood ProductGui d], [Produ ctName], [ ProductSho rtName], [ ProductTyp eCode], [P roductAttr ibuteForm] , [Product Volume], [ ProductCod e], [Maxim umStorageT ime], [Cro ssmatchReq uiredIndic ator], [Pr oductModif icationInd icator], [ ProductCod eIndicator ], [Origin alProductT ypeCode], [RetireDat e], [Recor dStatusCod e], [LastU pdateDate] , [LastUpd ateUser], [LastUpdat eFunctionI d]) VALUES ('6de9077 3-51a1-42f 1-8b48-c1b a0b1e2167' , 'RED BLO OD CELLS|C P2D>AS3/50 0mL/refg|R esLeu:<5E6 |Supernat rem', 'RBC CP2D>AS3 LUKOPR SR' , 'E002', '@21 D4 E7 ', 350, 'E 8412', 100 8, 0, 0, 1 , 'E002', NULL, 'A', '2016-07- 27 11:17:0 6.000', ' RED A CTED ', 0) | |
| 12154 | INSERT INT O [dbo].[B loodProduc t] ([Blood ProductGui d], [Produ ctName], [ ProductSho rtName], [ ProductTyp eCode], [P roductAttr ibuteForm] , [Product Volume], [ ProductCod e], [Maxim umStorageT ime], [Cro ssmatchReq uiredIndic ator], [Pr oductModif icationInd icator], [ ProductCod eIndicator ], [Origin alProductT ypeCode], [RetireDat e], [Recor dStatusCod e], [LastU pdateDate] , [LastUpd ateUser], [LastUpdat eFunctionI d]) VALUES ('82732f1 5-03c0-452 3-9f28-c1d 4ed6eacf5' , 'Apheres is PLATELE TS|PAS-E/X X/20-24C|I rradiated| Bacterial monitoring ', 'PLT AF R PAS-E IR D Bac Mtr' , 'E024', '@D5 C2 N2 ', 200, 'E 8310', 120 , 0, 0, 1, 'E024', N ULL, 'A', '2016-07-2 7 11:17:06 .000', ' RED A CTED ', 0) | |
| 12155 | INSERT INT O [dbo].[B loodProduc t] ([Blood ProductGui d], [Produ ctName], [ ProductSho rtName], [ ProductTyp eCode], [P roductAttr ibuteForm] , [Product Volume], [ ProductCod e], [Maxim umStorageT ime], [Cro ssmatchReq uiredIndic ator], [Pr oductModif icationInd icator], [ ProductCod eIndicator ], [Origin alProductT ypeCode], [RetireDat e], [Recor dStatusCod e], [LastU pdateDate] , [LastUpd ateUser], [LastUpdat eFunctionI d]) VALUES ('47ed7d1 9-75b4-42f 2-8224-c25 e8b7ca588' , 'Apheres is FRESH F ROZEN PLAS MA|ACD-A/X X/<=-25C|R esLeu:<1E6 |>=200mL<4 00mL|Froze n <=18h|2n d containe r', 'FFP A FR ACD-A L UKOPR 2C', 'E012', ' @AI D5 F5 G6 H4', 22 5, 'E8638' , 8760, 0, 0, 1, 'E0 12', NULL, 'A', '201 6-07-27 11 :17:06.000 ', ' RED A CTED ', 0) | |
| 12156 | INSERT INT O [dbo].[B loodProduc t] ([Blood ProductGui d], [Produ ctName], [ ProductSho rtName], [ ProductTyp eCode], [P roductAttr ibuteForm] , [Product Volume], [ ProductCod e], [Maxim umStorageT ime], [Cro ssmatchReq uiredIndic ator], [Pr oductModif icationInd icator], [ ProductCod eIndicator ], [Origin alProductT ypeCode], [RetireDat e], [Recor dStatusCod e], [LastU pdateDate] , [LastUpd ateUser], [LastUpdat eFunctionI d]) VALUES ('243c823 6-ce3d-492 8-ace6-c27 952ea637e' , 'PLASMA| CPD/350mL/ <=-30C|Fro zen <=24h' , 'PLASMA CPD', 'E01 0', '@CZ G 7', 225, ' E8262', 87 60, 0, 0, 1, 'E017', NULL, 'A' , '2016-07 -27 11:17: 06.000', ' RED A CTED ', 0) | |
| 12157 | INSERT INT O [dbo].[B loodProduc t] ([Blood ProductGui d], [Produ ctName], [ ProductSho rtName], [ ProductTyp eCode], [P roductAttr ibuteForm] , [Product Volume], [ ProductCod e], [Maxim umStorageT ime], [Cro ssmatchReq uiredIndic ator], [Pr oductModif icationInd icator], [ ProductCod eIndicator ], [Origin alProductT ypeCode], [RetireDat e], [Recor dStatusCod e], [LastU pdateDate] , [LastUpd ateUser], [LastUpdat eFunctionI d]) VALUES ('8625a80 b-d4df-47f a-97f9-c2b 4a73e13fd' , 'RED BLO OD CELLS|C P2D/500mL/ refg|Open| Irradiated |ResLeu:<5 E6|Plasma reduced/Pl asma added ', 'RBC CP 2D OPN IRD LUKOPR PL S Red/PA', 'E002', ' @12 B2 C2 D4 EE', 25 0, 'E8432' , 24, 0, 0 , 1, 'E002 ', NULL, ' A', '2016- 07-27 11:1 7:06.000', ' RED A CTED ', 0) | |
| 12158 | INSERT INT O [dbo].[B loodProduc t] ([Blood ProductGui d], [Produ ctName], [ ProductSho rtName], [ ProductTyp eCode], [P roductAttr ibuteForm] , [Product Volume], [ ProductCod e], [Maxim umStorageT ime], [Cro ssmatchReq uiredIndic ator], [Pr oductModif icationInd icator], [ ProductCod eIndicator ], [Origin alProductT ypeCode], [RetireDat e], [Recor dStatusCod e], [LastU pdateDate] , [LastUpd ateUser], [LastUpdat eFunctionI d]) VALUES ('6172153 0-7d7b-431 c-8b7b-c2d 370d59319' , 'Apheres is PLATELE TS|ACD-A/X X/20-24C|R esLeu:<5E6 |3rd conta iner|Psora len-treate d', 'PLT A FR ACD-A L UKOPR 3C P soraln', ' E024', '@7 3 D4 H5 K5 ', 200, 'E 8334', 120 , 0, 0, 1, 'E024', N ULL, 'A', '2016-07-2 7 11:17:06 .000', ' RED A CTED ', 0) | |
| 12159 | INSERT INT O [dbo].[B loodProduc t] ([Blood ProductGui d], [Produ ctName], [ ProductSho rtName], [ ProductTyp eCode], [P roductAttr ibuteForm] , [Product Volume], [ ProductCod e], [Maxim umStorageT ime], [Cro ssmatchReq uiredIndic ator], [Pr oductModif icationInd icator], [ ProductCod eIndicator ], [Origin alProductT ypeCode], [RetireDat e], [Recor dStatusCod e], [LastU pdateDate] , [LastUpd ateUser], [LastUpdat eFunctionI d]) VALUES ('ddfc9e6 1-0da5-4d2 7-99c9-c31 2cb388bad' , 'RED BLO OD CELLS|C PD>AS5/450 mL/refg|Op en|Superna t reduced' , 'RBC CPD >AS5 OPN S UPRed', 'E 002', '@22 B2 EA', 3 50, 'E8577 ', 24, 0, 0, 1, 'E00 2', NULL, 'A', '2016 -07-27 11: 17:06.000' , ' RED A CTED ', 0) | |
| 12160 | INSERT INT O [dbo].[B loodProduc t] ([Blood ProductGui d], [Produ ctName], [ ProductSho rtName], [ ProductTyp eCode], [P roductAttr ibuteForm] , [Product Volume], [ ProductCod e], [Maxim umStorageT ime], [Cro ssmatchReq uiredIndic ator], [Pr oductModif icationInd icator], [ ProductCod eIndicator ], [Origin alProductT ypeCode], [RetireDat e], [Recor dStatusCod e], [LastU pdateDate] , [LastUpd ateUser], [LastUpdat eFunctionI d]) VALUES ('b7da773 9-b244-4e9 5-90a6-c36 f8a50d1e7' , 'CRYOPRE CIPITATE|C PD/450mL/< =-30C|ResL eu:<1E6', 'CRYO CPD LUKOPR', ' E028', '@A 5 D5', 15, 'E8264', 8760, 0, 0 , 1, 'E028 ', NULL, ' A', '2016- 07-27 11:1 7:06.000', ' RED A CTED ', 0) | |
| 12161 | INSERT INT O [dbo].[B loodProduc t] ([Blood ProductGui d], [Produ ctName], [ ProductSho rtName], [ ProductTyp eCode], [P roductAttr ibuteForm] , [Product Volume], [ ProductCod e], [Maxim umStorageT ime], [Cro ssmatchReq uiredIndic ator], [Pr oductModif icationInd icator], [ ProductCod eIndicator ], [Origin alProductT ypeCode], [RetireDat e], [Recor dStatusCod e], [LastU pdateDate] , [LastUpd ateUser], [LastUpdat eFunctionI d]) VALUES ('e0f9236 4-7d03-40d 4-8b8e-c37 6393f9042' , 'Apheres is PLATELE TS|ACD-A>P AS-E/XX/20 -24C|ResLe u:<1E6|2nd container |Riboflavi n-treated' , 'PLT AFR ACD-A>PAS -E LUKOPR 2C Ribo', 'E024', '@ DS D5 H4 K 6', 200, ' E8525', 12 0, 0, 0, 1 , 'E024', NULL, 'A', '2016-07- 27 11:17:0 6.000', ' RED A CTED ', 0) | |
| 12162 | INSERT INT O [dbo].[B loodProduc t] ([Blood ProductGui d], [Produ ctName], [ ProductSho rtName], [ ProductTyp eCode], [P roductAttr ibuteForm] , [Product Volume], [ ProductCod e], [Maxim umStorageT ime], [Cro ssmatchReq uiredIndic ator], [Pr oductModif icationInd icator], [ ProductCod eIndicator ], [Origin alProductT ypeCode], [RetireDat e], [Recor dStatusCod e], [LastU pdateDate] , [LastUpd ateUser], [LastUpdat eFunctionI d]) VALUES ('d4c30be 8-e9ad-4c4 e-bf0c-c38 f780452ee' , 'Apheres is PLATELE TS|ACD-A>P AS-C/XX/20 -24C|ResLe u:<5E6|<3E 11 plts|Ps oralen-tre ated', 'PL T AFR ACD- A>PAS-C LU KOPR Psora ln', 'E024 ', '@BH D4 JI K5', 2 00, 'E8344 ', 120, 0, 0, 1, 'E0 24', NULL, 'A', '201 6-07-27 11 :17:06.000 ', ' RED A CTED ', 0) | |
| 12163 | INSERT INT O [dbo].[B loodProduc t] ([Blood ProductGui d], [Produ ctName], [ ProductSho rtName], [ ProductTyp eCode], [P roductAttr ibuteForm] , [Product Volume], [ ProductCod e], [Maxim umStorageT ime], [Cro ssmatchReq uiredIndic ator], [Pr oductModif icationInd icator], [ ProductCod eIndicator ], [Origin alProductT ypeCode], [RetireDat e], [Recor dStatusCod e], [LastU pdateDate] , [LastUpd ateUser], [LastUpdat eFunctionI d]) VALUES ('1cce127 e-94ba-49a 7-917a-c3b eeb7bec9a' , 'Washed Apheresis PLATELETS| None/XX/20 -24C|Open| Irradiated |ResLeu:<5 E6|<3E11 p lts|Psoral en-treated ', 'PLT AF R Wash Non e OPN IRD Psoraln', 'E027', '@ 71 B2 C2 D 4 JI K5', 200, 'E875 7', 4, 0, 0, 1, 'E02 7', NULL, 'A', '2016 -07-27 11: 17:06.000' , ' RED A CTED ', 0) | |
| 12164 | INSERT INT O [dbo].[B loodProduc t] ([Blood ProductGui d], [Produ ctName], [ ProductSho rtName], [ ProductTyp eCode], [P roductAttr ibuteForm] , [Product Volume], [ ProductCod e], [Maxim umStorageT ime], [Cro ssmatchReq uiredIndic ator], [Pr oductModif icationInd icator], [ ProductCod eIndicator ], [Origin alProductT ypeCode], [RetireDat e], [Recor dStatusCod e], [LastU pdateDate] , [LastUpd ateUser], [LastUpdat eFunctionI d]) VALUES ('a527075 d-253c-46b 8-8d79-c4f 180ad8a94' , 'Washed Apheresis PLATELETS| PAS-C/XX/2 0-24C|ResL eu:<1E6|3r d containe r', 'PLT A FR Wash PA S-C LUKOPR 3C', 'E02 7', '@B5 D 5 H5', 200 , 'E8719', 4, 0, 0, 1, 'E027', NULL, 'A' , '2016-07 -27 11:17: 06.000', ' RED A CTED ', 0) | |
| 12165 | INSERT INT O [dbo].[B loodProduc t] ([Blood ProductGui d], [Produ ctName], [ ProductSho rtName], [ ProductTyp eCode], [P roductAttr ibuteForm] , [Product Volume], [ ProductCod e], [Maxim umStorageT ime], [Cro ssmatchReq uiredIndic ator], [Pr oductModif icationInd icator], [ ProductCod eIndicator ], [Origin alProductT ypeCode], [RetireDat e], [Recor dStatusCod e], [LastU pdateDate] , [LastUpd ateUser], [LastUpdat eFunctionI d]) VALUES ('4512350 6-0bad-43f b-a95b-c5e bdcb60949' , 'POOLED PLATELETS| PAS-E/XX/2 0-24C|ResL eu:<1E6|Bu ffy coat p lts prep|A pprox 240 E9 plts', 'PLT Pool PAS-E LUKO PR BUFCT', 'E022', ' @D5 D5 G2 JB', 200, 'E8199', 4 , 0, 0, 1, 'E022', N ULL, 'A', '2016-07-2 7 11:17:06 .000', ' RED A CTED ', 0) | |
| 12166 | INSERT INT O [dbo].[B loodProduc t] ([Blood ProductGui d], [Produ ctName], [ ProductSho rtName], [ ProductTyp eCode], [P roductAttr ibuteForm] , [Product Volume], [ ProductCod e], [Maxim umStorageT ime], [Cro ssmatchReq uiredIndic ator], [Pr oductModif icationInd icator], [ ProductCod eIndicator ], [Origin alProductT ypeCode], [RetireDat e], [Recor dStatusCod e], [LastU pdateDate] , [LastUpd ateUser], [LastUpdat eFunctionI d]) VALUES ('0ba25cf f-0a07-466 7-a514-c65 67f131c45' , 'Apheres is PLATELE TS|ACD-A/X X/20-24C|R esLeu:<5E6 |3rd conta iner|Bacte rial test' , 'PLT AFR ACD-A LUK OPR 3C Bac Test', 'E0 24', '@73 D4 H5 N3', 200, 'E87 64', 120, 0, 0, 1, ' E024', NUL L, 'A', '2 016-07-27 11:17:06.0 00', ' RED A CTED ', 0) | |
| 12167 | INSERT INT O [dbo].[B loodProduc t] ([Blood ProductGui d], [Produ ctName], [ ProductSho rtName], [ ProductTyp eCode], [P roductAttr ibuteForm] , [Product Volume], [ ProductCod e], [Maxim umStorageT ime], [Cro ssmatchReq uiredIndic ator], [Pr oductModif icationInd icator], [ ProductCod eIndicator ], [Origin alProductT ypeCode], [RetireDat e], [Recor dStatusCod e], [LastU pdateDate] , [LastUpd ateUser], [LastUpdat eFunctionI d]) VALUES ('93df961 4-c054-4fa 5-89b5-c6c b85f59062' , 'PLASMA| CP2D/XX/<= -20C|For m nf:injecta ble restr use|Cryo r educed|Fro zen <=72h' , 'PLASMA CP2D MNFRI CRYORed', 'E010', ' @BS A6 E3 GD', 225, 'E8557', 8 760, 0, 0, 1, 'E017' , NULL, 'A ', '2016-0 7-27 11:17 :06.000', ' RED A CTED ', 0) | |
| 12168 | INSERT INT O [dbo].[B loodProduc t] ([Blood ProductGui d], [Produ ctName], [ ProductSho rtName], [ ProductTyp eCode], [P roductAttr ibuteForm] , [Product Volume], [ ProductCod e], [Maxim umStorageT ime], [Cro ssmatchReq uiredIndic ator], [Pr oductModif icationInd icator], [ ProductCod eIndicator ], [Origin alProductT ypeCode], [RetireDat e], [Recor dStatusCod e], [LastU pdateDate] , [LastUpd ateUser], [LastUpdat eFunctionI d]) VALUES ('ba42f8d c-0f59-453 f-a536-c6e f436f8b5e' , 'Apheres is PLATELE TS|PAS-C/X X/20-24C|R esLeu:<1E6 |Supernat reduced', 'PLT AFR P AS-C LUKOP R SUPRed', 'E024', ' @B5 D5 EA' , 200, 'E8 651', 120, 0, 0, 1, 'E024', NU LL, 'A', ' 2016-07-27 11:17:06. 000', ' RED A CTED ', 0) | |
| 12169 | INSERT INT O [dbo].[B loodProduc t] ([Blood ProductGui d], [Produ ctName], [ ProductSho rtName], [ ProductTyp eCode], [P roductAttr ibuteForm] , [Product Volume], [ ProductCod e], [Maxim umStorageT ime], [Cro ssmatchReq uiredIndic ator], [Pr oductModif icationInd icator], [ ProductCod eIndicator ], [Origin alProductT ypeCode], [RetireDat e], [Recor dStatusCod e], [LastU pdateDate] , [LastUpd ateUser], [LastUpdat eFunctionI d]) VALUES ('441397b c-fb02-493 5-a1c9-c74 095806c3a' , 'Apheres is FRESH F ROZEN PLAS MA|ACD-A/X X/<=-18C|P soralen-tr eated', 'F FP AFR ACD -A Psoraln ', 'E012', '@47 K5', 225, 'E87 33', 8760, 0, 0, 1, 'E012', NU LL, 'A', ' 2016-07-27 11:17:06. 000', ' RED A CTED ', 0) | |
| 12170 | INSERT INT O [dbo].[B loodProduc t] ([Blood ProductGui d], [Produ ctName], [ ProductSho rtName], [ ProductTyp eCode], [P roductAttr ibuteForm] , [Product Volume], [ ProductCod e], [Maxim umStorageT ime], [Cro ssmatchReq uiredIndic ator], [Pr oductModif icationInd icator], [ ProductCod eIndicator ], [Origin alProductT ypeCode], [RetireDat e], [Recor dStatusCod e], [LastU pdateDate] , [LastUpd ateUser], [LastUpdat eFunctionI d]) VALUES ('07a2bcd 8-e101-46a 8-82c9-c80 ec8c42fa9' , 'Apheres is PLATELE TS|ACD-A>P AS-C/XX/20 -24C|Open| ResLeu:<5E 6|Plasma r educed|Pso ralen-trea ted', 'PLT AFR ACD-A >PAS-C OPN LUKOPR PL S Red Psor aln', 'E02 4', '@BH B 2 D4 E5 K5 ', 200, 'E 8701', 4, 0, 0, 1, ' E024', NUL L, 'A', '2 016-07-27 11:17:06.0 00', ' RED A CTED ', 0) | |
| 12171 | INSERT INT O [dbo].[B loodProduc t] ([Blood ProductGui d], [Produ ctName], [ ProductSho rtName], [ ProductTyp eCode], [P roductAttr ibuteForm] , [Product Volume], [ ProductCod e], [Maxim umStorageT ime], [Cro ssmatchReq uiredIndic ator], [Pr oductModif icationInd icator], [ ProductCod eIndicator ], [Origin alProductT ypeCode], [RetireDat e], [Recor dStatusCod e], [LastU pdateDate] , [LastUpd ateUser], [LastUpdat eFunctionI d]) VALUES ('7145efe 6-8305-4dc 1-bd56-c88 f7f123215' , 'Apheres is PLATELE TS|ACD-A>P AS-C/XX/20 -24C|Open| Irradiated |ResLeu:<5 E6', 'PLT AFR ACD-A> PAS-C OPN IRD LUKOPR ', 'E024', '@BH B2 C 2 D4', 200 , 'E8223', 4, 0, 0, 1, 'E024', NULL, 'A' , '2016-07 -27 11:17: 06.000', ' RED A CTED ', 0) | |
| 12172 | INSERT INT O [dbo].[B loodProduc t] ([Blood ProductGui d], [Produ ctName], [ ProductSho rtName], [ ProductTyp eCode], [P roductAttr ibuteForm] , [Product Volume], [ ProductCod e], [Maxim umStorageT ime], [Cro ssmatchReq uiredIndic ator], [Pr oductModif icationInd icator], [ ProductCod eIndicator ], [Origin alProductT ypeCode], [RetireDat e], [Recor dStatusCod e], [LastU pdateDate] , [LastUpd ateUser], [LastUpdat eFunctionI d]) VALUES ('95ceb77 c-1153-45f 1-823a-c89 05747f447' , 'RED BLO OD CELLS|C PD>AS5/500 mL/refg|Op en|ResLeu: NS|Superna t rem/Plas ma added', 'RBC CPD> AS5 OPN LU KOPR SR/PA ', 'E002', '@23 B2 D 2 E8', 350 , 'E8240', 24, 0, 0, 1, 'E002' , NULL, 'A ', '2016-0 7-27 11:17 :06.000', ' RED A CTED ', 0) | |
| 12173 | INSERT INT O [dbo].[B loodProduc t] ([Blood ProductGui d], [Produ ctName], [ ProductSho rtName], [ ProductTyp eCode], [P roductAttr ibuteForm] , [Product Volume], [ ProductCod e], [Maxim umStorageT ime], [Cro ssmatchReq uiredIndic ator], [Pr oductModif icationInd icator], [ ProductCod eIndicator ], [Origin alProductT ypeCode], [RetireDat e], [Recor dStatusCod e], [LastU pdateDate] , [LastUpd ateUser], [LastUpdat eFunctionI d]) VALUES ('3530a9c a-32a7-438 6-8d5b-c93 08fe83ca0' , 'CRYOPRE CIPITATE|N S/XX/<=-25 C', 'CRYO NS', 'E028 ', '@DO', 15, 'E8316 ', 8760, 0 , 0, 1, 'E 028', NULL , 'A', '20 16-07-27 1 1:17:06.00 0', ' RED A CTED ', 0) | |
| 12174 | INSERT INT O [dbo].[B loodProduc t] ([Blood ProductGui d], [Produ ctName], [ ProductSho rtName], [ ProductTyp eCode], [P roductAttr ibuteForm] , [Product Volume], [ ProductCod e], [Maxim umStorageT ime], [Cro ssmatchReq uiredIndic ator], [Pr oductModif icationInd icator], [ ProductCod eIndicator ], [Origin alProductT ypeCode], [RetireDat e], [Recor dStatusCod e], [LastU pdateDate] , [LastUpd ateUser], [LastUpdat eFunctionI d]) VALUES ('d9d8210 8-a69a-495 b-9171-c9c 19c277ecd' , 'Thawed POOLED PLA SMA|CP2D/X X/refg|Fro zen <=24h| 2 units|Ps oralen-tre ated', 'PL ASMA Pool Thaw CP2D 2U Psoraln ', 'E011', '@13 G7 J 2 K5', 500 , 'E8405', 4, 0, 0, 1, 'E055', NULL, 'A' , '2016-07 -27 11:17: 06.000', ' RED A CTED ', 0) | |
| 12175 | INSERT INT O [dbo].[B loodProduc t] ([Blood ProductGui d], [Produ ctName], [ ProductSho rtName], [ ProductTyp eCode], [P roductAttr ibuteForm] , [Product Volume], [ ProductCod e], [Maxim umStorageT ime], [Cro ssmatchReq uiredIndic ator], [Pr oductModif icationInd icator], [ ProductCod eIndicator ], [Origin alProductT ypeCode], [RetireDat e], [Recor dStatusCod e], [LastU pdateDate] , [LastUpd ateUser], [LastUpdat eFunctionI d]) VALUES ('3717136 e-af43-480 a-9900-ca9 003e91366' , 'Washed Apheresis RED BLOOD CELLS|None /XX/refg|O pen|Irradi ated|ResLe u:<5E6|Mul tiple wash cycles|1s t containe r', 'RBC A FR Wash No ne OPN IRD LUKOPR MW C 1C', 'E0 49', '@AS B2 C2 D4 G H H3', 200 , 'E8543', 24, 0, 0, 1, 'E049' , NULL, 'A ', '2016-0 7-27 11:17 :06.000', ' RED A CTED ', 0) | |
| 12176 | INSERT INT O [dbo].[B loodProduc t] ([Blood ProductGui d], [Produ ctName], [ ProductSho rtName], [ ProductTyp eCode], [P roductAttr ibuteForm] , [Product Volume], [ ProductCod e], [Maxim umStorageT ime], [Cro ssmatchReq uiredIndic ator], [Pr oductModif icationInd icator], [ ProductCod eIndicator ], [Origin alProductT ypeCode], [RetireDat e], [Recor dStatusCod e], [LastU pdateDate] , [LastUpd ateUser], [LastUpdat eFunctionI d]) VALUES ('e7e653b 7-0b79-401 f-82a6-cae cc7d8a57e' , 'Apheres is FRESH F ROZEN PLAS MA|ACD-A/X X/<=-18C|< 200 mL|Pso ralen-trea ted', 'FFP AFR ACD-A Low Vol P soraln', ' E012', '@4 7 F4 K5', 225, 'E873 7', 8760, 0, 0, 1, ' E012', NUL L, 'A', '2 016-07-27 11:17:06.0 00', ' RED A CTED ', 0) | |
| 12177 | INSERT INT O [dbo].[B loodProduc t] ([Blood ProductGui d], [Produ ctName], [ ProductSho rtName], [ ProductTyp eCode], [P roductAttr ibuteForm] , [Product Volume], [ ProductCod e], [Maxim umStorageT ime], [Cro ssmatchReq uiredIndic ator], [Pr oductModif icationInd icator], [ ProductCod eIndicator ], [Origin alProductT ypeCode], [RetireDat e], [Recor dStatusCod e], [LastU pdateDate] , [LastUpd ateUser], [LastUpdat eFunctionI d]) VALUES ('0ff91b3 e-1933-4a3 0-a391-caf 4c2a665ef' , 'Thawed Apheresis PLATELETS| PAS-C/XX/2 0-24C|Irra diated|Res Leu:<5E6|1 st contain er', 'PLT AFR Thaw P AS-C IRD L UKOPR 1C', 'E026', ' @B5 C2 D4 H3', 200, 'E8587', 4 , 0, 0, 1, 'E026', N ULL, 'A', '2016-07-2 7 11:17:06 .000', ' RED A CTED ', 0) | |
| 12178 | INSERT INT O [dbo].[B loodProduc t] ([Blood ProductGui d], [Produ ctName], [ ProductSho rtName], [ ProductTyp eCode], [P roductAttr ibuteForm] , [Product Volume], [ ProductCod e], [Maxim umStorageT ime], [Cro ssmatchReq uiredIndic ator], [Pr oductModif icationInd icator], [ ProductCod eIndicator ], [Origin alProductT ypeCode], [RetireDat e], [Recor dStatusCod e], [LastU pdateDate] , [LastUpd ateUser], [LastUpdat eFunctionI d]) VALUES ('2e6a886 4-1e29-4c9 9-a908-cb1 e1bb28fd8' , 'POOLED CRYOPRECIP ITATE|None /XX/<=-18C |Open|3 un its', 'CRY O Pool Non e OPN 3U', 'E030', ' @84 B2 J3' , 100, 'E8 599', 8760 , 0, 0, 1, 'E030', N ULL, 'A', '2016-07-2 7 11:17:06 .000', ' RED A CTED ', 0) | |
| 12179 | INSERT INT O [dbo].[B loodProduc t] ([Blood ProductGui d], [Produ ctName], [ ProductSho rtName], [ ProductTyp eCode], [P roductAttr ibuteForm] , [Product Volume], [ ProductCod e], [Maxim umStorageT ime], [Cro ssmatchReq uiredIndic ator], [Pr oductModif icationInd icator], [ ProductCod eIndicator ], [Origin alProductT ypeCode], [RetireDat e], [Recor dStatusCod e], [LastU pdateDate] , [LastUpd ateUser], [LastUpdat eFunctionI d]) VALUES ('b40fa66 5-22de-48f 8-9c04-cb2 49c7734f3' , 'POOLED GRANULOCYT ES|CPD/XX/ rt|Irradia ted|RBC co ntent redu ced', 'GRA N Pool CPD IRD RBC R ed', 'E036 ', '@BT C2 EC', 150, 'E8208', 4, 0, 0, 1 , 'E036', NULL, 'A', '2016-07- 27 11:17:0 6.000', ' RED A CTED ', 0) | |
| 12180 | INSERT INT O [dbo].[B loodProduc t] ([Blood ProductGui d], [Produ ctName], [ ProductSho rtName], [ ProductTyp eCode], [P roductAttr ibuteForm] , [Product Volume], [ ProductCod e], [Maxim umStorageT ime], [Cro ssmatchReq uiredIndic ator], [Pr oductModif icationInd icator], [ ProductCod eIndicator ], [Origin alProductT ypeCode], [RetireDat e], [Recor dStatusCod e], [LastU pdateDate] , [LastUpd ateUser], [LastUpdat eFunctionI d]) VALUES ('5c061a4 8-74e5-4a7 3-bf2f-cb8 6122aa1ca' , 'RED BLO OD CELLS|C PD>AS1/500 mL/refg|Op en|Irradia ted|ResLeu :NS|Supern at rem/Pla sma added' , 'RBC CPD >AS1 OPN I RD LUKOPR SR/PA', 'E 002', '@19 B2 C2 D2 E8', 350, 'E8446', 2 4, 0, 0, 1 , 'E002', NULL, 'A', '2016-07- 27 11:17:0 6.000', ' RED A CTED ', 0) | |
| 12181 | INSERT INT O [dbo].[B loodProduc t] ([Blood ProductGui d], [Produ ctName], [ ProductSho rtName], [ ProductTyp eCode], [P roductAttr ibuteForm] , [Product Volume], [ ProductCod e], [Maxim umStorageT ime], [Cro ssmatchReq uiredIndic ator], [Pr oductModif icationInd icator], [ ProductCod eIndicator ], [Origin alProductT ypeCode], [RetireDat e], [Recor dStatusCod e], [LastU pdateDate] , [LastUpd ateUser], [LastUpdat eFunctionI d]) VALUES ('e3d7040 5-9735-482 7-87a3-cb9 0d837665d' , 'POOLED PLASMA|CP2 D/XX/<=-18 C|2 units| Psoralen-t reated', ' PLASMA Poo l CP2D 2U Psoraln', 'E040', '@ 37 J2 K5', 225, 'E83 80', 8760, 0, 0, 1, 'E040', NU LL, 'A', ' 2016-07-27 11:17:06. 000', ' RED A CTED ', 0) | |
| 12182 | INSERT INT O [dbo].[B loodProduc t] ([Blood ProductGui d], [Produ ctName], [ ProductSho rtName], [ ProductTyp eCode], [P roductAttr ibuteForm] , [Product Volume], [ ProductCod e], [Maxim umStorageT ime], [Cro ssmatchReq uiredIndic ator], [Pr oductModif icationInd icator], [ ProductCod eIndicator ], [Origin alProductT ypeCode], [RetireDat e], [Recor dStatusCod e], [LastU pdateDate] , [LastUpd ateUser], [LastUpdat eFunctionI d]) VALUES ('dfc7ea4 c-d996-408 e-94fe-cc0 c8f99e81b' , 'PLASMA| CPD/450mL/ <=-18C|RT< =24h froze n<=24h', ' PLASMA CPD ', 'E010', '@AM GG', 225, 'E86 17', 8760, 0, 0, 1, 'E017', NU LL, 'A', ' 2016-07-27 11:17:06. 000', ' RED A CTED ', 0) | |
| 12183 | INSERT INT O [dbo].[B loodProduc t] ([Blood ProductGui d], [Produ ctName], [ ProductSho rtName], [ ProductTyp eCode], [P roductAttr ibuteForm] , [Product Volume], [ ProductCod e], [Maxim umStorageT ime], [Cro ssmatchReq uiredIndic ator], [Pr oductModif icationInd icator], [ ProductCod eIndicator ], [Origin alProductT ypeCode], [RetireDat e], [Recor dStatusCod e], [LastU pdateDate] , [LastUpd ateUser], [LastUpdat eFunctionI d]) VALUES ('666b044 d-de45-4ac 8-94be-cc2 f72782af3' , 'Washed Apheresis RED BLOOD CELLS|None /XX/refg|I rradiated| ResLeu:<1E 6|1st cont ainer|0.5- 0.7', 'RBC AFR Wash None IRD L UKOPR 1C 0 .5-0.7', ' E049', '@A S C2 D5 H3 L3', 200, 'E8688', 24, 0, 0, 1, 'E049', NULL, 'A' , '2016-07 -27 11:17: 06.000', ' RED A CTED ', 0) | |
| 12184 | INSERT INT O [dbo].[B loodProduc t] ([Blood ProductGui d], [Produ ctName], [ ProductSho rtName], [ ProductTyp eCode], [P roductAttr ibuteForm] , [Product Volume], [ ProductCod e], [Maxim umStorageT ime], [Cro ssmatchReq uiredIndic ator], [Pr oductModif icationInd icator], [ ProductCod eIndicator ], [Origin alProductT ypeCode], [RetireDat e], [Recor dStatusCod e], [LastU pdateDate] , [LastUpd ateUser], [LastUpdat eFunctionI d]) VALUES ('e1e2fb9 b-5cce-466 4-96e6-cc3 5914ce6e9' , 'Apheres is GRANULO CYTES|NaCi trate/XX/r t', 'GRAN AFR Nacit' , 'E035', '@DJ', 150 , 'E8219', 24, 0, 0, 1, 'E035' , NULL, 'A ', '2016-0 7-27 11:17 :06.000', ' RED A CTED ', 0) | |
| 12185 | INSERT INT O [dbo].[B loodProduc t] ([Blood ProductGui d], [Produ ctName], [ ProductSho rtName], [ ProductTyp eCode], [P roductAttr ibuteForm] , [Product Volume], [ ProductCod e], [Maxim umStorageT ime], [Cro ssmatchReq uiredIndic ator], [Pr oductModif icationInd icator], [ ProductCod eIndicator ], [Origin alProductT ypeCode], [RetireDat e], [Recor dStatusCod e], [LastU pdateDate] , [LastUpd ateUser], [LastUpdat eFunctionI d]) VALUES ('681f536 7-a5bf-4f7 a-858e-ccb 7dd751588' , 'Deglyce rolized RE D BLOOD CE LLS|SAGM/X X/refg|Irr adiated|Re sLeu:<1E6' , 'RBC Deg SAGM IRD LUKOPR', ' E006', '@A 9 C2 D5', 200, 'E865 8', 336, 0 , 0, 1, 'E 006', NULL , 'A', '20 16-07-27 1 1:17:06.00 0', ' RED A CTED ', 0) | |
| 12186 | INSERT INT O [dbo].[B loodProduc t] ([Blood ProductGui d], [Produ ctName], [ ProductSho rtName], [ ProductTyp eCode], [P roductAttr ibuteForm] , [Product Volume], [ ProductCod e], [Maxim umStorageT ime], [Cro ssmatchReq uiredIndic ator], [Pr oductModif icationInd icator], [ ProductCod eIndicator ], [Origin alProductT ypeCode], [RetireDat e], [Recor dStatusCod e], [LastU pdateDate] , [LastUpd ateUser], [LastUpdat eFunctionI d]) VALUES ('c948d27 3-d216-4f6 a-bfc8-ce3 235b70eeb' , 'Washed Apheresis PLATELETS| PAS-F/XX/2 0-24C|Open |Irradiate d|ResLeu:< 5E6|1st co ntainer', 'PLT AFR W ash PAS-F OPN IRD LU KOPR 1C', 'E027', '@ DQ B2 C2 D 4 H3', 200 , 'E8420', 4, 0, 0, 1, 'E027', NULL, 'A' , '2016-07 -27 11:17: 06.000', ' RED A CTED ', 0) | |
| 12187 | INSERT INT O [dbo].[B loodProduc t] ([Blood ProductGui d], [Produ ctName], [ ProductSho rtName], [ ProductTyp eCode], [P roductAttr ibuteForm] , [Product Volume], [ ProductCod e], [Maxim umStorageT ime], [Cro ssmatchReq uiredIndic ator], [Pr oductModif icationInd icator], [ ProductCod eIndicator ], [Origin alProductT ypeCode], [RetireDat e], [Recor dStatusCod e], [LastU pdateDate] , [LastUpd ateUser], [LastUpdat eFunctionI d]) VALUES ('85e49fb 3-539b-4a3 4-9417-ce8 bd5cd7f4c' , 'RED BLO OD CELLS|C PDA-1/500m L/refg|Pla sma reduce d', 'RBC C PDA-1 PLS Red', 'E00 2', '@08 E 5', 250, ' E8493', 84 0, 0, 0, 1 , 'E002', NULL, 'A', '2016-07- 27 11:17:0 6.000', ' RED A CTED ', 0) | |
| 12188 | INSERT INT O [dbo].[B loodProduc t] ([Blood ProductGui d], [Produ ctName], [ ProductSho rtName], [ ProductTyp eCode], [P roductAttr ibuteForm] , [Product Volume], [ ProductCod e], [Maxim umStorageT ime], [Cro ssmatchReq uiredIndic ator], [Pr oductModif icationInd icator], [ ProductCod eIndicator ], [Origin alProductT ypeCode], [RetireDat e], [Recor dStatusCod e], [LastU pdateDate] , [LastUpd ateUser], [LastUpdat eFunctionI d]) VALUES ('876f89e 8-e93e-4fb e-bfbb-d07 3ed36fe0e' , 'Apheres is RED BLO OD CELLS|C P2D/XX/ref g|Irradiat ed|ResLeu: NS|Plasma added|2nd container' , 'RBC AFR CP2D IRD LUKOPR PA 2C', 'E009 ', '@13 C2 D2 E4 H4' , 350, 'E8 439', 504, 0, 0, 1, 'E009', NU LL, 'A', ' 2016-07-27 11:17:06. 000', ' RED A CTED ', 0) | |
| 12189 | INSERT INT O [dbo].[B loodProduc t] ([Blood ProductGui d], [Produ ctName], [ ProductSho rtName], [ ProductTyp eCode], [P roductAttr ibuteForm] , [Product Volume], [ ProductCod e], [Maxim umStorageT ime], [Cro ssmatchReq uiredIndic ator], [Pr oductModif icationInd icator], [ ProductCod eIndicator ], [Origin alProductT ypeCode], [RetireDat e], [Recor dStatusCod e], [LastU pdateDate] , [LastUpd ateUser], [LastUpdat eFunctionI d]) VALUES ('0924363 b-556d-484 c-ba45-d07 9a33ca38e' , 'Washed POOLED PLA TELETS|PAS -C/XX/20-2 4C|ResLeu: <5E6|From 5 donors', 'PLR Pool Wash PAS- C LUKOPR 5 DNR', 'E02 3', '@B5 D 4 O6', 200 , 'E8660', 4, 0, 0, 1, 'E023', NULL, 'A' , '2016-07 -27 11:17: 06.000', ' RED A CTED ', 0) | |
| 12190 | INSERT INT O [dbo].[B loodProduc t] ([Blood ProductGui d], [Produ ctName], [ ProductSho rtName], [ ProductTyp eCode], [P roductAttr ibuteForm] , [Product Volume], [ ProductCod e], [Maxim umStorageT ime], [Cro ssmatchReq uiredIndic ator], [Pr oductModif icationInd icator], [ ProductCod eIndicator ], [Origin alProductT ypeCode], [RetireDat e], [Recor dStatusCod e], [LastU pdateDate] , [LastUpd ateUser], [LastUpdat eFunctionI d]) VALUES ('c94365b 1-2715-442 7-856a-d12 0e6a3c976' , 'Apheres is PLATELE TS|ACD-A/X X/20-24C|R esLeu:<5E6 |Pediatric dose|Psor alen-treat ed', 'PLT AFR ACD-A LUKOPR Ped i Psoraln' , 'E024', '@73 D4 JO K5', 200, 'E8336', 120, 0, 0, 1, 'E024' , NULL, 'A ', '2016-0 7-27 11:17 :06.000', ' RED A CTED ', 0) | |
| 12191 | INSERT INT O [dbo].[B loodProduc t] ([Blood ProductGui d], [Produ ctName], [ ProductSho rtName], [ ProductTyp eCode], [P roductAttr ibuteForm] , [Product Volume], [ ProductCod e], [Maxim umStorageT ime], [Cro ssmatchReq uiredIndic ator], [Pr oductModif icationInd icator], [ ProductCod eIndicator ], [Origin alProductT ypeCode], [RetireDat e], [Recor dStatusCod e], [LastU pdateDate] , [LastUpd ateUser], [LastUpdat eFunctionI d]) VALUES ('7d68fab 3-da36-485 9-b3a8-d16 d773e9e03' , 'Apheres is PLATELE TS|ACD-A/X X/20-24C|I rradiated| ResLeu:<5E 6|Plasma r educed|Pso ralen-trea ted', 'PLT AFR ACD-A IRD LUKOP R PLS Red Psoraln', 'E024', '@ 73 C2 D4 E 5 K5', 200 , 'E8751', 120, 0, 0 , 1, 'E024 ', NULL, ' A', '2016- 07-27 11:1 7:06.000', ' RED A CTED ', 0) | |
| 12192 | INSERT INT O [dbo].[B loodProduc t] ([Blood ProductGui d], [Produ ctName], [ ProductSho rtName], [ ProductTyp eCode], [P roductAttr ibuteForm] , [Product Volume], [ ProductCod e], [Maxim umStorageT ime], [Cro ssmatchReq uiredIndic ator], [Pr oductModif icationInd icator], [ ProductCod eIndicator ], [Origin alProductT ypeCode], [RetireDat e], [Recor dStatusCod e], [LastU pdateDate] , [LastUpd ateUser], [LastUpdat eFunctionI d]) VALUES ('cf08539 0-486e-4c1 0-a4f8-d25 de731c38e' , 'POOLED PLASMA|CP2 D/XX/<=-18 C|Frozen < =24h|3 uni ts|Psorale n-treated' , 'PLASMA Pool CP2D 3U Psoraln ', 'E040', '@37 G7 J 3 K5', 225 , 'E8384', 8760, 0, 0, 1, 'E04 0', NULL, 'A', '2016 -07-27 11: 17:06.000' , ' RED A CTED ', 0) | |
| 12193 | INSERT INT O [dbo].[B loodProduc t] ([Blood ProductGui d], [Produ ctName], [ ProductSho rtName], [ ProductTyp eCode], [P roductAttr ibuteForm] , [Product Volume], [ ProductCod e], [Maxim umStorageT ime], [Cro ssmatchReq uiredIndic ator], [Pr oductModif icationInd icator], [ ProductCod eIndicator ], [Origin alProductT ypeCode], [RetireDat e], [Recor dStatusCod e], [LastU pdateDate] , [LastUpd ateUser], [LastUpdat eFunctionI d]) VALUES ('712eb07 b-0a99-4fe b-ac50-d30 a94a85b54' , 'Washed Apheresis PLATELETS| None/XX/20 -24C|Open| ResLeu:<5E 6|1st cont ainer|Psor alen-treat ed', 'PLT AFR Wash N one OPN LU KOPR 1C Ps oraln', 'E 027', '@71 B2 D4 H3 K5', 200, 'E8696', 4 , 0, 0, 1, 'E027', N ULL, 'A', '2016-07-2 7 11:17:06 .000', ' RED A CTED ', 0) | |
| 12194 | INSERT INT O [dbo].[B loodProduc t] ([Blood ProductGui d], [Produ ctName], [ ProductSho rtName], [ ProductTyp eCode], [P roductAttr ibuteForm] , [Product Volume], [ ProductCod e], [Maxim umStorageT ime], [Cro ssmatchReq uiredIndic ator], [Pr oductModif icationInd icator], [ ProductCod eIndicator ], [Origin alProductT ypeCode], [RetireDat e], [Recor dStatusCod e], [LastU pdateDate] , [LastUpd ateUser], [LastUpdat eFunctionI d]) VALUES ('93db9c4 3-369c-49f c-9e21-d31 495d7d570' , 'Apheres is PLASMA| ACD-A/XX/< =-20C|For mnf:inject able|>=200 mL<400mL|1 st contain er', 'PLAS MA AFR ACD -A MNFI 1C ', 'E012', '@56 A2 F 5 H3', 225 , 'E8232', 8760, 0, 0, 1, 'E01 4', NULL, 'A', '2016 -07-27 11: 17:06.000' , ' RED A CTED ', 0) | |
| 12195 | INSERT INT O [dbo].[B loodProduc t] ([Blood ProductGui d], [Produ ctName], [ ProductSho rtName], [ ProductTyp eCode], [P roductAttr ibuteForm] , [Product Volume], [ ProductCod e], [Maxim umStorageT ime], [Cro ssmatchReq uiredIndic ator], [Pr oductModif icationInd icator], [ ProductCod eIndicator ], [Origin alProductT ypeCode], [RetireDat e], [Recor dStatusCod e], [LastU pdateDate] , [LastUpd ateUser], [LastUpdat eFunctionI d]) VALUES ('e6cd16b 4-cf9c-48a 2-8ce4-d38 4b7a65622' , 'Apheres is PLATELE TS|ACD-A>P AS-C/XX/20 -24C|Open| ResLeu:<5E 6|Supernat reduced|3 rd contain er', 'PLT AFR ACD-A> PAS-C OPN LUKOPR SUP Red 3C', ' E024', '@B H B2 D4 EA H5', 200, 'E8581', 4, 0, 0, 1 , 'E024', NULL, 'A', '2016-07- 27 11:17:0 6.000', ' RED A CTED ', 0) | |
| 12196 | INSERT INT O [dbo].[B loodProduc t] ([Blood ProductGui d], [Produ ctName], [ ProductSho rtName], [ ProductTyp eCode], [P roductAttr ibuteForm] , [Product Volume], [ ProductCod e], [Maxim umStorageT ime], [Cro ssmatchReq uiredIndic ator], [Pr oductModif icationInd icator], [ ProductCod eIndicator ], [Origin alProductT ypeCode], [RetireDat e], [Recor dStatusCod e], [LastU pdateDate] , [LastUpd ateUser], [LastUpdat eFunctionI d]) VALUES ('bbed94e f-7d06-436 5-9ba1-d40 6d56d19de' , 'Liquid PLASMA|CPD /500mL/ref g', 'PLASM A Liq CPD' , 'E011', '@04', 225 , 'E8593', 624, 0, 0 , 1, 'E016 ', NULL, ' A', '2016- 07-27 11:1 7:06.000', ' RED A CTED ', 0) | |
| 12197 | INSERT INT O [dbo].[B loodProduc t] ([Blood ProductGui d], [Produ ctName], [ ProductSho rtName], [ ProductTyp eCode], [P roductAttr ibuteForm] , [Product Volume], [ ProductCod e], [Maxim umStorageT ime], [Cro ssmatchReq uiredIndic ator], [Pr oductModif icationInd icator], [ ProductCod eIndicator ], [Origin alProductT ypeCode], [RetireDat e], [Recor dStatusCod e], [LastU pdateDate] , [LastUpd ateUser], [LastUpdat eFunctionI d]) VALUES ('78ad1a6 a-dfdb-43c 8-98f6-d46 eb8c8976c' , 'Apheres is FRESH F ROZEN PLAS MA|NaCitra te/XX/<=-2 5C|Irradia ted|ResLeu :<1E6|>=20 0mL<400mL| Frozen <=6 h|3rd cont ainer|Quar :>=4m/rete sted', 'FF P AFR NaCi t IRD LUKO PR 3C QUAR ', 'E012', '@CQ C2 D 5 F5 G4 H5 I3', 225, 'E8619', 8760, 0, 0 , 1, 'E012 ', NULL, ' A', '2016- 07-27 11:1 7:06.000', ' RED A CTED ', 0) | |
| 12198 | INSERT INT O [dbo].[B loodProduc t] ([Blood ProductGui d], [Produ ctName], [ ProductSho rtName], [ ProductTyp eCode], [P roductAttr ibuteForm] , [Product Volume], [ ProductCod e], [Maxim umStorageT ime], [Cro ssmatchReq uiredIndic ator], [Pr oductModif icationInd icator], [ ProductCod eIndicator ], [Origin alProductT ypeCode], [RetireDat e], [Recor dStatusCod e], [LastU pdateDate] , [LastUpd ateUser], [LastUpdat eFunctionI d]) VALUES ('53823af a-4c2d-4f2 4-b5c5-d52 6c3b39c3e' , 'Apheres is RED BLO OD CELLS|A CD-A>AS1/X X/refg|For mnf:nonin jectable|R esLeu:<5E6 |2nd conta iner', 'RB C AFR ACD- A>AS1 MNFN I LUKOPR 2 C', 'E009' , '@AY A3 D4 H4', 35 0, 'E8201' , 1008, 0, 0, 1, 'E0 09', NULL, 'A', '201 6-07-27 11 :17:06.000 ', ' RED A CTED ', 0) | |
| 12199 | INSERT INT O [dbo].[B loodProduc t] ([Blood ProductGui d], [Produ ctName], [ ProductSho rtName], [ ProductTyp eCode], [P roductAttr ibuteForm] , [Product Volume], [ ProductCod e], [Maxim umStorageT ime], [Cro ssmatchReq uiredIndic ator], [Pr oductModif icationInd icator], [ ProductCod eIndicator ], [Origin alProductT ypeCode], [RetireDat e], [Recor dStatusCod e], [LastU pdateDate] , [LastUpd ateUser], [LastUpdat eFunctionI d]) VALUES ('a348284 3-05a7-48c 0-8c96-d60 2ba29083b' , 'POOLED PLATELETS| CPD/XX/20- 24C|Irradi ated|Bacte rial monit oring', 'P LT Pool CP D IRD Bac Mtr', 'E02 2', '@A7 C 2 N2', 200 , 'E8303', 120, 0, 0 , 1, 'E022 ', NULL, ' A', '2016- 07-27 11:1 7:06.000', ' RED A CTED ', 0) | |
| 12200 | INSERT INT O [dbo].[B loodProduc t] ([Blood ProductGui d], [Produ ctName], [ ProductSho rtName], [ ProductTyp eCode], [P roductAttr ibuteForm] , [Product Volume], [ ProductCod e], [Maxim umStorageT ime], [Cro ssmatchReq uiredIndic ator], [Pr oductModif icationInd icator], [ ProductCod eIndicator ], [Origin alProductT ypeCode], [RetireDat e], [Recor dStatusCod e], [LastU pdateDate] , [LastUpd ateUser], [LastUpdat eFunctionI d]) VALUES ('b1457f0 9-2933-41e 4-a9cb-d66 29d20dac0' , 'Apheres is IMMUNE PLASMA|CPD /XX/<=-25C |For mnf:i njectable| Tetanus', 'PLASMA AF R Imm CPD MNFI Tetan us', 'E012 ', '@A1 A2 PA', 225, 'E8765', 8760, 0, 0 , 1, 'E079 ', NULL, ' A', '2016- 07-27 11:1 7:06.000', ' RED A CTED ', 0) | |
| 12201 | INSERT INT O [dbo].[B loodProduc t] ([Blood ProductGui d], [Produ ctName], [ ProductSho rtName], [ ProductTyp eCode], [P roductAttr ibuteForm] , [Product Volume], [ ProductCod e], [Maxim umStorageT ime], [Cro ssmatchReq uiredIndic ator], [Pr oductModif icationInd icator], [ ProductCod eIndicator ], [Origin alProductT ypeCode], [RetireDat e], [Recor dStatusCod e], [LastU pdateDate] , [LastUpd ateUser], [LastUpdat eFunctionI d]) VALUES ('284716e 2-1638-4a3 6-8bdf-d68 1e0718c4b' , 'POOLED PLATELETS| PAS-E/XX/2 0-24C|Irra diated|Res Leu:<1E6|B uffy coat plts prep| Approx 360 E9 plts', 'PLT Pool PAS-E IRD LUKOPR BU FCT', 'E02 2', '@D5 C 2 D5 G2 JD ', 200, 'E 8195', 4, 0, 0, 1, ' E022', NUL L, 'A', '2 016-07-27 11:17:06.0 00', ' RED A CTED ', 0) | |
| 12202 | INSERT INT O [dbo].[B loodProduc t] ([Blood ProductGui d], [Produ ctName], [ ProductSho rtName], [ ProductTyp eCode], [P roductAttr ibuteForm] , [Product Volume], [ ProductCod e], [Maxim umStorageT ime], [Cro ssmatchReq uiredIndic ator], [Pr oductModif icationInd icator], [ ProductCod eIndicator ], [Origin alProductT ypeCode], [RetireDat e], [Recor dStatusCod e], [LastU pdateDate] , [LastUpd ateUser], [LastUpdat eFunctionI d]) VALUES ('ae73a16 f-34e2-42a 4-99cf-d69 d78c5705c' , 'POOLED PLATELETS| CPD/XX/20- 24C|Irradi ated|ResLe u:<5E6|4 u nits|Bacte rial test' , 'PLT Poo l CPD IRD LUKOPR 4U BacTest', 'E022', '@ A7 C2 D4 J 4 N3', 200 , 'E8473', 120, 0, 0 , 1, 'E022 ', NULL, ' A', '2016- 07-27 11:1 7:06.000', ' RED A CTED ', 0) | |
| 12203 | INSERT INT O [dbo].[B loodProduc t] ([Blood ProductGui d], [Produ ctName], [ ProductSho rtName], [ ProductTyp eCode], [P roductAttr ibuteForm] , [Product Volume], [ ProductCod e], [Maxim umStorageT ime], [Cro ssmatchReq uiredIndic ator], [Pr oductModif icationInd icator], [ ProductCod eIndicator ], [Origin alProductT ypeCode], [RetireDat e], [Recor dStatusCod e], [LastU pdateDate] , [LastUpd ateUser], [LastUpdat eFunctionI d]) VALUES ('8888359 e-84f7-479 3-9b09-d6c 0bd476d18' , 'Apheres is PLATELE TS|ACD-A>P AS-C/XX/20 -24C|Open| ResLeu:<5E 6|1st cont ainer|Psor alen-treat ed', 'PLT AFR ACD-A> PAS OPN LU KOPR 1C Ps oraln', 'E 024', '@BH B2 D4 H3 K5', 200, 'E8786', 4 , 0, 0, 1, 'E024', N ULL, 'A', '2016-07-2 7 11:17:06 .000', ' RED A CTED ', 0) | |
| 12204 | INSERT INT O [dbo].[B loodProduc t] ([Blood ProductGui d], [Produ ctName], [ ProductSho rtName], [ ProductTyp eCode], [P roductAttr ibuteForm] , [Product Volume], [ ProductCod e], [Maxim umStorageT ime], [Cro ssmatchReq uiredIndic ator], [Pr oductModif icationInd icator], [ ProductCod eIndicator ], [Origin alProductT ypeCode], [RetireDat e], [Recor dStatusCod e], [LastU pdateDate] , [LastUpd ateUser], [LastUpdat eFunctionI d]) VALUES ('44f328e 6-d9d9-41b 0-9f47-d6e 15fc34446' , 'RED BLO OD CELLS|C PD/500mL/r efg|Open|R esLeu:NS|P lasma redu ced/Plasma added', ' RBC CPD OP N LUKOPR P LS Red/PA' , 'E002', '@04 B2 D2 EE', 250, 'E8455', 24, 0, 0, 1, 'E002', NULL, 'A' , '2016-07 -27 11:17: 06.000', ' RED A CTED ', 0) | |
| 12205 | INSERT INT O [dbo].[B loodProduc t] ([Blood ProductGui d], [Produ ctName], [ ProductSho rtName], [ ProductTyp eCode], [P roductAttr ibuteForm] , [Product Volume], [ ProductCod e], [Maxim umStorageT ime], [Cro ssmatchReq uiredIndic ator], [Pr oductModif icationInd icator], [ ProductCod eIndicator ], [Origin alProductT ypeCode], [RetireDat e], [Recor dStatusCod e], [LastU pdateDate] , [LastUpd ateUser], [LastUpdat eFunctionI d]) VALUES ('2716ddd 6-77dd-433 1-8dfb-d76 4d2800a70' , 'POOLED CRYOPRECIP ITATE|CPD/ XX/<=-25C' , 'CRYO Po ol CPD', ' E030', '@A 1', 100, ' E8319', 87 60, 0, 0, 1, 'E030', NULL, 'A' , '2016-07 -27 11:17: 06.000', ' RED A CTED ', 0) | |
| 12206 | INSERT INT O [dbo].[B loodProduc t] ([Blood ProductGui d], [Produ ctName], [ ProductSho rtName], [ ProductTyp eCode], [P roductAttr ibuteForm] , [Product Volume], [ ProductCod e], [Maxim umStorageT ime], [Cro ssmatchReq uiredIndic ator], [Pr oductModif icationInd icator], [ ProductCod eIndicator ], [Origin alProductT ypeCode], [RetireDat e], [Recor dStatusCod e], [LastU pdateDate] , [LastUpd ateUser], [LastUpdat eFunctionI d]) VALUES ('8fd61a4 a-1e7a-40d 7-b078-d7b 12e1de060' , 'Washed Apheresis PLATELETS| PAS-C/XX/2 0-24C|ResL eu:<1E6|1s t containe r', 'PLT A FR Wash PA S-C LUKOPR 1C', 'E02 7', '@B5 D 5 H3', 200 , 'E8717', 4, 0, 0, 1, 'E027', NULL, 'A' , '2016-07 -27 11:17: 06.000', ' RED A CTED ', 0) | |
| 12207 | INSERT INT O [dbo].[B loodProduc t] ([Blood ProductGui d], [Produ ctName], [ ProductSho rtName], [ ProductTyp eCode], [P roductAttr ibuteForm] , [Product Volume], [ ProductCod e], [Maxim umStorageT ime], [Cro ssmatchReq uiredIndic ator], [Pr oductModif icationInd icator], [ ProductCod eIndicator ], [Origin alProductT ypeCode], [RetireDat e], [Recor dStatusCod e], [LastU pdateDate] , [LastUpd ateUser], [LastUpdat eFunctionI d]) VALUES ('c98aa3b 7-efb5-4ce c-add5-d80 a7752d3c6' , 'Apheres is PLATELE TS|ACD-A>P AS-C/XX/20 -24C|Open| Irradiated |ResLeu:<5 E6|Superna t reduced| 2nd contai ner', 'PLT AFR ACD-A >PAS-C OPN IRD LUKOP R SUPRed 2 C', 'E024' , '@BH B2 C2 D4 EA H 4', 200, ' E8191', 4, 0, 0, 1, 'E024', NU LL, 'A', ' 2016-07-27 11:17:06. 000', ' RED A CTED ', 0) | |
| 12208 | INSERT INT O [dbo].[B loodProduc t] ([Blood ProductGui d], [Produ ctName], [ ProductSho rtName], [ ProductTyp eCode], [P roductAttr ibuteForm] , [Product Volume], [ ProductCod e], [Maxim umStorageT ime], [Cro ssmatchReq uiredIndic ator], [Pr oductModif icationInd icator], [ ProductCod eIndicator ], [Origin alProductT ypeCode], [RetireDat e], [Recor dStatusCod e], [LastU pdateDate] , [LastUpd ateUser], [LastUpdat eFunctionI d]) VALUES ('16ebb35 9-fe00-485 e-8bed-d8a fead80841' , 'POOLED PLATELETS| CPD>PAS-E/ XX/20-24C| ResLeu:<1E 6|Buffy co at plts pr ep|5 units |Bacterial monitorin g', 'PLT P ool CPD>PA S-E LUKOPR BUFCT 5U BacMtr', ' E022', '@D P D5 G2 J5 N2', 200, 'E8502', 120, 0, 0, 1, 'E022' , NULL, 'A ', '2016-0 7-27 11:17 :06.000', ' RED A CTED ', 0) | |
| 12209 | INSERT INT O [dbo].[B loodProduc t] ([Blood ProductGui d], [Produ ctName], [ ProductSho rtName], [ ProductTyp eCode], [P roductAttr ibuteForm] , [Product Volume], [ ProductCod e], [Maxim umStorageT ime], [Cro ssmatchReq uiredIndic ator], [Pr oductModif icationInd icator], [ ProductCod eIndicator ], [Origin alProductT ypeCode], [RetireDat e], [Recor dStatusCod e], [LastU pdateDate] , [LastUpd ateUser], [LastUpdat eFunctionI d]) VALUES ('bae788e 4-fccd-40b 4-b3d0-d98 00787aafb' , 'Apheres is PLASMA| ACD-A/XX/< =-18C|<200 mL|RT<=24 h frozen<= 24h|3rd co ntainer', 'PLASMA AF R ACD-A Lo wVol 3C', 'E012', '@ 47 F4 GG H 5', 225, ' E8167', 87 60, 0, 0, 1, 'E014', NULL, 'A' , '2016-07 -27 11:17: 06.000', ' RED A CTED ', 0) | |
| 12210 | INSERT INT O [dbo].[B loodProduc t] ([Blood ProductGui d], [Produ ctName], [ ProductSho rtName], [ ProductTyp eCode], [P roductAttr ibuteForm] , [Product Volume], [ ProductCod e], [Maxim umStorageT ime], [Cro ssmatchReq uiredIndic ator], [Pr oductModif icationInd icator], [ ProductCod eIndicator ], [Origin alProductT ypeCode], [RetireDat e], [Recor dStatusCod e], [LastU pdateDate] , [LastUpd ateUser], [LastUpdat eFunctionI d]) VALUES ('9cfb31c 2-476e-425 7-afb5-da0 42468e5b7' , 'Frozen RED BLOOD CELLS|Gly1 7%/450mL/< =-120C|Res Leu:<5E6', 'RBC Froz Gly17% LU KOPR', 'E0 04', '@AA D4', 200, 'E8654', 8 7600, 0, 0 , 1, 'E004 ', NULL, ' A', '2016- 07-27 11:1 7:06.000', ' RED A CTED ', 0) | |
| 12211 | INSERT INT O [dbo].[B loodProduc t] ([Blood ProductGui d], [Produ ctName], [ ProductSho rtName], [ ProductTyp eCode], [P roductAttr ibuteForm] , [Product Volume], [ ProductCod e], [Maxim umStorageT ime], [Cro ssmatchReq uiredIndic ator], [Pr oductModif icationInd icator], [ ProductCod eIndicator ], [Origin alProductT ypeCode], [RetireDat e], [Recor dStatusCod e], [LastU pdateDate] , [LastUpd ateUser], [LastUpdat eFunctionI d]) VALUES ('d79ff28 0-6eb2-4ca 7-b8af-da4 4c0d7c21d' , 'POOLED PLASMA|CP2 D/XX/<=-18 C|Psoralen -treated', 'PLASMA P ool CP2D P soraln', ' E040', '@3 7 K5', 225 , 'E8382', 8760, 0, 0, 1, 'E04 0', NULL, 'A', '2016 -07-27 11: 17:06.000' , ' RED A CTED ', 0) | |
| 12212 | INSERT INT O [dbo].[B loodProduc t] ([Blood ProductGui d], [Produ ctName], [ ProductSho rtName], [ ProductTyp eCode], [P roductAttr ibuteForm] , [Product Volume], [ ProductCod e], [Maxim umStorageT ime], [Cro ssmatchReq uiredIndic ator], [Pr oductModif icationInd icator], [ ProductCod eIndicator ], [Origin alProductT ypeCode], [RetireDat e], [Recor dStatusCod e], [LastU pdateDate] , [LastUpd ateUser], [LastUpdat eFunctionI d]) VALUES ('e556034 3-ab20-4d1 a-8560-da8 5638583fc' , 'Apheres is PLATELE TS|ACD-A/X X/20-24C|R esLeu:<5E6 |2nd conta iner|Psora len-treate d', 'PLT A FR ACD-A L UKOPR 2C P soraln', ' E024', '@7 3 D4 H4 K5 ', 200, 'E 8333', 120 , 0, 0, 1, 'E024', N ULL, 'A', '2016-07-2 7 11:17:06 .000', ' RED A CTED ', 0) | |
| 12213 | INSERT INT O [dbo].[B loodProduc t] ([Blood ProductGui d], [Produ ctName], [ ProductSho rtName], [ ProductTyp eCode], [P roductAttr ibuteForm] , [Product Volume], [ ProductCod e], [Maxim umStorageT ime], [Cro ssmatchReq uiredIndic ator], [Pr oductModif icationInd icator], [ ProductCod eIndicator ], [Origin alProductT ypeCode], [RetireDat e], [Recor dStatusCod e], [LastU pdateDate] , [LastUpd ateUser], [LastUpdat eFunctionI d]) VALUES ('230b59c a-4319-432 9-9f70-dac c84a15d2c' , 'POOLED PLATELETS| CPD/XX/20- 24C|ResLeu :<5E6|4 un its', 'PLT Pool CPD LUKOPR 4U' , 'E022', '@A7 D4 J4 ', 200, 'E 8676', 4, 0, 0, 1, ' E022', NUL L, 'A', '2 016-07-27 11:17:06.0 00', ' RED A CTED ', 0) | |
| 12214 | INSERT INT O [dbo].[B loodProduc t] ([Blood ProductGui d], [Produ ctName], [ ProductSho rtName], [ ProductTyp eCode], [P roductAttr ibuteForm] , [Product Volume], [ ProductCod e], [Maxim umStorageT ime], [Cro ssmatchReq uiredIndic ator], [Pr oductModif icationInd icator], [ ProductCod eIndicator ], [Origin alProductT ypeCode], [RetireDat e], [Recor dStatusCod e], [LastU pdateDate] , [LastUpd ateUser], [LastUpdat eFunctionI d]) VALUES ('839656a b-3966-4b6 1-bf3d-dad 0ca6171cb' , 'POOLED PLATELETS| PAS-E/XX/2 0-24C|ResL eu:<1E6|Ba cterial mo nitoring', 'PLT Pool PAS-E LUK OPR BacMtr ', 'E022', '@D5 D5 N 2', 200, ' E8494', 12 0, 0, 0, 1 , 'E022', NULL, 'A', '2016-07- 27 11:17:0 6.000', ' RED A CTED ', 0) | |
| 12215 | INSERT INT O [dbo].[B loodProduc t] ([Blood ProductGui d], [Produ ctName], [ ProductSho rtName], [ ProductTyp eCode], [P roductAttr ibuteForm] , [Product Volume], [ ProductCod e], [Maxim umStorageT ime], [Cro ssmatchReq uiredIndic ator], [Pr oductModif icationInd icator], [ ProductCod eIndicator ], [Origin alProductT ypeCode], [RetireDat e], [Recor dStatusCod e], [LastU pdateDate] , [LastUpd ateUser], [LastUpdat eFunctionI d]) VALUES ('89e4953 7-a1e9-4e0 6-a5d8-db0 4b7ce3604' , 'Apheres is PLASMA| ACD-A/XX/< =-20C|For mnf:inject able|>=200 mL<400mL|3 rd contain er', 'PLAS MA AFR ACD -A MNFI 3C ', 'E012', '@56 A2 F 5 H5', 225 , 'E8230', 8760, 0, 0, 1, 'E01 4', NULL, 'A', '2016 -07-27 11: 17:06.000' , ' RED A CTED ', 0) | |
| 12216 | INSERT INT O [dbo].[B loodProduc t] ([Blood ProductGui d], [Produ ctName], [ ProductSho rtName], [ ProductTyp eCode], [P roductAttr ibuteForm] , [Product Volume], [ ProductCod e], [Maxim umStorageT ime], [Cro ssmatchReq uiredIndic ator], [Pr oductModif icationInd icator], [ ProductCod eIndicator ], [Origin alProductT ypeCode], [RetireDat e], [Recor dStatusCod e], [LastU pdateDate] , [LastUpd ateUser], [LastUpdat eFunctionI d]) VALUES ('6ea85e3 0-83fa-42f 8-9fef-db7 df42dd376' , 'POOLED PLATELETS| CPD>PAS-E/ XX/20-24C| ResLeu:<1E 6|Supernat reduced|B uffy coat plts prep| 4 units', 'PLT Pool CPD>PAS-E LUKOPR SUP Red BUFCT 4U', 'E022 ', '@DP D5 EA G2 J4' , 200, 'E8 518', 120, 0, 0, 1, 'E022', NU LL, 'A', ' 2016-07-27 11:17:06. 000', ' RED A CTED ', 0) | |
| 12217 | INSERT INT O [dbo].[B loodProduc t] ([Blood ProductGui d], [Produ ctName], [ ProductSho rtName], [ ProductTyp eCode], [P roductAttr ibuteForm] , [Product Volume], [ ProductCod e], [Maxim umStorageT ime], [Cro ssmatchReq uiredIndic ator], [Pr oductModif icationInd icator], [ ProductCod eIndicator ], [Origin alProductT ypeCode], [RetireDat e], [Recor dStatusCod e], [LastU pdateDate] , [LastUpd ateUser], [LastUpdat eFunctionI d]) VALUES ('1c46fb0 e-c29a-4a8 0-b256-dc1 d69fd788d' , 'Apheres is PLATELE TS|ACD-A>P AS-C/XX/20 -24C|ResLe u:<5E6|3rd container |Pediatric dose|Psor alen-treat ed', 'PLT AFR ACD-A> PAS-C LUKO PR 3C Pedi Psoraln', 'E024', ' @BH D4 H5 JO K5', 20 0, 'E8348' , 120, 0, 0, 1, 'E02 4', NULL, 'A', '2016 -07-27 11: 17:06.000' , ' RED A CTED ', 0) | |
| 12218 | INSERT INT O [dbo].[B loodProduc t] ([Blood ProductGui d], [Produ ctName], [ ProductSho rtName], [ ProductTyp eCode], [P roductAttr ibuteForm] , [Product Volume], [ ProductCod e], [Maxim umStorageT ime], [Cro ssmatchReq uiredIndic ator], [Pr oductModif icationInd icator], [ ProductCod eIndicator ], [Origin alProductT ypeCode], [RetireDat e], [Recor dStatusCod e], [LastU pdateDate] , [LastUpd ateUser], [LastUpdat eFunctionI d]) VALUES ('7b286da 1-0f4b-40c 1-88cf-dc2 18fffd377' , 'Apheres is CONVALE SCENT PLAS MA|CPD/XX/ <=-25C|Ebo la', 'PLAS MA AFR Con v CPD Ebol a', 'E012' , '@A1 Q2' , 225, 'E8 768', 8760 , 0, 0, 1, 'E080', N ULL, 'A', '2016-07-2 7 11:17:06 .000', ' RED A CTED ', 0) | |
| 12219 | INSERT INT O [dbo].[B loodProduc t] ([Blood ProductGui d], [Produ ctName], [ ProductSho rtName], [ ProductTyp eCode], [P roductAttr ibuteForm] , [Product Volume], [ ProductCod e], [Maxim umStorageT ime], [Cro ssmatchReq uiredIndic ator], [Pr oductModif icationInd icator], [ ProductCod eIndicator ], [Origin alProductT ypeCode], [RetireDat e], [Recor dStatusCod e], [LastU pdateDate] , [LastUpd ateUser], [LastUpdat eFunctionI d]) VALUES ('2ac3d97 7-5d51-466 b-b8c6-dde a6338ce07' , 'POOLED PLATELETS| CPD>PAS-E/ XX/20-24C| Irradiated |ResLeu:<1 E6|Buffy c oat plts p rep|4 unit s|Bacteria l monitori ng', 'PLT Pool CPD>P AS-E IRD L UKOPR BUFC T 4U BacMt r', 'E022' , '@DP C2 D5 G2 J4 N 2', 200, ' E8552', 12 0, 0, 0, 1 , 'E022', NULL, 'A', '2016-07- 27 11:17:0 6.000', ' RED A CTED ', 0) | |
| 12220 | INSERT INT O [dbo].[B loodProduc t] ([Blood ProductGui d], [Produ ctName], [ ProductSho rtName], [ ProductTyp eCode], [P roductAttr ibuteForm] , [Product Volume], [ ProductCod e], [Maxim umStorageT ime], [Cro ssmatchReq uiredIndic ator], [Pr oductModif icationInd icator], [ ProductCod eIndicator ], [Origin alProductT ypeCode], [RetireDat e], [Recor dStatusCod e], [LastU pdateDate] , [LastUpd ateUser], [LastUpdat eFunctionI d]) VALUES ('e0aedaa 5-c1a6-412 e-afc8-ded c0a53714d' , 'POOLED PLATELETS| CPD/XX/20- 24C|ResLeu :<1E6|9 un its', 'PLT Pool CPD LUKOPR 9U' , 'E022', '@A7 D5 JG ', 200, 'E 8702', 4, 0, 0, 1, ' E022', NUL L, 'A', '2 016-07-27 11:17:06.0 00', ' RED A CTED ', 0) | |
| 12221 | INSERT INT O [dbo].[B loodProduc t] ([Blood ProductGui d], [Produ ctName], [ ProductSho rtName], [ ProductTyp eCode], [P roductAttr ibuteForm] , [Product Volume], [ ProductCod e], [Maxim umStorageT ime], [Cro ssmatchReq uiredIndic ator], [Pr oductModif icationInd icator], [ ProductCod eIndicator ], [Origin alProductT ypeCode], [RetireDat e], [Recor dStatusCod e], [LastU pdateDate] , [LastUpd ateUser], [LastUpdat eFunctionI d]) VALUES ('7571e0b 7-50dd-4ac b-aad0-df1 ae2bc1277' , 'Thawed Apheresis PLATELETS| PAS-C/XX/2 0-24C|Open |Irradiate d|ResLeu:< 5E6', 'PLT AFR Thaw PAS-C OPN IRD LUKOPR ', 'E026', '@B5 B2 C 2 D4', 200 , 'E8582', 4, 0, 0, 1, 'E026', NULL, 'A' , '2016-07 -27 11:17: 06.000', ' RED A CTED ', 0) | |
| 12222 | INSERT INT O [dbo].[B loodProduc t] ([Blood ProductGui d], [Produ ctName], [ ProductSho rtName], [ ProductTyp eCode], [P roductAttr ibuteForm] , [Product Volume], [ ProductCod e], [Maxim umStorageT ime], [Cro ssmatchReq uiredIndic ator], [Pr oductModif icationInd icator], [ ProductCod eIndicator ], [Origin alProductT ypeCode], [RetireDat e], [Recor dStatusCod e], [LastU pdateDate] , [LastUpd ateUser], [LastUpdat eFunctionI d]) VALUES ('4d9c12a 8-24f6-4a3 b-b1ac-df5 7bf419849' , 'Thawed POOLED CRY OPRECIPITA TE|None/XX /rt|Open|I rradiated| 5 units', 'CRYO Pool Thaw None OPN IRD 5 U', 'E031' , '@83 B2 C2 J5', 10 0, 'E8669' , 4, 0, 0, 1, 'E031' , NULL, 'A ', '2016-0 7-27 11:17 :06.000', ' RED A CTED ', 0) | |
| 12223 | INSERT INT O [dbo].[B loodProduc t] ([Blood ProductGui d], [Produ ctName], [ ProductSho rtName], [ ProductTyp eCode], [P roductAttr ibuteForm] , [Product Volume], [ ProductCod e], [Maxim umStorageT ime], [Cro ssmatchReq uiredIndic ator], [Pr oductModif icationInd icator], [ ProductCod eIndicator ], [Origin alProductT ypeCode], [RetireDat e], [Recor dStatusCod e], [LastU pdateDate] , [LastUpd ateUser], [LastUpdat eFunctionI d]) VALUES ('2b47860 6-fddb-45e 5-a558-dff b149ad3ce' , 'Apheres is FRESH F ROZEN PLAS MA|CPD-50/ XX/<=-30C| Riboflavin -treated', 'FFP AFR CPD-50 Rib o', 'E012' , '@AQ K6' , 225, 'E8 283', 8760 , 0, 0, 1, 'E012', N ULL, 'A', '2016-07-2 7 11:17:06 .000', ' RED A CTED ', 0) | |
| 12224 | INSERT INT O [dbo].[B loodProduc t] ([Blood ProductGui d], [Produ ctName], [ ProductSho rtName], [ ProductTyp eCode], [P roductAttr ibuteForm] , [Product Volume], [ ProductCod e], [Maxim umStorageT ime], [Cro ssmatchReq uiredIndic ator], [Pr oductModif icationInd icator], [ ProductCod eIndicator ], [Origin alProductT ypeCode], [RetireDat e], [Recor dStatusCod e], [LastU pdateDate] , [LastUpd ateUser], [LastUpdat eFunctionI d]) VALUES ('5c446c6 1-bf6b-485 a-abc7-e01 6251b8c4b' , 'Apheres is GRANULO CYTES|NaCi trate-Dext ran/XX/rt' , 'GRAN AF R NaCitrat e-Dextran' , 'E035', '@ED', 150 , 'E8744', 24, 0, 0, 1, 'E035' , NULL, 'A ', '2016-0 7-27 11:17 :06.000', ' RED A CTED ', 0) | |
| 12225 | INSERT INT O [dbo].[B loodProduc t] ([Blood ProductGui d], [Produ ctName], [ ProductSho rtName], [ ProductTyp eCode], [P roductAttr ibuteForm] , [Product Volume], [ ProductCod e], [Maxim umStorageT ime], [Cro ssmatchReq uiredIndic ator], [Pr oductModif icationInd icator], [ ProductCod eIndicator ], [Origin alProductT ypeCode], [RetireDat e], [Recor dStatusCod e], [LastU pdateDate] , [LastUpd ateUser], [LastUpdat eFunctionI d]) VALUES ('5319525 8-35f1-464 5-a799-e07 26682b9cb' , 'Apheres is PLASMA| ACD-A/XX/< =-18C|>=20 0mL<400mL| RT<=24h fr ozen<=24h| 2nd contai ner', 'PLA SMA AFR AC D-A 2C', ' E012', '@4 7 F5 GG H4 ', 225, 'E 8170', 876 0, 0, 0, 1 , 'E014', NULL, 'A', '2016-07- 27 11:17:0 6.000', ' RED A CTED ', 0) | |
| 12226 | INSERT INT O [dbo].[B loodProduc t] ([Blood ProductGui d], [Produ ctName], [ ProductSho rtName], [ ProductTyp eCode], [P roductAttr ibuteForm] , [Product Volume], [ ProductCod e], [Maxim umStorageT ime], [Cro ssmatchReq uiredIndic ator], [Pr oductModif icationInd icator], [ ProductCod eIndicator ], [Origin alProductT ypeCode], [RetireDat e], [Recor dStatusCod e], [LastU pdateDate] , [LastUpd ateUser], [LastUpdat eFunctionI d]) VALUES ('ee52264 4-f2bf-482 f-ba28-e0a ce0c29ebb' , 'POOLED PLATELETS| CPD/XX/20- 24C|Irradi ated|ResLe u:<1E6', ' PLT Pool C PD IRD LUK OPR', 'E02 2', '@A7 C 2 D5', 200 , 'E8256', 4, 0, 0, 1, 'E022', NULL, 'A' , '2016-07 -27 11:17: 06.000', ' RED A CTED ', 0) | |
| 12227 | INSERT INT O [dbo].[B loodProduc t] ([Blood ProductGui d], [Produ ctName], [ ProductSho rtName], [ ProductTyp eCode], [P roductAttr ibuteForm] , [Product Volume], [ ProductCod e], [Maxim umStorageT ime], [Cro ssmatchReq uiredIndic ator], [Pr oductModif icationInd icator], [ ProductCod eIndicator ], [Origin alProductT ypeCode], [RetireDat e], [Recor dStatusCod e], [LastU pdateDate] , [LastUpd ateUser], [LastUpdat eFunctionI d]) VALUES ('8aeb836 c-20c4-43f 8-bb13-e1b 00028a4ad' , 'RED BLO OD CELLS|C P2D>AS3/50 0mL/refg|O pen|ResLeu :NS|Supern at rem/Pla sma added' , 'RBC CP2 D>AS3 OPN LUKOPR SR/ PA', 'E002 ', '@21 B2 D2 E8', 3 50, 'E8185 ', 24, 0, 0, 1, 'E00 2', NULL, 'A', '2016 -07-27 11: 17:06.000' , ' RED A CTED ', 0) | |
| 12228 | INSERT INT O [dbo].[B loodProduc t] ([Blood ProductGui d], [Produ ctName], [ ProductSho rtName], [ ProductTyp eCode], [P roductAttr ibuteForm] , [Product Volume], [ ProductCod e], [Maxim umStorageT ime], [Cro ssmatchReq uiredIndic ator], [Pr oductModif icationInd icator], [ ProductCod eIndicator ], [Origin alProductT ypeCode], [RetireDat e], [Recor dStatusCod e], [LastU pdateDate] , [LastUpd ateUser], [LastUpdat eFunctionI d]) VALUES ('dbce6b5 2-012d-455 9-b187-e2e 3fd985306' , 'Thawed POOLED PLA SMA|CPDA-1 /XX/refg|2 units|Pso ralen-trea ted', 'PLA SMA Pool T haw CPDA-1 2U Psoral n', 'E011' , '@10 J2 K5', 500, 'E8399', 4 , 0, 0, 1, 'E055', N ULL, 'A', '2016-07-2 7 11:17:06 .000', ' RED A CTED ', 0) | |
| 12229 | INSERT INT O [dbo].[B loodProduc t] ([Blood ProductGui d], [Produ ctName], [ ProductSho rtName], [ ProductTyp eCode], [P roductAttr ibuteForm] , [Product Volume], [ ProductCod e], [Maxim umStorageT ime], [Cro ssmatchReq uiredIndic ator], [Pr oductModif icationInd icator], [ ProductCod eIndicator ], [Origin alProductT ypeCode], [RetireDat e], [Recor dStatusCod e], [LastU pdateDate] , [LastUpd ateUser], [LastUpdat eFunctionI d]) VALUES ('b0870b6 3-fbce-4de 3-9c8f-e38 cd023abc7' , 'RED BLO OD CELLS|C PD/450mL/r efg|Irradi ated|ResLe u:<1E6|0.5 0-0.55', ' RBC CPD IR D LUKOPR 0 .50-0.55', 'E002', ' @03 C2 D5 L7', 250, 'E8216', 5 04, 0, 0, 1, 'E002', NULL, 'A' , '2016-07 -27 11:17: 06.000', ' RED A CTED ', 0) | |
| 12230 | INSERT INT O [dbo].[B loodProduc t] ([Blood ProductGui d], [Produ ctName], [ ProductSho rtName], [ ProductTyp eCode], [P roductAttr ibuteForm] , [Product Volume], [ ProductCod e], [Maxim umStorageT ime], [Cro ssmatchReq uiredIndic ator], [Pr oductModif icationInd icator], [ ProductCod eIndicator ], [Origin alProductT ypeCode], [RetireDat e], [Recor dStatusCod e], [LastU pdateDate] , [LastUpd ateUser], [LastUpdat eFunctionI d]) VALUES ('b6a73b0 1-dd7a-42f 7-804a-e40 3385cb7ac' , 'RED BLO OD CELLS|C P2D>AS3/50 0mL/refg|O pen|Irradi ated|ResLe u:<5E6|Sup ernat rem' , 'RBC CP2 D>AS3 OPN IRD LUKOPR SR', 'E00 2', '@21 B 2 C2 D4 E7 ', 350, 'E 8409', 24, 0, 0, 1, 'E002', NU LL, 'A', ' 2016-07-27 11:17:06. 000', ' RED A CTED ', 0) | |
| 12231 | INSERT INT O [dbo].[B loodProduc t] ([Blood ProductGui d], [Produ ctName], [ ProductSho rtName], [ ProductTyp eCode], [P roductAttr ibuteForm] , [Product Volume], [ ProductCod e], [Maxim umStorageT ime], [Cro ssmatchReq uiredIndic ator], [Pr oductModif icationInd icator], [ ProductCod eIndicator ], [Origin alProductT ypeCode], [RetireDat e], [Recor dStatusCod e], [LastU pdateDate] , [LastUpd ateUser], [LastUpdat eFunctionI d]) VALUES ('00e01ee f-09ef-4c4 e-bfc9-e41 a0b356fce' , 'Washed Apheresis PLATELETS| None/XX/20 -24C|Open| ResLeu:<5E 6|3rd cont ainer|Psor alen-treat ed', 'PLT AFR Wash N one OPN LU KOPR 3C Ps oraln', 'E 027', '@71 B2 D4 H5 K5', 200, 'E8698', 4 , 0, 0, 1, 'E027', N ULL, 'A', '2016-07-2 7 11:17:06 .000', ' RED A CTED ', 0) | |
| 12232 | INSERT INT O [dbo].[B loodProduc t] ([Blood ProductGui d], [Produ ctName], [ ProductSho rtName], [ ProductTyp eCode], [P roductAttr ibuteForm] , [Product Volume], [ ProductCod e], [Maxim umStorageT ime], [Cro ssmatchReq uiredIndic ator], [Pr oductModif icationInd icator], [ ProductCod eIndicator ], [Origin alProductT ypeCode], [RetireDat e], [Recor dStatusCod e], [LastU pdateDate] , [LastUpd ateUser], [LastUpdat eFunctionI d]) VALUES ('3f3fb7f a-a5fe-40a f-bb25-e43 126b533b9' , 'Deglyce rolized RE D BLOOD CE LLS|NS/XX/ refg|Open' , 'RBC Deg NS OPN', 'E006', '@ CG B2', 20 0, 'E8295' , 24, 0, 0 , 1, 'E006 ', NULL, ' A', '2016- 07-27 11:1 7:06.000', ' RED A CTED ', 0) | |
| 12233 | INSERT INT O [dbo].[B loodProduc t] ([Blood ProductGui d], [Produ ctName], [ ProductSho rtName], [ ProductTyp eCode], [P roductAttr ibuteForm] , [Product Volume], [ ProductCod e], [Maxim umStorageT ime], [Cro ssmatchReq uiredIndic ator], [Pr oductModif icationInd icator], [ ProductCod eIndicator ], [Origin alProductT ypeCode], [RetireDat e], [Recor dStatusCod e], [LastU pdateDate] , [LastUpd ateUser], [LastUpdat eFunctionI d]) VALUES ('5c87a71 6-af4f-45e 2-966c-e44 e4507bcf3' , 'Deglyce rolized RE D BLOOD CE LLS|NS/XX/ refg', 'RB C Deg NS', 'E006', ' @CG', 200, 'E8294', 336, 0, 0, 1, 'E006' , NULL, 'A ', '2016-0 7-27 11:17 :06.000', ' RED A CTED ', 0) | |
| 12234 | INSERT INT O [dbo].[B loodProduc t] ([Blood ProductGui d], [Produ ctName], [ ProductSho rtName], [ ProductTyp eCode], [P roductAttr ibuteForm] , [Product Volume], [ ProductCod e], [Maxim umStorageT ime], [Cro ssmatchReq uiredIndic ator], [Pr oductModif icationInd icator], [ ProductCod eIndicator ], [Origin alProductT ypeCode], [RetireDat e], [Recor dStatusCod e], [LastU pdateDate] , [LastUpd ateUser], [LastUpdat eFunctionI d]) VALUES ('41a1538 6-e548-4b1 7-849b-e49 5c5052cec' , 'Apheres is PLATELE TS|ACD-A>P AS-C/XX/20 -24C|ResLe u:<5E6|2nd container |Pediatric dose|Psor alen-treat ed', 'PLT AFR ACD-A> PAS-C LUKO PR 2C Pedi Psoraln', 'E024', ' @BH D4 H4 JO K5', 20 0, 'E8347' , 120, 0, 0, 1, 'E02 4', NULL, 'A', '2016 -07-27 11: 17:06.000' , ' RED A CTED ', 0) | |
| 12235 | INSERT INT O [dbo].[B loodProduc t] ([Blood ProductGui d], [Produ ctName], [ ProductSho rtName], [ ProductTyp eCode], [P roductAttr ibuteForm] , [Product Volume], [ ProductCod e], [Maxim umStorageT ime], [Cro ssmatchReq uiredIndic ator], [Pr oductModif icationInd icator], [ ProductCod eIndicator ], [Origin alProductT ypeCode], [RetireDat e], [Recor dStatusCod e], [LastU pdateDate] , [LastUpd ateUser], [LastUpdat eFunctionI d]) VALUES ('5aad83c a-2c85-405 5-af07-e4c 0cad65187' , 'POOLED PLATELETS| PAS-E/XX/2 0-24C|ResL eu:<1E6|Bu ffy coat p lts prep|A pprox 480 E9 plts', 'PLT Pool PAS-E LUKO PR BUFCT', 'E022', ' @D5 D5 G2 JF', 200, 'E8194', 4 , 0, 0, 1, 'E022', N ULL, 'A', '2016-07-2 7 11:17:06 .000', ' RED A CTED ', 0) | |
| 12236 | INSERT INT O [dbo].[B loodProduc t] ([Blood ProductGui d], [Produ ctName], [ ProductSho rtName], [ ProductTyp eCode], [P roductAttr ibuteForm] , [Product Volume], [ ProductCod e], [Maxim umStorageT ime], [Cro ssmatchReq uiredIndic ator], [Pr oductModif icationInd icator], [ ProductCod eIndicator ], [Origin alProductT ypeCode], [RetireDat e], [Recor dStatusCod e], [LastU pdateDate] , [LastUpd ateUser], [LastUpdat eFunctionI d]) VALUES ('61a5de1 a-4366-486 a-9a84-e57 4fe8420ac' , 'Washed Apheresis PLATELETS| None/XX/20 -24C|Open| Irradiated |ResLeu:<5 E6|Psorale n-treated' , 'PLT AFR Wash None OPN IRD P soraln', ' E027', '@7 1 B2 C2 D4 K5', 200, 'E8756', 4, 0, 0, 1 , 'E027', NULL, 'A', '2016-07- 27 11:17:0 6.000', ' RED A CTED ', 0) | |
| 12237 | INSERT INT O [dbo].[B loodProduc t] ([Blood ProductGui d], [Produ ctName], [ ProductSho rtName], [ ProductTyp eCode], [P roductAttr ibuteForm] , [Product Volume], [ ProductCod e], [Maxim umStorageT ime], [Cro ssmatchReq uiredIndic ator], [Pr oductModif icationInd icator], [ ProductCod eIndicator ], [Origin alProductT ypeCode], [RetireDat e], [Recor dStatusCod e], [LastU pdateDate] , [LastUpd ateUser], [LastUpdat eFunctionI d]) VALUES ('38a55ae 4-5333-450 d-a60f-e58 4f85bb43d' , 'Apheres is RED BLO OD CELLS|A CD-A>AS1/X X/refg|For mnf:nonin jectable|R esLeu:<5E6 |1st conta iner', 'RB C AFR ACD- A>AS1 MNFN I LUKOPR 1 C', 'E009' , '@AY A3 D4 H3', 35 0, 'E8202' , 1008, 0, 0, 1, 'E0 09', NULL, 'A', '201 6-07-27 11 :17:06.000 ', ' RED A CTED ', 0) | |
| 12238 | INSERT INT O [dbo].[B loodProduc t] ([Blood ProductGui d], [Produ ctName], [ ProductSho rtName], [ ProductTyp eCode], [P roductAttr ibuteForm] , [Product Volume], [ ProductCod e], [Maxim umStorageT ime], [Cro ssmatchReq uiredIndic ator], [Pr oductModif icationInd icator], [ ProductCod eIndicator ], [Origin alProductT ypeCode], [RetireDat e], [Recor dStatusCod e], [LastU pdateDate] , [LastUpd ateUser], [LastUpdat eFunctionI d]) VALUES ('a480422 1-13ba-4ec 2-b245-e5c d9be4f875' , 'Apheres is PLATELE TS|ACD-A>P AS-E/XX/20 -24C|ResLe u:<1E6|3rd container |Bacterial monitorin g', 'PLT A FR ACD-A>P AS-E LUKOP R 3C BacMt r', 'E024' , '@DS D5 H5 N2', 20 0, 'E8528' , 120, 0, 0, 1, 'E02 4', NULL, 'A', '2016 -07-27 11: 17:06.000' , ' RED A CTED ', 0) | |
| 12239 | INSERT INT O [dbo].[B loodProduc t] ([Blood ProductGui d], [Produ ctName], [ ProductSho rtName], [ ProductTyp eCode], [P roductAttr ibuteForm] , [Product Volume], [ ProductCod e], [Maxim umStorageT ime], [Cro ssmatchReq uiredIndic ator], [Pr oductModif icationInd icator], [ ProductCod eIndicator ], [Origin alProductT ypeCode], [RetireDat e], [Recor dStatusCod e], [LastU pdateDate] , [LastUpd ateUser], [LastUpdat eFunctionI d]) VALUES ('47a91d6 d-762d-472 3-98c0-e5f ae04f272f' , 'Liquid Apheresis PLASMA|ACD -A/XX/<37C |For mnf:n oninjectab le|Cryo re duced', 'P LASMA AFR Liq ACD-A MNFNI CRYO Red', 'E01 1', '@59 A 3 E3', 225 , 'E8571', 120, 0, 0 , 1, 'E041 ', NULL, ' A', '2016- 07-27 11:1 7:06.000', ' RED A CTED ', 0) | |
| 12240 | INSERT INT O [dbo].[B loodProduc t] ([Blood ProductGui d], [Produ ctName], [ ProductSho rtName], [ ProductTyp eCode], [P roductAttr ibuteForm] , [Product Volume], [ ProductCod e], [Maxim umStorageT ime], [Cro ssmatchReq uiredIndic ator], [Pr oductModif icationInd icator], [ ProductCod eIndicator ], [Origin alProductT ypeCode], [RetireDat e], [Recor dStatusCod e], [LastU pdateDate] , [LastUpd ateUser], [LastUpdat eFunctionI d]) VALUES ('f89b538 2-88aa-47b 2-8969-e6e 53e127449' , 'Apheres is PLASMA| ACD-A/XX/< =-18C|>=40 0mL<600mL| RT<=24h fr ozen<=24h| 2nd contai ner', 'PLA SMA AFR AC D-A 2C', ' E012', '@4 7 F6 GG H4 ', 225, 'E 8169', 876 0, 0, 0, 1 , 'E014', NULL, 'A', '2016-07- 27 11:17:0 6.000', ' RED A CTED ', 0) | |
| 12241 | INSERT INT O [dbo].[B loodProduc t] ([Blood ProductGui d], [Produ ctName], [ ProductSho rtName], [ ProductTyp eCode], [P roductAttr ibuteForm] , [Product Volume], [ ProductCod e], [Maxim umStorageT ime], [Cro ssmatchReq uiredIndic ator], [Pr oductModif icationInd icator], [ ProductCod eIndicator ], [Origin alProductT ypeCode], [RetireDat e], [Recor dStatusCod e], [LastU pdateDate] , [LastUpd ateUser], [LastUpdat eFunctionI d]) VALUES ('4f37b4a 2-5709-4cb 5-a0fc-e79 6126bac28' , 'Apheres is PLASMA| ACD-A/XX/< =-20C|For mnf:inject able|>=200 mL<400mL|4 th contain er', 'PLAS MA AFR ACD -A MNFI 4C ', 'E012', '@56 A2 F 5 H6', 225 , 'E8229', 8760, 0, 0, 1, 'E01 4', NULL, 'A', '2016 -07-27 11: 17:06.000' , ' RED A CTED ', 0) | |
| 12242 | INSERT INT O [dbo].[B loodProduc t] ([Blood ProductGui d], [Produ ctName], [ ProductSho rtName], [ ProductTyp eCode], [P roductAttr ibuteForm] , [Product Volume], [ ProductCod e], [Maxim umStorageT ime], [Cro ssmatchReq uiredIndic ator], [Pr oductModif icationInd icator], [ ProductCod eIndicator ], [Origin alProductT ypeCode], [RetireDat e], [Recor dStatusCod e], [LastU pdateDate] , [LastUpd ateUser], [LastUpdat eFunctionI d]) VALUES ('e48aced 3-7633-4fa 5-936d-e7d 5c1b5a3db' , 'Frozen Apheresis PLATELETS| ACD-A/XX/< =-18C|For mnf:noninj ectable re str use|Ir radiated|R esLeu:<5E6 |2nd conta iner', 'PL T AFR Froz ACD-A MNF RNI IRD LU KOPR 2C', 'E025', '@ 47 A5 C2 D 4 H4', 200 , 'E8226', 8760, 0, 0, 1, 'E02 5', NULL, 'A', '2016 -07-27 11: 17:06.000' , ' RED A CTED ', 0) | |
| 12243 | INSERT INT O [dbo].[B loodProduc t] ([Blood ProductGui d], [Produ ctName], [ ProductSho rtName], [ ProductTyp eCode], [P roductAttr ibuteForm] , [Product Volume], [ ProductCod e], [Maxim umStorageT ime], [Cro ssmatchReq uiredIndic ator], [Pr oductModif icationInd icator], [ ProductCod eIndicator ], [Origin alProductT ypeCode], [RetireDat e], [Recor dStatusCod e], [LastU pdateDate] , [LastUpd ateUser], [LastUpdat eFunctionI d]) VALUES ('b13d274 f-a30f-409 0-8ef1-e7e 043e10cc3' , 'Apheres is PLASMA| ACD-A/XX/< =-18C|<200 mL|RT<=24 h frozen<= 24h|1st co ntainer', 'PLASMA AF R ACD-A Lo wVol 1C', 'E012', '@ 47 F4 GG H 3', 225, ' E8175', 87 60, 0, 0, 1, 'E014', NULL, 'A' , '2016-07 -27 11:17: 06.000', ' RED A CTED ', 0) | |
| 12244 | INSERT INT O [dbo].[B loodProduc t] ([Blood ProductGui d], [Produ ctName], [ ProductSho rtName], [ ProductTyp eCode], [P roductAttr ibuteForm] , [Product Volume], [ ProductCod e], [Maxim umStorageT ime], [Cro ssmatchReq uiredIndic ator], [Pr oductModif icationInd icator], [ ProductCod eIndicator ], [Origin alProductT ypeCode], [RetireDat e], [Recor dStatusCod e], [LastU pdateDate] , [LastUpd ateUser], [LastUpdat eFunctionI d]) VALUES ('141dc6a b-9e85-40c 8-a804-e8c 4959b7f32' , 'Thawed Apheresis FRESH FROZ EN PLASMA| CP2D/XX/re fg|Open|Ir radiated', 'FFP AFR Thaw CP2D OPN IRD', 'E013', '@ 13 B2 C2', 225, 'E82 67', 24, 0 , 0, 1, 'E 013', NULL , 'A', '20 16-07-27 1 1:17:06.00 0', ' RED A CTED ', 0) | |
| 12245 | INSERT INT O [dbo].[B loodProduc t] ([Blood ProductGui d], [Produ ctName], [ ProductSho rtName], [ ProductTyp eCode], [P roductAttr ibuteForm] , [Product Volume], [ ProductCod e], [Maxim umStorageT ime], [Cro ssmatchReq uiredIndic ator], [Pr oductModif icationInd icator], [ ProductCod eIndicator ], [Origin alProductT ypeCode], [RetireDat e], [Recor dStatusCod e], [LastU pdateDate] , [LastUpd ateUser], [LastUpdat eFunctionI d]) VALUES ('aff2c8a 1-735f-4e6 8-9b15-e90 30b8e6cb0' , 'POOLED PLATELETS| CPD/XX/20- 24C|Bacter ial monito ring', 'PL T Pool CPD Bac Mtr', 'E022', ' @A7 N2', 2 00, 'E8302 ', 120, 0, 0, 1, 'E0 22', NULL, 'A', '201 6-07-27 11 :17:06.000 ', ' RED A CTED ', 0) | |
| 12246 | INSERT INT O [dbo].[B loodProduc t] ([Blood ProductGui d], [Produ ctName], [ ProductSho rtName], [ ProductTyp eCode], [P roductAttr ibuteForm] , [Product Volume], [ ProductCod e], [Maxim umStorageT ime], [Cro ssmatchReq uiredIndic ator], [Pr oductModif icationInd icator], [ ProductCod eIndicator ], [Origin alProductT ypeCode], [RetireDat e], [Recor dStatusCod e], [LastU pdateDate] , [LastUpd ateUser], [LastUpdat eFunctionI d]) VALUES ('153eeff e-ade3-457 c-8a36-ea7 6dc1e321a' , 'POOLED PLASMA|CPD /XX/<=-18C |3 units|P soralen-tr eated', 'P LASMA Pool CPD 3U Ps oraln', 'E 040', '@35 J3 K5', 2 25, 'E8372 ', 8760, 0 , 0, 1, 'E 040', NULL , 'A', '20 16-07-27 1 1:17:06.00 0', ' RED A CTED ', 0) | |
| 12247 | INSERT INT O [dbo].[B loodProduc t] ([Blood ProductGui d], [Produ ctName], [ ProductSho rtName], [ ProductTyp eCode], [P roductAttr ibuteForm] , [Product Volume], [ ProductCod e], [Maxim umStorageT ime], [Cro ssmatchReq uiredIndic ator], [Pr oductModif icationInd icator], [ ProductCod eIndicator ], [Origin alProductT ypeCode], [RetireDat e], [Recor dStatusCod e], [LastU pdateDate] , [LastUpd ateUser], [LastUpdat eFunctionI d]) VALUES ('f67622a f-5e6c-40d 3-ae24-eaa 719dc9c9a' , 'Washed RED BLOOD CELLS|NS/X X/refg|Irr adiated', 'RBC Wash NS IRD', ' E003', '@C G C2', 200 , 'E8291', 336, 0, 0 , 1, 'E003 ', NULL, ' A', '2016- 07-27 11:1 7:06.000', ' RED A CTED ', 0) | |
| 12248 | INSERT INT O [dbo].[B loodProduc t] ([Blood ProductGui d], [Produ ctName], [ ProductSho rtName], [ ProductTyp eCode], [P roductAttr ibuteForm] , [Product Volume], [ ProductCod e], [Maxim umStorageT ime], [Cro ssmatchReq uiredIndic ator], [Pr oductModif icationInd icator], [ ProductCod eIndicator ], [Origin alProductT ypeCode], [RetireDat e], [Recor dStatusCod e], [LastU pdateDate] , [LastUpd ateUser], [LastUpdat eFunctionI d]) VALUES ('8c7bfbd 8-91f1-462 3-b18a-eba f85411ed0' , 'Frozen Apheresis PLATELETS| ACD-A/XX/< =-18C|For mnf:noninj ectable|Re sLeu:<5E6| 2nd contai ner', 'PLT AFR Froz ACD-A MNFN I LUKOPR 2 C', 'E025' , '@47 A3 D4 H4', 20 0, 'E8273' , 8760, 0, 0, 1, 'E0 25', NULL, 'A', '201 6-07-27 11 :17:06.000 ', ' RED A CTED ', 0) | |
| 12249 | INSERT INT O [dbo].[B loodProduc t] ([Blood ProductGui d], [Produ ctName], [ ProductSho rtName], [ ProductTyp eCode], [P roductAttr ibuteForm] , [Product Volume], [ ProductCod e], [Maxim umStorageT ime], [Cro ssmatchReq uiredIndic ator], [Pr oductModif icationInd icator], [ ProductCod eIndicator ], [Origin alProductT ypeCode], [RetireDat e], [Recor dStatusCod e], [LastU pdateDate] , [LastUpd ateUser], [LastUpdat eFunctionI d]) VALUES ('448d4fc 6-4d6d-4ef 3-82c6-ec4 4776f78f8' , 'Apheres is PLATELE TS|ACD-A>P AS-B/XX/20 -24C', 'PL T AFR ACD- A>PAS-B', 'E024', '@ DU', 200, 'E8549', 1 20, 0, 0, 1, 'E024', NULL, 'A' , '2016-07 -27 11:17: 06.000', ' RED A CTED ', 0) | |
| 12250 | INSERT INT O [dbo].[B loodProduc t] ([Blood ProductGui d], [Produ ctName], [ ProductSho rtName], [ ProductTyp eCode], [P roductAttr ibuteForm] , [Product Volume], [ ProductCod e], [Maxim umStorageT ime], [Cro ssmatchReq uiredIndic ator], [Pr oductModif icationInd icator], [ ProductCod eIndicator ], [Origin alProductT ypeCode], [RetireDat e], [Recor dStatusCod e], [LastU pdateDate] , [LastUpd ateUser], [LastUpdat eFunctionI d]) VALUES ('30535e9 6-80eb-431 0-bb25-ec4 d21ab9350' , 'Deglyce rolized Ap heresis RE D BLOOD CE LLS|AS3/XX /refg|Irra diated|Res Leu:<5E6', 'RBC AFR Deg AS3 IR D LUKOPR', 'E051', ' @B6 C2 D4' , 200, 'E8 672', 336, 0, 0, 1, 'E051', NU LL, 'A', ' 2016-07-27 11:17:06. 000', ' RED A CTED ', 0) | |
| 12251 | INSERT INT O [dbo].[B loodProduc t] ([Blood ProductGui d], [Produ ctName], [ ProductSho rtName], [ ProductTyp eCode], [P roductAttr ibuteForm] , [Product Volume], [ ProductCod e], [Maxim umStorageT ime], [Cro ssmatchReq uiredIndic ator], [Pr oductModif icationInd icator], [ ProductCod eIndicator ], [Origin alProductT ypeCode], [RetireDat e], [Recor dStatusCod e], [LastU pdateDate] , [LastUpd ateUser], [LastUpdat eFunctionI d]) VALUES ('8a1a14a 2-e81d-404 6-b79a-ec6 c9d033e0c' , 'RED BLO OD CELLS|C PD>SAGM/XX /refg|Irra diated', ' RBC CPD>SA GM IRD', ' E002', '@C L C2', 350 , 'E8289', 672, 0, 0 , 1, 'E002 ', NULL, ' A', '2016- 07-27 11:1 7:06.000', ' RED A CTED ', 0) | |
| 12252 | INSERT INT O [dbo].[B loodProduc t] ([Blood ProductGui d], [Produ ctName], [ ProductSho rtName], [ ProductTyp eCode], [P roductAttr ibuteForm] , [Product Volume], [ ProductCod e], [Maxim umStorageT ime], [Cro ssmatchReq uiredIndic ator], [Pr oductModif icationInd icator], [ ProductCod eIndicator ], [Origin alProductT ypeCode], [RetireDat e], [Recor dStatusCod e], [LastU pdateDate] , [LastUpd ateUser], [LastUpdat eFunctionI d]) VALUES ('ec6e1ff e-b823-47f d-8a6d-ec8 3e00e2953' , 'Apheres is PLATELE TS|ACD-A/X X/20-24C|R esLeu:<5E6 |1st conta iner|Psora len-treate d', 'PLT A FR ACD-A L UKOPR 1C P soraln', ' E024', '@7 3 D4 H3 K5 ', 200, 'E 8332', 120 , 0, 0, 1, 'E024', N ULL, 'A', '2016-07-2 7 11:17:06 .000', ' RED A CTED ', 0) | |
| 12253 | INSERT INT O [dbo].[B loodProduc t] ([Blood ProductGui d], [Produ ctName], [ ProductSho rtName], [ ProductTyp eCode], [P roductAttr ibuteForm] , [Product Volume], [ ProductCod e], [Maxim umStorageT ime], [Cro ssmatchReq uiredIndic ator], [Pr oductModif icationInd icator], [ ProductCod eIndicator ], [Origin alProductT ypeCode], [RetireDat e], [Recor dStatusCod e], [LastU pdateDate] , [LastUpd ateUser], [LastUpdat eFunctionI d]) VALUES ('792160b f-bb4a-423 f-9e4c-ecd 1a6387b1a' , 'Washed Apheresis RED BLOOD CELLS|None /XX/refg|O pen|ResLeu :<5E6|Mult iple wash cycles|1st container ', 'RBC AF R Wash Non e OPN LUKO PR MWC 1C' , 'E049', '@AS B2 D4 GH H3', 2 00, 'E8540 ', 24, 0, 0, 1, 'E04 9', NULL, 'A', '2016 -07-27 11: 17:06.000' , ' RED A CTED ', 0) | |
| 12254 | INSERT INT O [dbo].[B loodProduc t] ([Blood ProductGui d], [Produ ctName], [ ProductSho rtName], [ ProductTyp eCode], [P roductAttr ibuteForm] , [Product Volume], [ ProductCod e], [Maxim umStorageT ime], [Cro ssmatchReq uiredIndic ator], [Pr oductModif icationInd icator], [ ProductCod eIndicator ], [Origin alProductT ypeCode], [RetireDat e], [Recor dStatusCod e], [LastU pdateDate] , [LastUpd ateUser], [LastUpdat eFunctionI d]) VALUES ('b4bac68 6-338b-487 e-9538-ed3 861c57cf8' , 'Thawed Apheresis PLATELETS| PAS-C/XX/2 0-24C|Open |Irradiate d|ResLeu:< 5E6|3rd co ntainer', 'PLT AFR T haw PAS-C OPN IRD LU KOPR 3C', 'E026', '@ B5 B2 C2 D 4 H5', 200 , 'E8585', 4, 0, 0, 1, 'E026', NULL, 'A' , '2016-07 -27 11:17: 06.000', ' RED A CTED ', 0) | |
| 12255 | INSERT INT O [dbo].[B loodProduc t] ([Blood ProductGui d], [Produ ctName], [ ProductSho rtName], [ ProductTyp eCode], [P roductAttr ibuteForm] , [Product Volume], [ ProductCod e], [Maxim umStorageT ime], [Cro ssmatchReq uiredIndic ator], [Pr oductModif icationInd icator], [ ProductCod eIndicator ], [Origin alProductT ypeCode], [RetireDat e], [Recor dStatusCod e], [LastU pdateDate] , [LastUpd ateUser], [LastUpdat eFunctionI d]) VALUES ('5a1c496 f-4a3c-471 5-957b-ed4 85da33158' , 'Apheres is FRESH F ROZEN PLAS MA|NaCitra te/XX/<=-2 5C|Irradia ted|ResLeu :<1E6|>=20 0mL<400mL| Frozen <=6 h|2nd cont ainer', 'F FP AFR NaC it IRD LUK OPR 2C', ' E012', '@C Q C2 D5 F5 G4 H4', 2 25, 'E8627 ', 8760, 0 , 0, 1, 'E 012', NULL , 'A', '20 16-07-27 1 1:17:06.00 0', ' RED A CTED ', 0) | |
| 12256 | INSERT INT O [dbo].[B loodProduc t] ([Blood ProductGui d], [Produ ctName], [ ProductSho rtName], [ ProductTyp eCode], [P roductAttr ibuteForm] , [Product Volume], [ ProductCod e], [Maxim umStorageT ime], [Cro ssmatchReq uiredIndic ator], [Pr oductModif icationInd icator], [ ProductCod eIndicator ], [Origin alProductT ypeCode], [RetireDat e], [Recor dStatusCod e], [LastU pdateDate] , [LastUpd ateUser], [LastUpdat eFunctionI d]) VALUES ('c8a44cb 5-f4a1-412 b-9924-ee3 9b934997d' , 'Apheres is FRESH F ROZEN PLAS MA|NaCitra te/XX/<=-2 5C|Irradia ted|ResLeu :<1E6|>=20 0mL<400mL| Frozen <=6 h|1st cont ainer|Quar :>=4m/rete sted', 'FF P AFR NaCi t IRD LUKO PR 1C QUAR ', 'E012', '@CQ C2 D 5 F5 G4 H3 I3', 225, 'E8630', 8760, 0, 0 , 1, 'E012 ', NULL, ' A', '2016- 07-27 11:1 7:06.000', ' RED A CTED ', 0) | |
| 12257 | INSERT INT O [dbo].[B loodProduc t] ([Blood ProductGui d], [Produ ctName], [ ProductSho rtName], [ ProductTyp eCode], [P roductAttr ibuteForm] , [Product Volume], [ ProductCod e], [Maxim umStorageT ime], [Cro ssmatchReq uiredIndic ator], [Pr oductModif icationInd icator], [ ProductCod eIndicator ], [Origin alProductT ypeCode], [RetireDat e], [Recor dStatusCod e], [LastU pdateDate] , [LastUpd ateUser], [LastUpdat eFunctionI d]) VALUES ('ad8bca4 4-0e47-4f4 8-a673-ee8 1f6cc8407' , 'POOLED PLATELETS| CPD>PAS-E/ XX/20-24C| ResLeu:<1E 6|Buffy co at plts pr ep|6 units |Bacterial monitorin g', 'PLT P ool CPD>PA S-E LUKOPR BUFCT 6U BacMtr', ' E022', '@D P D5 G2 J6 N2', 200, 'E8503', 120, 0, 0, 1, 'E022' , NULL, 'A ', '2016-0 7-27 11:17 :06.000', ' RED A CTED ', 0) | |
| 12258 | INSERT INT O [dbo].[B loodProduc t] ([Blood ProductGui d], [Produ ctName], [ ProductSho rtName], [ ProductTyp eCode], [P roductAttr ibuteForm] , [Product Volume], [ ProductCod e], [Maxim umStorageT ime], [Cro ssmatchReq uiredIndic ator], [Pr oductModif icationInd icator], [ ProductCod eIndicator ], [Origin alProductT ypeCode], [RetireDat e], [Recor dStatusCod e], [LastU pdateDate] , [LastUpd ateUser], [LastUpdat eFunctionI d]) VALUES ('28f10b0 3-adc1-4c1 3-9c60-eed be03244ce' , 'Apheres is PLATELE TS|ACD-A/X X/20-24C|R esLeu:<5E6 |1st conta iner|Pedia tric dose| Psoralen-t reated', ' PLT AFR AC D-A LUKOPR 1C Pedi P soraln', ' E024', '@7 3 D4 H3 JO K5', 200, 'E8337', 120, 0, 0, 1, 'E024' , NULL, 'A ', '2016-0 7-27 11:17 :06.000', ' RED A CTED ', 0) | |
| 12259 | INSERT INT O [dbo].[B loodProduc t] ([Blood ProductGui d], [Produ ctName], [ ProductSho rtName], [ ProductTyp eCode], [P roductAttr ibuteForm] , [Product Volume], [ ProductCod e], [Maxim umStorageT ime], [Cro ssmatchReq uiredIndic ator], [Pr oductModif icationInd icator], [ ProductCod eIndicator ], [Origin alProductT ypeCode], [RetireDat e], [Recor dStatusCod e], [LastU pdateDate] , [LastUpd ateUser], [LastUpdat eFunctionI d]) VALUES ('c023956 4-a20b-46e 9-a567-ef1 3f9eaab95' , 'Washed Apheresis PLATELETS| None/XX/20 -24C|Open| ResLeu:<5E 6|Supernat reduced|3 rd contain er|Psorale n-treated' , 'PLT AFR Wash None OPN LUKOP R SUPRed 3 C Psoraln' , 'E027', '@71 B2 D4 EA H5 K5' , 200, 'E8 793', 4, 0 , 0, 1, 'E 027', NULL , 'A', '20 16-07-27 1 1:17:06.00 0', ' RED A CTED ', 0) | |
| 12260 | INSERT INT O [dbo].[B loodProduc t] ([Blood ProductGui d], [Produ ctName], [ ProductSho rtName], [ ProductTyp eCode], [P roductAttr ibuteForm] , [Product Volume], [ ProductCod e], [Maxim umStorageT ime], [Cro ssmatchReq uiredIndic ator], [Pr oductModif icationInd icator], [ ProductCod eIndicator ], [Origin alProductT ypeCode], [RetireDat e], [Recor dStatusCod e], [LastU pdateDate] , [LastUpd ateUser], [LastUpdat eFunctionI d]) VALUES ('8d85ac3 7-e797-4d8 7-a218-eff 6027616fe' , 'Frozen Apheresis PLATELETS| ACD-A/XX/< =-18C|For mnf:noninj ectable|Ir radiated|R esLeu:<5E6 |1st conta iner', 'PL T AFR Froz ACD-A MNF NI IRD LUK OPR 1C', ' E025', '@4 7 A3 C2 D4 H3', 200, 'E8271', 8760, 0, 0 , 1, 'E025 ', NULL, ' A', '2016- 07-27 11:1 7:06.000', ' RED A CTED ', 0) | |
| 12261 | INSERT INT O [dbo].[B loodProduc t] ([Blood ProductGui d], [Produ ctName], [ ProductSho rtName], [ ProductTyp eCode], [P roductAttr ibuteForm] , [Product Volume], [ ProductCod e], [Maxim umStorageT ime], [Cro ssmatchReq uiredIndic ator], [Pr oductModif icationInd icator], [ ProductCod eIndicator ], [Origin alProductT ypeCode], [RetireDat e], [Recor dStatusCod e], [LastU pdateDate] , [LastUpd ateUser], [LastUpdat eFunctionI d]) VALUES ('9ec51c5 3-ca3e-44d 9-bfb7-f0c 2aff5085a' , 'Apheres is PLASMA| ACD-A/XX/< =-18C|>=40 0mL<600mL| RT<=24h fr ozen<=24h' , 'PLASMA AFR ACD-A' , 'E012', '@47 F6 GG ', 225, 'E 8177', 876 0, 0, 0, 1 , 'E014', NULL, 'A', '2016-07- 27 11:17:0 6.000', ' RED A CTED ', 0) | |
| 12262 | INSERT INT O [dbo].[B loodProduc t] ([Blood ProductGui d], [Produ ctName], [ ProductSho rtName], [ ProductTyp eCode], [P roductAttr ibuteForm] , [Product Volume], [ ProductCod e], [Maxim umStorageT ime], [Cro ssmatchReq uiredIndic ator], [Pr oductModif icationInd icator], [ ProductCod eIndicator ], [Origin alProductT ypeCode], [RetireDat e], [Recor dStatusCod e], [LastU pdateDate] , [LastUpd ateUser], [LastUpdat eFunctionI d]) VALUES ('005777b 5-b4c1-454 a-97a8-f0f db75e7b4e' , 'Apheres is PLATELE TS|PAS-C/X X/20-24C|R esLeu:<1E6 |3rd conta iner|Bacte rial monit oring', 'P LT AFR PAS -C LUKOPR 3C BacM', 'E024', '@ B5 D5 H5 N 2', 200, ' E8716', 12 0, 0, 0, 1 , 'E024', NULL, 'A', '2016-07- 27 11:17:0 6.000', ' RED A CTED ', 0) | |
| 12263 | INSERT INT O [dbo].[B loodProduc t] ([Blood ProductGui d], [Produ ctName], [ ProductSho rtName], [ ProductTyp eCode], [P roductAttr ibuteForm] , [Product Volume], [ ProductCod e], [Maxim umStorageT ime], [Cro ssmatchReq uiredIndic ator], [Pr oductModif icationInd icator], [ ProductCod eIndicator ], [Origin alProductT ypeCode], [RetireDat e], [Recor dStatusCod e], [LastU pdateDate] , [LastUpd ateUser], [LastUpdat eFunctionI d]) VALUES ('c1bbfbc d-f5a3-46c f-9325-f11 3a3342eed' , 'POOLED PLASMA|CPD A-1/XX/<=- 18C|3 unit s|Psoralen -treated', 'PLASMA P ool CPDA-1 3U Psoral n', 'E040' , '@36 J3 K5', 225, 'E8378', 8 760, 0, 0, 1, 'E040' , NULL, 'A ', '2016-0 7-27 11:17 :06.000', ' RED A CTED ', 0) | |
| 12264 | INSERT INT O [dbo].[B loodProduc t] ([Blood ProductGui d], [Produ ctName], [ ProductSho rtName], [ ProductTyp eCode], [P roductAttr ibuteForm] , [Product Volume], [ ProductCod e], [Maxim umStorageT ime], [Cro ssmatchReq uiredIndic ator], [Pr oductModif icationInd icator], [ ProductCod eIndicator ], [Origin alProductT ypeCode], [RetireDat e], [Recor dStatusCod e], [LastU pdateDate] , [LastUpd ateUser], [LastUpdat eFunctionI d]) VALUES ('f15e34b d-54d1-43e c-843a-f13 02bd896bf' , 'POOLED PLATELETS| CPD/XX/20- 24C|Irradi ated|ResLe u:<1E6|Pla sma reduce d', 'PLT P ool CPD IR D LUKOPR P LS Red', ' E022', '@A 7 C2 D5 E5 ', 200, 'E 8258', 4, 0, 0, 1, ' E022', NUL L, 'A', '2 016-07-27 11:17:06.0 00', ' RED A CTED ', 0) | |
| 12265 | INSERT INT O [dbo].[B loodProduc t] ([Blood ProductGui d], [Produ ctName], [ ProductSho rtName], [ ProductTyp eCode], [P roductAttr ibuteForm] , [Product Volume], [ ProductCod e], [Maxim umStorageT ime], [Cro ssmatchReq uiredIndic ator], [Pr oductModif icationInd icator], [ ProductCod eIndicator ], [Origin alProductT ypeCode], [RetireDat e], [Recor dStatusCod e], [LastU pdateDate] , [LastUpd ateUser], [LastUpdat eFunctionI d]) VALUES ('3a1f842 a-b496-40c 1-b0fb-f17 275910609' , 'POOLED PLATELETS| PAS-E/XX/2 0-24C|Irra diated|Res Leu:<1E6|B uffy coat plts prep| Approx 240 E9 plts', 'PLT Pool PAS-E IRD LUKOPR BU FCT', 'E02 2', '@D5 C 2 D5 G2 JB ', 200, 'E 8200', 4, 0, 0, 1, ' E022', NUL L, 'A', '2 016-07-27 11:17:06.0 00', ' RED A CTED ', 0) | |
| 12266 | INSERT INT O [dbo].[B loodProduc t] ([Blood ProductGui d], [Produ ctName], [ ProductSho rtName], [ ProductTyp eCode], [P roductAttr ibuteForm] , [Product Volume], [ ProductCod e], [Maxim umStorageT ime], [Cro ssmatchReq uiredIndic ator], [Pr oductModif icationInd icator], [ ProductCod eIndicator ], [Origin alProductT ypeCode], [RetireDat e], [Recor dStatusCod e], [LastU pdateDate] , [LastUpd ateUser], [LastUpdat eFunctionI d]) VALUES ('108fd38 a-b9b0-498 f-92fc-f1e ee765a0c9' , 'Apheres is IMMUNE PLASMA|CPD /XX/<=-25C |For mnf:i njectable| Varicella zoster', ' PLASMA AFR Imm CPD M NFI Vzoste r', 'E012' , '@A1 A2 P6', 225, 'E8779', 8 760, 0, 0, 1, 'E079' , NULL, 'A ', '2016-0 7-27 11:17 :06.000', ' RED A CTED ', 0) | |
| 12267 | INSERT INT O [dbo].[B loodProduc t] ([Blood ProductGui d], [Produ ctName], [ ProductSho rtName], [ ProductTyp eCode], [P roductAttr ibuteForm] , [Product Volume], [ ProductCod e], [Maxim umStorageT ime], [Cro ssmatchReq uiredIndic ator], [Pr oductModif icationInd icator], [ ProductCod eIndicator ], [Origin alProductT ypeCode], [RetireDat e], [Recor dStatusCod e], [LastU pdateDate] , [LastUpd ateUser], [LastUpdat eFunctionI d]) VALUES ('0e2f8c8 f-fab4-427 a-b58c-f21 d704a06df' , 'Washed RED BLOOD CELLS|None /XX/refg|O pen|Irradi ated|ResLe u:NS|Plasm a added', 'RBC Wash None OPN I RD LUKOPR PA', 'E003 ', '@AS B2 C2 D2 E4' , 200, 'E8 562', 24, 0, 0, 1, ' E003', NUL L, 'A', '2 016-07-27 11:17:06.0 00', ' RED A CTED ', 0) | |
| 12268 | INSERT INT O [dbo].[B loodProduc t] ([Blood ProductGui d], [Produ ctName], [ ProductSho rtName], [ ProductTyp eCode], [P roductAttr ibuteForm] , [Product Volume], [ ProductCod e], [Maxim umStorageT ime], [Cro ssmatchReq uiredIndic ator], [Pr oductModif icationInd icator], [ ProductCod eIndicator ], [Origin alProductT ypeCode], [RetireDat e], [Recor dStatusCod e], [LastU pdateDate] , [LastUpd ateUser], [LastUpdat eFunctionI d]) VALUES ('19dbfad 9-5cc8-4e0 4-9cae-f33 1ece02c1c' , 'IMMUNE PLASMA|CPD /XX/<=-25C |For mnf:i njectable| RHD', 'PLA SMA Imm CP D MNFI RHD ', 'E010', '@A1 A2 P 7', 225, ' E8775', 87 60, 0, 0, 1, 'E078', NULL, 'A' , '2016-07 -27 11:17: 06.000', ' RED A CTED ', 0) | |
| 12269 | INSERT INT O [dbo].[B loodProduc t] ([Blood ProductGui d], [Produ ctName], [ ProductSho rtName], [ ProductTyp eCode], [P roductAttr ibuteForm] , [Product Volume], [ ProductCod e], [Maxim umStorageT ime], [Cro ssmatchReq uiredIndic ator], [Pr oductModif icationInd icator], [ ProductCod eIndicator ], [Origin alProductT ypeCode], [RetireDat e], [Recor dStatusCod e], [LastU pdateDate] , [LastUpd ateUser], [LastUpdat eFunctionI d]) VALUES ('c99eb1c 8-7eb7-454 6-b61b-f44 bb6c865ec' , 'Thawed POOLED CRY OPRECIPITA TE|None/XX /rt|Open|2 units', ' CRYO Pool Thaw None OPN 2U', ' E031', '@8 3 B2 J2', 100, 'E860 9', 4, 0, 0, 1, 'E03 1', NULL, 'A', '2016 -07-27 11: 17:06.000' , ' RED A CTED ', 0) | |
| 12270 | INSERT INT O [dbo].[B loodProduc t] ([Blood ProductGui d], [Produ ctName], [ ProductSho rtName], [ ProductTyp eCode], [P roductAttr ibuteForm] , [Product Volume], [ ProductCod e], [Maxim umStorageT ime], [Cro ssmatchReq uiredIndic ator], [Pr oductModif icationInd icator], [ ProductCod eIndicator ], [Origin alProductT ypeCode], [RetireDat e], [Recor dStatusCod e], [LastU pdateDate] , [LastUpd ateUser], [LastUpdat eFunctionI d]) VALUES ('0563397 b-10fe-40e 5-91a3-f48 1baa9f3ef' , 'Apheres is PLATELE TS|ACD-A/X X/20-24C|R esLeu:<5E6 |2nd conta iner|Bacte rial test' , 'PLT AFR ACD-A LUK OPR 2C Bac Test', 'E0 24', '@73 D4 H4 N3', 200, 'E87 63', 120, 0, 0, 1, ' E024', NUL L, 'A', '2 016-07-27 11:17:06.0 00', ' RED A CTED ', 0) | |
| 12271 | INSERT INT O [dbo].[B loodProduc t] ([Blood ProductGui d], [Produ ctName], [ ProductSho rtName], [ ProductTyp eCode], [P roductAttr ibuteForm] , [Product Volume], [ ProductCod e], [Maxim umStorageT ime], [Cro ssmatchReq uiredIndic ator], [Pr oductModif icationInd icator], [ ProductCod eIndicator ], [Origin alProductT ypeCode], [RetireDat e], [Recor dStatusCod e], [LastU pdateDate] , [LastUpd ateUser], [LastUpdat eFunctionI d]) VALUES ('f435686 6-9bcc-488 a-a1fa-f57 e790ce93f' , 'Washed Apheresis PLATELETS| None/XX/20 -24C|Open| Irradiated |ResLeu:<5 E6|1st con tainer|Pso ralen-trea ted', 'PLT AFR Wash None OPN I RD 1C Psor aln', 'E02 7', '@71 B 2 C2 D4 H3 K5', 200, 'E8758', 4, 0, 0, 1 , 'E027', NULL, 'A', '2016-07- 27 11:17:0 6.000', ' RED A CTED ', 0) | |
| 12272 | INSERT INT O [dbo].[B loodProduc t] ([Blood ProductGui d], [Produ ctName], [ ProductSho rtName], [ ProductTyp eCode], [P roductAttr ibuteForm] , [Product Volume], [ ProductCod e], [Maxim umStorageT ime], [Cro ssmatchReq uiredIndic ator], [Pr oductModif icationInd icator], [ ProductCod eIndicator ], [Origin alProductT ypeCode], [RetireDat e], [Recor dStatusCod e], [LastU pdateDate] , [LastUpd ateUser], [LastUpdat eFunctionI d]) VALUES ('361131e 9-8e28-4a5 8-8227-f5c ae29d1202' , 'Apheres is PLASMA| NS/XX/<=-2 0C|For mnf :injectabl e', 'PLASM A AFR NS M NFI', 'E01 2', '@DR A 2', 225, ' E8522', 87 60, 0, 0, 1, 'E014', NULL, 'A' , '2016-07 -27 11:17: 06.000', ' RED A CTED ', 0) | |
| 12273 | INSERT INT O [dbo].[B loodProduc t] ([Blood ProductGui d], [Produ ctName], [ ProductSho rtName], [ ProductTyp eCode], [P roductAttr ibuteForm] , [Product Volume], [ ProductCod e], [Maxim umStorageT ime], [Cro ssmatchReq uiredIndic ator], [Pr oductModif icationInd icator], [ ProductCod eIndicator ], [Origin alProductT ypeCode], [RetireDat e], [Recor dStatusCod e], [LastU pdateDate] , [LastUpd ateUser], [LastUpdat eFunctionI d]) VALUES ('3f8f418 1-3a12-464 e-ba6c-f61 429c6c8de' , 'POOLED PLATELETS| CPD>PAS-E/ XX/20-24C| ResLeu:<1E 6|Buffy co at plts pr ep|3 units |Bacterial monitorin g', 'PLT P ool CPD>PA S-E LUKOPR BUFCT 3U BacMtr', ' E022', '@D P D5 G2 J3 N2', 200, 'E8500', 120, 0, 0, 1, 'E022' , NULL, 'A ', '2016-0 7-27 11:17 :06.000', ' RED A CTED ', 0) | |
| 12274 | INSERT INT O [dbo].[B loodProduc t] ([Blood ProductGui d], [Produ ctName], [ ProductSho rtName], [ ProductTyp eCode], [P roductAttr ibuteForm] , [Product Volume], [ ProductCod e], [Maxim umStorageT ime], [Cro ssmatchReq uiredIndic ator], [Pr oductModif icationInd icator], [ ProductCod eIndicator ], [Origin alProductT ypeCode], [RetireDat e], [Recor dStatusCod e], [LastU pdateDate] , [LastUpd ateUser], [LastUpdat eFunctionI d]) VALUES ('49d11e7 4-044a-4ed 0-b925-f6f 6d7927455' , 'Apheres is PLATELE TS|ACD-A/X X/20-24C|I rradiated| ResLeu:<5E 6|<3E11 pl ts|Psorale n-treated' , 'PLT AFR ACD-A IRD LUKOPR Ps oraln', 'E 024', '@73 C2 D4 JI K5', 200, 'E8747', 1 20, 0, 0, 1, 'E024', NULL, 'A' , '2016-07 -27 11:17: 06.000', ' RED A CTED ', 0) | |
| 12275 | INSERT INT O [dbo].[B loodProduc t] ([Blood ProductGui d], [Produ ctName], [ ProductSho rtName], [ ProductTyp eCode], [P roductAttr ibuteForm] , [Product Volume], [ ProductCod e], [Maxim umStorageT ime], [Cro ssmatchReq uiredIndic ator], [Pr oductModif icationInd icator], [ ProductCod eIndicator ], [Origin alProductT ypeCode], [RetireDat e], [Recor dStatusCod e], [LastU pdateDate] , [LastUpd ateUser], [LastUpdat eFunctionI d]) VALUES ('2df78c3 9-6618-4c9 a-a1f0-f76 12f89cf77' , 'Liquid PLASMA|CPD /450mL/ref g|ResLeu:< 1E6', 'PLA SMA Liq CP D LUKOPR', 'E011', ' @03 D5', 2 25, 'E8560 ', 624, 0, 0, 1, 'E0 16', NULL, 'A', '201 6-07-27 11 :17:06.000 ', ' RED A CTED ', 0) | |
| 12276 | INSERT INT O [dbo].[B loodProduc t] ([Blood ProductGui d], [Produ ctName], [ ProductSho rtName], [ ProductTyp eCode], [P roductAttr ibuteForm] , [Product Volume], [ ProductCod e], [Maxim umStorageT ime], [Cro ssmatchReq uiredIndic ator], [Pr oductModif icationInd icator], [ ProductCod eIndicator ], [Origin alProductT ypeCode], [RetireDat e], [Recor dStatusCod e], [LastU pdateDate] , [LastUpd ateUser], [LastUpdat eFunctionI d]) VALUES ('dcd92bb 8-6457-40b f-9eeb-f7e e5a8b7555' , 'Thawed POOLED FRE SH FROZEN PLASMA|CP2 D/XX/refg| 3 units|Ps oralen-tre ated', 'FF P Pool Tha w CP2D 3U Psoraln', 'E011', '@ 13 J3 K5', 500, 'E83 91', 4, 0, 0, 1, 'E0 56', NULL, 'A', '201 6-07-27 11 :17:06.000 ', ' RED A CTED ', 0) | |
| 12277 | INSERT INT O [dbo].[B loodProduc t] ([Blood ProductGui d], [Produ ctName], [ ProductSho rtName], [ ProductTyp eCode], [P roductAttr ibuteForm] , [Product Volume], [ ProductCod e], [Maxim umStorageT ime], [Cro ssmatchReq uiredIndic ator], [Pr oductModif icationInd icator], [ ProductCod eIndicator ], [Origin alProductT ypeCode], [RetireDat e], [Recor dStatusCod e], [LastU pdateDate] , [LastUpd ateUser], [LastUpdat eFunctionI d]) VALUES ('636214d 2-ce58-4f0 8-92ac-f80 99ad9442b' , 'Apheres is PLATELE TS|ACD-A/X X/20-24C|I rradiated| ResLeu:<5E 6|3rd cont ainer|Bact erial test ', 'PLT AF R ACD-A IR D LUKOPR 3 C BacTest' , 'E024', '@73 C2 D4 H5 N3', 2 00, 'E8595 ', 120, 0, 0, 1, 'E0 24', NULL, 'A', '201 6-07-27 11 :17:06.000 ', ' RED A CTED ', 0) | |
| 12278 | INSERT INT O [dbo].[B loodProduc t] ([Blood ProductGui d], [Produ ctName], [ ProductSho rtName], [ ProductTyp eCode], [P roductAttr ibuteForm] , [Product Volume], [ ProductCod e], [Maxim umStorageT ime], [Cro ssmatchReq uiredIndic ator], [Pr oductModif icationInd icator], [ ProductCod eIndicator ], [Origin alProductT ypeCode], [RetireDat e], [Recor dStatusCod e], [LastU pdateDate] , [LastUpd ateUser], [LastUpdat eFunctionI d]) VALUES ('5aefea4 f-8c8f-4f8 e-8e88-f8f 19895b30d' , 'Thawed Apheresis PLASMA|ACD -A/XX/refg |Psoralen- treated', 'PLASMA AF R Thaw ACD -A Psoraln ', 'E013', '@54 K5', 225, 'E83 86', 120, 0, 0, 1, ' E015', NUL L, 'A', '2 016-07-27 11:17:06.0 00', ' RED A CTED ', 0) | |
| 12279 | INSERT INT O [dbo].[B loodProduc t] ([Blood ProductGui d], [Produ ctName], [ ProductSho rtName], [ ProductTyp eCode], [P roductAttr ibuteForm] , [Product Volume], [ ProductCod e], [Maxim umStorageT ime], [Cro ssmatchReq uiredIndic ator], [Pr oductModif icationInd icator], [ ProductCod eIndicator ], [Origin alProductT ypeCode], [RetireDat e], [Recor dStatusCod e], [LastU pdateDate] , [LastUpd ateUser], [LastUpdat eFunctionI d]) VALUES ('4217394 f-db67-406 1-b3ca-f8f c4922ee5b' , 'Washed Apheresis PLATELETS| None/XX/20 -24C|Open| ResLeu:<5E 6|Supernat reduced|2 nd contain er|Psorale n-treated' , 'PLT AFR Wash None OPN LUKOP R SUPRed 2 C Psoraln' , 'E027', '@71 B2 D4 EA H4 K5' , 200, 'E8 792', 4, 0 , 0, 1, 'E 027', NULL , 'A', '20 16-07-27 1 1:17:06.00 0', ' RED A CTED ', 0) | |
| 12280 | INSERT INT O [dbo].[B loodProduc t] ([Blood ProductGui d], [Produ ctName], [ ProductSho rtName], [ ProductTyp eCode], [P roductAttr ibuteForm] , [Product Volume], [ ProductCod e], [Maxim umStorageT ime], [Cro ssmatchReq uiredIndic ator], [Pr oductModif icationInd icator], [ ProductCod eIndicator ], [Origin alProductT ypeCode], [RetireDat e], [Recor dStatusCod e], [LastU pdateDate] , [LastUpd ateUser], [LastUpdat eFunctionI d]) VALUES ('c6bdb9a 4-372f-4eb f-8aee-f94 b280856d3' , 'Apheres is RED BLO OD CELLS|A CD-A>AS1/X X/refg|Ope n|ResLeu:N S|Supernat rem/Plasm a added|2n d containe r', 'RBC A FR ACD-A>A S1 OPN LUK OPR SR/PA 2C', 'E009 ', '@AY B2 D2 E8 H4' , 350, 'E8 236', 24, 0, 0, 1, ' E009', NUL L, 'A', '2 016-07-27 11:17:06.0 00', ' RED A CTED ', 0) | |
| 12281 | INSERT INT O [dbo].[B loodProduc t] ([Blood ProductGui d], [Produ ctName], [ ProductSho rtName], [ ProductTyp eCode], [P roductAttr ibuteForm] , [Product Volume], [ ProductCod e], [Maxim umStorageT ime], [Cro ssmatchReq uiredIndic ator], [Pr oductModif icationInd icator], [ ProductCod eIndicator ], [Origin alProductT ypeCode], [RetireDat e], [Recor dStatusCod e], [LastU pdateDate] , [LastUpd ateUser], [LastUpdat eFunctionI d]) VALUES ('526eeb9 5-d573-482 3-bd3f-f98 90be494fe' , 'Apheres is PLATELE TS|ACD-A/X X/20-24C|I rradiated| ResLeu:<5E 6|2nd cont ainer|Bact erial test ', 'PLT AF R ACD-A IR D LUKOPR 2 C BacTest' , 'E024', '@73 C2 D4 H4 N3', 2 00, 'E8596 ', 120, 0, 0, 1, 'E0 24', NULL, 'A', '201 6-07-27 11 :17:06.000 ', ' RED A CTED ', 0) | |
| 12282 | INSERT INT O [dbo].[B loodProduc t] ([Blood ProductGui d], [Produ ctName], [ ProductSho rtName], [ ProductTyp eCode], [P roductAttr ibuteForm] , [Product Volume], [ ProductCod e], [Maxim umStorageT ime], [Cro ssmatchReq uiredIndic ator], [Pr oductModif icationInd icator], [ ProductCod eIndicator ], [Origin alProductT ypeCode], [RetireDat e], [Recor dStatusCod e], [LastU pdateDate] , [LastUpd ateUser], [LastUpdat eFunctionI d]) VALUES ('feec9b4 7-b9d0-400 3-a725-f98 f2ab0dfcc' , 'Washed Apheresis PLATELETS| None/XX/20 -24C|Open| ResLeu:<5E 6|Supernat reduced|< 3E11 plts| Psoralen-t reated', ' PLT AFR Wa sh None OP N LUKOPR S UPRed Psor aln', 'E02 7', '@71 B 2 D4 EA JI K5', 200, 'E8790', 4, 0, 0, 1 , 'E027', NULL, 'A', '2016-07- 27 11:17:0 6.000', ' RED A CTED ', 0) | |
| 12283 | INSERT INT O [dbo].[B loodProduc t] ([Blood ProductGui d], [Produ ctName], [ ProductSho rtName], [ ProductTyp eCode], [P roductAttr ibuteForm] , [Product Volume], [ ProductCod e], [Maxim umStorageT ime], [Cro ssmatchReq uiredIndic ator], [Pr oductModif icationInd icator], [ ProductCod eIndicator ], [Origin alProductT ypeCode], [RetireDat e], [Recor dStatusCod e], [LastU pdateDate] , [LastUpd ateUser], [LastUpdat eFunctionI d]) VALUES ('8e55ad3 5-a321-485 3-a7fa-f9f 60a0c953c' , 'Frozen Apheresis PLATELETS| ACD-A/XX/< =-18C|For mnf:noninj ectable re str use|Ir radiated|R esLeu:<5E6 |3rd conta iner', 'PL T AFR Froz ACD-A MNF RNI IRD LU KOPR 3C', 'E025', '@ 47 A5 C2 D 4 H5', 200 , 'E8225', 8760, 0, 0, 1, 'E02 5', NULL, 'A', '2016 -07-27 11: 17:06.000' , ' RED A CTED ', 0) | |
| 12284 | INSERT INT O [dbo].[B loodProduc t] ([Blood ProductGui d], [Produ ctName], [ ProductSho rtName], [ ProductTyp eCode], [P roductAttr ibuteForm] , [Product Volume], [ ProductCod e], [Maxim umStorageT ime], [Cro ssmatchReq uiredIndic ator], [Pr oductModif icationInd icator], [ ProductCod eIndicator ], [Origin alProductT ypeCode], [RetireDat e], [Recor dStatusCod e], [LastU pdateDate] , [LastUpd ateUser], [LastUpdat eFunctionI d]) VALUES ('542d0fb 3-aa92-403 8-8517-fa0 f7471a68e' , 'Thawed PLASMA|CPD /500mL/ref g', 'PLASM A Thaw CPD ', 'E011', '@04', 22 5, 'E8181' , 120, 0, 0, 1, 'E01 8', NULL, 'A', '2016 -07-27 11: 17:06.000' , ' RED A CTED ', 0) | |
| 12285 | INSERT INT O [dbo].[B loodProduc t] ([Blood ProductGui d], [Produ ctName], [ ProductSho rtName], [ ProductTyp eCode], [P roductAttr ibuteForm] , [Product Volume], [ ProductCod e], [Maxim umStorageT ime], [Cro ssmatchReq uiredIndic ator], [Pr oductModif icationInd icator], [ ProductCod eIndicator ], [Origin alProductT ypeCode], [RetireDat e], [Recor dStatusCod e], [LastU pdateDate] , [LastUpd ateUser], [LastUpdat eFunctionI d]) VALUES ('17869a7 d-5516-47c 5-829d-fb2 64d80f96d' , 'RED BLO OD CELLS|C P2D/500mL/ refg|Open| ResLeu:NS| Plasma red uced/Plasm a added', 'RBC CP2D OPN LUKOPR PLS Red/P A', 'E002' , '@12 B2 D2 EE', 25 0, 'E8183' , 24, 0, 0 , 1, 'E002 ', NULL, ' A', '2016- 07-27 11:1 7:06.000', ' RED A CTED ', 0) | |
| 12286 | INSERT INT O [dbo].[B loodProduc t] ([Blood ProductGui d], [Produ ctName], [ ProductSho rtName], [ ProductTyp eCode], [P roductAttr ibuteForm] , [Product Volume], [ ProductCod e], [Maxim umStorageT ime], [Cro ssmatchReq uiredIndic ator], [Pr oductModif icationInd icator], [ ProductCod eIndicator ], [Origin alProductT ypeCode], [RetireDat e], [Recor dStatusCod e], [LastU pdateDate] , [LastUpd ateUser], [LastUpdat eFunctionI d]) VALUES ('7e62f4c 9-f715-4fc 7-b871-fc7 b3f513ae8' , 'CONVALE SCENT PLAS MA|CPD/XX/ <=-25C|Ebo la', 'PLAS MA Conv CP D Ebola', 'E010', '@ A1 Q2', 22 5, 'E8767' , 8760, 0, 0, 1, 'E0 72', NULL, 'A', '201 6-07-27 11 :17:06.000 ', ' RED A CTED ', 0) | |
| 12287 | INSERT INT O [dbo].[B loodProduc t] ([Blood ProductGui d], [Produ ctName], [ ProductSho rtName], [ ProductTyp eCode], [P roductAttr ibuteForm] , [Product Volume], [ ProductCod e], [Maxim umStorageT ime], [Cro ssmatchReq uiredIndic ator], [Pr oductModif icationInd icator], [ ProductCod eIndicator ], [Origin alProductT ypeCode], [RetireDat e], [Recor dStatusCod e], [LastU pdateDate] , [LastUpd ateUser], [LastUpdat eFunctionI d]) VALUES ('aa33099 2-169b-4c8 f-a968-fca 183b23ae6' , 'RED BLO OD CELLS|S AGM/XX/ref g|Irradiat ed|ResLeu: <1E6', 'RB C SAGM IRD LUKOPR', 'E002', '@ A9 C2 D5', 350, 'E87 71', 672, 0, 0, 1, ' E002', NUL L, 'A', '2 016-07-27 11:17:06.0 00', ' RED A CTED ', 0) | |
| 12288 | INSERT INT O [dbo].[B loodProduc t] ([Blood ProductGui d], [Produ ctName], [ ProductSho rtName], [ ProductTyp eCode], [P roductAttr ibuteForm] , [Product Volume], [ ProductCod e], [Maxim umStorageT ime], [Cro ssmatchReq uiredIndic ator], [Pr oductModif icationInd icator], [ ProductCod eIndicator ], [Origin alProductT ypeCode], [RetireDat e], [Recor dStatusCod e], [LastU pdateDate] , [LastUpd ateUser], [LastUpdat eFunctionI d]) VALUES ('519187e e-b0ef-484 5-af01-fd5 5832fd2f5' , 'Apheres is FRESH F ROZEN PLAS MA|NaCitra te/XX/<=-2 5C|ResLeu: <1E6|>=600 mL|Frozen <=6h', 'FF P AFR NaCi t LUKOPR L rgVol', 'E 012', '@CQ D5 F7 G4' , 225, 'E8 621', 8760 , 0, 0, 1, 'E012', N ULL, 'A', '2016-07-2 7 11:17:06 .000', ' RED A CTED ', 0) | |
| 12289 | INSERT INT O [dbo].[B loodProduc t] ([Blood ProductGui d], [Produ ctName], [ ProductSho rtName], [ ProductTyp eCode], [P roductAttr ibuteForm] , [Product Volume], [ ProductCod e], [Maxim umStorageT ime], [Cro ssmatchReq uiredIndic ator], [Pr oductModif icationInd icator], [ ProductCod eIndicator ], [Origin alProductT ypeCode], [RetireDat e], [Recor dStatusCod e], [LastU pdateDate] , [LastUpd ateUser], [LastUpdat eFunctionI d]) VALUES ('e5de163 6-8f5c-452 a-a89b-fe1 ff93b537c' , 'Apheres is FRESH F ROZEN PLAS MA|NaCitra te/XX/<=-2 5C|Irradia ted|ResLeu :<1E6|>=20 0mL<400mL| Frozen <=6 h|3rd cont ainer', 'F FP AFR NaC it IRD LUK OPR 3C', ' E012', '@C Q C2 D5 F5 G4 H5', 2 25, 'E8628 ', 8760, 0 , 0, 1, 'E 012', NULL , 'A', '20 16-07-27 1 1:17:06.00 0', ' RED A CTED ', 0) | |
| 12290 | INSERT INT O [dbo].[B loodProduc t] ([Blood ProductGui d], [Produ ctName], [ ProductSho rtName], [ ProductTyp eCode], [P roductAttr ibuteForm] , [Product Volume], [ ProductCod e], [Maxim umStorageT ime], [Cro ssmatchReq uiredIndic ator], [Pr oductModif icationInd icator], [ ProductCod eIndicator ], [Origin alProductT ypeCode], [RetireDat e], [Recor dStatusCod e], [LastU pdateDate] , [LastUpd ateUser], [LastUpdat eFunctionI d]) VALUES ('b9b7bc7 8-c873-468 e-b164-fe4 fbc2ac724' , 'POOLED PLATELETS| CPD>PAS-E/ XX/20-24C| ResLeu:<1E 6|Buffy co at plts pr ep|4 units |Bacterial monitorin g', 'PLT P ool CPD>PA S-E LUKOPR BUFCT 4U BacMtr', ' E022', '@D P D5 G2 J4 N2', 200, 'E8501', 120, 0, 0, 1, 'E022' , NULL, 'A ', '2016-0 7-27 11:17 :06.000', ' RED A CTED ', 0) | |
| 12291 | INSERT INT O [dbo].[B loodProduc t] ([Blood ProductGui d], [Produ ctName], [ ProductSho rtName], [ ProductTyp eCode], [P roductAttr ibuteForm] , [Product Volume], [ ProductCod e], [Maxim umStorageT ime], [Cro ssmatchReq uiredIndic ator], [Pr oductModif icationInd icator], [ ProductCod eIndicator ], [Origin alProductT ypeCode], [RetireDat e], [Recor dStatusCod e], [LastU pdateDate] , [LastUpd ateUser], [LastUpdat eFunctionI d]) VALUES ('9eb69ee 5-196f-469 4-a0a8-fec a68fa1035' , 'Apheres is RED BLO OD CELLS|A CD-A>AS1/X X/refg|Ope n|ResLeu:N S|Supernat rem/Plasm a added', 'RBC AFR A CD-A>AS1 O PN LUKOPR SR/PA', 'E 009', '@AY B2 D2 E8' , 350, 'E8 238', 24, 0, 0, 1, ' E009', NUL L, 'A', '2 016-07-27 11:17:06.0 00', ' RED A CTED ', 0) | |
| 12292 | INSERT INT O [dbo].[B loodProduc t] ([Blood ProductGui d], [Produ ctName], [ ProductSho rtName], [ ProductTyp eCode], [P roductAttr ibuteForm] , [Product Volume], [ ProductCod e], [Maxim umStorageT ime], [Cro ssmatchReq uiredIndic ator], [Pr oductModif icationInd icator], [ ProductCod eIndicator ], [Origin alProductT ypeCode], [RetireDat e], [Recor dStatusCod e], [LastU pdateDate] , [LastUpd ateUser], [LastUpdat eFunctionI d]) VALUES ('2d9877e 9-95a6-446 8-ab17-fee ef5d9350f' , 'Washed Apheresis RED BLOOD CELLS|None /XX/refg|O pen|Irradi ated|ResLe u:NS|Plasm a added|1s t containe r', 'RBC A FR Wash No ne OPN IRD LUKOPR PA 1C', 'E04 9', '@AS B 2 C2 D2 E4 H3', 200, 'E8442', 24, 0, 0, 1, 'E049', NULL, 'A' , '2016-07 -27 11:17: 06.000', ' RED A CTED ', 0) | |
| 12293 | INSERT INT O [dbo].[B loodProduc t] ([Blood ProductGui d], [Produ ctName], [ ProductSho rtName], [ ProductTyp eCode], [P roductAttr ibuteForm] , [Product Volume], [ ProductCod e], [Maxim umStorageT ime], [Cro ssmatchReq uiredIndic ator], [Pr oductModif icationInd icator], [ ProductCod eIndicator ], [Origin alProductT ypeCode], [RetireDat e], [Recor dStatusCod e], [LastU pdateDate] , [LastUpd ateUser], [LastUpdat eFunctionI d]) VALUES ('97fa0b1 4-ebc9-420 a-94d4-ff5 0277e42a0' , 'WHOLE B LOOD|NS/50 0mL/refg|F or mnf:non injectable ', 'WB NS MNFNI', 'E 001', '@DY A3', 500, 'E8647', 24, 0, 0, 1, 'E001', NULL, 'A' , '2016-07 -27 11:17: 06.000', ' RED A CTED ', 0) | |
| 12294 | INSERT INT O [dbo].[B loodProduc t] ([Blood ProductGui d], [Produ ctName], [ ProductSho rtName], [ ProductTyp eCode], [P roductAttr ibuteForm] , [Product Volume], [ ProductCod e], [Maxim umStorageT ime], [Cro ssmatchReq uiredIndic ator], [Pr oductModif icationInd icator], [ ProductCod eIndicator ], [Origin alProductT ypeCode], [RetireDat e], [Recor dStatusCod e], [LastU pdateDate] , [LastUpd ateUser], [LastUpdat eFunctionI d]) VALUES ('4899128 6-3fe9-478 f-a38c-ff6 f3573a4d2' , 'Apheres is FRESH F ROZEN PLAS MA|NaCitra te/XX/<=-2 5C|ResLeu: <1E6|>=200 mL<400mL|F rozen <=6h |1st conta iner', 'FF P AFR NaCi t LUKOPR 1 C', 'E012' , '@CQ D5 F5 G4 H3', 225, 'E86 22', 8760, 0, 0, 1, 'E012', NU LL, 'A', ' 2016-07-27 11:17:06. 000', ' RED A CTED ', 0) | |
| 12295 | INSERT INT O [dbo].[B loodProduc t] ([Blood ProductGui d], [Produ ctName], [ ProductSho rtName], [ ProductTyp eCode], [P roductAttr ibuteForm] , [Product Volume], [ ProductCod e], [Maxim umStorageT ime], [Cro ssmatchReq uiredIndic ator], [Pr oductModif icationInd icator], [ ProductCod eIndicator ], [Origin alProductT ypeCode], [RetireDat e], [Recor dStatusCod e], [LastU pdateDate] , [LastUpd ateUser], [LastUpdat eFunctionI d]) VALUES ('c785f02 a-5442-492 2-bc9d-ff8 8fa7fd3e1' , 'Thawed Apheresis FRESH FROZ EN PLASMA| ACD-A/XX/r efg|For mn f:noninjec table', 'F FP AFR Tha w ACD-A MN FNI', 'E01 3', '@54 A 3', 225, ' E8489', 24 , 0, 0, 1, 'E013', N ULL, 'A', '2016-07-2 7 11:17:06 .000', ' RED A CTED ', 0) | |
| 12296 | INSERT INT O [dbo].[B loodProduc t] ([Blood ProductGui d], [Produ ctName], [ ProductSho rtName], [ ProductTyp eCode], [P roductAttr ibuteForm] , [Product Volume], [ ProductCod e], [Maxim umStorageT ime], [Cro ssmatchReq uiredIndic ator], [Pr oductModif icationInd icator], [ ProductCod eIndicator ], [Origin alProductT ypeCode], [RetireDat e], [Recor dStatusCod e], [LastU pdateDate] , [LastUpd ateUser], [LastUpdat eFunctionI d]) VALUES ('3c95b82 f-7dfc-433 3-86e2-fff 21984e461' , 'Thawed Apheresis FRESH FROZ EN PLASMA| ACD-A/XX/r efg|Open|4 th contain er', 'FFP AFR Thaw A CD-A OPN 4 C', 'E013' , '@54 B2 H6', 225, 'E8572', 2 4, 0, 0, 1 , 'E013', NULL, 'A', '2016-07- 27 11:17:0 6.000', ' RED A CTED ', 0) | |
| 12297 | -- O peration a pplied to 634 rows o ut of 634 | |
| 12298 | ||
| 12299 | -- A dd row to [dbo].[Per mittedProd uctModific ation] | |
| 12300 | INSERT INT O [dbo].[P ermittedPr oductModif ication] ( [Permitted ProductMod ificationG uid], [Pro ductModifi cationCode ], [Method Select], [ AddTargetA ttribute], [FromProd uctTypeCod e], [FromC oreConditi on], [ToPr oductTypeC ode], [ToC oreConditi on], [Expi rationDate Rule], [So rtColumn], [LastUpda teDate], [ LastUpdate User], [La stUpdateFu nctionId]) VALUES (' 01532ad3-a 4f9-438f-a 948-6d8e64 e5d440', ' T', 0, '', 'E070', ' @84', 'E07 1', '@83', 6, 0, '20 16-07-27 1 1:17:06.00 0', ' RED A CTED ', 0) | |
| 12301 | ||
| 12302 | -- A dd rows to [dbo].[Bl oodProduct Modificati on] | |
| 12303 | INSERT INT O [dbo].[B loodProduc tModificat ion] ([Blo odProductM odificatio nGuid], [P roductModi ficationCo de], [From BloodProdu ctGuid], [ ToBloodPro ductGuid], [MethodSe lect], [Ex pirationDa teRule], [ LastUpdate Date], [La stUpdateUs er], [Last UpdateFunc tionId]) V ALUES ('fa 04f4ee-b8b e-400e-9d0 6-78cab473 8494', 'T' , '8c7229a 2-f224-428 f-b642-061 9fa9b63cd' , 'ff211bd a-3afb-419 3-9e66-bf7 dc1d15eef' , 0, 120, '2016-07-2 7 11:17:06 .000', ' RED A CTED ', 0) | |
| 12304 | INSERT INT O [dbo].[B loodProduc tModificat ion] ([Blo odProductM odificatio nGuid], [P roductModi ficationCo de], [From BloodProdu ctGuid], [ ToBloodPro ductGuid], [MethodSe lect], [Ex pirationDa teRule], [ LastUpdate Date], [La stUpdateUs er], [Last UpdateFunc tionId]) V ALUES ('3e 8ceab2-3a1 e-4bd2-850 9-9941b40a 6ab1', 'T' , '5e48d8b c-d3ce-44c d-b839-367 55fc9b555' , '2eacd17 4-4347-464 e-a9cb-706 b99dd65d5' , 0, 6, '2 016-07-27 11:17:06.0 00', ' RED A CTED ', 0) | |
| 12305 | -- O peration a pplied to 2 rows out of 2 | |
| 12306 | ||
| 12307 | -- A dd rows to [dbo].[Vb ecsGlobalC onfig] | |
| 12308 | INSERT INT O [dbo].[V becsGlobal Config] ([ Applicatio nName], [P arameterNa me], [Para meterValue ], [LastUp dateDate], [LastUpda teUser], [ LastUpdate FunctionID ]) VALUES ('Vbecs', 'SAML_URL' , 'https:/ /services. eauth. DNS :9301/STS/ RequestSec urityToken ', getUTCD ate(), 'VB ECS', 0) | |
| 12309 | INSE RT INTO [d bo].[Vbecs GlobalConf ig] ([Appl icationNam e], [Param eterName], [Paramete rValue], [ LastUpdate Date], [La stUpdateUs er], [Last UpdateFunc tionID]) V ALUES ('Vb ecs', 'Tok enFilter', 'CN=Veter ans Affair s', getUTC Date(), 'V BECS', 0) | |
| 12310 | -- O peration a pplied to 2 rows out of 2 | |
| 12311 | ||
| 12312 | -- A dd rows to [dbo].[Br okenRule] | |
| 12313 | INSERT INT O [dbo].[B rokenRule] ([FormNam e], [Field Name], [Va lidationMe ssage], [L astUpdateD ate], [Las tUpdateUse r]) VALUES ('VistaLi nkConfig', 'VistaBro kerEndPoin tAddressAn dDomainNam eNotSpecif ied', 'VBE CS VistALi nk Broker IP address is invali d or not s pecified. Please ent er valid V istA Broke r IP addre ss in 4-oc tet notati on.', '201 7-01-20 00 :00:00.000 ', ' DN S LerneM') | |
| 12314 | INSERT INT O [dbo].[B rokenRule] ([FormNam e], [Field Name], [Va lidationMe ssage], [L astUpdateD ate], [Las tUpdateUse r]) VALUES ('VistaLi nkConfig', 'VistaBro kerEndPoin tPortNumbe rNotSet', 'VBECS Vis tALink Bro ker port n umber is i nvalid or not specif ied. Pleas e enter va lid VistA Broker por t number r epresented with inte ger.', '20 17-01-20 0 0:00:00.00 0', ' DN S LerneM') | |
| 12315 | INSERT INT O [dbo].[B rokenRule] ([FormNam e], [Field Name], [Va lidationMe ssage], [L astUpdateD ate], [Las tUpdateUse r]) VALUES ('VistaLi nkConfig', 'VistaBro kerEndPoin tPortNumbe rOutOfRang e', 'VistA Broker po rt number is invalid . It must be in the range of 1 024 throug h 65535.', '2017-01- 20 00:00:0 0.000', ' DN S LerneM') | |
| 12316 | INSERT INT O [dbo].[B rokenRule] ([FormNam e], [Field Name], [Va lidationMe ssage], [L astUpdateD ate], [Las tUpdateUse r]) VALUES ('HL7Inte rfaceConfi g', 'Inter faceFacili tyIdNotSet ', 'Interf ace Facili ty Id must be specif ied.', '20 17-02-08 1 0:30:00.00 0', ' DN S LerneM') | |
| 12317 | -- O peration a pplied to 4 rows out of 4 | |
| 12318 | ||
| 12319 | -- A dd rows to [dbo].[Br okenRuleSe t] | |
| 12320 | INSERT INT O [dbo].[B rokenRuleS et] ([Rule Set], [For mName], [F ieldName], [IsInitia llyBroken] , [LastUpd ateDate], [LastUpdat eUser]) VA LUES ('Bas eRuleSet', 'VistaLin kConfig', 'VistaBrok erEndPoint AddressAnd DomainName NotSpecifi ed', 0, '2 017-01-20 00:00:00.0 00', ' DN S LerneM') | |
| 12321 | INSERT INT O [dbo].[B rokenRuleS et] ([Rule Set], [For mName], [F ieldName], [IsInitia llyBroken] , [LastUpd ateDate], [LastUpdat eUser]) VA LUES ('Bas eRuleSet', 'VistaLin kConfig', 'VistaBrok erEndPoint PortNumber NotSet', 1 , '2017-01 -20 00:00: 00.000', ' DN S LerneM') | |
| 12322 | INSERT INT O [dbo].[B rokenRuleS et] ([Rule Set], [For mName], [F ieldName], [IsInitia llyBroken] , [LastUpd ateDate], [LastUpdat eUser]) VA LUES ('Bas eRuleSet', 'VistaLin kConfig', 'VistaBrok erEndPoint PortNumber OutOfRange ', 1, '201 7-01-20 00 :00:00.000 ', ' DN S LerneM') | |
| 12323 | INSERT INT O [dbo].[B rokenRuleS et] ([Rule Set], [For mName], [F ieldName], [IsInitia llyBroken] , [LastUpd ateDate], [LastUpdat eUser]) VA LUES ('Bas eRuleSet', 'HL7Inter faceConfig ', 'Interf aceFacilit yIdNotSet' , 0, '2017 -02-08 10: 30:00.000' , ' DN S LerneM') | |
| 12324 | ||
| 12325 | -- O peration a pplied to 4 rows out of 4 | |
| 12326 | ||
| 12327 | --VBECS 2. 2.1.2 SQL Script | |
| 12328 | ||
| 12329 | if exists (select * from dbo.s ysobjects where id = object_id (N'[dbo].[ spHL7GetPe ndingTrans missionMes sages]') a nd OBJECTP ROPERTY(id , N'IsProc edure') = 1) | |
| 12330 | drop proce dure [dbo] .[spHL7Get PendingTra nsmissionM essages] | |
| 12331 | GO | |
| 12332 | ||
| 12333 | SET ANSI_N ULLS ON | |
| 12334 | GO | |
| 12335 | ||
| 12336 | SET QUOTED _IDENTIFIE R ON | |
| 12337 | GO | |
| 12338 | ||
| 12339 | ||
| 12340 | ||
| 12341 | /********* ********** ********** ********** ********** ********** ********** ********** ********** ********** ********** ********** ********** ********** ********** ********** ********** ****** | |
| 12342 | ** Desc: Gets H L7 Message s with a P endingTran smission s tate and s ets the | |
| 12343 | ** Me ssageStatu s to Await ing Respon se. | |
| 12344 | ** | |
| 12345 | ** Author: Br ian Tomlin | |
| 12346 | ** | |
| 12347 | ** Date: 3/04/2 004 | |
| 12348 | ** | |
| 12349 | ********** ********** ********** ********** ********** ********** ********** ********** ********** ********** ********** ********** ********** ********** ********** ********** ********** ***** | |
| 12350 | ** Mo dified: | |
| 12351 | ** Da te Name Descri ption | |
| 12352 | ** ---------- - ------ ------- ------ ---------- ---------- ---------- ---------- ---------- ---------- ---------- ---------- ---------- ---------- ---------- ---------- ---------- ---------- ---------- ---------- -- | |
| 12353 | ** 06 /29/05 N. Pat erson ** Reviewe d for comp liance wit h database standards and recom mendations ** | |
| 12354 | ** Comm ent Header Adjusted, Added NO COUNT, Spe cified tab le owners | |
| 12355 | ** 03 /17/11 D. Ask ew Removed co mmented-ou t code; ad ded Tansmi tCount (CR 2962) | |
| 12356 | ** 03 /20/11 D. Ask ew Added code to NOT re turn messa ges which have been re-sent Re TransmitAt tempts + 1 (CR 2967) | |
| 12357 | ** 04 /18/11 K. Adu -Poku ** Reviewe d for comp liance wit h database standards and recom mendations ** | |
| 12358 | ** 06 /19/12 C. Van Stedum Changed th e where cl ause of th e first up date state ment so th at it coul d grab the first row with a st atus of 1 and has no t exceeded its retry attempts CR 3233 | |
| 12359 | ** 06 /26/12 K. Adu -Poku ** Reviewe d for comp liance wit h database standards and recom mendations ** | |
| 12360 | ** 07 /18/16 M. Gla ze Updated to reflect c hanges mad e for Vbec sAdmin con figuration such as d eleting In terfaceCon trol table (Defect 3 40457). | |
| 12361 | ** 11 /29/16 M. Gla ze Remove unu sed _ReTra nsmitAttem pts lookup s for indi vidual int erfaces (D efect 3404 57). | |
| 12362 | ** 02 /14/17 K. Adu -Poku ** Reviewe d for comp liance wit h database standards and recom mendations ** | |
| 12363 | ** 03 /17/17 K. Adu -Poku Trimmed SU SER_NAME t o remove D omain info rmation (T ask 482735 ). | |
| 12364 | ** 03 /23/17 G. Loh se ** Reviewe d for comp liance wit h database standards and recom mendations ** | |
| 12365 | ********** ********** ********** ********** ********** ********** ********** ********** ********** ********** ********** ********** ********** ********** ********** ********** ********** *****/ | |
| 12366 | CREATE PRO CEDURE [db o].[spHL7G etPendingT ransmissio nMessages] | |
| 12367 | ||
| 12368 | AS | |
| 12369 | ||
| 12370 | SET NOCOUN T ON | |
| 12371 | ||
| 12372 | DECLARE @p endingmess agelogid INT | |
| 12373 | DECLARE @m essagestre am VARCHAR(3 500) | |
| 12374 | DECLARE @i nterfaceid TINYINT | |
| 12375 | DECLARE @m essagecont rolid VA RCHAR(20) | |
| 12376 | DECLARE @t ransmitcou nt TINYIN T | |
| 12377 | ||
| 12378 | UP DATE | |
| 12379 | dbo.Me ssageLog | |
| 12380 | SE T | |
| 12381 | @pendi ngmessagel ogid = Mes sageLogId, | |
| 12382 | @inter faceid = I nterfaceId , | |
| 12383 | @messa gecontroli d = Messag eControlId , | |
| 12384 | @messa gestream = MessageSt ream, | |
| 12385 | @trans mitcount = TransmitC ount, | |
| 12386 | Messag eStatusCod e = 8, | |
| 12387 | LastUp dateDate = GETUTCDAT E(), | |
| 12388 | LastUp dateUser = RIGHT(SUS ER_NAME(), LEN(SUSER _NAME()) - CHARINDEX ('\', SUSE R_NAME())) | |
| 12389 | WH ERE | |
| 12390 | Messag eLogId = ( | |
| 12391 | SELECT TOP 1 Mes sageLogId | |
| 12392 | FROM d bo.Message Log ML | |
| 12393 | IN NER JOIN d bo.Interfa ce I ON ML .interface Id = I.Int erfaceId | |
| 12394 | LE FT JOIN db o.VbecsGlo balConfig vgcr on I. Applicatio nName = vg cr.Applica tionName a nd vgcr.Pa rameterNam e = 'VBECS _ReTransmi tAttempts' | |
| 12395 | WHERE MessageSta tusCode = 1 | |
| 12396 | an d ISNULL(T ransmitCou nt, 0) <= isnull(con vert(int, vgcr.Param eterValue) , 0) | |
| 12397 | ) | |
| 12398 | ||
| 12399 | --If the re's a mes sage to pr ocess, sen d back the fields | |
| 12400 | IF @pend ingmessage logid IS N OT NULL | |
| 12401 | BEGIN | |
| 12402 | SE LECT @i nterfaceid AS Interf aceId, | |
| 12403 | @m essagecont rolid AS M essageCont rolId, | |
| 12404 | @m essagestre am AS Mess ageStream, | |
| 12405 | IS NULL(@tran smitcount, 0) AS Tra nsmitCount | |
| 12406 | END | |
| 12407 | ||
| 12408 | ||
| 12409 | SET NOCOUN T OFF | |
| 12410 | ||
| 12411 | ||
| 12412 | GO | |
| 12413 | ||
| 12414 | ||
| 12415 | if exists (select * from dbo.s ysobjects where id = object_id (N'[dbo].[ spHL7Inser tMessageLo g]') and O BJECTPROPE RTY(id, N' IsProcedur e') = 1) | |
| 12416 | drop proce dure [dbo] .[spHL7Ins ertMessage Log] | |
| 12417 | GO | |
| 12418 | ||
| 12419 | ||
| 12420 | SET ANSI_N ULLS ON | |
| 12421 | GO | |
| 12422 | ||
| 12423 | SET QUOTED _IDENTIFIE R ON | |
| 12424 | GO | |
| 12425 | ||
| 12426 | ||
| 12427 | /********* ********** ********** ********** ********** ********** ********** ********** ********** ********** ********** ********** ********** ********** ********** ********** ********** ****** | |
| 12428 | ** De sc: Inse rts entry in the Mes sageLog ta ble | |
| 12429 | ** | |
| 12430 | ** Au thor: Bria n Tomlin | |
| 12431 | ** | |
| 12432 | ** Da te: 10/0 8/2003 | |
| 12433 | ********** ********** ********** ********** ********** ********** ********** ********** ********** ********** ********** ********** ********** ********** ********** ********** ********** ***** | |
| 12434 | ** Mo dified: | |
| 12435 | ** Da te Name De scription | |
| 12436 | ** -- ---------- ------- -------- ---------- ----- ---- ---------- ---------- ---------- ---------- ---------- ---------- ---------- ---------- ---------- ---------- ---------- ---------- ---------- ---------- ---------- ---------- ---- | |
| 12437 | ** 01 /10/05 D. Ask ew Ad ded @lastu pdatedate | |
| 12438 | ** 06 /29/05 NPater son ** Reviewe d for comp liance wit h database standards and recom mendations ** | |
| 12439 | ** Comment He ader Adjus ted, Added NOCOUNT, Specified table owne rs, NULLs are OK no change | |
| 12440 | Did not ad d error ch ecking as planned, as it woul d change l ogic | |
| 12441 | ** 09 /02/05 Lohse Changed co mments fie ld length from 255 t o 510 | |
| 12442 | ** 07 /18/16 M. Gla ze Changed In terfaceCon trolId to InterfaceI d (Defect 340457). | |
| 12443 | ** 02 /14/17 K. Adu -Poku ** Reviewe d for comp liance wit h database standards and recom mendations ** | |
| 12444 | ** 03 /09/17 K. Adu -Poku Modified E rror handl ing to rai se Error 5 0003 (Task 482735). | |
| 12445 | ** 03 /23/17 G. Loh se ** Reviewe d for comp liance wit h database standards and recom mendations ** | |
| 12446 | ********** ********** ********** ********** ********** ********** ********** ********** ********** ********** ********** ********** ********** ********** ********** ********** ********** *****/ | |
| 12447 | CREATE PRO CEDURE [db o].[spHL7I nsertMessa geLog] | |
| 12448 | ( | |
| 12449 | @m essagestat uscode INT, | |
| 12450 | @m essagecont rolid VARCHAR( 20), | |
| 12451 | @m essagetype VARCHAR( 13), | |
| 12452 | @d atetimeofm essage DATETIME , | |
| 12453 | @s endingappl ication VARCHAR( 50), | |
| 12454 | @r eceivingap plication VARCHAR( 50), | |
| 12455 | @m essagestre am VARCHA R(3500), | |
| 12456 | @i nterfaceid TINYIN T, | |
| 12457 | @e rrortext VARCHAR( 3500) = NU LL, | |
| 12458 | @l astupdateu ser VARCHA R(30), | |
| 12459 | @l astupdatef unctionid INT, | |
| 12460 | @l astupdated ate DATETI ME | |
| 12461 | ) | |
| 12462 | AS | |
| 12463 | ||
| 12464 | SET NOCOUN T ON | |
| 12465 | ||
| 12466 | DECLARE @E RROR INT, | |
| 12467 | @R OWCOUNT INT | |
| 12468 | ||
| 12469 | IF EXISTS( | |
| 12470 | SE LECT Messa geControlI D FROM dbo .MessageLo g WHERE Me ssageContr olID = @me ssagecontr olid | |
| 12471 | ) | |
| 12472 | ||
| 12473 | BE GIN | |
| 12474 | UPDA TE | |
| 12475 | dbo.Me ssageLog | |
| 12476 | SET | |
| 12477 | Messag eStatusCod e = @m essagestat uscode, | |
| 12478 | Messag eControlID = @m essagecont rolid, | |
| 12479 | Messag eType = @m essagetype , | |
| 12480 | DateTi meOfMessag e = @d atetimeofm essage, | |
| 12481 | Sendin gApplicati on = @s endingappl ication, | |
| 12482 | Receiv ingApplica tion = @r eceivingap plication, | |
| 12483 | Messag eStream = @m essagestre am, | |
| 12484 | Interf aceID = @interface id, | |
| 12485 | ErrorT ext = @e rrortext, | |
| 12486 | LastUp dateDate = @l astupdated ate, | |
| 12487 | LastUp dateUser = @l astupdateu ser, | |
| 12488 | LastUp dateFuncti onId = @l astupdatef unctionid | |
| 12489 | WHER E | |
| 12490 | Messag eControlID = @messag econtrolid | |
| 12491 | EN D | |
| 12492 | ||
| 12493 | ELSE | |
| 12494 | ||
| 12495 | BE GIN | |
| 12496 | INSERT INTO | |
| 12497 | dbo.Mess ageLog | |
| 12498 | ( | |
| 12499 | MessageS tatusCode, | |
| 12500 | MessageC ontrolID, | |
| 12501 | MessageT ype, | |
| 12502 | DateTime OfMessage, | |
| 12503 | SendingA pplication , | |
| 12504 | Receivin gApplicati on, | |
| 12505 | MessageS tream, | |
| 12506 | Interfac eID, | |
| 12507 | ErrorTex t, | |
| 12508 | LastUpda teDate, | |
| 12509 | LastUpda teUser, | |
| 12510 | LastUpda teFunction Id | |
| 12511 | ) | |
| 12512 | VALUES | |
| 12513 | ( | |
| 12514 | @message statuscode , | |
| 12515 | @message controlid, | |
| 12516 | @message type, | |
| 12517 | @datetim eofmessage , | |
| 12518 | @sending applicatio n, | |
| 12519 | @receivi ngapplicat ion, | |
| 12520 | @message stream, | |
| 12521 | @interfa ceid, | |
| 12522 | @errorte xt, | |
| 12523 | @lastupd atedate, | |
| 12524 | @lastupd ateuser, | |
| 12525 | @lastupd atefunctio nid | |
| 12526 | ) | |
| 12527 | ||
| 12528 | SELECT @ERROR = @@ERROR, @ ROWCOUNT = @@ROWCOUN T | |
| 12529 | ||
| 12530 | IF @ro wcount <> 1 RAISERRO R(50003, 1 6, 1, 'Mes sageLog', @rowcount) | |
| 12531 | EN D | |
| 12532 | ||
| 12533 | SET NOCOUN T OFF | |
| 12534 | ||
| 12535 | RETURN (@E RROR) | |
| 12536 | ||
| 12537 | ||
| 12538 | GO | |
| 12539 | ||
| 12540 | if exists (select * from dbo.s ysobjects where id = object_id (N'[dbo].[ spInsertVb ecsGlobalC onfig]') a nd OBJECTP ROPERTY(id , N'IsProc edure') = 1) | |
| 12541 | drop proce dure [dbo] .[spInsert VbecsGloba lConfig] | |
| 12542 | GO | |
| 12543 | ||
| 12544 | SET ANSI_N ULLS ON | |
| 12545 | GO | |
| 12546 | ||
| 12547 | SET QUOTED _IDENTIFIE R ON | |
| 12548 | GO | |
| 12549 | ||
| 12550 | /********* ********** ********** ********** ********** ********** ********** ********** ********** ********** ********** ********** ********** ********** ********** ********** ********** ****** | |
| 12551 | ** De sc: Inse rts parame ter into V becsGlobal Config tab le. | |
| 12552 | ** | |
| 12553 | ** Au thor: Carr ie Van Ste dum | |
| 12554 | ** | |
| 12555 | ** Da te: 01/1 5/2013 | |
| 12556 | ********** ********** ********** ********** ********** ********** ********** ********** ********** ********** ********** ********** ********** ********** ********** ********** ********** ***** | |
| 12557 | ** Mo dified: | |
| 12558 | ** Da te Name Descriptio n | |
| 12559 | ** -- ---------- -- ------ --- ---------- -------- | |
| 12560 | ** 11 /01/2013 K. Adu -Poku ** Reviewe d for comp liance wit h database standards and recom mendations ** | |
| 12561 | ** 09 /04/2016 M. Gla ze Added upda te section (Defect 3 40457). | |
| 12562 | ** 02 /14/2017 K. Adu -Poku ** Reviewe d for comp liance wit h database standards and recom mendations ** | |
| 12563 | ** 03 /15/2017 K. Adu -Poku Added miss ing error handling f or insert fail (Task 482735). | |
| 12564 | ** 03 /23/2017 G. Loh se ** Reviewe d for comp liance wit h database standards and recom mendations ** | |
| 12565 | ********** ********** ********** ********** ********** ********** ********** ********** ********** ********** ********** ********** ********** ********** ********** ********** ********** *****/ | |
| 12566 | CREATE PRO CEDURE [db o].[spInse rtVbecsGlo balConfig] | |
| 12567 | ( | |
| 12568 | @a pplication name VA RCHAR(100) , | |
| 12569 | @p arameterna me VARCHAR( 100), | |
| 12570 | @p arameterva lue VARCHAR( 1000), | |
| 12571 | @l astupdateu ser VARCHAR( 30), | |
| 12572 | @l astupdatef unctionid INT, | |
| 12573 | @l astupdated ate DATETIME | |
| 12574 | ) | |
| 12575 | ||
| 12576 | AS | |
| 12577 | ||
| 12578 | SET NOCOUN T ON | |
| 12579 | ||
| 12580 | DE CLARE @err or INT, | |
| 12581 | @ro wcount INT | |
| 12582 | ||
| 12583 | IF EXISTS (S ELECT 1 FR OM dbo.Vbe csGlobalCo nfig WHERE Applicati onName=@ap plicationn ame AND Pa rameterNam e=@paramet ername) | |
| 12584 | BE GIN | |
| 12585 | ||
| 12586 | UPDA TE dbo.Vbe csGlobalCo nfig | |
| 12587 | SET Pa rameterVal ue = @para metervalue , | |
| 12588 | La stUpdateDa te = @last updatedate , | |
| 12589 | LastUpda teUser = @ lastupdate user, | |
| 12590 | LastUpda teFunction ID = @last updatefunc tionid | |
| 12591 | WHERE Applicatio nName = @a pplication name | |
| 12592 | AND ParameterN ame = @par ametername | |
| 12593 | ||
| 12594 | SELECT @error = @@ERROR, @rowcount = @@ROWCOU NT | |
| 12595 | ||
| 12596 | IF @rowc ount <> 1 RAISERROR( 50002, 16, 1, 'Vbecs GlobalConf ig', @rowc ount) | |
| 12597 | ||
| 12598 | EN D | |
| 12599 | EL SE | |
| 12600 | BE GIN | |
| 12601 | ||
| 12602 | INSE RT INTO dbo.Vbec sGlobalCon fig | |
| 12603 | ||
| 12604 | ( applic ationname, | |
| 12605 | Parame terName , | |
| 12606 | Parame terValue , | |
| 12607 | LastUp dateDate , | |
| 12608 | LastUp dateUser , | |
| 12609 | LastUp dateFuncti onId | |
| 12610 | ) | |
| 12611 | VALU ES | |
| 12612 | ( | |
| 12613 | @applica tionname, | |
| 12614 | @paramet ername, | |
| 12615 | @paramet ervalue, | |
| 12616 | @lastupd atedate, | |
| 12617 | @lastupd ateuser, | |
| 12618 | @lastupd atefunctio nid | |
| 12619 | ) | |
| 12620 | ||
| 12621 | SELE CT @error = @@ERROR, @rowcoun t = @@ROWC OUNT | |
| 12622 | ||
| 12623 | IF @ rowcount < > 1 RAISER ROR( 50003 , 16, 1, ' VbecsGloba lConfig', @rowcount ) | |
| 12624 | ||
| 12625 | EN D | |
| 12626 | ||
| 12627 | ||
| 12628 | ||
| 12629 | SET NOCOUN T OFF | |
| 12630 | ||
| 12631 | RETURN(@er ror) | |
| 12632 | ||
| 12633 | GO | |
| 12634 | ||
| 12635 | ||
| 12636 | if exists (select * from dbo.s ysobjects where id = object_id (N'[dbo].[ spUpdateVb ecsEndPoin t]') and O BJECTPROPE RTY(id, N' IsProcedur e') = 1) | |
| 12637 | drop proce dure [dbo] .[spUpdate VbecsEndPo int] | |
| 12638 | GO | |
| 12639 | ||
| 12640 | SET ANSI_N ULLS ON | |
| 12641 | GO | |
| 12642 | ||
| 12643 | SET QUOTED _IDENTIFIE R ON | |
| 12644 | GO | |
| 12645 | ||
| 12646 | ||
| 12647 | ||
| 12648 | ||
| 12649 | /********* ********** ********** ********** ********** ********** ********** ********** ********** ********** ********** ********** ********** ********** ********** ********** ********** ****** | |
| 12650 | ** De sc: Upda tes VbecsE ndPoint ta ble (Defec t 340457) | |
| 12651 | ** | |
| 12652 | ** Au thor: Pabl o Sanchez | |
| 12653 | ** | |
| 12654 | ** Da te: 07/1 0/2016 | |
| 12655 | ********** ********** ********** ********** ********** ********** ********** ********** ********** ********** ********** ********** ********** ********** ********** ********** ********** ***** | |
| 12656 | ** Mo dified: | |
| 12657 | ** Da te Name De scription | |
| 12658 | ** -- ---------- ------- -------- ---------- ----- ---- ---------- ---------- ---------- ---------- ---------- ---------- ---------- ---------- ---------- ---------- ---------- ----- | |
| 12659 | ** 02 /14/17 K. Adu -Poku ** Reviewe d for comp liance wit h database standards and recom mendations ** | |
| 12660 | ** 03 /13/17 Michae l Lerner Changed pa rameters: @lastupdat edate, @la stupdateus er by remo ving = NUL L (Defect 465390). | |
| 12661 | ** 03 /17/17 K. Adu -Poku ** Reviewe d for comp liance wit h database standards and recom mendations ** | |
| 12662 | ********** ********** ********** ********** ********** ********** ********** ********** ********** ********** ********** ********** ********** ********** ********** ********** ********** *****/ | |
| 12663 | CREATE PRO CEDURE [db o].[spUpda teVbecsEnd Point] | |
| 12664 | ( | |
| 12665 | @vbe csendpoint id INT, | |
| 12666 | @end pointaddre ss VARCHAR (255), | |
| 12667 | @end pointport INT, | |
| 12668 | @end pointtype VARCHAR (5 0), | |
| 12669 | @las tupdatedat e DATETIME , | |
| 12670 | @las tupdateuse r VARCHAR (30), | |
| 12671 | @row version TI MESTAMP, | |
| 12672 | @las tupdatefun ctionid IN T | |
| 12673 | ) | |
| 12674 | AS | |
| 12675 | ||
| 12676 | SET NOCOUN T ON | |
| 12677 | ||
| 12678 | DECLARE @e rror INT, | |
| 12679 | @row count INT | |
| 12680 | ||
| 12681 | UPDATE [db o].[VbecsE ndPoint] | |
| 12682 | SE T | |
| 12683 | [End PointAddre ss] = @end PointAddre ss, | |
| 12684 | [End PointPort] = @endPoi ntPort, | |
| 12685 | [End PointType] = @endPoi ntType, | |
| 12686 | [Las tUpdateDat e] = @last updatedate , | |
| 12687 | [Las tUpdateUse r] = @last updateuser , | |
| 12688 | [Las tUpdateFun ctionId] = @lastupda tefunction id | |
| 12689 | ||
| 12690 | WH ERE | |
| 12691 | Vbec sEndPointI d = @vbecs endpointid | |
| 12692 | AND [RowVe rsion] = @ rowversion | |
| 12693 | ||
| 12694 | SE LECT @erro r = @@ERRO R, @rowcou nt = @@ROW COUNT | |
| 12695 | ||
| 12696 | IF @error = 0 AND @row count <> 1 AND ( SEL ECT COUNT( 1) FROM db o.VbecsEnd Point WHE RE [RowVer sion] = @r owversion ) <> 1 | |
| 12697 | RA ISERROR(50 001, 16, 1 27) | |
| 12698 | EL SE | |
| 12699 | IF (@error = 0 AND @ro wcount > 1 ) | |
| 12700 | SET @error = - 1 | |
| 12701 | ||
| 12702 | SET NOCOUN T OFF | |
| 12703 | ||
| 12704 | RETURN (@e rror) | |
| 12705 | ||
| 12706 | ||
| 12707 | ||
| 12708 | ||
| 12709 | GO | |
| 12710 | ||
| 12711 | ||
| 12712 | if exists (select * from dbo.s ysobjects where id = object_id (N'[dbo].[ spUpdateVb ecsGlobalC onfig]') a nd OBJECTP ROPERTY(id , N'IsProc edure') = 1) | |
| 12713 | drop proce dure [dbo] .[spUpdate VbecsGloba lConfig] | |
| 12714 | GO | |
| 12715 | ||
| 12716 | SET ANSI_N ULLS ON | |
| 12717 | GO | |
| 12718 | ||
| 12719 | SET QUOTED _IDENTIFIE R ON | |
| 12720 | GO | |
| 12721 | ||
| 12722 | ||
| 12723 | ||
| 12724 | /********* ********** ********** ********** ********** ********** ********** ********** ********** ********** ********** ********** ********** ********** ********** ********** ********** ****** | |
| 12725 | ** De sc: Upda tes VbecsG lobalconfi g table (D efect 3404 57) | |
| 12726 | ** | |
| 12727 | ** Au thor: Pabl o Sanchez | |
| 12728 | ** | |
| 12729 | ** Da te: 07/1 0/2016 | |
| 12730 | ********** ********** ********** ********** ********** ********** ********** ********** ********** ********** ********** ********** ********** ********** ********** ********** ********** ***** | |
| 12731 | ** Mo dified: | |
| 12732 | ** Da te Name Descriptio n | |
| 12733 | ** -- ---------- ------- -------- ---------- ----- ---- ---------- ---------- ---------- ---------- ---------- ---------- ---------- ---------- ---------- ---------- ---------- ---------- ---------- ---------- ---------- ---------- ---- | |
| 12734 | ** 02 /14/17 K. Adu -Poku ** Reviewe d for comp liance wit h database standards and recom mendations ** | |
| 12735 | ** 03 /13/17 Michae l Lerner Changed pa rameters: @lastupdat edate, @la stupdateus er by remo ving = NUL L (Defect 465390). | |
| 12736 | ** 03 /17/17 K. Adu -Poku ** Reviewe d for comp liance wit h database standards and recom mendations ** | |
| 12737 | ********** ********** ********** ********** ********** ********** ********** ********** ********** ********** ********** ********** ********** ********** ********** ********** ********** *****/ | |
| 12738 | CREATE PRO CEDURE [db o].[spUpda teVbecsGlo balConfig] | |
| 12739 | ( | |
| 12740 | @a pplication name varch ar(100), | |
| 12741 | @param etername v archar(100 ), | |
| 12742 | @param etervalue varchar(10 00), | |
| 12743 | @lastu pdatedate datetime, | |
| 12744 | @lastu pdateuser varchar(30 ), | |
| 12745 | @r owversion TIMESTAMP, | |
| 12746 | @l astupdatef unctionid INT | |
| 12747 | ||
| 12748 | ||
| 12749 | ) | |
| 12750 | AS | |
| 12751 | ||
| 12752 | SET NOCOUN T ON | |
| 12753 | ||
| 12754 | DECLARE @e rror INT, | |
| 12755 | @row count INT | |
| 12756 | ||
| 12757 | UPDATE [db o].[VbecsG lobalConfi g] | |
| 12758 | SET | |
| 12759 | [Parame terValue] = @paramet ervalue, | |
| 12760 | [LastUp dateDate] = @lastupd atedate, | |
| 12761 | [LastUp dateUser] = @lastupd ateuser, | |
| 12762 | [LastUp dateFuncti onId] = @l astupdatef unctionid | |
| 12763 | ||
| 12764 | WHERE [Pa rameterNam e] = @para metername AND [Appli cationName ] = @appli cationname AND [RowV ersion] = @rowversio n | |
| 12765 | SE LECT @erro r = @@ERRO R, @rowcou nt = @@ROW COUNT | |
| 12766 | ||
| 12767 | IF @error = 0 AND @row count <> 1 AND ( SEL ECT COUNT( 1) FROM db o.VbecsGlo balConfig WHERE [Ro wVersion] = @rowvers ion ) <> 1 | |
| 12768 | RA ISERROR(50 001, 16, 1 27) | |
| 12769 | EL SE | |
| 12770 | IF (@error = 0 AND @ro wcount > 1 ) | |
| 12771 | SET @error = - 1 | |
| 12772 | ||
| 12773 | SET NOCOUN T OFF | |
| 12774 | ||
| 12775 | RETURN (@e rror) | |
| 12776 | ||
| 12777 | ||
| 12778 | ||
| 12779 | ||
| 12780 | ||
| 12781 | GO | |
| 12782 | ||
| 12783 | ||
| 12784 | if exists (select * from dbo.s ysobjects where id = object_id (N'[dbo].[ spVistaGet XmlBloodBa nkData]') and OBJECT PROPERTY(i d, N'IsPro cedure') = 1) | |
| 12785 | drop proce dure [dbo] .[spVistaG etXmlBlood BankData] | |
| 12786 | GO | |
| 12787 | ||
| 12788 | SET ANSI_N ULLS ON | |
| 12789 | GO | |
| 12790 | ||
| 12791 | SET QUOTED _IDENTIFIE R ON | |
| 12792 | GO | |
| 12793 | ||
| 12794 | ||
| 12795 | ||
| 12796 | ||
| 12797 | ||
| 12798 | /********* ********** ********** ********** ********** ********** ********** ********** ********** ********** ********** ********** ********** ********** ********** ********** ********** ****** | |
| 12799 | ** De sc: Retr ieves bloo d bank dat a XML to r eturn to V istA | |
| 12800 | ** | |
| 12801 | ** Au thor: Bria n Tomlin / Stas Antr opov | |
| 12802 | ** | |
| 12803 | ** Da te: 01/2 5/2005 | |
| 12804 | ** | |
| 12805 | ********** ********** ********** ********** ********** ********** ********** ********** ********** ********** ********** ********** ********** ********** ********** ********** ********** ***** | |
| 12806 | ** Mo dified: | |
| 12807 | ** Da te Name Descriptio n | |
| 12808 | ** -- ---------- - -------- - ---- ---------- --- | |
| 12809 | ** 07 /19/05 C. Tay lor Added call to fnOrde redUnitCro ssmatchRes ultCode to ensure la test cross match resu lt is used | |
| 12810 | ** (there may be repeat XMs) | |
| 12811 | ** 06 /29/05 N. Pat erson ** Reviewe d for comp liance wit h database standards and recom mendations ** | |
| 12812 | ** Header add ed, Added NOCOUNT, S pecified t able owner s, Removed comments, UPPERCASE D SQL | |
| 12813 | ** 08 /21/05 S. Ant ropov ** Reviewe d for comp liance wit h database standards and recom mendations ** | |
| 12814 | ** Performed secondary review dur ing the co de promoti on - merge d changes | |
| 12815 | ** 08 /24/05 C. Tay lor Fixed typo introduce d during c ompliance: INNER JOI N | |
| 12816 | ** dbo.Patien tTransfusi onRequirem ent.Patien tTransReq | |
| 12817 | ** 09 /09/05 D. Ask ew Changed JO IN on Pati ent to sel ect either the Final MergeToPat ient if th e patient has one or more | |
| 12818 | ** merges (ch oosing the final mer ge record) or simply the patie nt guid if there are none | |
| 12819 | ** 10 /27/05 C. Jen sen Added code to not ge t ABO/Rh i f from Db conversion . | |
| 12820 | ** 01 /23/06 M. Smi th ** Reviewe d for comp liance wit h database standards and recom mendations ** | |
| 12821 | ** 03 /29/07 D. Ask ew Made chang es for DR 2595, see Assigned a nd crossma tched unit s: changed [Unit!10! expDate] t o use | |
| 12822 | ** BloodUnitM edia.UnitE xpirationD ate rather than Pati entSpecime n.Specimen Expiration Date; chan ged | |
| 12823 | ** INNER JOIN on dbo.Pa tientSpeci men to LEF T JOIN; ad ded AND co ndition fo r | |
| 12824 | ** dbo.Patien tSpecimen. SpecimenEx pirationDa te, which will be NU LL for cer tain blood product t ypes | |
| 12825 | ** 07 /13/07 Lohse Adding dat etime conv ersion for CR2253. | |
| 12826 | ** 05 /13/08 M. Smi th Changed @V istaPatien tID to BIG INT dataty pe (CR 243 1) | |
| 12827 | ** 06 /04/08 K. Adu -Poku ** Reviewe d for comp liance wit h database standards and recom mendations ** | |
| 12828 | ** 01 /04/10 M. Smi th Changed to get and c heck UnitS tatusCode from the B loodUnitSt atusCodeCu rrent tabl e. (CR 117 4) | |
| 12829 | ** 01 /25/10 K. Adu -Poku ** Reviewe d for comp liance wit h database standards and recom mendations ** | |
| 12830 | ** 02 /18/10 D. Ask ew Added noBl oodRequire dIndicator to SELECT (CR 2742) . | |
| 12831 | ** 06 /24/10 D. Ask ew Reformatte d SQL; rem oved merge code; add ed product Code to SE LECT (CR 2 806). | |
| 12832 | ** 07 /18/11 K. Dob ranowski Modified J OIN statem ents for P atientTran sfusion re cord (CR 2 901) | |
| 12833 | ** 07 /28/11 D. Ask ew Added AND Msbos.Reco rdStatusCo de <> 'X' to WHERE c lause for MSBOS entr ies. (CR 3 078) | |
| 12834 | ** 10 /14/11 M. Smi th Added AND MsbosCompo nentClass. RecordStat usCode <> 'X' to WHE RE clause for MSBOS entries | |
| 12835 | ** and Msbos .DivisionC ode = @Div isionCode for surger y names. ( CR 3156) | |
| 12836 | ** 11 /14/11 K. Adu -Poku ** Reviewe d for comp liance wit h database standards and recom mendations ** | |
| 12837 | ** 07 /28/16 K. Adu -Poku Added Surg ery!19!nam e to the o rder by li st. (Defec t 334314) | |
| 12838 | ** 07 /28/16 K. Adu -Poku Added stat ement to S ELECT Divi sionCode f rom Associ atedInstit ution. (De fect 21052 0) | |
| 12839 | ** 02 /14/17 K. Adu -Poku ** Reviewe d for comp liance wit h database standards and recom mendations ** | |
| 12840 | ** 03 /17/17 K. Adu -Poku Fixed revi ew comment about opt imization and the us e of patie ntguid ins tead of vi stapatient id and | |
| 12841 | ** repl aced @pati entfoundfl ag with @P atientGuid IS NOT NU LL(Task 48 2735). | |
| 12842 | ** 03 /23/17 G. Loh se ** Reviewe d for comp liance wit h database standards and recom mendations ** | |
| 12843 | ********** ********** ********** ********** ********** ********** ********** ********** ********** ********** ********** ********** ********** ********** ********** ********** ********** *****/ | |
| 12844 | CREATE PRO CEDURE [db o].[spVist aGetXmlBlo odBankData ] | |
| 12845 | ( | |
| 12846 | @v istapatien tid BIGINT, | |
| 12847 | @d ivisioncod e CHAR(5 ) | |
| 12848 | ) | |
| 12849 | AS | |
| 12850 | ||
| 12851 | SET NOCOUN T ON | |
| 12852 | ||
| 12853 | DECLARE @p atientguid AS UNIQUE IDENTIFIER ; | |
| 12854 | DECLARE @a bo AS VarC har(2); | |
| 12855 | DECLARE @r h AS VarCh ar(2); | |
| 12856 | ||
| 12857 | /*** *** Defect 210520: i nclude ass ociated in stitutions (convert parameter from assoc iated divi sion to a regular di vision) - Revised pe r Optimiza tion comme nt*******/ | |
| 12858 | ||
| 12859 | SE LECT @divi sioncode = Associate dInstituti on.Divisio nCode FROM dbo.Assoc iatedInsti tution WHE RE RecordS tatusCode = 'A' | |
| 12860 | AND Institutio nDivisionC ode = @div isioncode | |
| 12861 | ||
| 12862 | SE LECT @pati entguid = (SELECT TO P 1 Patien tGuid FROM dbo.Patie nt P WHERE P.VistaPa tientID = @vistapati entid); | |
| 12863 | ||
| 12864 | SE LECT @abo = ABO, @rh = Rh FROM dbo.fnGet ABORhTable (@patientg uid) WHERE TestDivis ion IS NOT NULL; | |
| 12865 | ||
| 12866 | ||
| 12867 | -- <BloodBan k> | |
| 12868 | SE LECT 1 AS T ag, | |
| 12869 | NULL AS Par ent, | |
| 12870 | 1 AS [B loodbank!1 !GroupOrde r!hide], | |
| 12871 | NULL AS [C omponent!1 3!GroupOrd er!hide], | |
| 12872 | NULL AS [B loodbank!1 ], | |
| 12873 | NULL AS [P atient!2!d fn], | |
| 12874 | NULL AS [P atient!2!f irstName], | |
| 12875 | NULL AS [P atient!2!l astName], | |
| 12876 | NULL AS [P atient!2!s sn], | |
| 12877 | NULL AS [P atient!2!a bo], | |
| 12878 | NULL AS [P atient!2!r h], | |
| 12879 | NULL AS [T ransfusion Reactions! 3], | |
| 12880 | NULL AS [T ransfusion Reaction!4 !type], | |
| 12881 | NULL AS [T ransfusion Reaction!4 !date], | |
| 12882 | NULL AS [T ransfusion Requiremen ts!5], | |
| 12883 | NULL AS [T ransfusion Requiremen t!6!modifi er], | |
| 12884 | NULL AS [A ntibodies! 7], | |
| 12885 | NULL AS [A ntibody!8! name], | |
| 12886 | NULL AS [U nits!9], | |
| 12887 | NULL AS [U nit!10!sta tus], | |
| 12888 | NULL AS [U nit!10!id] , | |
| 12889 | NULL AS [U nit!10!pro duct], | |
| 12890 | NULL AS [U nit!10!pro ductCode], | |
| 12891 | NULL AS [U nit!10!loc ation], | |
| 12892 | NULL AS [U nit!10!exp Date], | |
| 12893 | NULL AS [S pecimen!11 !expDate], | |
| 12894 | NULL AS [S pecimen!11 !uid], | |
| 12895 | NULL AS [C omponents! 12], | |
| 12896 | NULL AS [C omponent!1 3!name], | |
| 12897 | NULL AS [C omponent!1 3!id], | |
| 12898 | NULL AS [C omponent!1 3!specimen ], | |
| 12899 | NULL AS [L abTests!14 ], | |
| 12900 | NULL AS [L abTest!15! id], | |
| 12901 | NULL AS [L abTest!15! name], | |
| 12902 | NULL AS [M sbosList!1 6], | |
| 12903 | NULL AS [M sbos!17!na me], | |
| 12904 | NULL AS [M sbos!17!th reshold], | |
| 12905 | NULL AS [S urgeries!1 8], | |
| 12906 | NULL AS [S urgery!19! name], | |
| 12907 | NULL AS [S urgery!19! noBloodReq uiredIndic ator] | |
| 12908 | ||
| 12909 | UN ION ALL | |
| 12910 | ||
| 12911 | -- <Patient dfn="" fir stName="" lastName=" " ssn="" a bo="" rh=" "> | |
| 12912 | SE LECT 2 AS T ag, | |
| 12913 | 1 AS Par ent, | |
| 12914 | 2 AS [B loodbank!1 !GroupOrde r!hide], | |
| 12915 | NULL AS [C omponent!1 3!GroupOrd er!hide], | |
| 12916 | NULL AS [B loodbank!1 ], | |
| 12917 | P.Vist aPatientID AS [Pati ent!2!dfn] , | |
| 12918 | P.Pati entFirstNa me AS [P atient!2!f irstName], | |
| 12919 | P.Pati entLastNam e AS [P atient!2!l astName], | |
| 12920 | P.Pati entSSN AS [P atient!2!s sn], | |
| 12921 | @abo AS [Pa tient!2!ab o], | |
| 12922 | @rh AS [Pa tient!2!rh ], | |
| 12923 | NULL AS [T ransfusion Reactions! 3], | |
| 12924 | NULL AS [T ransfusion Reaction!4 !type], | |
| 12925 | NULL AS [T ransfusion Reaction!4 !date], | |
| 12926 | NULL AS [T ransfusion Requiremen ts!5], | |
| 12927 | NULL AS [T ransfusion Requiremen t!6!modifi er], | |
| 12928 | NULL AS [A ntibodies! 7], | |
| 12929 | NULL AS [A ntibody!8! name], | |
| 12930 | NULL AS [U nits!9], | |
| 12931 | NULL AS [U nit!10!sta tus], | |
| 12932 | NULL AS [U nit!10!id] , | |
| 12933 | NULL AS [U nit!10!pro duct], | |
| 12934 | NULL AS [U nit!10!pro ductCode], | |
| 12935 | NULL AS [U nit!10!loc ation], | |
| 12936 | NULL AS [U nit!10!exp Date], | |
| 12937 | NULL AS [S pecimen!11 !expDate], | |
| 12938 | NULL AS [S pecimen!11 !uid], | |
| 12939 | NULL AS [C omponents! 12], | |
| 12940 | NULL AS [C omponent!1 3!name], | |
| 12941 | NULL AS [C omponent!1 3!id], | |
| 12942 | NULL AS [C omponent!1 3!specimen ], | |
| 12943 | NULL AS [L abTests!14 ], | |
| 12944 | NULL AS [L abTest!15! id], | |
| 12945 | NULL AS [L abTest!15! name], | |
| 12946 | NULL AS [M sbosList!1 6], | |
| 12947 | NULL AS [M sbos!17!na me], | |
| 12948 | NULL AS [M sbos!17!th reshold], | |
| 12949 | NULL AS [S urgeries!1 8], | |
| 12950 | NULL AS [S urgery!19! name], | |
| 12951 | NULL AS [S urgery!19! noBloodReq uiredIndic ator] | |
| 12952 | ||
| 12953 | FR OM | |
| 12954 | dbo. Patient P | |
| 12955 | ||
| 12956 | WH ERE | |
| 12957 | P.Pa tientGuid = @patient guid | |
| 12958 | ||
| 12959 | UN ION ALL | |
| 12960 | ||
| 12961 | -- <Transfus ionReactio ns> | |
| 12962 | SE LECT 3 AS T ag, | |
| 12963 | 2 AS Par ent, | |
| 12964 | 2 AS [B loodbank!1 !GroupOrde r!hide], | |
| 12965 | NULL AS [C omponent!1 3!GroupOrd er!hide], | |
| 12966 | NULL AS [B loodbank!1 ], | |
| 12967 | NULL AS [P atient!2!d fn], | |
| 12968 | NULL AS [P atient!2!f irstName], | |
| 12969 | NULL AS [P atient!2!l astName], | |
| 12970 | NULL AS [P atient!2!s sn], | |
| 12971 | NULL AS [P atient!2!a bo], | |
| 12972 | NULL AS [P atient!2!r h], | |
| 12973 | NULL AS [T ransfusion Reactions! 3], | |
| 12974 | NULL AS [T ransfusion Reaction!4 !type], | |
| 12975 | NULL AS [T ransfusion Reaction!4 !date], | |
| 12976 | NULL AS [T ransfusion Requiremen ts!5], | |
| 12977 | NULL AS [T ransfusion Requiremen t!6!modifi er], | |
| 12978 | NULL AS [A ntibodies! 7], | |
| 12979 | NULL AS [A ntibody!8! name], | |
| 12980 | NULL AS [U nits!9], | |
| 12981 | NULL AS [U nit!10!sta tus], | |
| 12982 | NULL AS [U nit!10!id] , | |
| 12983 | NULL AS [U nit!10!pro duct], | |
| 12984 | NULL AS [U nit!10!pro ductCode], | |
| 12985 | NULL AS [U nit!10!loc ation], | |
| 12986 | NULL AS [U nit!10!exp Date], | |
| 12987 | NULL AS [S pecimen!11 !expDate], | |
| 12988 | NULL AS [S pecimen!11 !uid], | |
| 12989 | NULL AS [C omponents! 12], | |
| 12990 | NULL AS [C omponent!1 3!name], | |
| 12991 | NULL AS [C omponent!1 3!id], | |
| 12992 | NULL AS [C omponent!1 3!specimen ], | |
| 12993 | NULL AS [L abTests!14 ], | |
| 12994 | NULL AS [L abTest!15! id], | |
| 12995 | NULL AS [L abTest!15! name], | |
| 12996 | NULL AS [M sbosList!1 6], | |
| 12997 | NULL AS [M sbos!17!na me], | |
| 12998 | NULL AS [M sbos!17!th reshold], | |
| 12999 | NULL AS [S urgeries!1 8], | |
| 13000 | NULL AS [S urgery!19! name], | |
| 13001 | NULL AS [S urgery!19! noBloodReq uiredIndic ator] | |
| 13002 | ||
| 13003 | WH ERE | |
| 13004 | @pat ientguid I S NOT NULL | |
| 13005 | ||
| 13006 | UN ION ALL | |
| 13007 | ||
| 13008 | -- <Transfus ionReactio n type="" date=""> | |
| 13009 | SE LECT DISTI NCT | |
| 13010 | 4 AS Tag , | |
| 13011 | 3 AS Par ent, | |
| 13012 | 2 AS [B loodbank!1 !GroupOrde r!hide], | |
| 13013 | NULL AS [C omponent!1 3!GroupOrd er!hide], | |
| 13014 | NULL AS [B loodbank!1 ], | |
| 13015 | NULL AS [P atient!2!d fn], | |
| 13016 | NULL AS [P atient!2!f irstName], | |
| 13017 | NULL AS [P atient!2!l astName], | |
| 13018 | NULL AS [P atient!2!s sn], | |
| 13019 | NULL AS [P atient!2!a bo], | |
| 13020 | NULL AS [P atient!2!r h], | |
| 13021 | NULL AS [T ransfusion Reactions! 3], | |
| 13022 | TRT.Tr ansfusionR eactionTyp eText AS [Transfusi onReaction !4!type], | |
| 13023 | dbo.fn DateTimeCo nversionTo HL7DateTim e(dbo.fnTi meZoneConv ersionDate Time( @div isioncode, 0, PTR.No tedDateTim e )) AS [T ransfusion Reaction!4 !date], | |
| 13024 | NULL AS [T ransfusion Requiremen ts!5], | |
| 13025 | NULL AS [T ransfusion Requiremen t!6!modifi er], | |
| 13026 | NULL AS [A ntibodiess !7], | |
| 13027 | NULL AS [A ntibody!8! name], | |
| 13028 | NULL AS [U nits!9], | |
| 13029 | NULL AS [U nit!10!sta tus], | |
| 13030 | NULL AS [U nit!10!id] , | |
| 13031 | NULL AS [U nit!10!pro duct], | |
| 13032 | NULL AS [U nit!10!pro ductCode], | |
| 13033 | NULL AS [U nit!10!loc ation], | |
| 13034 | NULL AS [U nit!10!exp Date], | |
| 13035 | NULL AS [S pecimen!11 !expDate], | |
| 13036 | NULL AS [S pecimen!11 !uid], | |
| 13037 | NULL AS [C omponents! 12], | |
| 13038 | NULL AS [C omponent!1 3!name], | |
| 13039 | NULL AS [C omponent!1 3!id], | |
| 13040 | NULL AS [C omponent!1 3!specimen ], | |
| 13041 | NULL AS [L abTests!14 ], | |
| 13042 | NULL AS [L abTest!15! id], | |
| 13043 | NULL AS [L abTest!15! name], | |
| 13044 | NULL AS [M sbosList!1 6], | |
| 13045 | NULL AS [M sbos!17!na me], | |
| 13046 | NULL AS [M sbos!17!th reshold], | |
| 13047 | NULL AS [S urgeries!1 8], | |
| 13048 | NULL AS [S urgery!19! name], | |
| 13049 | NULL AS [S urgery!19! noBloodReq uiredIndic ator] | |
| 13050 | ||
| 13051 | FR OM | |
| 13052 | dbo. PatientTra nsfusionRe action PTR | |
| 13053 | ||
| 13054 | JOIN dbo.Patie nt P | |
| 13055 | ON P.P atientGuid = PTR.Pat ientGuid | |
| 13056 | ||
| 13057 | LEFT JOIN dbo. Transfusio nReactionT ype TRT | |
| 13058 | ON TRT .Transfusi onReaction TypeCode = PTR.Trans fusionReac tionTypeCo de | |
| 13059 | ||
| 13060 | WH ERE | |
| 13061 | P.Pa tientGuid = @patient guid | |
| 13062 | ||
| 13063 | AND PTR.Record StatusCode NOT IN (' X','I','E' ) | |
| 13064 | ||
| 13065 | UN ION ALL | |
| 13066 | ||
| 13067 | -- <Transfus ionRequire ments> | |
| 13068 | SE LECT 5 AS T ag, | |
| 13069 | 2 AS Par ent, | |
| 13070 | 2 AS [B loodbank!1 !GroupOrde r!hide], | |
| 13071 | NULL AS [C omponent!1 3!GroupOrd er!hide], | |
| 13072 | NULL AS [B loodbank!1 ], | |
| 13073 | NULL AS [P atient!2!d fn], | |
| 13074 | NULL AS [P atient!2!f irstName], | |
| 13075 | NULL AS [P atient!2!l astName], | |
| 13076 | NULL AS [P atient!2!s sn], | |
| 13077 | NULL AS [P atient!2!a bo], | |
| 13078 | NULL AS [P atient!2!r h], | |
| 13079 | NULL AS [T ransfusion Reactions! 3], | |
| 13080 | NULL AS [T ransfusion Reaction!4 !type], | |
| 13081 | NULL AS [T ransfusion Reaction!4 !date], | |
| 13082 | NULL AS [T ransfusion Requiremen ts!5], | |
| 13083 | NULL AS [T ransfusion Requiremen t!6!modifi er], | |
| 13084 | NULL AS [A ntibodies! 7], | |
| 13085 | NULL AS [A ntibody!8! name], | |
| 13086 | NULL AS [U nits!9], | |
| 13087 | NULL AS [U nit!10!sta tus], | |
| 13088 | NULL AS [U nit!10!id] , | |
| 13089 | NULL AS [U nit!10!pro duct], | |
| 13090 | NULL AS [U nit!10!pro ductCode], | |
| 13091 | NULL AS [U nit!10!loc ation], | |
| 13092 | NULL AS [U nit!10!exp Date], | |
| 13093 | NULL AS [S pecimen!11 !expDate], | |
| 13094 | NULL AS [S pecimen!11 !uid], | |
| 13095 | NULL AS [C omponents! 12], | |
| 13096 | NULL AS [C omponent!1 3!name], | |
| 13097 | NULL AS [C omponent!1 3!id], | |
| 13098 | NULL AS [C omponent!1 3!specimen ], | |
| 13099 | NULL AS [L abTests!14 ], | |
| 13100 | NULL AS [L abTest!15! id], | |
| 13101 | NULL AS [L abTest!15! name], | |
| 13102 | NULL AS [M sbosList!1 6], | |
| 13103 | NULL AS [M sbos!17!na me], | |
| 13104 | NULL AS [M sbos!17!th reshold], | |
| 13105 | NULL AS [S urgeries!1 8], | |
| 13106 | NULL AS [S urgery!19! name], | |
| 13107 | NULL AS [S urgery!19! noBloodReq uiredIndic ator] | |
| 13108 | ||
| 13109 | WH ERE | |
| 13110 | @pat ientguid I S NOT NULL | |
| 13111 | ||
| 13112 | UN ION ALL | |
| 13113 | ||
| 13114 | -- <Transfus ionRequire ment modif ier="" > | |
| 13115 | SE LECT 6 AS Tag, | |
| 13116 | 5 AS Parent, | |
| 13117 | 2 AS [Bloodban k!1!GroupO rder!hide] , | |
| 13118 | NULL AS [Componen t!13!Group Order!hide ], | |
| 13119 | NULL AS [Bloodban k!1], | |
| 13120 | NULL AS [Patient! 2!dfn], | |
| 13121 | NULL AS [Patient! 2!firstNam e], | |
| 13122 | NULL AS [Patient! 2!lastName ], | |
| 13123 | NULL AS [Patient! 2!ssn], | |
| 13124 | NULL AS [Patient! 2!abo], | |
| 13125 | NULL AS [Patient! 2!rh], | |
| 13126 | NULL AS [Transfus ionReactio ns!3], | |
| 13127 | NULL AS [Transfus ionReactio n!4!type], | |
| 13128 | NULL AS [Transfus ionReactio n!4!date], | |
| 13129 | NULL AS [Transfus ionRequire ments!5], | |
| 13130 | dbo.Pa tientTrans fusionRequ irement.Tr ansfusionR equirement Text AS [Transfus ionRequire ment!6!mod ifier], | |
| 13131 | NULL AS [Antibodi es!7], | |
| 13132 | NULL AS [Antibody !8!name], | |
| 13133 | NULL AS [Units!9] , | |
| 13134 | NULL AS [Unit!10! status], | |
| 13135 | NULL AS [Unit!10! id], | |
| 13136 | NULL AS [Unit!10! product], | |
| 13137 | NULL AS [Unit!10! productCod e], | |
| 13138 | NULL AS [Unit!10! location], | |
| 13139 | NULL AS [Unit!10! expDate], | |
| 13140 | NULL AS [Specimen !11!expDat e], | |
| 13141 | NULL AS [Specimen !11!uid], | |
| 13142 | NULL AS [Componen ts!12], | |
| 13143 | NULL AS [Componen t!13!name] , | |
| 13144 | NULL AS [Componen t!13!id], | |
| 13145 | NULL AS [Componen t!13!speci men], | |
| 13146 | NULL AS [LabTests !14], | |
| 13147 | NULL AS [LabTest! 15!id], | |
| 13148 | NULL AS [LabTest! 15!name], | |
| 13149 | NULL AS [MsbosLis t!16], | |
| 13150 | NULL AS [Msbos!17 !name], | |
| 13151 | NULL AS [Msbos!17 !threshold ], | |
| 13152 | NULL AS [Surgerie s!18], | |
| 13153 | NULL AS [Surgery! 19!name], | |
| 13154 | NULL AS [Surgery! 19!noBlood RequiredIn dicator] | |
| 13155 | ||
| 13156 | ||
| 13157 | FR OM | |
| 13158 | dbo. Patient | |
| 13159 | ||
| 13160 | INNE R JOIN dbo .PatientTr ansfusionR equirement | |
| 13161 | ON dbo .Patient.P atientGuid = dbo.Pat ientTransf usionRequi rement.Pat ientGuid | |
| 13162 | ||
| 13163 | WH ERE | |
| 13164 | dbo. Patient.Pa tientGuid = @patient guid | |
| 13165 | ||
| 13166 | AND dbo.Patien tTransfusi onRequirem ent.Patien tGUID = db o.Patient. PatientGUI D | |
| 13167 | ||
| 13168 | AND dbo.Patien tTransfusi onRequirem ent.Record StatusCode IN ('A', 'C', 'H' ) | |
| 13169 | ||
| 13170 | -- T he followi ng line Ad dresses CR 840 | |
| 13171 | AND dbo.Patien tTransfusi onRequirem ent.Transf usionRequi rementCate goryCode I N ('AN', ' CR') | |
| 13172 | ||
| 13173 | UN ION ALL | |
| 13174 | ||
| 13175 | -- <Antibodi es> | |
| 13176 | SE LECT 7 AS T ag, | |
| 13177 | 2 AS Par ent, | |
| 13178 | 2 AS [Bl oodbank!1! GroupOrder !hide], | |
| 13179 | NULL AS [Co mponent!13 !GroupOrde r!hide], | |
| 13180 | NULL AS [Bl oodbank!1] , | |
| 13181 | NULL AS [Pa tient!2!df n], | |
| 13182 | NULL AS [Pa tient!2!fi rstName], | |
| 13183 | NULL AS [Pa tient!2!la stName], | |
| 13184 | NULL AS [Pa tient!2!ss n], | |
| 13185 | NULL AS [Pa tient!2!ab o], | |
| 13186 | NULL AS [Pa tient!2!rh ], | |
| 13187 | NULL AS [Tr ansfusionR eactions!3 ], | |
| 13188 | NULL AS [Tr ansfusionR eaction!4! type], | |
| 13189 | NULL AS [Tr ansfusionR eaction!4! date], | |
| 13190 | NULL AS [Tr ansfusionR equirement s!5], | |
| 13191 | NULL AS [Tr ansfusionR equirement !6!modifie r], | |
| 13192 | NULL AS [An tibodies!7 ], | |
| 13193 | NULL AS [An tibody!8!n ame], | |
| 13194 | NULL AS [Un its!9], | |
| 13195 | NULL AS [Un it!10!stat us], | |
| 13196 | NULL AS [Un it!10!id], | |
| 13197 | NULL AS [Un it!10!prod uct], | |
| 13198 | NULL AS [Un it!10!prod uctCode], | |
| 13199 | NULL AS [Un it!10!loca tion], | |
| 13200 | NULL AS [Un it!10!expD ate], | |
| 13201 | NULL AS [Sp ecimen!11! expDate], | |
| 13202 | NULL AS [Sp ecimen!11! uid], | |
| 13203 | NULL AS [Co mponents!1 2], | |
| 13204 | NULL AS [Co mponent!13 !name], | |
| 13205 | NULL AS [Co mponent!13 !id], | |
| 13206 | NULL AS [Co mponent!13 !specimen] , | |
| 13207 | NULL AS [La bTests!14] , | |
| 13208 | NULL AS [La bTest!15!i d], | |
| 13209 | NULL AS [La bTest!15!n ame], | |
| 13210 | NULL AS [Ms bosList!16 ], | |
| 13211 | NULL AS [Ms bos!17!nam e], | |
| 13212 | NULL AS [Ms bos!17!thr eshold], | |
| 13213 | NULL AS [Su rgeries!18 ], | |
| 13214 | NULL AS [Su rgery!19!n ame], | |
| 13215 | NULL AS [Su rgery!19!n oBloodRequ iredIndica tor] | |
| 13216 | ||
| 13217 | WH ERE | |
| 13218 | @pat ientguid I S NOT NULL | |
| 13219 | ||
| 13220 | UN ION ALL | |
| 13221 | ||
| 13222 | -- <Antibody name=""> | |
| 13223 | SE LECT DISTI NCT | |
| 13224 | 8 AS Tag , | |
| 13225 | 7 AS Par ent, | |
| 13226 | 2 AS [Bl oodbank!1! GroupOrder !hide], | |
| 13227 | NULL AS [Co mponent!13 !GroupOrde r!hide], | |
| 13228 | NULL AS [Bl oodbank!1] , | |
| 13229 | NULL AS [Pa tient!2!df n], | |
| 13230 | NULL AS [Pa tient!2!fi rstName], | |
| 13231 | NULL AS [Pa tient!2!la stName], | |
| 13232 | NULL AS [Pa tient!2!ss n], | |
| 13233 | NULL AS [Pa tient!2!ab o], | |
| 13234 | NULL AS [Pa tient!2!rh ], | |
| 13235 | NULL AS [Tr ansfusionR eactions!3 ], | |
| 13236 | NULL AS [Tr ansfusionR eaction!4! type], | |
| 13237 | NULL AS [Tr ansfusionR eaction!4! date], | |
| 13238 | NULL AS [Tr ansfusionR equirement s!5], | |
| 13239 | NULL AS [Tr ansfusionR equirement !6!modifie r], | |
| 13240 | NULL AS [An tibodies!7 ], | |
| 13241 | dbo.An tibodyType .AntibodyT ypeName AS [An tibody!8!n ame], | |
| 13242 | NULL AS [Un its!9], | |
| 13243 | NULL AS [Un it!10!stat us], | |
| 13244 | NULL AS [Un it!10!id], | |
| 13245 | NULL AS [Un it!10!prod uct], | |
| 13246 | NULL AS [Un it!10!prod uctCode], | |
| 13247 | NULL AS [Un it!10!loca tion], | |
| 13248 | NULL AS [Un it!10!expD ate], | |
| 13249 | NULL AS [Sp ecimen!11! expDate], | |
| 13250 | NULL AS [Sp ecimen!11! uid], | |
| 13251 | NULL AS [Co mponents!1 2], | |
| 13252 | NULL AS [Co mponent!13 !name], | |
| 13253 | NULL AS [Co mponent!13 !id], | |
| 13254 | NULL AS [Co mponent!13 !specimen] , | |
| 13255 | NULL AS [La bTests!14] , | |
| 13256 | NULL AS [La bTest!15!i d], | |
| 13257 | NULL AS [La bTest!15!n ame], | |
| 13258 | NULL AS [Ms bosList!16 ], | |
| 13259 | NULL AS [Ms bos!17!nam e], | |
| 13260 | NULL AS [Ms bos!17!thr eshold], | |
| 13261 | NULL AS [Su rgeries!18 ], | |
| 13262 | NULL AS [Su rgery!19!n ame], | |
| 13263 | NULL AS [Su rgery!19!n oBloodRequ iredIndica tor] | |
| 13264 | ||
| 13265 | FR OM | |
| 13266 | dbo. Patient | |
| 13267 | ||
| 13268 | INNE R JOIN dbo .PatientTr ansfusionR equirement | |
| 13269 | ON dbo .PatientTr ansfusionR equirement .PatientGU ID = dbo.P atient.Pat ientGUID | |
| 13270 | ||
| 13271 | INNE R JOIN dbo .AntibodyT ype | |
| 13272 | ON dbo .AntibodyT ype.Antibo dyTypeID = dbo. Patie ntTransfus ionRequire ment.Antib odyTypeID | |
| 13273 | ||
| 13274 | WH ERE | |
| 13275 | dbo. Patient.Pa tientGuid = @patient guid | |
| 13276 | ||
| 13277 | AND dbo.Antibo dyType.Ant ibodyTypeI d != 1 | |
| 13278 | ||
| 13279 | AND dbo.Antibo dyType.Ant ibodyTypeI d != 4 | |
| 13280 | ||
| 13281 | AND dbo.Patien tTransfusi onRequirem ent.Record StatusCode IN ('A', 'C', 'H' ) | |
| 13282 | ||
| 13283 | ||
| 13284 | UN ION ALL | |
| 13285 | ||
| 13286 | -- <Units> | |
| 13287 | SE LECT 9 AS T ag, | |
| 13288 | 2 AS Par ent, | |
| 13289 | 2 AS [Bl oodbank!1! GroupOrder !hide], | |
| 13290 | NULL AS [Co mponent!13 !GroupOrde r!hide], | |
| 13291 | NULL AS [Bl oodbank!1] , | |
| 13292 | NULL AS [Pa tient!2!df n], | |
| 13293 | NULL AS [Pa tient!2!fi rstName], | |
| 13294 | NULL AS [Pa tient!2!la stName], | |
| 13295 | NULL AS [Pa tient!2!ss n], | |
| 13296 | NULL AS [Pa tient!2!ab o], | |
| 13297 | NULL AS [Pa tient!2!rh ], | |
| 13298 | NULL AS [Tr ansfusionR eactions!3 ], | |
| 13299 | NULL AS [Tr ansfusionR eaction!4! type], | |
| 13300 | NULL AS [Tr ansfusionR eaction!4! date], | |
| 13301 | NULL AS [Tr ansfusionR equirement s!5], | |
| 13302 | NULL AS [Tr ansfusionR equirement !6!modifie r], | |
| 13303 | NULL AS [An tibodies!7 ], | |
| 13304 | NULL AS [An tibody!8!n ame], | |
| 13305 | NULL AS [Un its!9], | |
| 13306 | NULL AS [Un it!10!stat us], | |
| 13307 | NULL AS [Un it!10!id], | |
| 13308 | NULL AS [Un it!10!prod uct], | |
| 13309 | NULL AS [Un it!10!prod uctCode], | |
| 13310 | NULL AS [Un it!10!loca tion], | |
| 13311 | NULL AS [Un it!10!expD ate], | |
| 13312 | NULL AS [Sp ecimen!11! expDate], | |
| 13313 | NULL AS [Sp ecimen!11! uid], | |
| 13314 | NULL AS [Co mponents!1 2], | |
| 13315 | NULL AS [Co mponent!13 !name], | |
| 13316 | NULL AS [Co mponent!13 !id], | |
| 13317 | NULL AS [Co mponent!13 !specimen] , | |
| 13318 | NULL AS [La bTests!14] , | |
| 13319 | NULL AS [La bTest!15!i d], | |
| 13320 | NULL AS [La bTest!15!n ame], | |
| 13321 | NULL AS [Ms bosList!16 ], | |
| 13322 | NULL AS [Ms bos!17!nam e], | |
| 13323 | NULL AS [Ms bos!17!thr eshold], | |
| 13324 | NULL AS [Su rgeries!18 ], | |
| 13325 | NULL AS [Su rgery!19!n ame], | |
| 13326 | NULL AS [Su rgery!19!n oBloodRequ iredIndica tor] | |
| 13327 | ||
| 13328 | WH ERE | |
| 13329 | @pat ientguid I S NOT NULL | |
| 13330 | ||
| 13331 | UN ION ALL | |
| 13332 | ||
| 13333 | -- Assigned and crossm atched uni ts | |
| 13334 | -- <Unit sta tus="" id= "" product ="" locati on="" expD ate="" /> | |
| 13335 | SE LECT DISTI NCT | |
| 13336 | 10 AS Tag, | |
| 13337 | 9 AS Parent, | |
| 13338 | 2 AS [Bloodb ank!1!Grou pOrder!hid e], | |
| 13339 | NULL AS [Compon ent!13!Gro upOrder!hi de], | |
| 13340 | NULL AS [Bloodb ank!1], | |
| 13341 | NULL AS [Patien t!2!dfn], | |
| 13342 | NULL AS [Patien t!2!firstN ame], | |
| 13343 | NULL AS [Patien t!2!lastNa me], | |
| 13344 | NULL AS [Patien t!2!ssn], | |
| 13345 | NULL AS [Patien t!2!abo], | |
| 13346 | NULL AS [Patien t!2!rh], | |
| 13347 | NULL AS [Transf usionReact ions!3], | |
| 13348 | NULL AS [Transf usionReact ion!4!type ], | |
| 13349 | NULL AS [Transf usionReact ion!4!date ], | |
| 13350 | NULL AS [Transf usionRequi rements!5] , | |
| 13351 | NULL AS [Transf usionRequi rement!6!m odifier], | |
| 13352 | NULL AS [Antibo dies!7], | |
| 13353 | NULL AS [Antibo dy!8!name] , | |
| 13354 | NULL AS [Units! 9], | |
| 13355 | BUSCC. UnitStatus Code AS [Unit!1 0!status], | |
| 13356 | dbo.Bl oodUnit.Ey eReadableU nitId AS [Unit !10!id], | |
| 13357 | dbo.Pr oductType. ProductTyp ePrintName AS [Unit!1 0!product] , | |
| 13358 | -- *** ********** ********** ********** ********** ********** ********** ********** ********** ********** ********** ********** ********** ********** ********** ********** ********** ********** ********** *** | |
| 13359 | CASE d bo.BloodUn it.LabelTy peCode | |
| 13360 | WHEN ' I' THEN | |
| 13361 | dbo.Bloo dUnit.Unit ProductCod e | |
| 13362 | + dbo.Do nationType .DonationT ypeCode CO LLATE SQL_ Latin1_Gen eral_CP1_C S_AS | |
| 13363 | + dbo.Bl oodUnit.Un itDivision Id | |
| 13364 | ELSE | |
| 13365 | dbo.Bloo dUnit.Unit ProductCod e | |
| 13366 | END AS [Unit!1 0!productC ode], | |
| 13367 | -- *** ********** ********** ********** ********** ********** ********** ********** ********** ********** ********** ********** ********** ********** ********** ********** ********** ********** ********** *** | |
| 13368 | dbo.Va mcDivision .DivisionN ame AS [Unit!1 0!location ], | |
| 13369 | dbo.fn DateTimeCo nversionTo HL7DateTim e( | |
| 13370 | dbo.fnTi meZoneConv ersionDate Time( | |
| 13371 | @divisionc ode, 0, Bl oodUnitMed ia.UnitExp irationDat e )) AS [Unit!1 0!expDate] , | |
| 13372 | NULL AS [Specim en!11!expD ate], | |
| 13373 | NULL AS [Specim en!11!uid] , | |
| 13374 | NULL AS [Compon ents!12], | |
| 13375 | NULL AS [Compon ent!13!nam e], | |
| 13376 | NULL AS [Compon ent!13!id] , | |
| 13377 | NULL AS [Compon ent!13!spe cimen], | |
| 13378 | NULL AS [LabTes ts!14], | |
| 13379 | NULL AS [LabTes t!15!id], | |
| 13380 | NULL AS [LabTes t!15!name] , | |
| 13381 | NULL AS [MsbosL ist!16], | |
| 13382 | NULL AS [Msbos! 17!name], | |
| 13383 | NULL AS [Msbos! 17!thresho ld], | |
| 13384 | NULL AS [Surger ies!18], | |
| 13385 | NULL AS [Surger y!19!name] , | |
| 13386 | NULL AS [Surger y!19!noBlo odRequired Indicator] | |
| 13387 | ||
| 13388 | FR OM | |
| 13389 | dbo. BloodUnitS tatusCodeC urrent BUS CC | |
| 13390 | ||
| 13391 | INNE R JOIN dbo .BloodUnit | |
| 13392 | ON BUS CC.BloodUn itGUID = d bo.BloodUn it.BloodUn itGUID | |
| 13393 | ||
| 13394 | LEFT JOIN dbo .PatientTr ansfusion | |
| 13395 | ON dbo .BloodUnit .BloodUnit Guid = dbo .PatientTr ansfusion. BloodUnitG uid AND db o.PatientT ransfusion .RecordSta tusCode = 'A' | |
| 13396 | ||
| 13397 | INNE R JOIN dbo .OrderedUn it | |
| 13398 | ON dbo .BloodUnit .BloodUnit GUID = dbo .OrderedUn it.BloodUn itGUID | |
| 13399 | ||
| 13400 | INNE R JOIN dbo .OrderedCo mponent | |
| 13401 | ON dbo .OrderedUn it.Ordered ComponentG UID = dbo. OrderedCom ponent.Ord eredCompon entGUID | |
| 13402 | ||
| 13403 | LEFT JOIN dbo. PatientSpe cimen | |
| 13404 | ON dbo .OrderedCo mponent.Pa tientSpeci menGuid = dbo.Patien tSpecimen. PatientSpe cimenGuid | |
| 13405 | ||
| 13406 | INNE R JOIN dbo .PatientOr der | |
| 13407 | ON dbo .OrderedCo mponent.Pa tientOrder GUID = dbo .PatientOr der.Patien tOrderGUID | |
| 13408 | ||
| 13409 | INNE R JOIN dbo .PatientTr eatment | |
| 13410 | ON dbo .PatientOr der.Patien tTreatment GUID = dbo .PatientTr eatment.Pa tientTreat mentGUID | |
| 13411 | ||
| 13412 | INNE R JOIN dbo .Patient | |
| 13413 | ON dbo .PatientTr eatment.Pa tientGUID = dbo.Pati ent.Patien tGUID | |
| 13414 | ||
| 13415 | INNE R JOIN dbo .BloodProd uct | |
| 13416 | ON dbo .BloodUnit .BloodProd uctGUID = dbo.BloodP roduct.Blo odProductG UID | |
| 13417 | ||
| 13418 | INNE R JOIN dbo .ProductTy pe | |
| 13419 | ON db o.BloodPro duct.Produ ctTypeCode = dbo.Pro ductType.P roductType Code | |
| 13420 | ||
| 13421 | INNE R JOIN dbo .VamcDivis ion | |
| 13422 | ON db o.BloodUni t.Division Code = dbo .VamcDivis ion.Divisi onCode | |
| 13423 | ||
| 13424 | INNE R JOIN dbo .BloodUnit Media | |
| 13425 | ON dbo .BloodUnit .BloodUnit GUID = dbo .BloodUnit Media.Bloo dUnitGUID | |
| 13426 | ||
| 13427 | INNE R JOIN dbo .DonationT ype | |
| 13428 | ON dbo .BloodUnit .DonationT ypeId = db o.Donation Type.Donat ionTypeId | |
| 13429 | ||
| 13430 | WH ERE | |
| 13431 | ||
| 13432 | dbo. Patient.Pa tientGuid = @patient guid | |
| 13433 | ||
| 13434 | AND BUSCC.Unit StatusCode IN ( 'S', 'C' ) | |
| 13435 | ||
| 13436 | AND dbo.Patien tTransfusi on.Transfu sionStartD ateTime IS NULL | |
| 13437 | ||
| 13438 | AND | |
| 13439 | ( | |
| 13440 | dbo.Pa tientSpeci men.Specim enExpirati onDate IS NULL | |
| 13441 | OR dbo .PatientSp ecimen.Spe cimenExpir ationDate IS NOT NUL L AND dbo. PatientSpe cimen.Spec imenExpira tionDate > GETUTCDAT E() | |
| 13442 | ) | |
| 13443 | ||
| 13444 | AND dbo.Ordere dUnit.Rele aseDate IS NULL | |
| 13445 | ||
| 13446 | AND dbo.Ordere dUnit.Sele ctedDate I S NOT NULL | |
| 13447 | ||
| 13448 | AND ((dbo.fnOr deredUnitC rossmatchR esultCode( OrderedUni t.OrderedU nitGuid) I N ('C', 'E ', 'G')) O R (Ordered Unit.Cross matchResul tCode IS N ULL)) | |
| 13449 | ||
| 13450 | UN ION ALL | |
| 13451 | ||
| 13452 | -- Autologou s units | |
| 13453 | -- <Unit sta tus="" id= "" product ="" locati on="" expD ate="" /> | |
| 13454 | SE LECT DISTI NCT | |
| 13455 | 10 AS Tag, | |
| 13456 | 9 AS Parent, | |
| 13457 | 2 AS [Bloodb ank!1!Grou pOrder!hid e], | |
| 13458 | NULL AS [Compon ent!13!Gro upOrder!hi de], | |
| 13459 | NULL AS [Bloodb ank!1], | |
| 13460 | NULL AS [Patien t!2!dfn], | |
| 13461 | NULL AS [Patien t!2!firstN ame], | |
| 13462 | NULL AS [Patien t!2!lastNa me], | |
| 13463 | NULL AS [Patien t!2!ssn], | |
| 13464 | NULL AS [Patien t!2!abo], | |
| 13465 | NULL AS [Patien t!2!rh], | |
| 13466 | NULL AS [Transf usionReact ions!3], | |
| 13467 | NULL AS [Transf usionReact ion!4!type ], | |
| 13468 | NULL AS [Transf usionReact ion!4!date ], | |
| 13469 | NULL AS [Transf usionRequi rements!5] , | |
| 13470 | NULL AS [Transf usionRequi rement!6!m odifier], | |
| 13471 | NULL AS [Antibo dies!7], | |
| 13472 | NULL AS [Antibo dy!8!name] , | |
| 13473 | NULL AS [Units! 9], | |
| 13474 | dbo.Do nationType .Restricti onTypeCode AS [Unit!1 0!status], | |
| 13475 | dbo.Bl oodUnit.Ey eReadableU nitId AS [Unit !10!id], | |
| 13476 | dbo.Pr oductType. ProductTyp ePrintName AS [Unit!1 0!product] , | |
| 13477 | -- *** ********** ********** ********** ********** ********** ********** ********** ********** ********** ********** ********** ********** ********** ********** ********** ********** ********** ********** *** | |
| 13478 | CASE d bo.BloodUn it.LabelTy peCode | |
| 13479 | WHEN ' I' THEN | |
| 13480 | dbo.Bloo dUnit.Unit ProductCod e | |
| 13481 | + dbo.Do nationType .DonationT ypeCode CO LLATE SQL_ Latin1_Gen eral_CP1_C S_AS | |
| 13482 | + dbo.Bl oodUnit.Un itDivision Id | |
| 13483 | ELSE | |
| 13484 | dbo.Bloo dUnit.Unit ProductCod e | |
| 13485 | END AS [Unit!1 0!productC ode], | |
| 13486 | -- *** ********** ********** ********** ********** ********** ********** ********** ********** ********** ********** ********** ********** ********** ********** ********** ********** ********** ********** *** | |
| 13487 | dbo.Va mcDivision .DivisionN ame AS [Unit!1 0!location ], | |
| 13488 | dbo.fn DateTimeCo nversionTo HL7DateTim e( | |
| 13489 | dbo.fnTi meZoneConv ersionDate Time( | |
| 13490 | @divisionc ode, 0, Bl oodUnitMed ia.UnitExp irationDat e )) AS [Unit!1 0!expDate] , | |
| 13491 | NULL AS [Specim en!11!expD ate], | |
| 13492 | NULL AS [Specim en!11!uid] , | |
| 13493 | NULL AS [Compon ents!12], | |
| 13494 | NULL AS [Compon ent!13!nam e], | |
| 13495 | NULL AS [Compon ent!13!id] , | |
| 13496 | NULL AS [Compon ent!13!spe cimen], | |
| 13497 | NULL AS [LabTes ts!14], | |
| 13498 | NULL AS [LabTes t!15!id], | |
| 13499 | NULL AS [LabTes t!15!name] , | |
| 13500 | NULL AS [MsbosL ist!16], | |
| 13501 | NULL AS [Msbos! 17!name], | |
| 13502 | NULL AS [Msbos! 17!thresho ld], | |
| 13503 | NULL AS [Surger ies!18], | |
| 13504 | NULL AS [Surger y!19!name] , | |
| 13505 | NULL AS [Surger y!19!noBlo odRequired Indicator] | |
| 13506 | ||
| 13507 | FR OM | |
| 13508 | dbo. DonationTy pe | |
| 13509 | ||
| 13510 | INNE R JOIN dbo .BloodUnit | |
| 13511 | ON dbo .DonationT ype.Donati onTypeId = dbo.Blood Unit.Donat ionTypeId | |
| 13512 | ||
| 13513 | INNE R JOIN dbo .BloodUnit Media | |
| 13514 | ON dbo .BloodUnit .BloodUnit GUID = dbo .BloodUnit Media.Bloo dUnitGUID | |
| 13515 | ||
| 13516 | LEFT OUTER JOI N dbo.Pati entTransfu sion | |
| 13517 | ON dbo .BloodUnit .BloodUnit Guid = dbo .PatientTr ansfusion. BloodUnitG uid AND db o.PatientT ransfusion .RecordSta tusCode = 'A' | |
| 13518 | ||
| 13519 | INNE R JOIN dbo .OrderedUn it | |
| 13520 | ON dbo .BloodUnit .BloodUnit GUID = dbo .OrderedUn it.BloodUn itGUID | |
| 13521 | ||
| 13522 | INNE R JOIN dbo .Patient | |
| 13523 | ON dbo .BloodUnit Media.Dire ctedPatien tGUID = db o.Patient. PatientGUI D | |
| 13524 | ||
| 13525 | INNE R JOIN dbo .BloodProd uct | |
| 13526 | ON dbo .BloodUnit .BloodProd uctGUID = dbo.BloodP roduct.Blo odProductG UID | |
| 13527 | ||
| 13528 | INNE R JOIN dbo .ProductTy pe | |
| 13529 | ON dbo .BloodProd uct.Produc tTypeCode = dbo.Prod uctType.Pr oductTypeC ode | |
| 13530 | ||
| 13531 | INNE R JOIN dbo .VamcDivis ion | |
| 13532 | ON dbo .BloodUnit .DivisionC ode = dbo. VamcDivisi on.Divisio nCode | |
| 13533 | ||
| 13534 | WH ERE | |
| 13535 | dbo. Patient.Pa tientGuid = @patient guid | |
| 13536 | ||
| 13537 | AND dbo.Donati onType.Res trictionTy peCode IN ('A', 'D') | |
| 13538 | ||
| 13539 | AND dbo.BloodU nitMedia.U nitExpirat ionDate > GETUTCDATE () | |
| 13540 | ||
| 13541 | AND PatientTra nsfusion.T ransfusion StartDateT ime IS NUL L | |
| 13542 | ||
| 13543 | AND dbo.Ordere dUnit.Rele aseDate IS NULL | |
| 13544 | ||
| 13545 | AND dbo.Ordere dUnit.Sele ctedDate I S NOT NULL | |
| 13546 | ||
| 13547 | AND ((dbo.Orde redUnit.Cr ossmatchRe sultCode I N ('C', 'G ')) OR (db o.OrderedU nit.Crossm atchResult Code IS NU LL)) | |
| 13548 | ||
| 13549 | UN ION ALL | |
| 13550 | ||
| 13551 | -- <Specimen expDate=" " uid="" / > | |
| 13552 | SE LECT DISTI NCT | |
| 13553 | 11 AS Tag , | |
| 13554 | 2 AS Par ent, | |
| 13555 | 2 AS [Bl oodbank!1! GroupOrder !hide], | |
| 13556 | NULL AS [Co mponent!13 !GroupOrde r!hide], | |
| 13557 | NULL AS [Bl oodbank!1] , | |
| 13558 | NULL AS [Pa tient!2!df n], | |
| 13559 | NULL AS [Pa tient!2!fi rstName], | |
| 13560 | NULL AS [Pa tient!2!la stName], | |
| 13561 | NULL AS [Pa tient!2!ss n], | |
| 13562 | NULL AS [Pa tient!2!ab o], | |
| 13563 | NULL AS [Pa tient!2!rh ], | |
| 13564 | NULL AS [Tr ansfusionR eactions!3 ], | |
| 13565 | NULL AS [Tr ansfusionR eaction!4! type], | |
| 13566 | NULL AS [Tr ansfusionR eaction!4! date], | |
| 13567 | NULL AS [Tr ansfusionR equirement s!5], | |
| 13568 | NULL AS [Tr ansfusionR equirement !6!modifie r], | |
| 13569 | NULL AS [An tibodies!7 ], | |
| 13570 | NULL AS [An tibody!8!n ame], | |
| 13571 | NULL AS [Un its!9], | |
| 13572 | NULL AS [Un it!10!stat us], | |
| 13573 | NULL AS [Un it!10!id], | |
| 13574 | NULL AS [Un it!10!prod uct], | |
| 13575 | NULL AS [Un it!10!prod uctCode], | |
| 13576 | NULL AS [Un it!10!loca tion], | |
| 13577 | NULL AS [Un it!10!expD ate], | |
| 13578 | dbo.fn DateTimeCo nversionTo HL7DateTim e( | |
| 13579 | dbo.fnTi meZoneConv ersionDate Time( | |
| 13580 | @divisionc ode, 0, Pa tientSpeci men.Specim enExpirati onDate )) AS [Sp ecimen!11! expDate], | |
| 13581 | dbo.Pa tientSpeci men.Specim enUID AS [ Specimen!1 1!uid], | |
| 13582 | NULL AS [Co mponents!1 2], | |
| 13583 | NULL AS [Co mponent!13 !name], | |
| 13584 | NULL AS [Co mponent!13 !id], | |
| 13585 | NULL AS [Co mponent!13 !specimen] , | |
| 13586 | NULL AS [La bTests!14] , | |
| 13587 | NULL AS [La bTest!15!i d], | |
| 13588 | NULL AS [La bTest!15!n ame], | |
| 13589 | NULL AS [Ms bosList!16 ], | |
| 13590 | NULL AS [Ms bos!17!nam e], | |
| 13591 | NULL AS [Ms bos!17!thr eshold], | |
| 13592 | NULL AS [Su rgeries!18 ], | |
| 13593 | NULL AS [Su rgery!19!n ame], | |
| 13594 | NULL AS [Su rgery!19!n oBloodRequ iredIndica tor] | |
| 13595 | ||
| 13596 | FR OM | |
| 13597 | dbo. PatientSpe cimen | |
| 13598 | ||
| 13599 | INNE R JOIN dbo .OrderedTe st | |
| 13600 | ON dbo .PatientSp ecimen.Pat ientSpecim enGUID = d bo.Ordered Test.Patie ntSpecimen GUID | |
| 13601 | ||
| 13602 | INNE R JOIN dbo .Orderable Test | |
| 13603 | ON dbo .OrderedTe st.Orderab leTestID = dbo.Order ableTest.O rderableTe stID | |
| 13604 | ||
| 13605 | INNE R JOIN dbo .Patient | |
| 13606 | ON dbo .PatientSp ecimen.Pat ientGUID = dbo. Patie nt.Patient GUID | |
| 13607 | ||
| 13608 | WH ERE | |
| 13609 | dbo. Patient.Pa tientGuid = @patient guid | |
| 13610 | ||
| 13611 | AND dbo.Patien tSpecimen. Unacceptab leSpecimen Indicator <> 1 | |
| 13612 | ||
| 13613 | AND dbo.Ordera bleTest.Cp rsOrderabl eItemID = '1' | |
| 13614 | ||
| 13615 | AND dbo.Patien tSpecimen. SpecimenEx pirationDa te > GETUT CDATE() | |
| 13616 | ||
| 13617 | /* ***** Bria n Tomlin: Added Div ision chec k on Patie ntSpecimen 07-12-200 4 *******/ | |
| 13618 | AND dbo.Patien tSpecimen. DivisionCo de = @divi sioncode | |
| 13619 | ||
| 13620 | ||
| 13621 | UN ION ALL | |
| 13622 | ||
| 13623 | -- <Componen ts> | |
| 13624 | SE LECT | |
| 13625 | 12 AS Tag , | |
| 13626 | 1 AS Par ent, | |
| 13627 | 3 AS [Bl oodbank!1! GroupOrder !hide], | |
| 13628 | NULL AS [Co mponent!13 !GroupOrde r!hide], | |
| 13629 | NULL AS [Bl oodbank!1] , | |
| 13630 | NULL AS [Pa tient!2!df n], | |
| 13631 | NULL AS [Pa tient!2!fi rstName], | |
| 13632 | NULL AS [Pa tient!2!la stName], | |
| 13633 | NULL AS [Pa tient!2!ss n], | |
| 13634 | NULL AS [Pa tient!2!ab o], | |
| 13635 | NULL AS [Pa tient!2!rh ], | |
| 13636 | NULL AS [Tr ansfusionR eactions!3 ], | |
| 13637 | NULL AS [Tr ansfusionR eaction!4! type], | |
| 13638 | NULL AS [Tr ansfusionR eaction!4! date], | |
| 13639 | NULL AS [Tr ansfusionR equirement s!5], | |
| 13640 | NULL AS [Tr ansfusionR equirement !6!modifie r], | |
| 13641 | NULL AS [An tibodies!7 ], | |
| 13642 | NULL AS [An tibody!8!n ame], | |
| 13643 | NULL AS [Un its!9], | |
| 13644 | NULL AS [Un it!10!stat us], | |
| 13645 | NULL AS [Un it!10!id], | |
| 13646 | NULL AS [Un it!10!prod uct], | |
| 13647 | NULL AS [Un it!10!prod uctCode], | |
| 13648 | NULL AS [Un it!10!loca tion], | |
| 13649 | NULL AS [Un it!10!expD ate], | |
| 13650 | NULL AS [Sp ecimen!11! expDate], | |
| 13651 | NULL AS [Sp ecimen!11! uid], | |
| 13652 | NULL AS [Co mponents!1 2], | |
| 13653 | NULL AS [Co mponent!13 !name], | |
| 13654 | NULL AS [Co mponent!13 !id], | |
| 13655 | NULL AS [Co mponent!13 !specimen] , | |
| 13656 | NULL AS [La bTests!14] , | |
| 13657 | NULL AS [La bTest!15!i d], | |
| 13658 | NULL AS [La bTest!15!n ame], | |
| 13659 | NULL AS [Ms bosList!16 ], | |
| 13660 | NULL AS [Ms bos!17!nam e], | |
| 13661 | NULL AS [Ms bos!17!thr eshold], | |
| 13662 | NULL AS [Su rgeries!18 ], | |
| 13663 | NULL AS [Su rgery!19!n ame], | |
| 13664 | NULL AS [Su rgery!19!n oBloodRequ iredIndica tor] | |
| 13665 | ||
| 13666 | UN ION ALL | |
| 13667 | ||
| 13668 | -- <Componen t name="" id="" spec imen=""> | |
| 13669 | SE LECT DISTI NCT | |
| 13670 | 13 AS Tag, | |
| 13671 | 12 AS Paren t, | |
| 13672 | 3 AS [Bloo dbank!1!Gr oupOrder!h ide], | |
| 13673 | NULL AS [Comp onent!13!G roupOrder! hide], | |
| 13674 | NULL AS [Bloo dbank!1], | |
| 13675 | NULL AS [Pati ent!2!dfn] , | |
| 13676 | NULL AS [Pati ent!2!firs tName], | |
| 13677 | NULL AS [Pati ent!2!last Name], | |
| 13678 | NULL AS [Pati ent!2!ssn] , | |
| 13679 | NULL AS [Pati ent!2!abo] , | |
| 13680 | NULL AS [Pati ent!2!rh], | |
| 13681 | NULL AS [Tran sfusionRea ctions!3], | |
| 13682 | NULL AS [Tran sfusionRea ction!4!ty pe], | |
| 13683 | NULL AS [Tran sfusionRea ction!4!da te], | |
| 13684 | NULL AS [Tran sfusionReq uirements! 5], | |
| 13685 | NULL AS [Tran sfusionReq uirement!6 !modifier] , | |
| 13686 | NULL AS [Anti bodies!7], | |
| 13687 | NULL AS [Anti body!8!nam e], | |
| 13688 | NULL AS [Unit s!9], | |
| 13689 | NULL AS [Unit !10!status ], | |
| 13690 | NULL AS [Unit !10!id], | |
| 13691 | NULL AS [Unit !10!produc t], | |
| 13692 | NULL AS [Unit !10!produc tCode], | |
| 13693 | NULL AS [Unit !10!locati on], | |
| 13694 | NULL AS [Unit !10!expDat e], | |
| 13695 | NULL AS [Spec imen!11!ex pDate], | |
| 13696 | NULL AS [Spec imen!11!ui d], | |
| 13697 | NULL AS [Comp onents!12] , | |
| 13698 | CompCl s.Componen tClassShor tName AS [Co mponent!13 !name], | |
| 13699 | RTRIM( CompCls.C prsOrderab leItemID ) AS [Comp onent!13!i d], | |
| 13700 | CompCl sParam.Spe cimenRequi redIndicat or AS [Co mponent!13 !specimen] , | |
| 13701 | NULL AS [LabT ests!14], | |
| 13702 | NULL AS [LabT est!15!id] , | |
| 13703 | NULL AS [LabT est!15!nam e], | |
| 13704 | NULL AS [Msbo sList!16], | |
| 13705 | NULL AS [Msbo s!17!name] , | |
| 13706 | NULL AS [Msbo s!17!thres hold], | |
| 13707 | NULL AS [Surg eries!18], | |
| 13708 | NULL AS [Surg ery!19!nam e], | |
| 13709 | NULL AS [Surg ery!19!noB loodRequir edIndicato r] | |
| 13710 | ||
| 13711 | FR OM | |
| 13712 | dbo. ComponentC lass CompC ls | |
| 13713 | ||
| 13714 | INNE R JOIN dbo .Component ClassParam eter CompC lsParam | |
| 13715 | ON Com pCls.Compo nentClassI D = CompCl sParam.Com ponentClas sID | |
| 13716 | ||
| 13717 | WH ERE | |
| 13718 | Comp Cls.CprsOr derableIte mID IS NOT NULL | |
| 13719 | ||
| 13720 | AND CompClsPar am.Divisio nCode = @d ivisioncod e | |
| 13721 | ||
| 13722 | UN ION ALL | |
| 13723 | ||
| 13724 | -- <LabTests > | |
| 13725 | SE LECT | |
| 13726 | 14 AS Tag , | |
| 13727 | 13 AS Par ent, | |
| 13728 | 3 AS [Bl oodbank!1! GroupOrder !hide], | |
| 13729 | 1 AS [Co mponent!13 !GroupOrde r!hide], | |
| 13730 | NULL AS [Bl oodbank!1] , | |
| 13731 | NULL AS [Pa tient!2!df n], | |
| 13732 | NULL AS [Pa tient!2!fi rstName], | |
| 13733 | NULL AS [Pa tient!2!la stName], | |
| 13734 | NULL AS [Pa tient!2!ss n], | |
| 13735 | NULL AS [Pa tient!2!ab o], | |
| 13736 | NULL AS [Pa tient!2!rh ], | |
| 13737 | NULL AS [Tr ansfusionR eactions!3 ], | |
| 13738 | NULL AS [Tr ansfusionR eaction!4! type], | |
| 13739 | NULL AS [Tr ansfusionR eaction!4! date], | |
| 13740 | NULL AS [Tr ansfusionR equirement s!5], | |
| 13741 | NULL AS [Tr ansfusionR equirement !6!modifie r], | |
| 13742 | NULL AS [An tibodies!7 ], | |
| 13743 | NULL AS [An tibody!8!n ame], | |
| 13744 | NULL AS [Un its!9], | |
| 13745 | NULL AS [Un it!10!stat us], | |
| 13746 | NULL AS [Un it!10!id], | |
| 13747 | NULL AS [Un it!10!prod uct], | |
| 13748 | NULL AS [Un it!10!prod uctCode], | |
| 13749 | NULL AS [Un it!10!loca tion], | |
| 13750 | NULL AS [Un it!10!expD ate], | |
| 13751 | NULL AS [Sp ecimen!11! expDate], | |
| 13752 | NULL AS [Sp ecimen!11! uid], | |
| 13753 | NULL AS [Co mponents!1 2], | |
| 13754 | NULL AS [Co mponent!13 !name], | |
| 13755 | RTRIM( CompCls.C prsOrderab leItemID ) AS [Co mponent!13 !id], | |
| 13756 | NULL AS [Co mponent!13 !specimen] , | |
| 13757 | NULL AS [La bTests!14] , | |
| 13758 | NULL AS [La bTest!15!i d], | |
| 13759 | NULL AS [La bTest!15!n ame], | |
| 13760 | NULL AS [Ms bosList!16 ], | |
| 13761 | NULL AS [Ms bos!17!nam e], | |
| 13762 | NULL AS [Ms bos!17!thr eshold], | |
| 13763 | NULL AS [Su rgeries!18 ], | |
| 13764 | NULL AS [Su rgery!19!n ame], | |
| 13765 | NULL AS [Su rgery!19!n oBloodRequ iredIndica tor] | |
| 13766 | ||
| 13767 | FR OM | |
| 13768 | dbo. ComponentC lass CompC ls | |
| 13769 | ||
| 13770 | INNE R JOIN dbo .Component ClassParam eter CompC lsParam | |
| 13771 | ON Com pCls.Compo nentClassI D = CompCl sParam.Com ponentClas sID | |
| 13772 | ||
| 13773 | WH ERE | |
| 13774 | Comp Cls.CprsOr derableIte mID IS NOT NULL | |
| 13775 | ||
| 13776 | AND CompClsPar am.Divisio nCode = @d ivisioncod e | |
| 13777 | ||
| 13778 | UN ION ALL | |
| 13779 | ||
| 13780 | -- <LabTest id="" name =""> | |
| 13781 | SE LECT DISTI NCT | |
| 13782 | 15 AS Ta g, | |
| 13783 | 14 AS Pa rent, | |
| 13784 | 3 AS [B loodbank!1 !GroupOrde r!hide], | |
| 13785 | 1 AS [C omponent!1 3!GroupOrd er!hide], | |
| 13786 | NULL AS [B loodbank!1 ], | |
| 13787 | NULL AS [P atient!2!d fn], | |
| 13788 | NULL AS [P atient!2!f irstName], | |
| 13789 | NULL AS [P atient!2!l astName], | |
| 13790 | NULL AS [P atient!2!s sn], | |
| 13791 | NULL AS [P atient!2!a bo], | |
| 13792 | NULL AS [P atient!2!r h], | |
| 13793 | NULL AS [T ransfusion Reactions! 3], | |
| 13794 | NULL AS [T ransfusion Reaction!4 !type], | |
| 13795 | NULL AS [T ransfusion Reaction!4 !date], | |
| 13796 | NULL AS [T ransfusion Requiremen ts!5], | |
| 13797 | NULL AS [T ransfusion Requiremen t!6!modifi er], | |
| 13798 | NULL AS [A ntibodies! 7], | |
| 13799 | NULL AS [A ntibody!8! name], | |
| 13800 | NULL AS [U nits!9], | |
| 13801 | NULL AS [U nit!10!sta tus], | |
| 13802 | NULL AS [U nit!10!id] , | |
| 13803 | NULL AS [U nit!10!pro duct], | |
| 13804 | NULL AS [U nit!10!pro ductCode], | |
| 13805 | NULL AS [U nit!10!loc ation], | |
| 13806 | NULL AS [U nit!10!exp Date], | |
| 13807 | NULL AS [S pecimen!11 !expDate], | |
| 13808 | NULL AS [S pecimen!11 !uid], | |
| 13809 | NULL AS [C omponents! 12], | |
| 13810 | NULL AS [C omponent!1 3!name], | |
| 13811 | RTRIM( CompCls.C prsOrderab leItemID ) AS [C omponent!1 3!id], | |
| 13812 | NULL AS [C omponent!1 3!specimen ], | |
| 13813 | NULL AS [L abTests!14 ], | |
| 13814 | RTRIM( SpecTestT hrd.LabTes tID ) AS [L abTest!15! id], | |
| 13815 | SpecTe stThrd.Vis tALaborato ryTestName AS [L abTest!15! name], | |
| 13816 | NULL AS [M sbosList!1 6], | |
| 13817 | NULL AS [M sbos!17!na me], | |
| 13818 | NULL AS [M sbos!17!th reshold], | |
| 13819 | NULL AS [S urgeries!1 8], | |
| 13820 | NULL AS [S urgery!19! name], | |
| 13821 | NULL AS [S urgery!19! noBloodReq uiredIndic ator] | |
| 13822 | ||
| 13823 | FR OM | |
| 13824 | dbo. ComponentC lass CompC ls | |
| 13825 | ||
| 13826 | INNE R JOIN dbo .SpecimenT estThresho ld SpecTes tThrd | |
| 13827 | ON Spe cTestThrd. ComponentC lassID = C ompCls.Com ponentClas sID | |
| 13828 | ||
| 13829 | WH ERE | |
| 13830 | Comp Cls.CprsOr derableIte mID IS NOT NULL | |
| 13831 | ||
| 13832 | AND SpecTestTh rd.Divisio nCode = @d ivisioncod e | |
| 13833 | ||
| 13834 | UN ION ALL | |
| 13835 | ||
| 13836 | -- <MsbosLis t> | |
| 13837 | SE LECT | |
| 13838 | 16 AS Tag , | |
| 13839 | 13 AS Par ent, | |
| 13840 | 3 AS [Bl oodbank!1! GroupOrder ], | |
| 13841 | 2 AS [Co mponent!13 !GroupOrde r!hide], | |
| 13842 | NULL AS [Bl oodbank!1] , | |
| 13843 | NULL AS [Pa tient!2!df n], | |
| 13844 | NULL AS [Pa tient!2!fi rstName], | |
| 13845 | NULL AS [Pa tient!2!la stName], | |
| 13846 | NULL AS [Pa tient!2!ss n], | |
| 13847 | NULL AS [Pa tient!2!ab o], | |
| 13848 | NULL AS [Pa tient!2!rh ], | |
| 13849 | NULL AS [Tr ansfusionR eactions!3 ], | |
| 13850 | NULL AS [Tr ansfusionR eaction!4! type], | |
| 13851 | NULL AS [Tr ansfusionR eaction!4! date], | |
| 13852 | NULL AS [Tr ansfusionR equirement s!5], | |
| 13853 | NULL AS [Tr ansfusionR equirement !6!modifie r], | |
| 13854 | NULL AS [An tibodies!7 ], | |
| 13855 | NULL AS [An tibody!8!n ame], | |
| 13856 | NULL AS [Un its!9], | |
| 13857 | NULL AS [Un it!10!stat us], | |
| 13858 | NULL AS [Un it!10!id], | |
| 13859 | NULL AS [Un it!10!prod uct], | |
| 13860 | NULL AS [Un it!10!prod uctCode], | |
| 13861 | NULL AS [Un it!10!loca tion], | |
| 13862 | NULL AS [Un it!10!expD ate], | |
| 13863 | NULL AS [Sp ecimen!11! expDate], | |
| 13864 | NULL AS [Sp ecimen!11! uid], | |
| 13865 | NULL AS [Co mponents!1 2], | |
| 13866 | NULL AS [Co mponent!13 !name], | |
| 13867 | RTRIM( CompCls.C prsOrderab leItemID ) AS [Co mponent!13 !id], | |
| 13868 | NULL AS [Co mponent!13 !specimen] , | |
| 13869 | NULL AS [La bTests!14] , | |
| 13870 | NULL AS [La bTest!15!i d], | |
| 13871 | NULL AS [La bTest!15!n ame], | |
| 13872 | NULL AS [Ms bosList!16 ], | |
| 13873 | NULL AS [Ms bos!17!nam e], | |
| 13874 | NULL AS [Ms bos!17!thr eshold], | |
| 13875 | NULL AS [Su rgeries!18 ], | |
| 13876 | NULL AS [Su rgery!19!n ame], | |
| 13877 | NULL AS [Su rgery!19!n oBloodRequ iredIndica tor] | |
| 13878 | ||
| 13879 | FR OM | |
| 13880 | dbo. ComponentC lass CompC ls | |
| 13881 | ||
| 13882 | INNE R JOIN dbo .Component ClassParam eter CompC lsParam | |
| 13883 | ON Com pCls.Compo nentClassI D = CompCl sParam.Com ponentClas sID | |
| 13884 | ||
| 13885 | WH ERE | |
| 13886 | Comp Cls.CprsOr derableIte mID IS NOT NULL | |
| 13887 | ||
| 13888 | AND CompClsPar am.Divisio nCode = @d ivisioncod e | |
| 13889 | ||
| 13890 | UN ION ALL | |
| 13891 | ||
| 13892 | -- <Msbos na me="" thre shold="" / > | |
| 13893 | SE LECT DISTI NCT | |
| 13894 | 17 AS Tag, | |
| 13895 | 16 AS Parent, | |
| 13896 | 3 AS [Bloodb ank!1!Grou pOrder!hid e], | |
| 13897 | 2 AS [Compon ent!13!Gro upOrder!hi de], | |
| 13898 | NULL AS [Bloodb ank!1], | |
| 13899 | NULL AS [Patien t!2!dfn], | |
| 13900 | NULL AS [Patien t!2!firstN ame], | |
| 13901 | NULL AS [Patien t!2!lastNa me], | |
| 13902 | NULL AS [Patien t!2!ssn], | |
| 13903 | NULL AS [Patien t!2!abo], | |
| 13904 | NULL AS [Patien t!2!rh], | |
| 13905 | NULL AS [Transf usionReact ions!3], | |
| 13906 | NULL AS [Transf usionReact ion!4!type ], | |
| 13907 | NULL AS [Transf usionReact ion!4!date ], | |
| 13908 | NULL AS [Transf usionRequi rements!5] , | |
| 13909 | NULL AS [Transf usionRequi rement!6!m odifier], | |
| 13910 | NULL AS [Antibo dies!7], | |
| 13911 | NULL AS [Antibo dy!8!name] , | |
| 13912 | NULL AS [Units! 9], | |
| 13913 | NULL AS [Unit!1 0!status], | |
| 13914 | NULL AS [Unit!1 0!id], | |
| 13915 | NULL AS [Unit!1 0!product] , | |
| 13916 | NULL AS [Unit!1 0!productC ode], | |
| 13917 | NULL AS [Unit!1 0!location ], | |
| 13918 | NULL AS [Unit!1 0!expDate] , | |
| 13919 | NULL AS [Specim en!11!expD ate], | |
| 13920 | NULL AS [Specim en!11!uid] , | |
| 13921 | NULL AS [Compon ents!12], | |
| 13922 | NULL AS [Compon ent!13!nam e], | |
| 13923 | rtrim( CompCls.C prsOrderab leItemID ) AS [Compon ent!13!id] , | |
| 13924 | NULL AS [Compon ent!13!spe cimen], | |
| 13925 | NULL AS [LabTes ts!14], | |
| 13926 | NULL AS [LabTes t!15!id], | |
| 13927 | NULL AS [LabTes t!15!name] , | |
| 13928 | NULL AS [MsbosL ist!16], | |
| 13929 | Msbos. SurgeryNam e AS [Msbos! 17!name], | |
| 13930 | MsbosC omponentCl ass.Maximu mSetupUnit Quantity AS [Msbo s!17!thres hold], | |
| 13931 | NULL AS [Surger ies!18], | |
| 13932 | NULL AS [Surger y!19!name] , | |
| 13933 | NULL AS [Surger y!19!noBlo odRequired Indicator] | |
| 13934 | ||
| 13935 | FR OM | |
| 13936 | dbo. ComponentC lass CompC ls | |
| 13937 | ||
| 13938 | INNE R JOIN dbo .MsbosComp onentClass | |
| 13939 | ON Com pCls.Compo nentClassI D = MsbosC omponentCl ass.Compon entClassID | |
| 13940 | ||
| 13941 | ||
| 13942 | INNE R JOIN dbo .Msbos | |
| 13943 | ON Msb os.MsbosGU ID = Msbos ComponentC lass.Msbos GUID | |
| 13944 | ||
| 13945 | WHER E | |
| 13946 | Msbos. DivisionCo de = @divi sioncode | |
| 13947 | ||
| 13948 | AND Co mpCls.Cprs OrderableI temID IS N OT NULL | |
| 13949 | ||
| 13950 | /***** * CR 3078: filter ou t inactive MSBOS rec ords ***** **/ | |
| 13951 | AND Ms bos.Record StatusCode <> 'X' | |
| 13952 | /***** * CR 3156: filter ou t inactive MsbosComp onentClass records * ******/ | |
| 13953 | AND Ms bosCompone ntClass.Re cordStatus Code <> 'X ' | |
| 13954 | ||
| 13955 | UN ION ALL | |
| 13956 | ||
| 13957 | -- <Surgerie s> | |
| 13958 | SE LECT | |
| 13959 | 18 AS Tag , | |
| 13960 | 1 AS Par ent, | |
| 13961 | 4 AS [Bl oodbank!1! GroupOrder !hide], | |
| 13962 | NULL AS [Co mponent!13 !GroupOrde r!hide], | |
| 13963 | NULL AS [Bl oodbank!1] , | |
| 13964 | NULL AS [Pa tient!2!df n], | |
| 13965 | NULL AS [Pa tient!2!fi rstName], | |
| 13966 | NULL AS [Pa tient!2!la stName], | |
| 13967 | NULL AS [Pa tient!2!ss n], | |
| 13968 | NULL AS [Pa tient!2!ab o], | |
| 13969 | NULL AS [Pa tient!2!rh ], | |
| 13970 | NULL AS [Tr ansfusionR eactions!3 ], | |
| 13971 | NULL AS [Tr ansfusionR eaction!4! type], | |
| 13972 | NULL AS [Tr ansfusionR eaction!4! date], | |
| 13973 | NULL AS [Tr ansfusionR equirement s!5], | |
| 13974 | NULL AS [Tr ansfusionR equirement !6!modifie r], | |
| 13975 | NULL AS [An tibodies!7 ], | |
| 13976 | NULL AS [An tibody!8!n ame], | |
| 13977 | NULL AS [Un its!9], | |
| 13978 | NULL AS [Un it!10!stat us], | |
| 13979 | NULL AS [Un it!10!id], | |
| 13980 | NULL AS [Un it!10!prod uct], | |
| 13981 | NULL AS [Un it!10!prod uctCode], | |
| 13982 | NULL AS [Un it!10!loca tion], | |
| 13983 | NULL AS [Un it!10!expD ate], | |
| 13984 | NULL AS [Sp ecimen!11! expDate], | |
| 13985 | NULL AS [Sp ecimen!11! uid], | |
| 13986 | NULL AS [Co mponents!1 2], | |
| 13987 | NULL AS [Co mponent!13 !name], | |
| 13988 | NULL AS [Co mponent!13 !id], | |
| 13989 | NULL AS [Co mponent!13 !specimen] , | |
| 13990 | NULL AS [La bTests!14] , | |
| 13991 | NULL AS [La bTest!15!i d], | |
| 13992 | NULL AS [La bTest!15!n ame], | |
| 13993 | NULL AS [Ms bosList!16 ], | |
| 13994 | NULL AS [Ms bos!17!nam e], | |
| 13995 | NULL AS [Ms bos!17!thr eshold], | |
| 13996 | NULL AS [Su rgeries!18 ], | |
| 13997 | NULL AS [Su rgery!19!n ame], | |
| 13998 | NULL AS [Su rgery!19!n oBloodRequ iredIndica tor] | |
| 13999 | ||
| 14000 | UN ION ALL | |
| 14001 | ||
| 14002 | -- <Surgery name=""> | |
| 14003 | SE LECT DISTI NCT | |
| 14004 | 19 AS Tag , | |
| 14005 | 18 AS Par ent, | |
| 14006 | 4 AS [Bl oodbank!1! GroupOrder !hide], | |
| 14007 | NULL AS [Co mponent!13 !GroupOrde r!hide], | |
| 14008 | NULL AS [Bl oodbank!1] , | |
| 14009 | NULL AS [Pa tient!2!df n], | |
| 14010 | NULL AS [Pa tient!2!fi rstName], | |
| 14011 | NULL AS [Pa tient!2!la stName], | |
| 14012 | NULL AS [Pa tient!2!ss n], | |
| 14013 | NULL AS [Pa tient!2!ab o], | |
| 14014 | NULL AS [Pa tient!2!rh ], | |
| 14015 | NULL AS [Tr ansfusionR eactions!3 ], | |
| 14016 | NULL AS [Tr ansfusionR eaction!4! type], | |
| 14017 | NULL AS [Tr ansfusionR eaction!4! date], | |
| 14018 | NULL AS [Tr ansfusionR equirement s!5], | |
| 14019 | NULL AS [Tr ansfusionR equirement !6!modifie r], | |
| 14020 | NULL AS [An tibodies!7 ], | |
| 14021 | NULL AS [An tibody!8!n ame], | |
| 14022 | NULL AS [Un its!9], | |
| 14023 | NULL AS [Un it!10!stat us], | |
| 14024 | NULL AS [Un it!10!id], | |
| 14025 | NULL AS [Un it!10!prod uct], | |
| 14026 | NULL AS [Un it!10!prod uctCode], | |
| 14027 | NULL AS [Un it!10!loca tion], | |
| 14028 | NULL AS [Un it!10!expD ate], | |
| 14029 | NULL AS [Sp ecimen!11! expDate], | |
| 14030 | NULL AS [Sp ecimen!11! uid], | |
| 14031 | NULL AS [Co mponents!1 2], | |
| 14032 | NULL AS [Co mponent!13 !name], | |
| 14033 | NULL AS [Co mponent!13 !id], | |
| 14034 | NULL AS [Co mponent!13 !specimen] , | |
| 14035 | NULL AS [La bTests!14] , | |
| 14036 | NULL AS [La bTest!15!i d], | |
| 14037 | NULL AS [La bTest!15!n ame], | |
| 14038 | NULL AS [Ms bosList!16 ], | |
| 14039 | NULL AS [Ms bos!17!nam e], | |
| 14040 | NULL AS [Ms bos!17!thr eshold], | |
| 14041 | NULL AS [Su rgeries!18 ], | |
| 14042 | dbo.Ms bos.Surger yName AS [Su rgery!19!n ame], | |
| 14043 | CASE W HEN (TypeA ndScreenIn dicator = 1 OR NoBlo odRequired Indicator = 1) | |
| 14044 | THEN 1 | |
| 14045 | ELSE 0 | |
| 14046 | END AS [Su rgery!19!n oBloodRequ iredIndica tor] | |
| 14047 | ||
| 14048 | FR OM dbo.Ms bos | |
| 14049 | ||
| 14050 | WH ERE | |
| 14051 | /***** * CR 3156: filter ou t by divis ion ****** */ | |
| 14052 | Msbos.Divi sionCode = @division code | |
| 14053 | ||
| 14054 | /***** * CR 3078: filter ou t inactive MSBOS rec ords ***** **/ | |
| 14055 | AND Msbos. RecordStat usCode <> 'X' | |
| 14056 | ||
| 14057 | OR DER BY [Blood bank!1!Gro upOrder!hi de], | |
| 14058 | [Compo nent!13!id ], | |
| 14059 | [Compo nent!13!Gr oupOrder!h ide], | |
| 14060 | [LabTe st!15!id], | |
| 14061 | [Msbos !17!name], | |
| 14062 | [Surge ry!19!name ], | |
| 14063 | Tag | |
| 14064 | ||
| 14065 | FO R XML EXPL ICIT | |
| 14066 | ||
| 14067 | SET NOCOUN T OFF | |
| 14068 | ||
| 14069 | ||
| 14070 | ||
| 14071 | ||
| 14072 | ||
| 14073 | ||
| 14074 | ||
| 14075 | GO | |
| 14076 | ||
| 14077 | ||
| 14078 | ||
| 14079 | --Permissi ons | |
| 14080 | ||
| 14081 | GRANT EXEC UTE ON [d bo].[spHL7 GetPending Transmissi onMessages ] TO [Vbec sAppUser] | |
| 14082 | GO | |
| 14083 | ||
| 14084 | GRANT EXEC UTE ON [d bo].[spHL7 InsertMess ageLog] TO [VbecsApp User] | |
| 14085 | GO | |
| 14086 | ||
| 14087 | GRANT EXEC UTE ON [d bo].[spIns ertVbecsGl obalConfig ] TO [Vbec sAppUser] | |
| 14088 | GO | |
| 14089 | ||
| 14090 | GRANT EXEC UTE ON [d bo].[spUpd ateVbecsEn dPoint] TO [VbecsApp User] | |
| 14091 | GO | |
| 14092 | ||
| 14093 | GRANT EXEC UTE ON [d bo].[spUpd ateVbecsGl obalConfig ] TO [Vbec sAppUser] | |
| 14094 | GO | |
| 14095 | ||
| 14096 | GRANT EXEC UTE ON [d bo].[spVis taGetXmlBl oodBankDat a] TO [Vbe csAppUser] | |
| 14097 | GO | |
| 14098 | ||
| 14099 | ||
| 14100 | -- Update row in [db o].[Broken Rule] --De fect 46878 2 | |
| 14101 | UPDATE [db o].[Broken Rule] SET [Validatio nMessage]= 'VistA Bro ker IP add ress or Do main name must be sp ecified.', [LastUpda teDate]='2 017-02-22 00:00:00.0 00' WHERE [FormName] ='VistaLin kConfig' A ND [FieldN ame]='Vist aBrokerEnd PointAddre ssAndDomai nNameNotSp ecified' | |
| 14102 | ||
| 14103 | ||
| 14104 | EXEC sp_ms ForEachTab le @COMMAN D1 = 'ALTE R INDEX AL L ON ? REB UILD WITH (ONLINE=OF F)' | |
| 14105 | ||
| 14106 | ||
| 14107 | USE @DBNAM E@ | |
| 14108 | GO | |
| 14109 | ||
| 14110 | /********* ********** ********** ********** ********** **** | |
| 14111 | ** Up date Vbecs Version | |
| 14112 | ********** ********** ********** ********** ********** ***/ | |
| 14113 | ||
| 14114 | INSERT INT O dbo.Vbec sVersion | |
| 14115 | (Version, PatchSucce ssfulIndic ator, Last UpdateDate , LastUpda teUser) | |
| 14116 | VALUES('@T ARGETVERSI ON@', 0, G ETUTCDATE( ), '@PATCH USERID@') | |
| 14117 | ||
| 14118 | ||
| 14119 | /********* ********** ********** ********** ********** **** | |
| 14120 | ** Up date Vbecs DBRevision | |
| 14121 | ********** ********** ********** ********** ********** ***/ | |
| 14122 | ||
| 14123 | INSERT INT O dbo.Vbec sDBRevisio n | |
| 14124 | (VbecsVers ion, Revis ion, Comme nt, LastUp dateDate, LastUpdate User) | |
| 14125 | VALUES('@T ARGETVERSI ON@','A', '', GETUTC DATE(), '@ PATCHUSERI D@') |
Araxis Merge (but not the data content of this report) is Copyright © 1993-2016 Araxis Ltd (www.araxis.com). All rights reserved.