-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathwt_test_data.tab
More file actions
2379 lines (2363 loc) · 182 KB
/
Copy pathwt_test_data.tab
File metadata and controls
2379 lines (2363 loc) · 182 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
--
-- Test Runs Table Installation
--
create table wt_test_data
(id number
,temp_clob clob
,temp_nclob nclob
,temp_xml xmltype
,temp_blob blob
,constraint wt_test_data_pk primary key (id)
);
comment on table wt_test_data is 'Test Data for unit testing of WTPLSQL.';
comment on column wt_test_data.id is 'Primary Key';
comment on column wt_test_data.temp_clob is 'CLOB test data';
comment on column wt_test_data.temp_nclob is 'NCLOB test data';
comment on column wt_test_data.temp_xml is 'XML test data';
comment on column wt_test_data.temp_blob is 'BLOB test data';
grant select on wt_test_data to public;
grant insert on wt_test_data to public;
grant delete on wt_test_data to public;
create or replace trigger wt_test_data$test
before insert on wt_test_data
for each row
declare
l_junk number;
begin
l_junk := 1;
end;
/
set define off
declare
l_rec wt_test_data%ROWTYPE;
buff varchar2(32000);
t_blob blob;
l_dest_offset pls_integer := 1;
l_src_offset pls_integer := 1;
l_lang_context pls_integer := 0; -- Default
l_warning pls_integer;
begin
--
buff :=
'<?xml version="1.0" encoding="UTF-8"?>
<feed xmlns="http://www.w3.org/2005/Atom">
<title>FPDS-NG search results for<![CDATA[: pl/sql]]></title>
<link rel="alternate" type="text/html" href="https://www.fpds.gov/ezsearch/search.do?s=FPDS&indexName=awardfull&templateName=1.5.1&q=pl%2Fsql&start=0"></link>
<link rel="last" type="text/html" href="https://www.fpds.gov/ezsearch/FEEDS/ATOM?s=FPDS&FEEDNAME=PUBLIC&VERSION=1.5.1&q=pl%2Fsql&start=20"></link>
<link rel="next" type="text/html" href="https://www.fpds.gov/ezsearch/FEEDS/ATOM?s=FPDS&FEEDNAME=PUBLIC&VERSION=1.5.1&q=pl%2Fsql&start=10"></link>
<modified/>
<author>
<name/>
</author>
';
l_rec.temp_clob := l_rec.temp_clob || buff;
--
buff :=
' <entry>
<title><![CDATA[New DELIVERY ORDER DOLF072J11595 awarded to DLT SOLUTIONS INCORPORATED for the amount of $12,638.59]]></title>
<link rel="alternate" type="text/html" href="https://www.fpds.gov/ezsearch/search.do?s=FPDS&indexName=awardfull&templateName=1.5.1&q=DOLF072J11595+1625+"></link>
<modified>2016-02-16 13:10:02</modified>
<content xmlns:ns1="https://www.fpds.gov/FPDS" type="application/xml">
<ns1:award xmlns:ns1="http://www.fpdsng.com/FPDS" version="1.2">
<ns1:awardID>
<ns1:awardContractID>
<ns1:agencyID name="BUREAU OF LABOR STATISTICS">1625</ns1:agencyID>
<ns1:PIID>DOLF072J11595</ns1:PIID>
<ns1:modNumber>0</ns1:modNumber>
<ns1:transactionNumber>0</ns1:transactionNumber></ns1:awardContractID>
<ns1:referencedIDVID>
<ns1:agencyID name="FEDERAL ACQUISITION SERVICE">4730</ns1:agencyID>
<ns1:PIID>GS35F4543G</ns1:PIID>
<ns1:modNumber>0</ns1:modNumber></ns1:referencedIDVID></ns1:awardID>
<ns1:relevantContractDates>
<ns1:signedDate>2007-05-04 00:00:00</ns1:signedDate>
<ns1:effectiveDate>2007-04-15 00:00:00</ns1:effectiveDate>
<ns1:currentCompletionDate>2008-04-14 00:00:00</ns1:currentCompletionDate>
<ns1:ultimateCompletionDate>2008-04-14 00:00:00</ns1:ultimateCompletionDate></ns1:relevantContractDates>
<ns1:dollarValues>
<ns1:obligatedAmount>12638.59</ns1:obligatedAmount>
<ns1:baseAndExercisedOptionsValue>12638.59</ns1:baseAndExercisedOptionsValue>
<ns1:baseAndAllOptionsValue>12638.59</ns1:baseAndAllOptionsValue></ns1:dollarValues>
<ns1:totalDollarValues>
<ns1:totalObligatedAmount>0.00</ns1:totalObligatedAmount>
<ns1:totalBaseAndExercisedOptionsValue>0.00</ns1:totalBaseAndExercisedOptionsValue>
<ns1:totalBaseAndAllOptionsValue>0.00</ns1:totalBaseAndAllOptionsValue></ns1:totalDollarValues>
<ns1:purchaserInformation>
<ns1:contractingOfficeAgencyID name="BUREAU OF LABOR STATISTICS" departmentID="1600" departmentName="LABOR, DEPARTMENT OF">1625</ns1:contractingOfficeAgencyID>
<ns1:contractingOfficeID name="BUREAU OF LABOR STATISTICS PURCHASING" country="USA">BLSNO</ns1:contractingOfficeID>
<ns1:foreignFunding description="NOT APPLICABLE">X</ns1:foreignFunding></ns1:purchaserInformation>
<ns1:contractMarketingData>
<ns1:feePaidForUseOfService>0.00</ns1:feePaidForUseOfService></ns1:contractMarketingData>
<ns1:contractData>
<ns1:contractActionType description="DELIVERY ORDER">C</ns1:contractActionType>
<ns1:typeOfContractPricing description="FIXED PRICE">J</ns1:typeOfContractPricing>
<ns1:nationalInterestActionCode description="NONE">NONE</ns1:nationalInterestActionCode>
<ns1:costAccountingStandardsClause description="NOT APPLICABLE EXEMPT FROM CAS">X</ns1:costAccountingStandardsClause>
<ns1:descriptionOfContractRequirement>XPERT FOR ORACLE ADMINISTRATION, PL/SQL DEVELOPMENT, TUNING MODULE, QUEST SQL OPTIMIZER.
</ns1:descriptionOfContractRequirement>
<ns1:GFE-GFP description="Transaction does not use GFE/GFP">N</ns1:GFE-GFP>
<ns1:undefinitizedAction description="NO">X</ns1:undefinitizedAction>
<ns1:consolidatedContract description="NO">N</ns1:consolidatedContract>
<ns1:performanceBasedServiceContract description="NOT APPLICABLE">X</ns1:performanceBasedServiceContract>
<ns1:multiYearContract description="NO">N</ns1:multiYearContract>
<ns1:purchaseCardAsPaymentMethod description="NO">N</ns1:purchaseCardAsPaymentMethod>
<ns1:numberOfActions>1</ns1:numberOfActions></ns1:contractData>
<ns1:legislativeMandates>
<ns1:ClingerCohenAct description="NO">N</ns1:ClingerCohenAct>
<ns1:materialsSuppliesArticlesEquipment description="NOT APPLICABLE">X</ns1:materialsSuppliesArticlesEquipment>
<ns1:laborStandards description="NOT APPLICABLE">X</ns1:laborStandards>
<ns1:constructionWageRateRequirements description="NOT APPLICABLE">X</ns1:constructionWageRateRequirements>
<ns1:listOfAdditionalReportingValues></ns1:listOfAdditionalReportingValues>
<ns1:interagencyContractingAuthority description="NOT APPLICABLE">X</ns1:interagencyContractingAuthority></ns1:legislativeMandates>
<ns1:productOrServiceInformation>
<ns1:productOrServiceCode description="ADP SOFTWARE" productOrServiceType="PRODUCT">7030</ns1:productOrServiceCode>
<ns1:contractBundling description="NOT A BUNDLED REQUIREMENT">D</ns1:contractBundling>
<ns1:principalNAICSCode description="OTHER COMPUTER RELATED SERVICES">541519</ns1:principalNAICSCode>
<ns1:useOfEPADesignatedProducts description="NOT REQUIRED">E</ns1:useOfEPADesignatedProducts></ns1:productOrServiceInformation>
<ns1:vendor>
<ns1:vendorHeader>
<ns1:vendorName>DLT SOLUTIONS INCORPORATED</ns1:vendorName></ns1:vendorHeader>
<ns1:vendorSiteDetails>
<ns1:vendorSocioEconomicIndicators>
<ns1:isAlaskanNativeOwnedCorporationOrFirm>false</ns1:isAlaskanNativeOwnedCorporationOrFirm>
<ns1:isAmericanIndianOwned>false</ns1:isAmericanIndianOwned>
<ns1:isIndianTribe>false</ns1:isIndianTribe>
<ns1:isNativeHawaiianOwnedOrganizationOrFirm>false</ns1:isNativeHawaiianOwnedOrganizationOrFirm>
<ns1:isTriballyOwnedFirm>false</ns1:isTriballyOwnedFirm>
<ns1:isVeteranOwned>false</ns1:isVeteranOwned>
<ns1:isServiceRelatedDisabledVeteranOwnedBusiness>false</ns1:isServiceRelatedDisabledVeteranOwnedBusiness>
<ns1:isWomenOwned>false</ns1:isWomenOwned>
<ns1:minorityOwned>
<ns1:isMinorityOwned>false</ns1:isMinorityOwned>
<ns1:isSubContinentAsianAmericanOwnedBusiness>false</ns1:isSubContinentAsianAmericanOwnedBusiness>
<ns1:isAsianPacificAmericanOwnedBusiness>false</ns1:isAsianPacificAmericanOwnedBusiness>
<ns1:isBlackAmericanOwnedBusiness>false</ns1:isBlackAmericanOwnedBusiness>
<ns1:isHispanicAmericanOwnedBusiness>false</ns1:isHispanicAmericanOwnedBusiness>
<ns1:isNativeAmericanOwnedBusiness>false</ns1:isNativeAmericanOwnedBusiness>
<ns1:isOtherMinorityOwned>false</ns1:isOtherMinorityOwned></ns1:minorityOwned>
<ns1:isVerySmallBusiness>false</ns1:isVerySmallBusiness>
<ns1:isWomenOwnedSmallBusiness>false</ns1:isWomenOwnedSmallBusiness>
<ns1:isEconomicallyDisadvantagedWomenOwnedSmallBusiness>false</ns1:isEconomicallyDisadvantagedWomenOwnedSmallBusiness>
<ns1:isJointVentureWomenOwnedSmallBusiness>false</ns1:isJointVentureWomenOwnedSmallBusiness>
<ns1:isJointVentureEconomicallyDisadvantagedWomenOwnedSmallBusiness>false</ns1:isJointVentureEconomicallyDisadvantagedWomenOwnedSmallBusiness></ns1:vendorSocioEconomicIndicators>
<ns1:vendorBusinessTypes>
<ns1:isCommunityDevelopedCorporationOwnedFirm>false</ns1:isCommunityDevelopedCorporationOwnedFirm>
<ns1:isLaborSurplusAreaFirm>false</ns1:isLaborSurplusAreaFirm>
<ns1:federalGovernment>
<ns1:isFederalGovernment>false</ns1:isFederalGovernment>
<ns1:isFederallyFundedResearchAndDevelopmentCorp>false</ns1:isFederallyFundedResearchAndDevelopmentCorp>
<ns1:isFederalGovernmentAgency>false</ns1:isFederalGovernmentAgency></ns1:federalGovernment>
<ns1:isStateGovernment>false</ns1:isStateGovernment>
<ns1:localGovernment>
<ns1:isLocalGovernment>false</ns1:isLocalGovernment>
<ns1:isCityLocalGovernment>false</ns1:isCityLocalGovernment>
<ns1:isCountyLocalGovernment>false</ns1:isCountyLocalGovernment>
<ns1:isInterMunicipalLocalGovernment>false</ns1:isInterMunicipalLocalGovernment>
<ns1:isLocalGovernmentOwned>false</ns1:isLocalGovernmentOwned>
<ns1:isMunicipalityLocalGovernment>false</ns1:isMunicipalityLocalGovernment>
<ns1:isSchoolDistrictLocalGovernment>false</ns1:isSchoolDistrictLocalGovernment>
<ns1:isTownshipLocalGovernment>false</ns1:isTownshipLocalGovernment></ns1:localGovernment>
<ns1:isTribalGovernment>false</ns1:isTribalGovernment>
<ns1:isForeignGovernment>false</ns1:isForeignGovernment>
<ns1:businessOrOrganizationType>
<ns1:isCorporateEntityNotTaxExempt>false</ns1:isCorporateEntityNotTaxExempt>
<ns1:isCorporateEntityTaxExempt>false</ns1:isCorporateEntityTaxExempt>
<ns1:isPartnershipOrLimitedLiabilityPartnership>false</ns1:isPartnershipOrLimitedLiabilityPartnership>
<ns1:isSolePropreitorship>false</ns1:isSolePropreitorship>
<ns1:isSmallAgriculturalCooperative>false</ns1:isSmallAgriculturalCooperative>
<ns1:isInternationalOrganization>false</ns1:isInternationalOrganization>
<ns1:isUSGovernmentEntity>false</ns1:isUSGovernmentEntity></ns1:businessOrOrganizationType></ns1:vendorBusinessTypes>
<ns1:vendorLineOfBusiness>
<ns1:isCommunityDevelopmentCorporation>false</ns1:isCommunityDevelopmentCorporation>
<ns1:isDomesticShelter>false</ns1:isDomesticShelter>
<ns1:isEducationalInstitution>false</ns1:isEducationalInstitution>
<ns1:isFoundation>false</ns1:isFoundation>
<ns1:isHospital>false</ns1:isHospital>
<ns1:isManufacturerOfGoods>false</ns1:isManufacturerOfGoods>
<ns1:isVeterinaryHospital>false</ns1:isVeterinaryHospital>
<ns1:isHispanicServicingInstitution>false</ns1:isHispanicServicingInstitution></ns1:vendorLineOfBusiness>
<ns1:vendorRelationshipWithFederalGovernment>
<ns1:receivesContracts>false</ns1:receivesContracts>
<ns1:receivesGrants>false</ns1:receivesGrants>
<ns1:receivesContractsAndGrants>false</ns1:receivesContractsAndGrants></ns1:vendorRelationshipWithFederalGovernment>
<ns1:typeOfGovernmentEntity>
<ns1:isAirportAuthority>false</ns1:isAirportAuthority>
<ns1:isCouncilOfGovernments>false</ns1:isCouncilOfGovernments>
<ns1:isHousingAuthoritiesPublicOrTribal>false</ns1:isHousingAuthoritiesPublicOrTribal>
<ns1:isInterstateEntity>false</ns1:isInterstateEntity>
<ns1:isPlanningCommission>false</ns1:isPlanningCommission>
<ns1:isPortAuthority>false</ns1:isPortAuthority>
<ns1:isTransitAuthority>false</ns1:isTransitAuthority></ns1:typeOfGovernmentEntity>
<ns1:vendorOrganizationFactors>
<ns1:isSubchapterSCorporation>false</ns1:isSubchapterSCorporation>
<ns1:isLimitedLiabilityCorporation>false</ns1:isLimitedLiabilityCorporation>
<ns1:isForeignOwnedAndLocated>false</ns1:isForeignOwnedAndLocated>
<ns1:profitStructure>
<ns1:isForProfitOrganization>false</ns1:isForProfitOrganization>
<ns1:isNonprofitOrganization>false</ns1:isNonprofitOrganization>
<ns1:isOtherNotForProfitOrganization>false</ns1:isOtherNotForProfitOrganization></ns1:profitStructure>
<ns1:isShelteredWorkshop>false</ns1:isShelteredWorkshop>
<ns1:numberOfEmployees>173</ns1:numberOfEmployees>
<ns1:annualRevenue>26</ns1:annualRevenue></ns1:vendorOrganizationFactors>
<ns1:typeOfEducationalEntity>
<ns1:is1862LandGrantCollege>false</ns1:is1862LandGrantCollege>
<ns1:is1890LandGrantCollege>false</ns1:is1890LandGrantCollege>
<ns1:is1994LandGrantCollege>false</ns1:is1994LandGrantCollege>
<ns1:isHistoricallyBlackCollegeOrUniversity>false</ns1:isHistoricallyBlackCollegeOrUniversity>
<ns1:isMinorityInstitution>false</ns1:isMinorityInstitution>
<ns1:isPrivateUniversityOrCollege>false</ns1:isPrivateUniversityOrCollege>
<ns1:isSchoolOfForestry>false</ns1:isSchoolOfForestry>
<ns1:isStateControlledInstitutionofHigherLearning>false</ns1:isStateControlledInstitutionofHigherLearning>
<ns1:isTribalCollege>false</ns1:isTribalCollege>
<ns1:isVeterinaryCollege>false</ns1:isVeterinaryCollege>
<ns1:isAlaskanNativeServicingInstitution>false</ns1:isAlaskanNativeServicingInstitution>
<ns1:isNativeHawaiianServicingInstitution>false</ns1:isNativeHawaiianServicingInstitution></ns1:typeOfEducationalEntity>
<ns1:vendorCertifications>
<ns1:isDOTCertifiedDisadvantagedBusinessEnterprise>false</ns1:isDOTCertifiedDisadvantagedBusinessEnterprise>
<ns1:isSelfCertifiedSmallDisadvantagedBusiness>false</ns1:isSelfCertifiedSmallDisadvantagedBusiness>
<ns1:isSBACertifiedSmallDisadvantagedBusiness>false</ns1:isSBACertifiedSmallDisadvantagedBusiness>
<ns1:isSBACertified8AProgramParticipant>false</ns1:isSBACertified8AProgramParticipant>
<ns1:isSelfCertifiedHUBZoneJointVenture>false</ns1:isSelfCertifiedHUBZoneJointVenture>
<ns1:isSBACertifiedHUBZone>false</ns1:isSBACertifiedHUBZone>
<ns1:isSBACertified8AJointVenture>false</ns1:isSBACertified8AJointVenture></ns1:vendorCertifications>
<ns1:vendorLocation>
<ns1:streetAddress>13861 SUNRISE VALLEY DR STE 400</ns1:streetAddress>
<ns1:city>HERNDON</ns1:city>
<ns1:state name="VIRGINIA">VA</ns1:state>
<ns1:ZIPCode>201716126</ns1:ZIPCode>
<ns1:countryCode name="UNITED STATES">USA</ns1:countryCode>
<ns1:congressionalDistrictCode>10</ns1:congressionalDistrictCode></ns1:vendorLocation>
<ns1:vendorSiteCode>7864681990000PR</ns1:vendorSiteCode>
<ns1:vendorAlternateSiteCode>201716126</ns1:vendorAlternateSiteCode>
<ns1:vendorDUNSInformation>
<ns1:DUNSNumber>786468199</ns1:DUNSNumber>
<ns1:vendorName>DLT SOLUTIONS INCORPORATED</ns1:vendorName>
<ns1:globalParentDUNSNumber>786468199</ns1:globalParentDUNSNumber>
<ns1:globalParentDUNSName>DLT SOLUTIONS LLC</ns1:globalParentDUNSName></ns1:vendorDUNSInformation>
<ns1:ccrRegistrationDetails>
<ns1:registrationDate>2002-03-14 00:00:00</ns1:registrationDate>
<ns1:renewalDate>2008-11-16 00:00:00</ns1:renewalDate></ns1:ccrRegistrationDetails></ns1:vendorSiteDetails>
<ns1:contractingOfficerBusinessSizeDetermination description="SMALL BUSINESS">S</ns1:contractingOfficerBusinessSizeDetermination></ns1:vendor>
<ns1:placeOfPerformance>
<ns1:principalPlaceOfPerformance>
<ns1:locationCode>50000</ns1:locationCode>
<ns1:stateCode name="DISTRICT OF COLUMBIA">DC</ns1:stateCode>
<ns1:countryCode name="UNITED STATES">USA</ns1:countryCode></ns1:principalPlaceOfPerformance>
<ns1:placeOfPerformanceZIPCode county="DISTRICT OF COLUMBIA" city="WASHINGTON">202120002</ns1:placeOfPerformanceZIPCode>
<ns1:placeOfPerformanceCongressionalDistrict>00</ns1:placeOfPerformanceCongressionalDistrict></ns1:placeOfPerformance>
<ns1:competition>
<ns1:solicitationProcedures description="SIMPLIFIED ACQUISITION">SP1</ns1:solicitationProcedures>
<ns1:typeOfSetAside description="NO SET ASIDE USED.">NONE</ns1:typeOfSetAside>
<ns1:evaluatedPreference description="NO PREFERENCE USED">NONE</ns1:evaluatedPreference>
<ns1:numberOfOffersReceived>1</ns1:numberOfOffersReceived>
<ns1:commercialItemAcquisitionProcedures description="COMMERCIAL ITEM">A</ns1:commercialItemAcquisitionProcedures>
<ns1:commercialItemTestProgram description="NO">N</ns1:commercialItemTestProgram>
<ns1:smallBusinessCompetitivenessDemonstrationProgram>false</ns1:smallBusinessCompetitivenessDemonstrationProgram>
<ns1:A76Action description="NO">N</ns1:A76Action>
<ns1:fedBizOpps description="NOT APPLICABLE">X</ns1:fedBizOpps></ns1:competition>
<ns1:preferencePrograms></ns1:preferencePrograms>
<ns1:transactionInformation>
<ns1:createdBy>REYNOLDS.VANESSA@BLS.GOV</ns1:createdBy>
<ns1:createdDate>2007-04-10 16:40:29</ns1:createdDate>
<ns1:lastModifiedBy>IDV_CORRECT</ns1:lastModifiedBy>
<ns1:lastModifiedDate>2016-02-16 13:10:02</ns1:lastModifiedDate>
<ns1:status description="FINAL">F</ns1:status></ns1:transactionInformation></ns1:award>
</content>
</entry>
';
l_rec.temp_clob := l_rec.temp_clob || buff;
--
buff :=
' <entry>
<title><![CDATA[New DELIVERY ORDER EDCIO12O0009 awarded to DLT SOLUTIONS, LLC for the amount of $14,168.16]]></title>
<link rel="alternate" type="text/html" href="https://www.fpds.gov/ezsearch/search.do?s=FPDS&indexName=awardfull&templateName=1.5.1&q=EDCIO12O0009+9100+"></link>
<modified>2016-02-16 13:10:16</modified>
<content xmlns:ns1="https://www.fpds.gov/FPDS" type="application/xml">
<ns1:award xmlns:ns1="http://www.fpdsng.com/FPDS" version="1.4">
<ns1:awardID>
<ns1:awardContractID>
<ns1:agencyID name="EDUCATION, DEPARTMENT OF">9100</ns1:agencyID>
<ns1:PIID>EDCIO12O0009</ns1:PIID>
<ns1:modNumber>0</ns1:modNumber>
<ns1:transactionNumber>0</ns1:transactionNumber></ns1:awardContractID>
<ns1:referencedIDVID>
<ns1:agencyID name="FEDERAL ACQUISITION SERVICE">4730</ns1:agencyID>
<ns1:PIID>GS35F4543G</ns1:PIID>
<ns1:modNumber>107</ns1:modNumber></ns1:referencedIDVID></ns1:awardID>
<ns1:relevantContractDates>
<ns1:signedDate>2012-05-11 00:00:00</ns1:signedDate>
<ns1:effectiveDate>2012-05-11 00:00:00</ns1:effectiveDate>
<ns1:currentCompletionDate>2012-09-30 00:00:00</ns1:currentCompletionDate>
<ns1:ultimateCompletionDate>2013-06-30 00:00:00</ns1:ultimateCompletionDate></ns1:relevantContractDates>
<ns1:dollarValues>
<ns1:obligatedAmount>14168.16</ns1:obligatedAmount>
<ns1:baseAndExercisedOptionsValue>14168.16</ns1:baseAndExercisedOptionsValue>
<ns1:baseAndAllOptionsValue>14168.16</ns1:baseAndAllOptionsValue></ns1:dollarValues>
<ns1:totalDollarValues>
<ns1:totalObligatedAmount>14168.16</ns1:totalObligatedAmount>
<ns1:totalBaseAndExercisedOptionsValue>14168.16</ns1:totalBaseAndExercisedOptionsValue>
<ns1:totalBaseAndAllOptionsValue>14168.16</ns1:totalBaseAndAllOptionsValue></ns1:totalDollarValues>
<ns1:purchaserInformation>
<ns1:contractingOfficeAgencyID name="EDUCATION, DEPARTMENT OF" departmentID="9100" departmentName="EDUCATION, DEPARTMENT OF">9100</ns1:contractingOfficeAgencyID>
<ns1:contractingOfficeID name="PRINCIPAL OFFICES" country="USA">PO</ns1:contractingOfficeID>
<ns1:fundingRequestingAgencyID name="EDUCATION, DEPARTMENT OF" departmentID="9100" departmentName="EDUCATION, DEPARTMENT OF">9100</ns1:fundingRequestingAgencyID>
<ns1:fundingRequestingOfficeID name="OCIO - OFFICE OF CHIEF INFORMATION OFFICER">EI</ns1:fundingRequestingOfficeID>
<ns1:foreignFunding description="NOT APPLICABLE">X</ns1:foreignFunding></ns1:purchaserInformation>
<ns1:contractMarketingData>
<ns1:feePaidForUseOfService>0.00</ns1:feePaidForUseOfService></ns1:contractMarketingData>
<ns1:contractData>
<ns1:contractActionType description="DELIVERY ORDER">C</ns1:contractActionType>
<ns1:typeOfContractPricing description="FIRM FIXED PRICE">J</ns1:typeOfContractPricing>
<ns1:nationalInterestActionCode description="NONE">NONE</ns1:nationalInterestActionCode>
<ns1:descriptionOfContractRequirement>TOAD SOFTWARE SUPPORT RENEWAL. TOAD IS USED BY THE DEPARTMENT OF EDUCATION AS A PRIMARY SQL AND PL/SQL DEVELOPMENT TOOL. IT IS ALSO USED FOR PRODUCTION SUPPORT AND MANAGING ORACLE DATABASES.</ns1:descriptionOfContractRequirement>
<ns1:GFE-GFP description="Transaction does not use GFE/GFP">N</ns1:GFE-GFP>
<ns1:undefinitizedAction description="NO">X</ns1:undefinitizedAction>
<ns1:consolidatedContract description="NO">N</ns1:consolidatedContract>
<ns1:performanceBasedServiceContract description="NOT APPLICABLE">X</ns1:performanceBasedServiceContract>
<ns1:multiYearContract description="NO">N</ns1:multiYearContract>
<ns1:contingencyHumanitarianPeacekeepingOperation description="NOT APPLICABLE">X</ns1:contingencyHumanitarianPeacekeepingOperation>
<ns1:listOfTreasuryAccounts>
<ns1:treasuryAccount>
<ns1:treasuryAccountSymbol>
<ns1:agencyIdentifier>91</ns1:agencyIdentifier>
<ns1:mainAccountCode>0202</ns1:mainAccountCode></ns1:treasuryAccountSymbol></ns1:treasuryAccount></ns1:listOfTreasuryAccounts>
<ns1:purchaseCardAsPaymentMethod description="NO">N</ns1:purchaseCardAsPaymentMethod>
<ns1:numberOfActions>1</ns1:numberOfActions></ns1:contractData>
<ns1:legislativeMandates>
<ns1:ClingerCohenAct description="NO">N</ns1:ClingerCohenAct>
<ns1:materialsSuppliesArticlesEquipment description="NOT APPLICABLE">X</ns1:materialsSuppliesArticlesEquipment>
<ns1:laborStandards description="NOT APPLICABLE">X</ns1:laborStandards>
<ns1:constructionWageRateRequirements description="NOT APPLICABLE">X</ns1:constructionWageRateRequirements>
<ns1:listOfAdditionalReportingValues></ns1:listOfAdditionalReportingValues>
<ns1:interagencyContractingAuthority description="NOT APPLICABLE">X</ns1:interagencyContractingAuthority></ns1:legislativeMandates>
<ns1:productOrServiceInformation>
<ns1:productOrServiceCode description="ADP SOFTWARE" productOrServiceType="PRODUCT">7030</ns1:productOrServiceCode>
<ns1:contractBundling description="NOT A BUNDLED REQUIREMENT">D</ns1:contractBundling>
<ns1:principalNAICSCode description="OTHER COMPUTER RELATED SERVICES">541519</ns1:principalNAICSCode>
<ns1:recoveredMaterialClauses description="NO CLAUSES INCLUDED AND NO SUSTAINABILITY INCLUDED">C</ns1:recoveredMaterialClauses>
<ns1:useOfEPADesignatedProducts description="NOT REQUIRED">E</ns1:useOfEPADesignatedProducts>
<ns1:countryOfOrigin name="UNITED STATES">USA</ns1:countryOfOrigin>
<ns1:placeOfManufacture description="MFG IN U.S.">D</ns1:placeOfManufacture></ns1:productOrServiceInformation>
<ns1:vendor>
<ns1:vendorHeader>
<ns1:vendorName>DLT SOLUTIONS, LLC</ns1:vendorName></ns1:vendorHeader>
<ns1:vendorSiteDetails>
<ns1:vendorSocioEconomicIndicators>
<ns1:isAlaskanNativeOwnedCorporationOrFirm>false</ns1:isAlaskanNativeOwnedCorporationOrFirm>
<ns1:isAmericanIndianOwned>false</ns1:isAmericanIndianOwned>
<ns1:isIndianTribe>false</ns1:isIndianTribe>
<ns1:isNativeHawaiianOwnedOrganizationOrFirm>false</ns1:isNativeHawaiianOwnedOrganizationOrFirm>
<ns1:isTriballyOwnedFirm>false</ns1:isTriballyOwnedFirm>
<ns1:isVeteranOwned>false</ns1:isVeteranOwned>
<ns1:isServiceRelatedDisabledVeteranOwnedBusiness>false</ns1:isServiceRelatedDisabledVeteranOwnedBusiness>
<ns1:isWomenOwned>false</ns1:isWomenOwned>
<ns1:minorityOwned>
<ns1:isMinorityOwned>false</ns1:isMinorityOwned>
<ns1:isSubContinentAsianAmericanOwnedBusiness>false</ns1:isSubContinentAsianAmericanOwnedBusiness>
<ns1:isAsianPacificAmericanOwnedBusiness>false</ns1:isAsianPacificAmericanOwnedBusiness>
<ns1:isBlackAmericanOwnedBusiness>false</ns1:isBlackAmericanOwnedBusiness>
<ns1:isHispanicAmericanOwnedBusiness>false</ns1:isHispanicAmericanOwnedBusiness>
<ns1:isNativeAmericanOwnedBusiness>false</ns1:isNativeAmericanOwnedBusiness>
<ns1:isOtherMinorityOwned>false</ns1:isOtherMinorityOwned></ns1:minorityOwned>
<ns1:isVerySmallBusiness>false</ns1:isVerySmallBusiness>
<ns1:isWomenOwnedSmallBusiness>false</ns1:isWomenOwnedSmallBusiness>
<ns1:isEconomicallyDisadvantagedWomenOwnedSmallBusiness>false</ns1:isEconomicallyDisadvantagedWomenOwnedSmallBusiness>
<ns1:isJointVentureWomenOwnedSmallBusiness>false</ns1:isJointVentureWomenOwnedSmallBusiness>
<ns1:isJointVentureEconomicallyDisadvantagedWomenOwnedSmallBusiness>false</ns1:isJointVentureEconomicallyDisadvantagedWomenOwnedSmallBusiness></ns1:vendorSocioEconomicIndicators>
<ns1:vendorBusinessTypes>
<ns1:isCommunityDevelopedCorporationOwnedFirm>false</ns1:isCommunityDevelopedCorporationOwnedFirm>
<ns1:isLaborSurplusAreaFirm>false</ns1:isLaborSurplusAreaFirm>
<ns1:federalGovernment>
<ns1:isFederalGovernment>false</ns1:isFederalGovernment>
<ns1:isFederallyFundedResearchAndDevelopmentCorp>false</ns1:isFederallyFundedResearchAndDevelopmentCorp>
<ns1:isFederalGovernmentAgency>false</ns1:isFederalGovernmentAgency></ns1:federalGovernment>
<ns1:isStateGovernment>false</ns1:isStateGovernment>
<ns1:localGovernment>
<ns1:isLocalGovernment>false</ns1:isLocalGovernment>
<ns1:isCityLocalGovernment>false</ns1:isCityLocalGovernment>
<ns1:isCountyLocalGovernment>false</ns1:isCountyLocalGovernment>
<ns1:isInterMunicipalLocalGovernment>false</ns1:isInterMunicipalLocalGovernment>
<ns1:isLocalGovernmentOwned>false</ns1:isLocalGovernmentOwned>
<ns1:isMunicipalityLocalGovernment>false</ns1:isMunicipalityLocalGovernment>
<ns1:isSchoolDistrictLocalGovernment>false</ns1:isSchoolDistrictLocalGovernment>
<ns1:isTownshipLocalGovernment>false</ns1:isTownshipLocalGovernment></ns1:localGovernment>
<ns1:isTribalGovernment>false</ns1:isTribalGovernment>
<ns1:isForeignGovernment>false</ns1:isForeignGovernment>
<ns1:businessOrOrganizationType>
<ns1:isCorporateEntityNotTaxExempt>true</ns1:isCorporateEntityNotTaxExempt>
<ns1:isCorporateEntityTaxExempt>false</ns1:isCorporateEntityTaxExempt>
<ns1:isPartnershipOrLimitedLiabilityPartnership>false</ns1:isPartnershipOrLimitedLiabilityPartnership>
<ns1:isSolePropreitorship>false</ns1:isSolePropreitorship>
<ns1:isSmallAgriculturalCooperative>false</ns1:isSmallAgriculturalCooperative>
<ns1:isInternationalOrganization>false</ns1:isInternationalOrganization>
<ns1:isUSGovernmentEntity>false</ns1:isUSGovernmentEntity></ns1:businessOrOrganizationType></ns1:vendorBusinessTypes>
<ns1:vendorLineOfBusiness>
<ns1:isCommunityDevelopmentCorporation>false</ns1:isCommunityDevelopmentCorporation>
<ns1:isDomesticShelter>false</ns1:isDomesticShelter>
<ns1:isEducationalInstitution>false</ns1:isEducationalInstitution>
<ns1:isFoundation>false</ns1:isFoundation>
<ns1:isHospital>false</ns1:isHospital>
<ns1:isManufacturerOfGoods>false</ns1:isManufacturerOfGoods>
<ns1:isVeterinaryHospital>false</ns1:isVeterinaryHospital>
<ns1:isHispanicServicingInstitution>false</ns1:isHispanicServicingInstitution></ns1:vendorLineOfBusiness>
<ns1:vendorRelationshipWithFederalGovernment>
<ns1:receivesContracts>false</ns1:receivesContracts>
<ns1:receivesGrants>false</ns1:receivesGrants>
<ns1:receivesContractsAndGrants>true</ns1:receivesContractsAndGrants></ns1:vendorRelationshipWithFederalGovernment>
<ns1:typeOfGovernmentEntity>
<ns1:isAirportAuthority>false</ns1:isAirportAuthority>
<ns1:isCouncilOfGovernments>false</ns1:isCouncilOfGovernments>
<ns1:isHousingAuthoritiesPublicOrTribal>false</ns1:isHousingAuthoritiesPublicOrTribal>
<ns1:isInterstateEntity>false</ns1:isInterstateEntity>
<ns1:isPlanningCommission>false</ns1:isPlanningCommission>
<ns1:isPortAuthority>false</ns1:isPortAuthority>
<ns1:isTransitAuthority>false</ns1:isTransitAuthority></ns1:typeOfGovernmentEntity>
<ns1:vendorOrganizationFactors>
<ns1:isSubchapterSCorporation>false</ns1:isSubchapterSCorporation>
<ns1:isLimitedLiabilityCorporation>true</ns1:isLimitedLiabilityCorporation>
<ns1:isForeignOwnedAndLocated>false</ns1:isForeignOwnedAndLocated>
<ns1:profitStructure>
<ns1:isForProfitOrganization>true</ns1:isForProfitOrganization>
<ns1:isNonprofitOrganization>false</ns1:isNonprofitOrganization>
<ns1:isOtherNotForProfitOrganization>false</ns1:isOtherNotForProfitOrganization></ns1:profitStructure>
<ns1:isShelteredWorkshop>false</ns1:isShelteredWorkshop>
<ns1:stateOfIncorporation name="VIRGINIA">VA</ns1:stateOfIncorporation>
<ns1:countryOfIncorporation name="UNITED STATES">USA</ns1:countryOfIncorporation>
<ns1:organizationalType>CORPORATE NOT TAX EXEMPT</ns1:organizationalType>
<ns1:numberOfEmployees>245</ns1:numberOfEmployees>
<ns1:annualRevenue>775944576</ns1:annualRevenue></ns1:vendorOrganizationFactors>
<ns1:typeOfEducationalEntity>
<ns1:is1862LandGrantCollege>false</ns1:is1862LandGrantCollege>
<ns1:is1890LandGrantCollege>false</ns1:is1890LandGrantCollege>
<ns1:is1994LandGrantCollege>false</ns1:is1994LandGrantCollege>
<ns1:isHistoricallyBlackCollegeOrUniversity>false</ns1:isHistoricallyBlackCollegeOrUniversity>
<ns1:isMinorityInstitution>false</ns1:isMinorityInstitution>
<ns1:isPrivateUniversityOrCollege>false</ns1:isPrivateUniversityOrCollege>
<ns1:isSchoolOfForestry>false</ns1:isSchoolOfForestry>
<ns1:isStateControlledInstitutionofHigherLearning>false</ns1:isStateControlledInstitutionofHigherLearning>
<ns1:isTribalCollege>false</ns1:isTribalCollege>
<ns1:isVeterinaryCollege>false</ns1:isVeterinaryCollege>
<ns1:isAlaskanNativeServicingInstitution>false</ns1:isAlaskanNativeServicingInstitution>
<ns1:isNativeHawaiianServicingInstitution>false</ns1:isNativeHawaiianServicingInstitution></ns1:typeOfEducationalEntity>
<ns1:vendorCertifications>
<ns1:isDOTCertifiedDisadvantagedBusinessEnterprise>false</ns1:isDOTCertifiedDisadvantagedBusinessEnterprise>
<ns1:isSelfCertifiedSmallDisadvantagedBusiness>false</ns1:isSelfCertifiedSmallDisadvantagedBusiness>
<ns1:isSBACertifiedSmallDisadvantagedBusiness>false</ns1:isSBACertifiedSmallDisadvantagedBusiness>
<ns1:isSBACertified8AProgramParticipant>false</ns1:isSBACertified8AProgramParticipant>
<ns1:isSelfCertifiedHUBZoneJointVenture>false</ns1:isSelfCertifiedHUBZoneJointVenture>
<ns1:isSBACertifiedHUBZone>false</ns1:isSBACertifiedHUBZone>
<ns1:isSBACertified8AJointVenture>false</ns1:isSBACertified8AJointVenture></ns1:vendorCertifications>
<ns1:vendorLocation>
<ns1:streetAddress>13861 SUNRISE VALLEY DR STE 400</ns1:streetAddress>
<ns1:city>HERNDON</ns1:city>
<ns1:state name="VIRGINIA">VA</ns1:state>
<ns1:ZIPCode>201716126</ns1:ZIPCode>
<ns1:countryCode name="UNITED STATES">USA</ns1:countryCode>
<ns1:congressionalDistrictCode>10</ns1:congressionalDistrictCode></ns1:vendorLocation>
<ns1:vendorDUNSInformation>
<ns1:DUNSNumber>786468199</ns1:DUNSNumber>
<ns1:vendorName>DLT SOLUTIONS, LLC</ns1:vendorName>
<ns1:globalParentDUNSNumber>786468199</ns1:globalParentDUNSNumber>
<ns1:globalParentDUNSName>DLT SOLUTIONS LLC</ns1:globalParentDUNSName></ns1:vendorDUNSInformation>
<ns1:ccrRegistrationDetails></ns1:ccrRegistrationDetails></ns1:vendorSiteDetails>
<ns1:contractingOfficerBusinessSizeDetermination description="OTHER THAN SMALL BUSINESS">O</ns1:contractingOfficerBusinessSizeDetermination></ns1:vendor>
<ns1:placeOfPerformance>
<ns1:principalPlaceOfPerformance>
<ns1:stateCode name="DISTRICT OF COLUMBIA">DC</ns1:stateCode>
<ns1:countryCode name="UNITED STATES">USA</ns1:countryCode></ns1:principalPlaceOfPerformance>
<ns1:placeOfPerformanceZIPCode county="DISTRICT OF COLUMBIA" city="WASHINGTON">202020001</ns1:placeOfPerformanceZIPCode>
<ns1:placeOfPerformanceCongressionalDistrict>00</ns1:placeOfPerformanceCongressionalDistrict></ns1:placeOfPerformance>
<ns1:competition>
<ns1:extentCompeted description="FULL AND OPEN COMPETITION">A</ns1:extentCompeted>
<ns1:solicitationProcedures description="SUBJECT TO MULTIPLE AWARD FAIR OPPORTUNITY">MAFO</ns1:solicitationProcedures>
<ns1:typeOfSetAside description="NO SET ASIDE USED.">NONE</ns1:typeOfSetAside>
<ns1:evaluatedPreference description="NO PREFERENCE USED">NONE</ns1:evaluatedPreference>
<ns1:statutoryExceptionToFairOpportunity description="FAIR OPPORTUNITY GIVEN">FAIR</ns1:statutoryExceptionToFairOpportunity>
<ns1:numberOfOffersReceived>1</ns1:numberOfOffersReceived>
<ns1:commercialItemAcquisitionProcedures description="COMMERCIAL ITEM">A</ns1:commercialItemAcquisitionProcedures>
<ns1:commercialItemTestProgram description="NO">N</ns1:commercialItemTestProgram>
<ns1:A76Action description="NO">N</ns1:A76Action>
<ns1:fedBizOpps description="NOT APPLICABLE">X</ns1:fedBizOpps>
<ns1:localAreaSetAside description="NO">N</ns1:localAreaSetAside></ns1:competition>
<ns1:preferencePrograms></ns1:preferencePrograms>
<ns1:transactionInformation>
<ns1:createdBy>KARL.L.FEHRMAN@ED.GOV</ns1:createdBy>
<ns1:createdDate>2012-05-08 13:41:06</ns1:createdDate>
<ns1:lastModifiedBy>IDV_CORRECT</ns1:lastModifiedBy>
<ns1:lastModifiedDate>2016-02-16 13:10:16</ns1:lastModifiedDate>
<ns1:status description="FINAL">F</ns1:status>
<ns1:approvedBy>MICHAEL.HOLLOWAY@ED.GOV</ns1:approvedBy>
<ns1:approvedDate>2012-05-11 10:13:31</ns1:approvedDate></ns1:transactionInformation></ns1:award>
</content>
</entry>
';
l_rec.temp_clob := l_rec.temp_clob || buff;
--
buff :=
' <entry>
<title><![CDATA[PURCHASE ORDER DJF152600P0008877 (1) awarded to SKILLBUILDERS INC, was modified for the amount of $0]]></title>
<link rel="alternate" type="text/html" href="https://www.fpds.gov/ezsearch/search.do?s=FPDS&indexName=awardfull&templateName=1.5.1&q=DJF152600P0008877+1549+"></link>
<modified>2016-09-15 10:37:14</modified>
<content xmlns:ns1="https://www.fpds.gov/FPDS" type="application/xml">
<ns1:award xmlns:ns1="http://www.fpdsng.com/FPDS" version="1.4">
<ns1:awardID>
<ns1:awardContractID>
<ns1:agencyID name="FEDERAL BUREAU OF INVESTIGATION">1549</ns1:agencyID>
<ns1:PIID>DJF152600P0008877</ns1:PIID>
<ns1:modNumber>1</ns1:modNumber>
<ns1:transactionNumber>0</ns1:transactionNumber></ns1:awardContractID></ns1:awardID>
<ns1:relevantContractDates>
<ns1:signedDate>2015-10-30 00:00:00</ns1:signedDate>
<ns1:effectiveDate>2015-10-30 00:00:00</ns1:effectiveDate>
<ns1:currentCompletionDate>2015-10-30 00:00:00</ns1:currentCompletionDate>
<ns1:ultimateCompletionDate>2015-10-30 00:00:00</ns1:ultimateCompletionDate></ns1:relevantContractDates>
<ns1:dollarValues>
<ns1:obligatedAmount>0.00</ns1:obligatedAmount>
<ns1:baseAndExercisedOptionsValue>0.00</ns1:baseAndExercisedOptionsValue>
<ns1:baseAndAllOptionsValue>0.00</ns1:baseAndAllOptionsValue></ns1:dollarValues>
<ns1:totalDollarValues>
<ns1:totalObligatedAmount>15000.00</ns1:totalObligatedAmount>
<ns1:totalBaseAndExercisedOptionsValue>15000.00</ns1:totalBaseAndExercisedOptionsValue>
<ns1:totalBaseAndAllOptionsValue>15000.00</ns1:totalBaseAndAllOptionsValue></ns1:totalDollarValues>
<ns1:purchaserInformation>
<ns1:contractingOfficeAgencyID name="FEDERAL BUREAU OF INVESTIGATION" departmentID="1500" departmentName="JUSTICE, DEPARTMENT OF">1549</ns1:contractingOfficeAgencyID>
<ns1:contractingOfficeID name="DEPT OF JUST/FEDERAL BUREAU OF INVESTIGATION" country="USA">PDS02</ns1:contractingOfficeID>
<ns1:fundingRequestingAgencyID name="FEDERAL BUREAU OF INVESTIGATION" departmentID="1500" departmentName="JUSTICE, DEPARTMENT OF">1549</ns1:fundingRequestingAgencyID>
<ns1:fundingRequestingOfficeID name="DEPT OF JUST/FEDERAL BUREAU OF INVESTIGATION">PDS02</ns1:fundingRequestingOfficeID>
<ns1:foreignFunding description="NOT APPLICABLE">X</ns1:foreignFunding></ns1:purchaserInformation>
<ns1:contractMarketingData>
<ns1:feePaidForUseOfService>0.00</ns1:feePaidForUseOfService></ns1:contractMarketingData>
<ns1:contractData>
<ns1:contractActionType description="PURCHASE ORDER">B</ns1:contractActionType>
<ns1:typeOfContractPricing description="FIRM FIXED PRICE">J</ns1:typeOfContractPricing>
<ns1:reasonForModification description="CLOSE OUT">K</ns1:reasonForModification>
<ns1:nationalInterestActionCode description="NONE">NONE</ns1:nationalInterestActionCode>
<ns1:descriptionOfContractRequirement>"IGF::CL::IGF"
THIS WILL BE AN ONLINE CLASS FOR 10 APPLICATION DEVELOPERS. EACH DEVELOPER WILL ACCESS THE TRAINING FROM EITHER A HOME COMPUTER OR ONE ON UNET. COURSE TOPICS INCLUDE SQL STATEMENT PROCESSING, PL/SQL TUNING, VIEWING THE EXECUTION PLAN, THE IMPORTANC</ns1:descriptionOfContractRequirement>
<ns1:inherentlyGovernmentalFunction description="CLOSELY ASSOCIATED">CL</ns1:inherentlyGovernmentalFunction>
<ns1:GFE-GFP description="Transaction does not use GFE/GFP">N</ns1:GFE-GFP>
<ns1:undefinitizedAction description="NO">X</ns1:undefinitizedAction>
<ns1:consolidatedContract description="NO">N</ns1:consolidatedContract>
<ns1:performanceBasedServiceContract description="NO - SERVICE WHERE PBA IS NOT USED.">N</ns1:performanceBasedServiceContract>
<ns1:contingencyHumanitarianPeacekeepingOperation description="NOT APPLICABLE">X</ns1:contingencyHumanitarianPeacekeepingOperation>
<ns1:listOfTreasuryAccounts>
<ns1:treasuryAccount>
<ns1:treasuryAccountSymbol>
<ns1:agencyIdentifier>15</ns1:agencyIdentifier>
<ns1:mainAccountCode>0200</ns1:mainAccountCode>
<ns1:subAccountCode>000</ns1:subAccountCode></ns1:treasuryAccountSymbol></ns1:treasuryAccount></ns1:listOfTreasuryAccounts>
<ns1:purchaseCardAsPaymentMethod description="YES">Y</ns1:purchaseCardAsPaymentMethod>
<ns1:numberOfActions>1</ns1:numberOfActions></ns1:contractData>
<ns1:legislativeMandates>
<ns1:ClingerCohenAct description="NO">N</ns1:ClingerCohenAct>
<ns1:materialsSuppliesArticlesEquipment description="NO">N</ns1:materialsSuppliesArticlesEquipment>
<ns1:laborStandards description="NO">N</ns1:laborStandards>
<ns1:constructionWageRateRequirements description="NO">N</ns1:constructionWageRateRequirements>
<ns1:listOfAdditionalReportingValues></ns1:listOfAdditionalReportingValues>
<ns1:interagencyContractingAuthority description="NOT APPLICABLE">X</ns1:interagencyContractingAuthority></ns1:legislativeMandates>
<ns1:productOrServiceInformation>
<ns1:productOrServiceCode description="EDUCATION/TRAINING- INFORMATION TECHNOLOGY/TELECOMMUNICATIONS TRAINING" productOrServiceType="SERVICE">U012</ns1:productOrServiceCode>
<ns1:contractBundling description="NOT A BUNDLED REQUIREMENT">D</ns1:contractBundling>
<ns1:principalNAICSCode description="COMPUTER TRAINING">611420</ns1:principalNAICSCode>
<ns1:recoveredMaterialClauses description="NO CLAUSES INCLUDED AND NO SUSTAINABILITY INCLUDED">C</ns1:recoveredMaterialClauses>
<ns1:useOfEPADesignatedProducts description="MEETS REQUIREMENTS">A</ns1:useOfEPADesignatedProducts>
<ns1:countryOfOrigin name="UNITED STATES">USA</ns1:countryOfOrigin>
<ns1:placeOfManufacture description="NOT A MANUFACTURED END PRODUCT">C</ns1:placeOfManufacture></ns1:productOrServiceInformation>
<ns1:vendor>
<ns1:vendorHeader>
<ns1:vendorName>SKILLBUILDERS INC</ns1:vendorName></ns1:vendorHeader>
<ns1:vendorSiteDetails>
<ns1:vendorSocioEconomicIndicators>
<ns1:isAlaskanNativeOwnedCorporationOrFirm>false</ns1:isAlaskanNativeOwnedCorporationOrFirm>
<ns1:isAmericanIndianOwned>false</ns1:isAmericanIndianOwned>
<ns1:isIndianTribe>false</ns1:isIndianTribe>
<ns1:isNativeHawaiianOwnedOrganizationOrFirm>false</ns1:isNativeHawaiianOwnedOrganizationOrFirm>
<ns1:isTriballyOwnedFirm>false</ns1:isTriballyOwnedFirm>
<ns1:isVeteranOwned>false</ns1:isVeteranOwned>
<ns1:isServiceRelatedDisabledVeteranOwnedBusiness>false</ns1:isServiceRelatedDisabledVeteranOwnedBusiness>
<ns1:isWomenOwned>false</ns1:isWomenOwned>
<ns1:minorityOwned>
<ns1:isMinorityOwned>false</ns1:isMinorityOwned>
<ns1:isSubContinentAsianAmericanOwnedBusiness>false</ns1:isSubContinentAsianAmericanOwnedBusiness>
<ns1:isAsianPacificAmericanOwnedBusiness>false</ns1:isAsianPacificAmericanOwnedBusiness>
<ns1:isBlackAmericanOwnedBusiness>false</ns1:isBlackAmericanOwnedBusiness>
<ns1:isHispanicAmericanOwnedBusiness>false</ns1:isHispanicAmericanOwnedBusiness>
<ns1:isNativeAmericanOwnedBusiness>false</ns1:isNativeAmericanOwnedBusiness>
<ns1:isOtherMinorityOwned>false</ns1:isOtherMinorityOwned></ns1:minorityOwned>
<ns1:isVerySmallBusiness>false</ns1:isVerySmallBusiness>
<ns1:isWomenOwnedSmallBusiness>false</ns1:isWomenOwnedSmallBusiness>
<ns1:isEconomicallyDisadvantagedWomenOwnedSmallBusiness>false</ns1:isEconomicallyDisadvantagedWomenOwnedSmallBusiness>
<ns1:isJointVentureWomenOwnedSmallBusiness>false</ns1:isJointVentureWomenOwnedSmallBusiness>
<ns1:isJointVentureEconomicallyDisadvantagedWomenOwnedSmallBusiness>false</ns1:isJointVentureEconomicallyDisadvantagedWomenOwnedSmallBusiness></ns1:vendorSocioEconomicIndicators>
<ns1:vendorBusinessTypes>
<ns1:isCommunityDevelopedCorporationOwnedFirm>false</ns1:isCommunityDevelopedCorporationOwnedFirm>
<ns1:isLaborSurplusAreaFirm>false</ns1:isLaborSurplusAreaFirm>
<ns1:federalGovernment>
<ns1:isFederalGovernment>false</ns1:isFederalGovernment>
<ns1:isFederallyFundedResearchAndDevelopmentCorp>false</ns1:isFederallyFundedResearchAndDevelopmentCorp>
<ns1:isFederalGovernmentAgency>false</ns1:isFederalGovernmentAgency></ns1:federalGovernment>
<ns1:isStateGovernment>false</ns1:isStateGovernment>
<ns1:localGovernment>
<ns1:isLocalGovernment>false</ns1:isLocalGovernment>
<ns1:isCityLocalGovernment>false</ns1:isCityLocalGovernment>
<ns1:isCountyLocalGovernment>false</ns1:isCountyLocalGovernment>
<ns1:isInterMunicipalLocalGovernment>false</ns1:isInterMunicipalLocalGovernment>
<ns1:isLocalGovernmentOwned>false</ns1:isLocalGovernmentOwned>
<ns1:isMunicipalityLocalGovernment>false</ns1:isMunicipalityLocalGovernment>
<ns1:isSchoolDistrictLocalGovernment>false</ns1:isSchoolDistrictLocalGovernment>
<ns1:isTownshipLocalGovernment>false</ns1:isTownshipLocalGovernment></ns1:localGovernment>
<ns1:isTribalGovernment>false</ns1:isTribalGovernment>
<ns1:isForeignGovernment>false</ns1:isForeignGovernment>
<ns1:businessOrOrganizationType>
<ns1:isCorporateEntityNotTaxExempt>true</ns1:isCorporateEntityNotTaxExempt>
<ns1:isCorporateEntityTaxExempt>false</ns1:isCorporateEntityTaxExempt>
<ns1:isPartnershipOrLimitedLiabilityPartnership>false</ns1:isPartnershipOrLimitedLiabilityPartnership>
<ns1:isSolePropreitorship>false</ns1:isSolePropreitorship>
<ns1:isSmallAgriculturalCooperative>false</ns1:isSmallAgriculturalCooperative>
<ns1:isInternationalOrganization>false</ns1:isInternationalOrganization>
<ns1:isUSGovernmentEntity>false</ns1:isUSGovernmentEntity></ns1:businessOrOrganizationType></ns1:vendorBusinessTypes>
<ns1:vendorLineOfBusiness>
<ns1:isCommunityDevelopmentCorporation>false</ns1:isCommunityDevelopmentCorporation>
<ns1:isDomesticShelter>false</ns1:isDomesticShelter>
<ns1:isEducationalInstitution>false</ns1:isEducationalInstitution>
<ns1:isFoundation>false</ns1:isFoundation>
<ns1:isHospital>false</ns1:isHospital>
<ns1:isManufacturerOfGoods>false</ns1:isManufacturerOfGoods>
<ns1:isVeterinaryHospital>false</ns1:isVeterinaryHospital>
<ns1:isHispanicServicingInstitution>false</ns1:isHispanicServicingInstitution></ns1:vendorLineOfBusiness>
<ns1:vendorRelationshipWithFederalGovernment>
<ns1:receivesContracts>false</ns1:receivesContracts>
<ns1:receivesGrants>false</ns1:receivesGrants>
<ns1:receivesContractsAndGrants>true</ns1:receivesContractsAndGrants></ns1:vendorRelationshipWithFederalGovernment>
<ns1:typeOfGovernmentEntity>
<ns1:isAirportAuthority>false</ns1:isAirportAuthority>
<ns1:isCouncilOfGovernments>false</ns1:isCouncilOfGovernments>
<ns1:isHousingAuthoritiesPublicOrTribal>false</ns1:isHousingAuthoritiesPublicOrTribal>
<ns1:isInterstateEntity>false</ns1:isInterstateEntity>
<ns1:isPlanningCommission>false</ns1:isPlanningCommission>
<ns1:isPortAuthority>false</ns1:isPortAuthority>
<ns1:isTransitAuthority>false</ns1:isTransitAuthority></ns1:typeOfGovernmentEntity>
<ns1:vendorOrganizationFactors>
<ns1:isSubchapterSCorporation>true</ns1:isSubchapterSCorporation>
<ns1:isLimitedLiabilityCorporation>false</ns1:isLimitedLiabilityCorporation>
<ns1:isForeignOwnedAndLocated>false</ns1:isForeignOwnedAndLocated>
<ns1:profitStructure>
<ns1:isForProfitOrganization>true</ns1:isForProfitOrganization>
<ns1:isNonprofitOrganization>false</ns1:isNonprofitOrganization>
<ns1:isOtherNotForProfitOrganization>false</ns1:isOtherNotForProfitOrganization></ns1:profitStructure>
<ns1:isShelteredWorkshop>false</ns1:isShelteredWorkshop>
<ns1:stateOfIncorporation name="RHODE ISLAND">RI</ns1:stateOfIncorporation>
<ns1:countryOfIncorporation name="UNITED STATES">USA</ns1:countryOfIncorporation>
<ns1:organizationalType>CORPORATE NOT TAX EXEMPT</ns1:organizationalType>
<ns1:numberOfEmployees>3</ns1:numberOfEmployees>
<ns1:annualRevenue>800000</ns1:annualRevenue></ns1:vendorOrganizationFactors>
<ns1:typeOfEducationalEntity>
<ns1:is1862LandGrantCollege>false</ns1:is1862LandGrantCollege>
<ns1:is1890LandGrantCollege>false</ns1:is1890LandGrantCollege>
<ns1:is1994LandGrantCollege>false</ns1:is1994LandGrantCollege>
<ns1:isHistoricallyBlackCollegeOrUniversity>false</ns1:isHistoricallyBlackCollegeOrUniversity>
<ns1:isMinorityInstitution>false</ns1:isMinorityInstitution>
<ns1:isPrivateUniversityOrCollege>false</ns1:isPrivateUniversityOrCollege>
<ns1:isSchoolOfForestry>false</ns1:isSchoolOfForestry>
<ns1:isStateControlledInstitutionofHigherLearning>false</ns1:isStateControlledInstitutionofHigherLearning>
<ns1:isTribalCollege>false</ns1:isTribalCollege>
<ns1:isVeterinaryCollege>false</ns1:isVeterinaryCollege>
<ns1:isAlaskanNativeServicingInstitution>false</ns1:isAlaskanNativeServicingInstitution>
<ns1:isNativeHawaiianServicingInstitution>false</ns1:isNativeHawaiianServicingInstitution></ns1:typeOfEducationalEntity>
<ns1:vendorCertifications>
<ns1:isDOTCertifiedDisadvantagedBusinessEnterprise>false</ns1:isDOTCertifiedDisadvantagedBusinessEnterprise>
<ns1:isSelfCertifiedSmallDisadvantagedBusiness>false</ns1:isSelfCertifiedSmallDisadvantagedBusiness>
<ns1:isSBACertifiedSmallDisadvantagedBusiness>false</ns1:isSBACertifiedSmallDisadvantagedBusiness>
<ns1:isSBACertified8AProgramParticipant>false</ns1:isSBACertified8AProgramParticipant>
<ns1:isSelfCertifiedHUBZoneJointVenture>false</ns1:isSelfCertifiedHUBZoneJointVenture>
<ns1:isSBACertifiedHUBZone>false</ns1:isSBACertifiedHUBZone>
<ns1:isSBACertified8AJointVenture>false</ns1:isSBACertified8AJointVenture></ns1:vendorCertifications>
<ns1:vendorLocation>
<ns1:streetAddress>213 ROBINSON ST</ns1:streetAddress>
<ns1:city>WAKEFIELD</ns1:city>
<ns1:state name="RHODE ISLAND">RI</ns1:state>
<ns1:ZIPCode>028793590</ns1:ZIPCode>
<ns1:countryCode name="UNITED STATES">USA</ns1:countryCode>
<ns1:phoneNo>4017836172</ns1:phoneNo>
<ns1:faxNo>4017830405</ns1:faxNo>
<ns1:congressionalDistrictCode>02</ns1:congressionalDistrictCode></ns1:vendorLocation>
<ns1:vendorSiteCode>960084242</ns1:vendorSiteCode>
<ns1:vendorAlternateSiteCode>02879</ns1:vendorAlternateSiteCode>
<ns1:vendorDUNSInformation>
<ns1:DUNSNumber>960084242</ns1:DUNSNumber>
<ns1:vendorName>SKILLBUILDERS INC</ns1:vendorName>
<ns1:globalParentDUNSNumber>960084242</ns1:globalParentDUNSNumber>
<ns1:globalParentDUNSName>SKILLBUILDERS INC</ns1:globalParentDUNSName></ns1:vendorDUNSInformation>
<ns1:ccrRegistrationDetails>
<ns1:registrationDate>2001-10-22 00:00:00</ns1:registrationDate>
<ns1:renewalDate>2016-01-21 00:00:00</ns1:renewalDate></ns1:ccrRegistrationDetails></ns1:vendorSiteDetails>
<ns1:contractingOfficerBusinessSizeDetermination description="OTHER THAN SMALL BUSINESS">O</ns1:contractingOfficerBusinessSizeDetermination></ns1:vendor>
<ns1:placeOfPerformance>
<ns1:principalPlaceOfPerformance>
<ns1:stateCode name="DISTRICT OF COLUMBIA">DC</ns1:stateCode>
<ns1:countryCode name="UNITED STATES">USA</ns1:countryCode></ns1:principalPlaceOfPerformance>
<ns1:placeOfPerformanceZIPCode county="DISTRICT OF COLUMBIA" city="WASHINGTON">205350001</ns1:placeOfPerformanceZIPCode>
<ns1:placeOfPerformanceCongressionalDistrict>00</ns1:placeOfPerformanceCongressionalDistrict></ns1:placeOfPerformance>
<ns1:competition>
<ns1:extentCompeted description="FULL AND OPEN COMPETITION">A</ns1:extentCompeted>
<ns1:solicitationProcedures description="NEGOTIATED PROPOSAL/QUOTE">NP</ns1:solicitationProcedures>
<ns1:typeOfSetAside description="NO SET ASIDE USED.">NONE</ns1:typeOfSetAside>
<ns1:evaluatedPreference description="NO PREFERENCE USED">NONE</ns1:evaluatedPreference>
<ns1:numberOfOffersReceived>3</ns1:numberOfOffersReceived>
<ns1:commercialItemAcquisitionProcedures description="COMMERCIAL ITEM PROCEDURES NOT USED">D</ns1:commercialItemAcquisitionProcedures>
<ns1:commercialItemTestProgram description="NO">N</ns1:commercialItemTestProgram>
<ns1:A76Action description="NO">N</ns1:A76Action>
<ns1:fedBizOpps description="NO">N</ns1:fedBizOpps>
<ns1:localAreaSetAside description="NO">N</ns1:localAreaSetAside></ns1:competition>
<ns1:preferencePrograms>
<ns1:subcontractPlan description="PLAN NOT REQUIRED ">B</ns1:subcontractPlan></ns1:preferencePrograms>
<ns1:transactionInformation>
<ns1:createdBy>VLBANKS</ns1:createdBy>
<ns1:createdDate>2015-10-30 13:34:40</ns1:createdDate>
<ns1:lastModifiedBy>VLBANKS</ns1:lastModifiedBy>
<ns1:lastModifiedDate>2016-09-15 10:37:14</ns1:lastModifiedDate>
<ns1:status description="FINAL">F</ns1:status>
<ns1:approvedBy>VLBANKS</ns1:approvedBy>
<ns1:approvedDate>2016-09-15 10:37:14</ns1:approvedDate>
<ns1:closedBy>VLBANKS</ns1:closedBy>
<ns1:closedDate>2016-09-15 10:37:14</ns1:closedDate>
<ns1:closedStatus>Y</ns1:closedStatus></ns1:transactionInformation></ns1:award>
</content>
</entry>
';
l_rec.temp_clob := l_rec.temp_clob || buff;
--
buff :=
' <entry>
<title><![CDATA[New PURCHASE ORDER DOC40PAPT1511219 awarded to SHI INTERNATIONAL CORP. for the amount of $4,000]]></title>
<link rel="alternate" type="text/html" href="https://www.fpds.gov/ezsearch/search.do?s=FPDS&indexName=awardfull&templateName=1.5.1&q=DOC40PAPT1511219+1344+"></link>
<modified>2015-06-11 17:40:38</modified>
<content xmlns:ns1="https://www.fpds.gov/FPDS" type="application/xml">
<ns1:award xmlns:ns1="http://www.fpdsng.com/FPDS" version="1.4">
<ns1:awardID>
<ns1:awardContractID>
<ns1:agencyID name="PATENT AND TRADEMARK OFFICE">1344</ns1:agencyID>
<ns1:PIID>DOC40PAPT1511219</ns1:PIID>
<ns1:modNumber>0</ns1:modNumber>
<ns1:transactionNumber>0</ns1:transactionNumber></ns1:awardContractID></ns1:awardID>
<ns1:relevantContractDates>
<ns1:signedDate>2015-06-09 00:00:00</ns1:signedDate>
<ns1:effectiveDate>2015-06-09 00:00:00</ns1:effectiveDate>
<ns1:currentCompletionDate>2016-06-08 00:00:00</ns1:currentCompletionDate>
<ns1:ultimateCompletionDate>2016-06-08 00:00:00</ns1:ultimateCompletionDate></ns1:relevantContractDates>
<ns1:dollarValues>
<ns1:obligatedAmount>4000.00</ns1:obligatedAmount>
<ns1:baseAndExercisedOptionsValue>4000.00</ns1:baseAndExercisedOptionsValue>
<ns1:baseAndAllOptionsValue>4000.00</ns1:baseAndAllOptionsValue></ns1:dollarValues>
<ns1:totalDollarValues>
<ns1:totalObligatedAmount>4000.00</ns1:totalObligatedAmount>
<ns1:totalBaseAndExercisedOptionsValue>4000.00</ns1:totalBaseAndExercisedOptionsValue>
<ns1:totalBaseAndAllOptionsValue>4000.00</ns1:totalBaseAndAllOptionsValue></ns1:totalDollarValues>
<ns1:purchaserInformation>
<ns1:contractingOfficeAgencyID name="PATENT AND TRADEMARK OFFICE" departmentID="1300" departmentName="COMMERCE, DEPARTMENT OF">1344</ns1:contractingOfficeAgencyID>
<ns1:contractingOfficeID name="DEPT OF COMM/PATENT AND TRADEMARK OFFICE" country="USA">000PA</ns1:contractingOfficeID>
<ns1:fundingRequestingAgencyID name="PATENT AND TRADEMARK OFFICE" departmentID="1300" departmentName="COMMERCE, DEPARTMENT OF">1344</ns1:fundingRequestingAgencyID>
<ns1:fundingRequestingOfficeID name="DEPT OF COMM/PATENT AND TRADEMARK OFFICE">000PA</ns1:fundingRequestingOfficeID>
<ns1:foreignFunding description="NOT APPLICABLE">X</ns1:foreignFunding></ns1:purchaserInformation>
<ns1:contractMarketingData>
<ns1:feePaidForUseOfService>0.00</ns1:feePaidForUseOfService></ns1:contractMarketingData>
<ns1:contractData>
<ns1:contractActionType description="PURCHASE ORDER">B</ns1:contractActionType>
<ns1:typeOfContractPricing description="FIRM FIXED PRICE">J</ns1:typeOfContractPricing>
<ns1:nationalInterestActionCode description="NONE">NONE</ns1:nationalInterestActionCode>
<ns1:descriptionOfContractRequirement>LICENSE FOR SONARSOURCE PL/SQL</ns1:descriptionOfContractRequirement>
<ns1:GFE-GFP description="Transaction does not use GFE/GFP">N</ns1:GFE-GFP>
<ns1:undefinitizedAction description="NO">X</ns1:undefinitizedAction>
<ns1:consolidatedContract description="NO">N</ns1:consolidatedContract>
<ns1:performanceBasedServiceContract description="NOT APPLICABLE">X</ns1:performanceBasedServiceContract>
<ns1:contingencyHumanitarianPeacekeepingOperation description="NOT APPLICABLE">X</ns1:contingencyHumanitarianPeacekeepingOperation>
<ns1:listOfTreasuryAccounts>
<ns1:treasuryAccount>
<ns1:treasuryAccountSymbol>
<ns1:agencyIdentifier>13</ns1:agencyIdentifier>
<ns1:mainAccountCode>1006</ns1:mainAccountCode>
<ns1:subAccountCode>000</ns1:subAccountCode></ns1:treasuryAccountSymbol></ns1:treasuryAccount></ns1:listOfTreasuryAccounts>
<ns1:purchaseCardAsPaymentMethod description="NO">N</ns1:purchaseCardAsPaymentMethod>
<ns1:numberOfActions>1</ns1:numberOfActions></ns1:contractData>
<ns1:legislativeMandates>
<ns1:ClingerCohenAct description="YES">Y</ns1:ClingerCohenAct>
<ns1:materialsSuppliesArticlesEquipment description="NOT APPLICABLE">X</ns1:materialsSuppliesArticlesEquipment>
<ns1:laborStandards description="NOT APPLICABLE">X</ns1:laborStandards>
<ns1:constructionWageRateRequirements description="NOT APPLICABLE">X</ns1:constructionWageRateRequirements>
<ns1:listOfAdditionalReportingValues></ns1:listOfAdditionalReportingValues>
<ns1:interagencyContractingAuthority description="NOT APPLICABLE">X</ns1:interagencyContractingAuthority></ns1:legislativeMandates>
<ns1:productOrServiceInformation>
<ns1:productOrServiceCode description="ADP SOFTWARE" productOrServiceType="PRODUCT">7030</ns1:productOrServiceCode>
<ns1:contractBundling description="NOT A BUNDLED REQUIREMENT">D</ns1:contractBundling>
<ns1:principalNAICSCode description="COMPUTER AND COMPUTER PERIPHERAL EQUIPMENT AND SOFTWARE MERCHANT WHOLESALERS">423430</ns1:principalNAICSCode>
<ns1:recoveredMaterialClauses description="NO CLAUSES INCLUDED AND NO SUSTAINABILITY INCLUDED">C</ns1:recoveredMaterialClauses>
<ns1:manufacturingOrganizationType description="U.S. OWNED BUSINESS">A</ns1:manufacturingOrganizationType>
<ns1:useOfEPADesignatedProducts description="NOT REQUIRED">E</ns1:useOfEPADesignatedProducts>
<ns1:countryOfOrigin name="UNITED STATES">USA</ns1:countryOfOrigin>
<ns1:placeOfManufacture description="MFG IN U.S.">D</ns1:placeOfManufacture></ns1:productOrServiceInformation>
<ns1:vendor>
<ns1:vendorHeader>
<ns1:vendorName>SHI INTERNATIONAL CORP.</ns1:vendorName></ns1:vendorHeader>
<ns1:vendorSiteDetails>
<ns1:vendorSocioEconomicIndicators>
<ns1:isAlaskanNativeOwnedCorporationOrFirm>false</ns1:isAlaskanNativeOwnedCorporationOrFirm>
<ns1:isAmericanIndianOwned>false</ns1:isAmericanIndianOwned>
<ns1:isIndianTribe>false</ns1:isIndianTribe>
<ns1:isNativeHawaiianOwnedOrganizationOrFirm>false</ns1:isNativeHawaiianOwnedOrganizationOrFirm>
<ns1:isTriballyOwnedFirm>false</ns1:isTriballyOwnedFirm>
<ns1:isVeteranOwned>false</ns1:isVeteranOwned>
<ns1:isServiceRelatedDisabledVeteranOwnedBusiness>false</ns1:isServiceRelatedDisabledVeteranOwnedBusiness>
<ns1:isWomenOwned>true</ns1:isWomenOwned>
<ns1:minorityOwned>
<ns1:isMinorityOwned>true</ns1:isMinorityOwned>
<ns1:isSubContinentAsianAmericanOwnedBusiness>false</ns1:isSubContinentAsianAmericanOwnedBusiness>
<ns1:isAsianPacificAmericanOwnedBusiness>true</ns1:isAsianPacificAmericanOwnedBusiness>
<ns1:isBlackAmericanOwnedBusiness>false</ns1:isBlackAmericanOwnedBusiness>
<ns1:isHispanicAmericanOwnedBusiness>false</ns1:isHispanicAmericanOwnedBusiness>
<ns1:isNativeAmericanOwnedBusiness>false</ns1:isNativeAmericanOwnedBusiness>
<ns1:isOtherMinorityOwned>false</ns1:isOtherMinorityOwned></ns1:minorityOwned>
<ns1:isVerySmallBusiness>false</ns1:isVerySmallBusiness>
<ns1:isWomenOwnedSmallBusiness>false</ns1:isWomenOwnedSmallBusiness>
<ns1:isEconomicallyDisadvantagedWomenOwnedSmallBusiness>false</ns1:isEconomicallyDisadvantagedWomenOwnedSmallBusiness>
<ns1:isJointVentureWomenOwnedSmallBusiness>false</ns1:isJointVentureWomenOwnedSmallBusiness>
<ns1:isJointVentureEconomicallyDisadvantagedWomenOwnedSmallBusiness>false</ns1:isJointVentureEconomicallyDisadvantagedWomenOwnedSmallBusiness></ns1:vendorSocioEconomicIndicators>
<ns1:vendorBusinessTypes>
<ns1:isCommunityDevelopedCorporationOwnedFirm>false</ns1:isCommunityDevelopedCorporationOwnedFirm>
<ns1:isLaborSurplusAreaFirm>false</ns1:isLaborSurplusAreaFirm>
<ns1:federalGovernment>
<ns1:isFederalGovernment>false</ns1:isFederalGovernment>
<ns1:isFederallyFundedResearchAndDevelopmentCorp>false</ns1:isFederallyFundedResearchAndDevelopmentCorp>
<ns1:isFederalGovernmentAgency>false</ns1:isFederalGovernmentAgency></ns1:federalGovernment>
<ns1:isStateGovernment>false</ns1:isStateGovernment>
<ns1:localGovernment>
<ns1:isLocalGovernment>false</ns1:isLocalGovernment>
<ns1:isCityLocalGovernment>false</ns1:isCityLocalGovernment>
<ns1:isCountyLocalGovernment>false</ns1:isCountyLocalGovernment>
<ns1:isInterMunicipalLocalGovernment>false</ns1:isInterMunicipalLocalGovernment>
<ns1:isLocalGovernmentOwned>false</ns1:isLocalGovernmentOwned>
<ns1:isMunicipalityLocalGovernment>false</ns1:isMunicipalityLocalGovernment>
<ns1:isSchoolDistrictLocalGovernment>false</ns1:isSchoolDistrictLocalGovernment>
<ns1:isTownshipLocalGovernment>false</ns1:isTownshipLocalGovernment></ns1:localGovernment>
<ns1:isTribalGovernment>false</ns1:isTribalGovernment>
<ns1:isForeignGovernment>false</ns1:isForeignGovernment>
<ns1:businessOrOrganizationType>
<ns1:isCorporateEntityNotTaxExempt>true</ns1:isCorporateEntityNotTaxExempt>
<ns1:isCorporateEntityTaxExempt>false</ns1:isCorporateEntityTaxExempt>
<ns1:isPartnershipOrLimitedLiabilityPartnership>false</ns1:isPartnershipOrLimitedLiabilityPartnership>
<ns1:isSolePropreitorship>false</ns1:isSolePropreitorship>
<ns1:isSmallAgriculturalCooperative>false</ns1:isSmallAgriculturalCooperative>
<ns1:isInternationalOrganization>false</ns1:isInternationalOrganization>
<ns1:isUSGovernmentEntity>false</ns1:isUSGovernmentEntity></ns1:businessOrOrganizationType></ns1:vendorBusinessTypes>
<ns1:vendorLineOfBusiness>
<ns1:isCommunityDevelopmentCorporation>false</ns1:isCommunityDevelopmentCorporation>
<ns1:isDomesticShelter>false</ns1:isDomesticShelter>
<ns1:isEducationalInstitution>false</ns1:isEducationalInstitution>
<ns1:isFoundation>false</ns1:isFoundation>
<ns1:isHospital>false</ns1:isHospital>
<ns1:isManufacturerOfGoods>false</ns1:isManufacturerOfGoods>
<ns1:isVeterinaryHospital>false</ns1:isVeterinaryHospital>
<ns1:isHispanicServicingInstitution>false</ns1:isHispanicServicingInstitution></ns1:vendorLineOfBusiness>
<ns1:vendorRelationshipWithFederalGovernment>
<ns1:receivesContracts>false</ns1:receivesContracts>
<ns1:receivesGrants>false</ns1:receivesGrants>
<ns1:receivesContractsAndGrants>true</ns1:receivesContractsAndGrants></ns1:vendorRelationshipWithFederalGovernment>
<ns1:typeOfGovernmentEntity>
<ns1:isAirportAuthority>false</ns1:isAirportAuthority>
<ns1:isCouncilOfGovernments>false</ns1:isCouncilOfGovernments>
<ns1:isHousingAuthoritiesPublicOrTribal>false</ns1:isHousingAuthoritiesPublicOrTribal>
<ns1:isInterstateEntity>false</ns1:isInterstateEntity>
<ns1:isPlanningCommission>false</ns1:isPlanningCommission>
<ns1:isPortAuthority>false</ns1:isPortAuthority>
<ns1:isTransitAuthority>false</ns1:isTransitAuthority></ns1:typeOfGovernmentEntity>
<ns1:vendorOrganizationFactors>
<ns1:isSubchapterSCorporation>false</ns1:isSubchapterSCorporation>
<ns1:isLimitedLiabilityCorporation>false</ns1:isLimitedLiabilityCorporation>
<ns1:isForeignOwnedAndLocated>false</ns1:isForeignOwnedAndLocated>
<ns1:profitStructure>
<ns1:isForProfitOrganization>true</ns1:isForProfitOrganization>
<ns1:isNonprofitOrganization>false</ns1:isNonprofitOrganization>
<ns1:isOtherNotForProfitOrganization>false</ns1:isOtherNotForProfitOrganization></ns1:profitStructure>
<ns1:isShelteredWorkshop>false</ns1:isShelteredWorkshop>
<ns1:stateOfIncorporation name="NEW JERSEY">NJ</ns1:stateOfIncorporation>
<ns1:countryOfIncorporation name="UNITED STATES">USA</ns1:countryOfIncorporation>
<ns1:organizationalType>CORPORATE NOT TAX EXEMPT</ns1:organizationalType>
<ns1:numberOfEmployees>2000</ns1:numberOfEmployees>
<ns1:annualRevenue>6500000000</ns1:annualRevenue></ns1:vendorOrganizationFactors>
<ns1:typeOfEducationalEntity>
<ns1:is1862LandGrantCollege>false</ns1:is1862LandGrantCollege>
<ns1:is1890LandGrantCollege>false</ns1:is1890LandGrantCollege>
<ns1:is1994LandGrantCollege>false</ns1:is1994LandGrantCollege>
<ns1:isHistoricallyBlackCollegeOrUniversity>false</ns1:isHistoricallyBlackCollegeOrUniversity>
<ns1:isMinorityInstitution>false</ns1:isMinorityInstitution>
<ns1:isPrivateUniversityOrCollege>false</ns1:isPrivateUniversityOrCollege>
<ns1:isSchoolOfForestry>false</ns1:isSchoolOfForestry>
<ns1:isStateControlledInstitutionofHigherLearning>false</ns1:isStateControlledInstitutionofHigherLearning>
<ns1:isTribalCollege>false</ns1:isTribalCollege>
<ns1:isVeterinaryCollege>false</ns1:isVeterinaryCollege>
<ns1:isAlaskanNativeServicingInstitution>false</ns1:isAlaskanNativeServicingInstitution>
<ns1:isNativeHawaiianServicingInstitution>false</ns1:isNativeHawaiianServicingInstitution></ns1:typeOfEducationalEntity>
<ns1:vendorCertifications>
<ns1:isDOTCertifiedDisadvantagedBusinessEnterprise>false</ns1:isDOTCertifiedDisadvantagedBusinessEnterprise>
<ns1:isSelfCertifiedSmallDisadvantagedBusiness>false</ns1:isSelfCertifiedSmallDisadvantagedBusiness>
<ns1:isSBACertifiedSmallDisadvantagedBusiness>false</ns1:isSBACertifiedSmallDisadvantagedBusiness>
<ns1:isSBACertified8AProgramParticipant>false</ns1:isSBACertified8AProgramParticipant>
<ns1:isSelfCertifiedHUBZoneJointVenture>false</ns1:isSelfCertifiedHUBZoneJointVenture>
<ns1:isSBACertifiedHUBZone>false</ns1:isSBACertifiedHUBZone>
<ns1:isSBACertified8AJointVenture>false</ns1:isSBACertified8AJointVenture></ns1:vendorCertifications>
<ns1:vendorLocation>
<ns1:streetAddress>290 DAVIDSON AVE STE 101</ns1:streetAddress>
<ns1:city>SOMERSET</ns1:city>
<ns1:state name="NEW JERSEY">NJ</ns1:state>
<ns1:ZIPCode>088734179</ns1:ZIPCode>
<ns1:countryCode name="UNITED STATES">USA</ns1:countryCode>
<ns1:phoneNo>8476031132</ns1:phoneNo>
<ns1:congressionalDistrictCode>12</ns1:congressionalDistrictCode></ns1:vendorLocation>
<ns1:vendorSiteCode>611429481</ns1:vendorSiteCode>
<ns1:vendorAlternateSiteCode>08873</ns1:vendorAlternateSiteCode>
<ns1:vendorDUNSInformation>
<ns1:DUNSNumber>611429481</ns1:DUNSNumber>
<ns1:vendorName>SHI INTERNATIONAL CORP.</ns1:vendorName>
<ns1:globalParentDUNSNumber>611429481</ns1:globalParentDUNSNumber>
<ns1:globalParentDUNSName>SHI INTERNATIONAL CORP.</ns1:globalParentDUNSName></ns1:vendorDUNSInformation>
<ns1:ccrRegistrationDetails>
<ns1:registrationDate>2001-12-05 00:00:00</ns1:registrationDate>
<ns1:renewalDate>2016-05-19 00:00:00</ns1:renewalDate></ns1:ccrRegistrationDetails></ns1:vendorSiteDetails>
<ns1:contractingOfficerBusinessSizeDetermination description="OTHER THAN SMALL BUSINESS">O</ns1:contractingOfficerBusinessSizeDetermination></ns1:vendor>
<ns1:placeOfPerformance>
<ns1:principalPlaceOfPerformance>
<ns1:stateCode name="VIRGINIA">VA</ns1:stateCode>
<ns1:countryCode name="UNITED STATES">USA</ns1:countryCode></ns1:principalPlaceOfPerformance>
<ns1:placeOfPerformanceZIPCode county="ALEXANDRIA CITY" city="ALEXANDRIA">223131450</ns1:placeOfPerformanceZIPCode>
<ns1:placeOfPerformanceCongressionalDistrict>08</ns1:placeOfPerformanceCongressionalDistrict></ns1:placeOfPerformance>
<ns1:competition>
<ns1:extentCompeted description="NOT COMPETED UNDER SAP">G</ns1:extentCompeted>
<ns1:solicitationProcedures description="SIMPLIFIED ACQUISITION">SP1</ns1:solicitationProcedures>
<ns1:typeOfSetAside description="NO SET ASIDE USED.">NONE</ns1:typeOfSetAside>
<ns1:evaluatedPreference description="NO PREFERENCE USED">NONE</ns1:evaluatedPreference>
<ns1:reasonNotCompeted description="SAP NON-COMPETITION">SP2</ns1:reasonNotCompeted>
<ns1:numberOfOffersReceived>1</ns1:numberOfOffersReceived>
<ns1:commercialItemAcquisitionProcedures description="COMMERCIAL ITEM PROCEDURES NOT USED">D</ns1:commercialItemAcquisitionProcedures>
<ns1:commercialItemTestProgram description="NO">N</ns1:commercialItemTestProgram>
<ns1:A76Action description="NO">N</ns1:A76Action>
<ns1:fedBizOpps description="NOT APPLICABLE">X</ns1:fedBizOpps>
<ns1:localAreaSetAside description="NO">N</ns1:localAreaSetAside></ns1:competition>
<ns1:preferencePrograms>
<ns1:subcontractPlan description="PLAN NOT REQUIRED ">B</ns1:subcontractPlan></ns1:preferencePrograms>
<ns1:transactionInformation>
<ns1:createdBy>PTOTBF</ns1:createdBy>
<ns1:createdDate>2015-06-11 17:09:54</ns1:createdDate>
<ns1:lastModifiedBy>PTOTBF</ns1:lastModifiedBy>
<ns1:lastModifiedDate>2015-06-11 17:40:38</ns1:lastModifiedDate>
<ns1:status description="FINAL">F</ns1:status>
<ns1:approvedBy>PTOTBF</ns1:approvedBy>
<ns1:approvedDate>2015-06-11 17:40:38</ns1:approvedDate></ns1:transactionInformation></ns1:award>
</content>
</entry>
';
l_rec.temp_clob := l_rec.temp_clob || buff;
--
buff :=
' <entry>
<title><![CDATA[New DELIVERY ORDER AG32SBD150147 awarded to APEXTECH LLC for the amount of $198,000]]></title>
<link rel="alternate" type="text/html" href="https://www.fpds.gov/ezsearch/search.do?s=FPDS&indexName=awardfull&templateName=1.5.1&q=AG32SBD150147+12H2+"></link>
<modified>2017-10-04 14:20:48</modified>
<content xmlns:ns1="https://www.fpds.gov/FPDS" type="application/xml">
<ns1:award xmlns:ns1="http://www.fpdsng.com/FPDS" version="1.4">
<ns1:awardID>
<ns1:awardContractID>
<ns1:agencyID name="AGRICULTURAL RESEARCH SERVICE">12H2</ns1:agencyID>
<ns1:PIID>AG32SBD150147</ns1:PIID>
<ns1:modNumber>0</ns1:modNumber>
<ns1:transactionNumber>0</ns1:transactionNumber></ns1:awardContractID>
<ns1:referencedIDVID>
<ns1:agencyID name="FEDERAL ACQUISITION SERVICE">4732</ns1:agencyID>
<ns1:PIID>GS06F0821Z</ns1:PIID>
<ns1:modNumber>0</ns1:modNumber></ns1:referencedIDVID></ns1:awardID>
<ns1:relevantContractDates>
<ns1:signedDate>2015-06-03 00:00:00</ns1:signedDate>
<ns1:effectiveDate>2015-06-03 00:00:00</ns1:effectiveDate>
<ns1:currentCompletionDate>2019-07-05 00:00:00</ns1:currentCompletionDate>
<ns1:ultimateCompletionDate>2019-07-05 00:00:00</ns1:ultimateCompletionDate></ns1:relevantContractDates>
<ns1:dollarValues>
<ns1:obligatedAmount>198000.00</ns1:obligatedAmount>
<ns1:baseAndExercisedOptionsValue>198000.00</ns1:baseAndExercisedOptionsValue>
<ns1:baseAndAllOptionsValue>833580.00</ns1:baseAndAllOptionsValue></ns1:dollarValues>
<ns1:totalDollarValues>
<ns1:totalObligatedAmount>614790.00</ns1:totalObligatedAmount>
<ns1:totalBaseAndExercisedOptionsValue>614790.00</ns1:totalBaseAndExercisedOptionsValue>
<ns1:totalBaseAndAllOptionsValue>833580.00</ns1:totalBaseAndAllOptionsValue></ns1:totalDollarValues>
<ns1:purchaserInformation>