forked from napster68/sampleIsoMessages
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmastercardCreditMerc0600.xml
1276 lines (1268 loc) · 33.8 KB
/
mastercardCreditMerc0600.xml
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
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<!DOCTYPE isopackager SYSTEM "genericpackager.dtd">
<isopackager>
<isofield
id="0"
length="4"
name="MESSAGE TYPE INDICATOR"
pad="true"
class="org.jpos.iso.IF_CHAR"/>
<isofield
id="1"
length="16"
name="BIT MAP 1"
class="org.jpos.iso.IFB_BITMAP"/>
<isofield
id="2"
length="19"
name="PAN - PRIMARY ACCOUNT NUMBER"
pad="true"
class="org.jpos.iso.IFA_LLNUM"/>
<isofield
id="3"
length="6"
name="Processing Code"
pad="true"
class="org.jpos.iso.IFA_NUMERIC"/>
<isofield
id="4"
length="12"
name="Amount, Transaction"
pad="true"
class="org.jpos.iso.IFA_NUMERIC"/>
<isofield
id="5"
length="12"
name="Amount, Settlement"
pad="true"
class="org.jpos.iso.IFA_NUMERIC"/>
<isofield
id="6"
length="12"
name="Amount, Cardholder Billing "
pad="true"
class="org.jpos.iso.IFA_NUMERIC"/>
<isofield
id="7"
length="10"
name="TRANSMISSION DATE AND TIME"
pad="true"
class="org.jpos.iso.IFA_NUMERIC"/>
<isofield
id="8"
length="8"
name="Amount, Cardholder Billing Fee"
pad="true"
class="org.jpos.iso.IFA_NUMERIC"/>
<isofield
id="9"
length="8"
name="Conversion Rate, Settlement"
pad="true"
class="org.jpos.iso.IFA_NUMERIC"/>
<isofield
id="10"
length="8"
name="Conversion Rate, Settlement"
pad="true"
class="org.jpos.iso.IFA_NUMERIC"/>
<isofield
id="11"
length="6"
name="SYSTEM TRACE AUDIT NUMBER"
pad="true"
class="org.jpos.iso.IFA_NUMERIC"/>
<isofield
id="12"
length="6"
name="Time, Local Transaction "
pad="true"
class="org.jpos.iso.IFA_NUMERIC"/>
<isofield
id="13"
length="4"
name="Time, Local Transaction "
pad="true"
class="org.jpos.iso.IFA_NUMERIC"/>
<isofield
id="14"
length="4"
name="Date, Expiration"
pad="true"
class="org.jpos.iso.IFA_NUMERIC"/>
<isofield
id="15"
length="4"
name="Date, Settlement"
pad="true"
class="org.jpos.iso.IFA_NUMERIC"/>
<isofield
id="16"
length="4"
name="Date, Conversion"
pad="true"
class="org.jpos.iso.IFA_NUMERIC"/>
<isofield
id="17"
length="4"
name="Date, Capture"
pad="true"
class="org.jpos.iso.IFA_NUMERIC"/>
<isofield
id="18"
length="4"
name="Merchant Type"
pad="true"
class="org.jpos.iso.IFA_NUMERIC"/>
<isofield
id="19"
length="3"
name="Acquiring Institution Country Code "
pad="true"
class="org.jpos.iso.IFA_NUMERIC"/>
<isofield
id="20"
length="3"
name="Primary Account Number (PAN) Country Code"
pad="true"
class="org.jpos.iso.IFA_NUMERIC"/>
<isofield
id="21"
length="3"
name="Forwarding Institution Country Code"
pad="true"
class="org.jpos.iso.IFA_NUMERIC"/>
<!--isofield
id="22"
length="3"
name="Point-of-Service (POS) Entry Mode"
pad="true"
class="org.jpos.iso.IFA_NUMERIC"/-->
<isofieldpackager
id="22"
length="3"
name="Point-of-Service (POS) Entry Mode"
pad="true"
class="org.jpos.iso.IFA_NUMERIC"
emitBitmap="false"
packager="org.jpos.iso.packager.GenericSubFieldPackager">
<isofield
id="1"
length="2"
name="POS Terminal PAN Entry Mode"
class="org.jpos.iso.IF_CHAR"/>
<isofield
id="2"
length="1"
pad="true"
name="POS Terminal PIN Entry Mode"
class="org.jpos.iso.IF_CHAR"/>
</isofieldpackager>
<isofield
id="23"
length="3"
name="Card Sequence Number"
pad="true"
class="org.jpos.iso.IFA_NUMERIC"/>
<isofield
id="24"
length="3"
name="Network International ID"
pad="true"
class="org.jpos.iso.IFA_NUMERIC"/>
<isofield
id="25"
length="2"
name="Point-of-Service (POS) Condition Code"
pad="true"
class="org.jpos.iso.IFA_NUMERIC"/>
<isofield
id="26"
length="2"
name="Point-of-Service (POS) Personal ID Number (PIN) Capture Code"
pad="true"
class="org.jpos.iso.IFA_NUMERIC"/>
<isofield
id="27"
length="1"
name="Authorization ID Response Length"
pad="true"
class="org.jpos.iso.IFA_NUMERIC"/>
<isofield
id="28"
length="9"
name="Amount, Transaction Fee"
pad="true"
class="org.jpos.iso.IF_CHAR"/>
<isofield
id="29"
length="9"
name="Amount, Settlement Fee"
pad="true"
class="org.jpos.iso.IF_CHAR"/>
<isofield
id="30"
length="9"
name="Amount, Transaction Processing Fee"
pad="true"
class="org.jpos.iso.IF_CHAR"/>
<isofield
id="31"
length="9"
name="Amount, Transaction Processing Fee"
pad="true"
class="org.jpos.iso.IF_CHAR"/>
<isofield
id="32"
length="6"
name="Acquiring Institution ID Code"
pad="true"
class="org.jpos.iso.IFA_LLNUM"/>
<isofield
id="33"
length="99"
name="Forwarding Institution ID Code"
pad="true"
class="org.jpos.iso.IFA_LLNUM"/>
<isofield
id="34"
length="28"
name="Primary Account Number (PAN), Extended"
pad="true"
class="org.jpos.iso.IFA_LLCHAR"/>
<isofield
id="35"
length="37"
name="Track 2 Data"
pad="true"
class="org.jpos.iso.IFA_LLCHAR"/>
<isofield
id="36"
length="104"
name="Track 3 Data"
pad="true"
class="org.jpos.iso.IFA_LLLCHAR"/>
<isofield
id="37"
length="12"
name="Retrieval Reference Number"
pad="true"
class="org.jpos.iso.IF_CHAR"/>
<isofield
id="38"
length="6"
name="Authorization ID Response"
pad="true"
class="org.jpos.iso.IF_CHAR"/>
<isofield
id="39"
length="2"
name="Response Code"
pad="true"
class="org.jpos.iso.IF_CHAR"/>
<isofield
id="40"
length="3"
name="ice Restriction Code"
pad="true"
class="org.jpos.iso.IF_CHAR"/>
<isofield
id="41"
length="8"
name="Card Acceptor Terminal ID"
pad="true"
class="org.jpos.iso.IF_CHAR"/>
<isofield
id="42"
length="15"
name="Card Acceptor ID Code"
pad="true"
class="org.jpos.iso.IF_CHAR"/>
<isofield
id="43"
length="40"
name="Card Acceptor Name/Location for All Transactions"
pad="true"
class="org.jpos.iso.IF_CHAR"/>
<!-- isofield
id="44"
length="25"
name="Additional Response Data"
pad="true"
class="org.jpos.iso.IF_CHAR"/-->
<isofield
id="44"
length="25"
name="Additional Response Data"
pad="true"
class="org.jpos.iso.IFA_LLCHAR"/>
<isofield
id="45"
length="76"
name="Track 1 Data"
pad="true"
class="org.jpos.iso.IFA_LLCHAR"/>
<isofield
id="46"
length="999"
name="Expanded Additional Amounts"
pad="true"
class="org.jpos.iso.IFA_LLLCHAR"/>
<isofield
id="47"
length="999"
name="Additional Data—National Use"
pad="true"
class="org.jpos.iso.IFA_LLLCHAR"/>
<isofieldpackager
id="48"
length="999"
name="Additional Data—Private Use"
class="org.jpos.iso.IFA_LLLCHAR"
pad="true"
emitBitmap="false"
packager="org.jpos.iso.packager.MasterCardEBCDICSubFieldPackager"
>
<isofield
id="0"
length="1"
name="TCC"
class="org.jpos.iso.IF_CHAR"/>
<!-- https://fnds3000.atlassian.net/browse/FLEXIT-2214 -->
<!-- Table 0800060-009 SecureCode and Identity Check Authorization Requests -->
<!-- org.jpos.iso.ISOException: Unsupported sub-field 1 & 2unpacking field 48 -->
<isofield
id="1"
length="99"
name="Unannonounced 19.Q4 0800004"
pad="true"
class="org.jpos.iso.IFMC_LLCHAR"/>
<isofield
id="2"
length="99"
name="Unannonounced 19.Q4 0800004"
pad="true"
class="org.jpos.iso.IFMC_LLCHAR"/>
<!-- https://fnds3000.atlassian.net/browse/ENHANCE-86 - Table 0800351— -TestCase ID 10-unpacking error -->
<isofield
id="8"
length="2"
name="Unannonounced 17.Q4 0800004"
pad="true"
class="org.jpos.iso.IFMC_LLCHAR"/>
<!-- https://fnds3000.atlassian.net/browse/FLEXIT-3239 -->
<!-- Investigate Stand ins week ending 6 & 13 Oct 2019 with Sean -->
<!-- Stand in with ZI4S0M - Unsupported sub-field 14 unpacking field 48 -->
<isofield
id="14"
length="1"
name="Account Type Indicator"
pad="true"
class="org.jpos.iso.IFMC_LLCHAR"/>
<isofield
id="15"
length="10"
name="Authorization Platform Advice Date and Time"
pad="true"
class="org.jpos.iso.IFMC_LLCHAR"/>
<!-- https://fnds3000.atlassian.net/browse/BUGSISSUES-667 - cater for subfield 48.16 -->
<isofield
id="16"
length="7"
name="Processor Pseudo ICA"
pad="true"
class="org.jpos.iso.IFMC_LLCHAR"/>
<isofield
id="20"
length="1"
name=" Cardholder Verification Method"
pad="true"
class="org.jpos.iso.IFMC_LLCHAR"/>
<!-- https://fnds3000.atlassian.net/browse/FLEXIT-2554 -->
<!-- ISO unpacking error DE 48.21 missing -->
<isofield
id="21"
length="5"
name="Acceptance Data"
pad="true"
class="org.jpos.iso.IFMC_LLCHAR"/>
<isofield
id="23"
length="2"
name="Payment Initiation Channel"
pad="true"
class="org.jpos.iso.IFMC_LLCHAR"/>
<isofield
id="26"
length="3"
name="Wallet Program Data"
pad="true"
class="org.jpos.iso.IFMC_LLCHAR"/>
<!-- https://fnds3000.atlassian.net/browse/BUGSISSUES-333 - Table 900004—Issuer Debit MasterCard—MSR Base—Technical Conditions—Authorization Requests -TestCase ID 15-unpacking error -->
<!-- https://fnds3000.atlassian.net/browse/ENHANCE-86 - Table 000004—Issuer Debit MasterCard—MSR Base—Technical Conditions—Authorization Requests -TestCase ID 15-unpacking error -->
<isofield
id="29"
length="10"
name="Unannonounced 17.Q4 0800004"
pad="true"
class="org.jpos.iso.IFMC_LLCHAR"/>
<isofield
id="30"
length="14"
name="Reserved for Future Use"
pad="true"
class="org.jpos.iso.IFMC_LLCHAR"/>
<isofield
id="32"
length="6"
name="MasterCard Assigned ID"
pad="true"
class="org.jpos.iso.IFMC_LLCHAR"/>
<!--
https://fnds3000.atlassian.net/browse/ITTASK-407
MasterCard Quarterly Release for Jul 2015 (Q3)
Table 0800351—Issuer MasterCard and Debit MasterCard—MSR Base—Card on File Token Purchase—Authorization Requests and Advices
Unsupported sub-field 33 unpacking field 48 - test case id 3-5
-->
<isofield
id="33"
length="99"
name="PAN Mapping File Information"
pad="true"
class="org.jpos.iso.IFMC_LLCHAR"/>
<!--
2015-07-30 00:42:58,492 ERROR mccredit.ProcessIncommingMcCredit (ProcessIncommingMcCredit.java:343)- Error occured in processing message
org.jpos.iso.ISOException: org.jpos.iso.IFMC_LLCHAR: Problem unpacking field 363 (org.jpos.iso.ISOException: Field length 71 too long. Max: 28) unpacking field=48, consumed=234
-->
<isofield
id="37"
length="49"
name="Additional Merchant Data"
pad="true"
class="org.jpos.iso.IFMC_LLCHAR"/>
<isofield
id="38"
length="5"
name="Account Category"
pad="true"
class="org.jpos.iso.IFMC_LLCHAR"/>
<isofield
id="42"
length="7"
name=" Electronic Commerce Indicators"
pad="true"
class="org.jpos.iso.IFMC_LLCHAR"/>
<isofield
id="43"
length="28"
name=" Static AAV for Maestro or MasterCard Advance Registration Program"
pad="true"
class="org.jpos.iso.IFMC_LLCHAR"/>
<!-- https://fnds3000.atlassian.net/browse/FLEXIT-9298 - address Credit org.jpos.iso.ISOException: Unsupported sub-field 44 -->
<isofield
id="44"
length="20"
name=" Secure Electronic Commerce Transaction Identifier "
pad="true"
class="org.jpos.iso.IFMC_LLBINARY"/>
<!--2021-02-10 03:49:51,196 org.jpos.iso.ISOException: Unsupported sub-field 48 unpacking field 48 -->
<isofield
id="48"
length="73"
name=" Mobile Program Indicators "
pad="true"
class="org.jpos.iso.IFMC_LLBINARY"/>
<!-- https://fnds3000.atlassian.net/browse/BUGSISSUES-421 - Confine to MasterCard Credit 16.Q2 0870525 16Q2 -->
<isofield
id="52"
length="2"
name="POS Data, Extended Condition Codes"
pad="true"
class="org.jpos.iso.IFMC_LLCHAR"/>
<!-- https://fnds3000.atlassian.net/browse/ENHANCE-165 - MasterCard Release 18.Q4 - 6 October 2018 0803701 16Q2 -->
<isofield
id="53"
length="2"
name="E-ID Request Code"
pad="true"
class="org.jpos.iso.IFMC_LLCHAR"/>
<!-- https://fnds3000.atlassian.net/browse/ENHANCE-86 - Table 0800352— -TestCase ID 2-unpacking error -->
<isofield
id="60"
length="3"
name="Unannonounced 17.Q4 0800004"
pad="true"
class="org.jpos.iso.IFMC_LLCHAR"/>
<isofield
id="61"
length="5"
name="POS Data, Extended Condition Codes"
pad="true"
class="org.jpos.iso.IFMC_LLCHAR"/>
<isofield
id="62"
length="0"
name="Reserved for Future Use"
pad="true"
class="org.jpos.iso.IF_CHAR"/>
<isofield
id="63"
length="15"
name="Trace ID"
pad="true"
class="org.jpos.iso.IFMC_LLCHAR"/>
<!-- https://fnds3000.atlassian.net/browse/FLEXIT-13 -->
<!-- EMV Offline Testing Part 1 -->
<!-- 851151 Unsupported sub-field 64 unpacking field 48 -->
<isofield
id="64"
length="4"
name="Transit Program"
pad="true"
class="org.jpos.iso.IFMC_LLCHAR" />
<!-- Fix 2015-07-30 00:02:47,442 ERROR mccredit.ProcessIncommingMcCredit (ProcessIncommingMcCredit.java:343)- Error occured in processing message
org.jpos.iso.ISOException: org.jpos.iso.IFMC_LLCHAR: Problem unpacking field 346 (org.jpos.iso.ISOException: Field length 50 too long. Max: 3) unpacking field=48, consumed=260 -->
<isofield
id="65"
length="2"
name="Terminal Compliant Indicator"
pad="true"
class="org.jpos.iso.IFMC_LLCHAR"/>
<!-- -->
<isofield
id="66"
length="99"
name="Authenticiatui Data"
pad="true"
class="org.jpos.iso.IFMC_LLCHAR"/>
<isofield
id="67"
length="99"
name="MoneySend Information"
pad="true"
class="org.jpos.iso.IFMC_LLCHAR"/>
<isofield
id="71"
length="40"
name="On-behalf Services"
pad="true"
class="org.jpos.iso.IFMC_LLCHAR"/>
<!-- https://fnds3000.atlassian.net/browse/FLEXIT-125 -->
<!-- EMV Offline Testing Part 2 -->
<!-- Table 0850002 009 —Issuer Mastercard and Debit Mastercard—ICC Base—Technical Conditions—Authorization Requests-->
<!-- Issuer should respond appropriately (must decline) and provide DE 48, SE 74 = 50I (Application Cryptogram invalid) if -->
<isofield
id="74"
length="30"
name="Additional Processing Information"
pad="true"
class="org.jpos.iso.IFMC_LLCHAR" />
<isofield
id="75"
length="32"
name="Fraud Scoring Data"
pad="true"
class="org.jpos.iso.IFMC_LLCHAR"/>
<isofield
id="77"
length="3"
name="Payment Transaction Type Indicator"
pad="true"
class="org.jpos.iso.IFMC_LLCHAR"/>
<isofield
id="80"
length="2"
name="PIN Service Cod"
pad="true"
class="org.jpos.iso.IFMC_LLCHAR"/>
<isofield
id="82"
length="2"
name="Address Verification Service Request"
pad="true"
class="org.jpos.iso.IFMC_LLCHAR"/>
<isofield
id="83"
length="1"
name="Address Verification Service Response"
pad="true"
class="org.jpos.iso.IFMC_LLCHAR"/>
<isofield
id="84"
length="2"
name="Merchant Advice Code"
pad="true"
class="org.jpos.iso.IFMC_LLCHAR"/>
<isofield
id="87"
length="1"
name="Card Validation Code Result"
pad="true"
class="org.jpos.iso.IFMC_LLCHAR"/>
<!-- https://fnds3000.atlassian.net/browse/BUGSISSUES-340 -->
<!--Table 0800004—Issuer MasterCard and Debit MasterCard—MSR Base—Technical Conditions—Authorization Requests - tests case 1 - Unsupported sub-field 88 unpacking field 48 -->
<isofield
id="88"
length="1"
name="Magnetic Stripe Compliance Status Indicator "
pad="true"
class="org.jpos.iso.IFMC_LLCHAR"/>
<isofield
id="89"
length="1"
name="Magnetic Stripe Compliance Error Indicator "
pad="true"
class="org.jpos.iso.IFMC_LLCHAR"/>
<isofield
id="90"
length="1"
name="Lodging and Auto Rental Indicator"
pad="true"
class="org.jpos.iso.IFMC_LLCHAR"/>
<isofield
id="92"
length="3"
name="CVC 2"
pad="true"
class="org.jpos.iso.IFMC_LLCHAR"/>
<isofield
id="95"
length="6"
name="MasterCard Promotion Code"
pad="true"
class="org.jpos.iso.IFMC_LLCHAR"/>
</isofieldpackager>
<isofield
id="49"
length="3"
name="Currency Code, Transaction"
pad="true"
class="org.jpos.iso.IFA_NUMERIC"/>
<isofield
id="50"
length="3"
name="Currency Code, Settlement"
pad="true"
class="org.jpos.iso.IFA_NUMERIC"/>
<isofield
id="51"
length="3"
name="Currency Code, Cardholder Billing"
pad="true"
class="org.jpos.iso.IFA_NUMERIC"/>
<isofield
id="52"
length="8"
name="Personal ID Number (PIN) Data b-8"
pad="true"
class="org.jpos.iso.IFA_NUMERIC"/> <!-- org.jpos.iso.IFA_BINARY F9BDDDFD71BBBBBA -->
<isofield
id="53"
length="16"
name="Security-Related Control Information"
pad="true"
class="org.jpos.iso.IFA_NUMERIC"/>
<isofield
id="54"
length="120"
name="Additional Amounts"
pad="true"
class="org.jpos.iso.IFA_LLLCHAR"/>
<!-- <isofieldpackager
id="54"
length="120"
name="Additional Amounts"
pad="true"
class="org.jpos.iso.IFA_LLLCHAR"
emitBitmap="false"
packager="org.jpos.iso.packager.GenericSubFieldPackager">
<isofield
id="1"
length="2"
name="Account Type"
class="org.jpos.iso.IF_CHAR"/>
<isofield
id="2"
length="2"
pad="true"
name="Amount Type"
class="org.jpos.iso.IF_CHAR"/>
<isofield
id="3"
length="3"
pad="true"
name="Currency Code"
class="org.jpos.iso.IF_CHAR"/>
<isofield
id="4"
length="1"
pad="true"
name="Debit or Credit Indicator"
class="org.jpos.iso.IF_CHAR"/>
<isofield
id="5"
length="6"
pad="true"
name="Amount"
class="org.jpos.iso.IFA_NUMERIC"/>
</isofieldpackager> -->
<isofield
id="55"
length="255"
name="Integrated Circuit Card (ICC) System-Related Data"
pad="true"
class="org.jpos.iso.IFA_LLLBINARY"/>
<isofield
id="56"
length="999"
name="Reserved for ISO Use1"
pad="true"
class="org.jpos.iso.IFA_LLLCHAR"/>
<isofield
id="57"
length="999"
name="Currency Code, Cardholder Billing"
pad="true"
class="org.jpos.iso.IFA_LLLCHAR"/>
<isofield
id="58"
length="999"
name="Currency Code, Cardholder Billing"
pad="true"
class="org.jpos.iso.IFA_LLLCHAR"/>
<isofield
id="59"
length="999"
name="Currency Code, Cardholder Billing"
pad="true"
class="org.jpos.iso.IFA_LLLCHAR"/>
<isofield
id="60"
length="60"
name="Currency Code, Cardholder Billing"
pad="true"
class="org.jpos.iso.IFA_LLLCHAR"/>
<!--isofield
id="61"
length="26"
name="Point-of-Service (POS) Data3"
pad="true"
class="org.jpos.iso.IFA_LLLCHAR"/-->
<isofieldpackager
id="61"
length="999"
name="Point-of-Service (POS) Data"
pad="true"
class="org.jpos.iso.IFA_LLLCHAR"
emitBitmap="false"
packager="org.jpos.iso.packager.GenericSubFieldPackager">
<isofield
id="1"
length="1"
name="POS Terminal Attendance"
class="org.jpos.iso.IF_CHAR"/>
<isofield
id="2"
length="1"
pad="true"
name="Reserved for Future Use"
class="org.jpos.iso.IF_CHAR"/>
<isofield
id="3"
length="1"
pad="true"
name="POS Terminal Location"
class="org.jpos.iso.IF_CHAR"/>
<isofield
id="4"
length="1"
pad="true"
name="POS Cardholder Presence"
class="org.jpos.iso.IF_CHAR"/>
<isofield
id="5"
length="1"
pad="true"
name="POS Card Presence"
class="org.jpos.iso.IF_CHAR"/>
<isofield
id="6"
length="1"
pad="true"
name="POS Card Presence"
class="org.jpos.iso.IF_CHAR"/>
<isofield
id="7"
length="1"
pad="true"
name="POS Transaction Status"
class="org.jpos.iso.IF_CHAR"/>
<isofield
id="8"
length="1"
pad="true"
name="POS Transaction Security"
class="org.jpos.iso.IF_CHAR"/>
<isofield
id="9"
length="1"
pad="true"
name="Reserved for Future Use"
class="org.jpos.iso.IF_CHAR"/>
<isofield
id="10"
length="1"
pad="true"
name="Cardholder-Activated Terminal Level"
class="org.jpos.iso.IF_CHAR"/>
<isofield
id="11"
length="1"
pad="true"
name="POS Card Data Terminal Input Capability Indicator"
class="org.jpos.iso.IF_CHAR"/>
<isofield
id="12"
length="2"
pad="true"
name="POS Authorization LIFA Cycle"
class="org.jpos.iso.IF_CHAR"/>
<isofield
id="13"
length="3"
pad="true"
name="POS Country Code"
class="org.jpos.iso.IF_CHAR"/>
<!-- isofield
id="14"
length="5"
pad="false"
name="POS Postal Code"
class="org.jpos.iso.IF_CHAR"/ --> <!-- For 0100 length is 5 else 9? -->
<isofield
id="14"
length="5"
pad="true"
name="POS Postal Code"
class="za.co.flexpay.iso.sample.util.DE61SF14"/> <!-- For 0120 this SE varied in new from ans 1..10 so built a custum field-->
</isofieldpackager>
<isofield
id="62"
length="100"
name="Intermediate Network Facility (INF)"
pad="true"
class="org.jpos.iso.IFA_LLLCHAR"/>
<!-- isofieldpackager
id="63"
length="50"
name="BANKER DATA"
class="org.jpos.iso.IFA_LLLCHAR"
pad="true"
emitBitmap="false"
packager="org.jpos.iso.packager.MasterCardEBCDICSubFieldPackager">
<isofield
id="0"
length="3"
name="Financial Network Code"
class="org.jpos.iso.IF_CHAR"/>
<isofield
id="1"
length="6"
pad="true"
name="Banknet Reference Number"
class="org.jpos.iso.IF_CHAR"/>
</isofieldpackager -->
<isofield
id="63"
length="999"
name="Network Data"
pad="true"
class="org.jpos.iso.IFA_LLLCHAR"/>
<isofield
id="64"
length="8"
name="Message Authentication Code (MAC)"
pad="true"
class="org.jpos.iso.IFA_BINARY"/>
<isofield
id="65"
length="8"
name="Bit Map, Extended1"
pad="true"
class="org.jpos.iso.IFA_BINARY"/>
<isofield
id="66"
length="8"
name="Settlement Code1"
pad="true"
class="org.jpos.iso.IFA_NUMERIC"/>
<isofield
id="67"
length="8"
name="Extended Payment Code1"
pad="true"
class="org.jpos.iso.IFA_NUMERIC"/>
<isofield
id="68"
length="8"
name="Receiving Institution Country Code1"
pad="true"
class="org.jpos.iso.IFA_NUMERIC"/>
<isofield
id="69"
length="8"
name="Settlement Institution Country Code1"
pad="true"
class="org.jpos.iso.IFA_NUMERIC"/>
<isofield
id="70"
length="3"
name="Network Management Information Code"
pad="true"
class="org.jpos.iso.IFA_NUMERIC"/>
<isofield
id="71"
length="4"
name="Message Number1"
pad="true"
class="org.jpos.iso.IFA_NUMERIC"/>
<isofield
id="72"
length="4"
name="Message Number Last1"
pad="true"
class="org.jpos.iso.IFA_NUMERIC"/>
<isofield
id="73"
length="6"
name="Date, Action"
pad="true"
class="org.jpos.iso.IFA_NUMERIC"/>
<isofield
id="74"
length="10"
name="Credits, Number1"
pad="true"
class="org.jpos.iso.IFA_NUMERIC"/>
<isofield
id="75"
length="10"
name="Credits, Reversal Number1"
pad="true"
class="org.jpos.iso.IFA_NUMERIC"/>
<isofield
id="76"
length="10"
name="Debits, Number1"
pad="true"
class="org.jpos.iso.IFA_NUMERIC"/>
<isofield
id="77"
length="10"
name="Debits, Reversal Number1"
pad="true"
class="org.jpos.iso.IFA_NUMERIC"/>
<isofield
id="78"
length="10"
name="Transfers, Number1"
pad="true"
class="org.jpos.iso.IFA_NUMERIC"/>
<isofield
id="79"
length="10"
name="Transfers, Reversal Number1"
pad="true"
class="org.jpos.iso.IFA_NUMERIC"/>
<isofield
id="80"
length="10"
name="Inquiries, Number1"
pad="true"
class="org.jpos.iso.IFA_NUMERIC"/>
<isofield
id="81"
length="10"
name="Authorizations, Number1"
pad="true"
class="org.jpos.iso.IFA_NUMERIC"/>
<isofield
id="82"
length="12"
name="Credits, Processing Fee Amount1"